2026-03-12 14:56:53 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <QJsonObject>
|
2026-03-18 16:31:32 +08:00
|
|
|
#include <QJsonArray>
|
2026-03-12 14:56:53 +08:00
|
|
|
#include <QVector>
|
|
|
|
|
#include <QString>
|
|
|
|
|
#include <QHash>
|
|
|
|
|
|
|
|
|
|
// 轻量级设备树模型:从 daemon_config.json 的 device_tree 字段加载
|
|
|
|
|
|
|
|
|
|
struct DeviceTreeNode
|
|
|
|
|
{
|
|
|
|
|
QString id;
|
|
|
|
|
QString name;
|
|
|
|
|
QString type;
|
|
|
|
|
QString endpoint;
|
|
|
|
|
QString driver;
|
|
|
|
|
QString capabilitiesRef;
|
|
|
|
|
QJsonObject params;
|
|
|
|
|
QVector<QString> childrenIds;
|
|
|
|
|
bool enabled{true};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class DeviceTreeModel
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
// 从给定的 JSON 根对象(包含 device_tree 字段)加载
|
|
|
|
|
bool loadFromDaemonConfig(const QJsonObject& root, QString* errorMessage = nullptr);
|
|
|
|
|
|
|
|
|
|
const QVector<DeviceTreeNode>& nodes() const { return m_nodes; }
|
2026-03-18 16:31:32 +08:00
|
|
|
QVector<DeviceTreeNode>& nodesMutable() { return m_nodes; }
|
2026-03-12 14:56:53 +08:00
|
|
|
|
|
|
|
|
const DeviceTreeNode* findById(const QString& id) const;
|
2026-03-20 17:19:29 +08:00
|
|
|
int findIndexById(const QString& id) const;
|
2026-03-26 17:22:52 +08:00
|
|
|
int findIndexByEndpoint(const QString& endpoint) const;
|
2026-03-20 17:19:29 +08:00
|
|
|
int findIndexByStableKey(const QString& stableKey) const;
|
|
|
|
|
|
|
|
|
|
// Monitor/register path: upsert or mark online/offline
|
|
|
|
|
QString upsertNodeByStableKey(const QString& stableKey,
|
|
|
|
|
const QString& preferredId,
|
|
|
|
|
const QString& type,
|
|
|
|
|
const QString& endpoint,
|
|
|
|
|
const QString& name,
|
|
|
|
|
const QJsonObject& extraParams,
|
|
|
|
|
bool online,
|
|
|
|
|
const QString& lastSeenTs);
|
|
|
|
|
bool markOfflineByStableKey(const QString& stableKey, const QString& lastSeenTs);
|
2026-03-12 14:56:53 +08:00
|
|
|
|
2026-03-18 16:31:32 +08:00
|
|
|
// 序列化为 daemon_config.json 所需格式
|
|
|
|
|
QJsonArray toDeviceTreeJson() const;
|
|
|
|
|
QJsonObject toDaemonConfigRoot() const;
|
|
|
|
|
|
|
|
|
|
// 当外部直接修改 nodesMutable() 后,需要重建索引
|
|
|
|
|
void rebuildIndex();
|
|
|
|
|
|
2026-03-12 14:56:53 +08:00
|
|
|
private:
|
|
|
|
|
QVector<DeviceTreeNode> m_nodes;
|
|
|
|
|
QHash<QString, int> m_indexById;
|
|
|
|
|
};
|
|
|
|
|
|