gpt4 book ai didi

c++ - QAbstractListModel : update role names

转载 作者:太空宇宙 更新时间:2023-11-04 13:23:40 24 4
gpt4 key购买 nike

我正在尝试创建一个基于异步数据库 API 的列表模型。这是我希望如何使用它的 qml 示例:

ListView {
id: view;

anchors.fill: parent;

model: DatabaseModel {
id: dmodel

query: "SELECT id FROM test"
database: "toto.sqlite"
}

delegate: Label {
anchors.horizontalCenter: parent.horizontalCenter;
width: view.width / 2;
height: 30;
text: id;

color: "teal";
}
}

显然,在某些时候,我需要的不仅仅是数据库中的 ID 和标签来显示该项目。

为了能够在我的标签定义中使用“id”,我使用了这样的角色名称:

QHash<int, QByteArray> DatabaseListModel::roleNames() const
{
QHash<int, QByteArray> b = this->QAbstractItemModel::roleNames();

if (m_query != "" && m_database) {
QStringList l = m_database->currentRequestFields();
for (int i = 0; i < l.count(); ++i) {
b.insert(Qt::UserRole + i + 1, l.at(i).toLocal8Bit());
}
}
return b;
}

在这种情况下,m_database 是“toto.sqlite”的数据库 session ,m_query 是“SELECT id FROM test”。

问题是我的数据库 session 是异步的,m_database->currentRequestFields() 不能立即可用,但是我收到一个信号告诉我什么时候可用所以我想更新 roleNames 列表在这一刻而不是之前。

即使 m_database 可能看起来像一个黑盒子,我还是按照以下步骤更新模型:

void DatabaseListModel::updateModel()
{
if (m_query != "" && m_database) {
m_mutex.lock();
beginResetModel();
m_cache.clear();

QObject::connect(m_database, &CollaoDatabase::databaseReady, this, [this] (CollaoDatabase* database) {
database->setQueryStringi(m_query);
database->executei(); //currentRequestFields() becomes available
database->fetchAlli();
database->sendNotifierEventi(0); //when everything written before this line has been executed, ask the database to emit CollaoDatabase::notifierEventProcessed. It's not instant and might take a while depending on the query
});
QObject::connect(m_database, &CollaoDatabase::resultReady, this, [this] (QVariantMap result) {
if (m_cache.size() <= 0)
m_cache.reserve(m_database->currentPendingFetches() + 1);
m_cache.append(result.values());
});

QObject::connect(m_database, (void (CollaoDatabase::*)())&CollaoDatabase::notifierEventProcessed, this, [this](){
endResetModel();
//TODO: update roleNames here

m_mutex.unlock();
m_database = NULL; //as soon as stop() is called, we cannot assume the existance of this object anymore
//it is therefore safer to make it null now
});
QObject::connect(m_database, SIGNAL(notifierEventProcessed()), m_database, SLOT(stop()));

m_database->start();
}
}

最佳答案

可能满足您需求的一个想法(假设您想要一个适合该模型用户的良好 API 并且仅具有 SELECT 查询)是按以下方式构建您的查询:

  • 字符串表
  • String[] 列
  • 字符串选择
  • 字符串[] selectionArgs
  • 字符串分组
  • 字符串有
  • 字符串顺序
  • 字符串限制

(想法盗自 http://developer.android.com/reference/android/database/sqlite/SQLiteDatabase.html#query%28java.lang.String,%20java.lang.String[],%20java.lang.String,%20java.lang.String[],%20java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String%29 )

所以你的简单例子看起来像

DatabaseModel {
id: dmodel

table: "test"
colums: ["id"]
database: "toto.sqlite"
}

这样您就可以尽早获得可用的列名称,以便将它们用于角色名称。

关于c++ - QAbstractListModel : update role names,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34089685/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com