如何支持包含自定义类型的QVariant对象的比较?

时间:2010-05-19 19:21:19

标签: c++ qt qvariant

根据Qt文档,如果变体包含自定义类型,则QVariant::operator==无法正常工作:

  

bool QVariant :: operator ==(const QVariant& v)const

     

将此QVariant与v和。进行比较   如果它们相等则返回true;   否则返回false。

     

在自定义类型的情况下,他们的   不称为均等运算符。   相反,值的地址是   比较。

你应该如何让这个对你的自定义类型有意义?在我的例子中,我将枚举值存储在QVariant中,例如

在标题中:

enum MyEnum { Foo, Bar };

Q_DECLARE_METATYPE(MyEnum);

功能中的某个地方:

QVariant var1 = QVariant::fromValue<MyEnum>(Foo);
QVariant var2 = QVariant::fromValue<MyEnum>(Foo);
assert(var1 == var2); // Fails!

为了使这个断言成立,我需要做些什么?

我理解为什么它不起作用 - 每个变体都存储枚举值的单独副本,因此它们具有不同的地址。我想知道如何改变我在变体中存储这些值的方法,以便这不是一个问题,或者它们都引用相同的底层变量。

我不认为我可以绕过需要进行平等比较的工作。上下文是我使用此枚举作为QComboBox中的项目中的UserData,我希望能够使用QComboBox::findData来查找与特定枚举值对应的项目索引。

3 个答案:

答案 0 :(得分:15)

显而易见的答案是将数据从var1.value<MyEnum>() == var2.value<MyEnum>()转出来进行比较,但这需要您在比较时知道类型。在您的情况下,这似乎是可能的。

如果您只是使用枚举,您还可以将其转换为int以存储在QVariant中。

修改:有关搜索QComboBox的说明,请uses the model of the combo box to find the data。具体来说,它使用match()QAbstractItemModel函数来检查是否相等。幸运的是,这个函数是虚函数,所以你可以在子类中覆盖它。

答案 1 :(得分:4)

尝试hack qvariant,按原型定义函数

typedef bool (*f_compare)(const Private *, const Private *);

并将其设置为qvariant处理程序; 要使用qvariant qt,请使用Handler:

struct Handler {
    f_construct construct;
    f_clear clear;
    f_null isNull;
  #ifndef QT_NO_DATASTREAM
    f_load load;
    f_save save;
 #endif
    f_compare compare;
    f_convert convert;
    f_canConvert canConvert;
    f_debugStream debugStream;
};

此示例演示了如何破解qvariant调试输出并转换为字符串。这是一个非常简单的示例,您需要为您解决问题。 “标识符”是我的自定义类型。

class HackVariant : private QVariant
{
public:
     static void hackIt() {
         origh = handler;
         Handler* h = new Handler;
         *h = *origh;
         h->convert = convert;
         h->debugStream = hackStreamDebug;
         handler = h;
     }

private:
     static bool convert(const QVariant::Private *d, QVariant::Type t, void *result, bool *ok)
     {
         //qDebug() << Q_FUNC_INFO << "type:" << d->type;
         if (d->type >= QVariant::UserType)
         {
             QString& str = *((QString*)result);
             Identifier* ident = (Identifier*)(constData(d));
             str = ident->toString();
         }
         else
             return origh->convert(d, t, result, ok);
         return true;
     }

     static void hackStreamDebug(QDebug dbg, const QVariant &v) {
         if (v.canConvert<Identifier>())
             dbg << v.value<Identifier>();
         else
             origh->debugStream(dbg, v);
     }

     static const Handler* origh;

     static const void *constData(const QVariant::Private *d)
     {
         return d->is_shared ? d->data.shared->ptr : reinterpret_cast<const void *>(&d->data.ptr);
     }

};

您必须创建函数并将其设置为处理程序。在使用之前不要忘记在main.cpp中调用HackVariant::hackIt()(var1 == var2)。

答案 2 :(得分:4)

Qt 5的解决方案

自5.2版以来,Qt支持这种开箱即用。请参阅QVariant::operator==QMetaType::registerComparators

Qt 4的解决方案

如果你还在使用Qt 4而且不能(或者不想)升级到Qt 5,那么你可以使用 CustomVariantComparator 这个课程。为我的一个项目写了。

您可以按如下方式使用它。假设我们有一个实现Foo的课程operator==,应该在QVariant中使用:

class Foo {
public:
    bool operator==(const Foo &other) { return ...; }
};
Q_DECLARE_METATYPE(Foo)

然后,只需将Q_DEFINE_COMPARATOR宏放在Foo的实现旁边(即在Foo.cpp文件中,但不在Foo.h文件中):

Q_DEFINE_COMPARATOR(Foo)

接下来, 构建QApplication(或QCoreApplication)实例后,启用自定义变体比较器(这只需要执行一次):

int main(int argc, char *argv[]) {
    QApplication app(argc, argv);
    CustomVariantComparator::setEnabled(true);
    // more code...
}

现在,以下代码段将按预期工作(即调用Foo::operator==)。

QVariant::fromValue(Foo()) == QVariant::fromValue(Foo())