复合属性对象,在所有子对象发生变化时禁止多个信号发射

时间:2016-12-06 20:00:19

标签: c++ signals composite c++17

我有一个简单的property<T>课程,其中value_changed<T>可以connect / disconnect来调用value_changed<T>::emit(T)时接收或禁止事件。property想想C ++ 11类固醇上的Qt信号/插槽。

我的下一个挑战是提供一个由子属性组成的类似属性的对象。例如,考虑一个位置或大小,它们都包含多个值。我希望能够将子对象视为struct { property<int> x; property<int> y; } position2d pos{0,0}; // ... pos = {1,1}; // this should fire x.value_changed, y.value_changed, and pos.value_changed (once!) ,并且还可以在一次更改多个值时获取组合信号。例如。做

composite_property

最后一个小字是问题的核心。我正在努力编写一个可重用的 x,可以使用子对象名称进行自定义(位置会得到ywidth,但是大小会得到{{1} }} / height)。

注意property<struct { int x; int y; }>不够:更改x不会发出复合value_changed信号。

我能想到的最好的东西是带有一堆样板代码,用于在分配给超级对象时连接/断开子对象,这很乏味并且违反DRY原则。

我对野生模板魔法持开放态度,虽然我理解变量的免费命名(x / ywidth / height)至少会一些必要的样板代码。

编辑为了完整性,这是我现在拥有的property模板:

template<typename T>
class property
{
public:
  using value_type = T;
  using reference = std::add_lvalue_reference_t<T>;
  using const_reference = std::add_lvalue_reference_t<std::add_const_t<T>>;
  using rvalue_reference = std::add_rvalue_reference_t<T>;

  property(const_reference value_ = {}) : value(value_) {}

  operator const_reference() const { return value; }

  property& operator=(const_reference& other)
  {
    const bool changed = value != other;
    value = other;
    if(changed)
      value_changed.emit(value);

    return *this;
  }

  bool operator==(const_reference other) const { return value == other; }
  bool operator!=(const_reference other) const { return value != other; }
  bool operator< (const_reference other) const { return value <  other; }
  bool operator<=(const_reference other) const { return value <= other; }
  bool operator> (const_reference other) const { return value >  other; }
  bool operator>=(const_reference other) const { return value >= other; }

  signal<value_type> value_changed;

  private:
    value_type value;
};

signal涉及更多,可用here。基本上,connect与Qt类似,只是它返回一个connection_type对象,如Boost.Signal,可用于disconnect该连接。

注意我打开后门“默认修改属性”功能,绕过信号,但只能实现我需要的一半。

1 个答案:

答案 0 :(得分:4)

由于问题被标记为,这里有一个简单的解决方案,它使用了一些闪亮的新C ++ 17特性(沿着上面评论中讨论的方式):

template<class T, auto... PMs> struct composite_property : property<T>
{
   using const_reference = typename property<T>::const_reference;

   composite_property(const_reference v = {}) : property<T>(v)
   {
      (... , (this->value.*PMs).value_changed.connect([this](auto&&)
         {
            if(listen_to_members) this->value_changed.emit(this->value);
         }));
   }

   composite_property& operator=(const_reference& other)
   {
      listen_to_members = false;
      property<T>::operator=(other);
      listen_to_members = true; // not exception-safe, should use RAII to reset
      return *this;
   }

private:
   bool listen_to_members = true;
};

出于纯粹的懒惰,我改变了你的property<T>:我公开了value。当然,有几种方法可以避免这种情况,但它们与手头的问题无关,所以我选择保持简单。

我们可以使用这个玩具示例来测试解决方案:

struct position2d
{
   property<int> x;
   property<int> y;

   position2d& operator=(const position2d& other)
   {
      x = other.x.value;
      y = other.y.value;
      return *this;
   }
};

bool operator!=(const position2d& lhs, const position2d& rhs) { return lhs.x.value != rhs.x.value || lhs.y.value != rhs.y.value; }

int main() 
{
   composite_property<position2d, &position2d::x, &position2d::y> pos = position2d{0, 0};

   pos.value.x.value_changed.connect([](int x) { std::cout << " x value changed to " << x << '\n'; });
   pos.value.y.value_changed.connect([](int y) { std::cout << " y value changed to " << y << '\n'; });
   pos.value_changed.connect([](auto&& p) { std::cout << " pos value changed to {" << p.x << ", " << p.y << "}\n"; });

   std::cout << "changing x\n";
   pos.value.x = 7;
   std::cout << "changing y\n";
   pos.value.y = 3;
   std::cout << "changing pos\n";
   pos = {3, 7};
}

这是一个包含所有必要定义的live example(我的代码位于底部)。

虽然必须将成员明确列为composite_property模板的参数可能很烦人,但它也提供了相当大的灵活性。例如,我们可以拥有一个具有三个成员属性的类,并在不同的成员属性对上定义不同的复合属性。包含类不受任何此类的影响,并且也可以独立于任何复合属性工作,并将成员用作独立属性。

请注意,用户提供的position2d复制赋值运算符是有原因的:如果我们将其保留为默认值,它将复制成员属性本身,它不会发出信号,而是复制源属性

该代码适用于C ++ 1z模式下的Clang trunk。它还会在GCC干线上产生ICE;我们应该尝试减少示例以获取可以在错误报告中提交的内容。

这里起作用的关键C ++ 17功能是auto非类型模板参数。在以前的语言版本中,有一些更加丑陋的替代方案,例如,将指针包装到ptr_to_mem<decltype(&position2d::x), &position2d::x>之类的成员中,可能使用宏来避免重复。

,的构造函数的实现中,composite_property上还有一个折叠表达式,但也可以通过初始化一个虚拟数组来完成(以稍微冗长的方式)。