8#include <QMetaProperty>
10#include <yaml-cpp/yaml.h>
12#include "errorstack.hh"
21bool propIsInstance(
const QMetaProperty &prop) {
22 if (QMetaType::UnknownType == prop.userType())
24 QMetaType type(prop.userType());
25 if (! (QMetaType::PointerToQObject & type.flags()))
27 const QMetaObject *propType = type.metaObject();
28 for (;
nullptr != propType; propType = propType->superClass()) {
29 if (0==strcmp(T::staticMetaObject.className(), propType->className()))
63 virtual bool contains(
const QString &
id)
const;
74 static bool hasTag(
const QString &className,
const QString &property,
const QString &tag);
76 static bool hasTag(
const QString &className,
const QString &property,
ConfigObject *obj);
78 static ConfigObject *
getTag(
const QString &className,
const QString &property,
const QString &tag);
80 static QString
getTag(
const QString &className,
const QString &property,
ConfigObject *obj);
82 static void setTag(
const QString &className,
const QString &property,
const QString &tag,
ConfigObject *obj);
90 QHash<ConfigObject*, QString>
_ids;
92 static QHash<QString, QHash<QString, ConfigObject *>>
_tagObjects;
94 static QHash<QString, QHash<ConfigObject *, QString>>
_tagNames;
100 explicit ConfigItem(QObject *parent =
nullptr);
138 virtual void clear();
143 virtual void findItemsOfTypes(
const QStringList &typeNames, QSet<ConfigItem*> &items)
const;
146 template <
class Object>
148 return nullptr != qobject_cast<const Object*>(
this);
152 template <
class Object>
153 const Object *
as()
const {
154 return qobject_cast<const Object*>(
this);
158 template <
class Object>
160 return qobject_cast<Object *>(
this);
176 QString
description(
const QMetaProperty &prop)
const;
206 Q_CLASSINFO(
"IdPrefix",
"obj")
220 virtual const QString &
name() const;
263 explicit AbstractConfigObjectList(
const QMetaObject &elementTypes=ConfigObject::staticMetaObject, QObject *parent =
nullptr);
278 virtual int count()
const;
282 virtual void clear();
285 virtual const Config *config()
const;
287 virtual void findItemsOfTypes(
const QStringList &typeNames, QSet<ConfigItem*> &items)
const;
289 virtual QList<ConfigObject *> findItemsByName(
const QString name)
const;
296 virtual int add(
ConfigObject *obj,
int row=-1,
bool unique=
true);
298 virtual int replace(
ConfigObject *obj,
int row,
bool unique=
true);
305 virtual bool moveUp(
int idx);
307 virtual bool moveUp(
int first,
int last);
309 virtual bool moveDown(
int idx);
311 virtual bool moveDown(
int first,
int last);
315 virtual bool move(
int source,
int count,
int destination);
318 const QList<QMetaObject> &elementTypes()
const;
320 QStringList classNames()
const;
334 void onElementDeleted(QObject *obj);
354 explicit ConfigObjectList(
const QMetaObject &elementTypes=ConfigItem::staticMetaObject, QObject *parent =
nullptr);
356 ConfigObjectList(
const std::initializer_list<QMetaObject> &elementTypes, QObject *parent=
nullptr);
359 int add(
ConfigObject *obj,
int row=-1,
bool unique=
true);
395 explicit ConfigObjectRefList(
const QMetaObject &elementTypes=ConfigObject::staticMetaObject, QObject *parent =
nullptr);
397 ConfigObjectRefList(
const std::initializer_list<QMetaObject> &elementTypes, QObject *parent=
nullptr);
Generic list class for config objects.
Definition configobject.hh:258
QVector< ConfigObject * > _items
Holds the list items.
Definition configobject.hh:340
void elementAdded(int idx)
Gets emitted if an element was added to the list.
virtual YAML::Node serialize(const ConfigItem::Context &context, const ErrorStack &err=ErrorStack())=0
Recursively serializes the configuration to YAML nodes.
QList< QMetaObject > _elementTypes
Holds the static QMetaObject of the element type.
Definition configobject.hh:338
void elementRemoved(int idx)
Gets emitted if one of the lists elements gets deleted.
virtual bool label(ConfigItem::Context &context, const ErrorStack &err=ErrorStack())=0
Recursively labels the config object.
void elementModified(int idx)
Gets emitted if one of the lists elements gets modified.
Base class of all device/vendor specific confiuration extensions.
Definition configobject.hh:246
Parse context for config objects.
Definition configobject.hh:48
QString _version
The version string.
Definition configobject.hh:86
const QString & version() const
Returns the read version string.
Definition configobject.cc:50
virtual bool add(const QString &id, ConfigObject *)
Associates the given object with the given ID.
Definition configobject.cc:79
void setVersion(const QString &ver)
Sets the version string.
Definition configobject.cc:54
QHash< QString, ConfigObject * > _objects
ID->OBJ look-up table.
Definition configobject.hh:88
Context()
Empty constructor.
Definition configobject.cc:39
virtual ~Context()
Destructor.
Definition configobject.cc:45
virtual QString getId(ConfigObject *obj) const
Returns ID of the given object.
Definition configobject.cc:69
static ConfigObject * getTag(const QString &className, const QString &property, const QString &tag)
Returns the object associated with the tag for the property of the class.
Definition configobject.cc:100
static QHash< QString, QHash< ConfigObject *, QString > > _tagNames
Maps singleton objects to tags.
Definition configobject.hh:94
virtual ConfigObject * getObj(const QString &id) const
Returns the object for the given ID.
Definition configobject.cc:74
static void setTag(const QString &className, const QString &property, const QString &tag, ConfigObject *obj)
Associates the given object with the tag for the property of the given class.
Definition configobject.cc:118
static QHash< QString, QHash< QString, ConfigObject * > > _tagObjects
Maps tags to singleton objects.
Definition configobject.hh:92
QHash< ConfigObject *, QString > _ids
OBJ->ID look-up table.
Definition configobject.hh:90
virtual bool contains(ConfigObject *obj) const
Returns true, if the context contains the given object.
Definition configobject.cc:59
static bool hasTag(const QString &className, const QString &property, const QString &tag)
Returns true if the property of the class has the specified tag associated.
Definition configobject.cc:88
Base class for all configuration objects (channels, zones, contacts, etc).
Definition configobject.hh:40
virtual bool link(const YAML::Node &node, const Context &ctx, const ErrorStack &err=ErrorStack())
Links the given object to the rest of the codeplug using the given context.
Definition configobject.cc:775
virtual int compare(const ConfigItem &other) const
Compares the items.
Definition configobject.cc:239
bool hasLongDescription() const
Returns true if there is a class info "longDescription" for this instance.
Definition configobject.cc:957
virtual bool copy(const ConfigItem &other)
Copies the given item into this one.
Definition configobject.cc:140
Object * as()
Casts this object to the given type.
Definition configobject.hh:159
virtual bool populate(YAML::Node &node, const Context &context, const ErrorStack &err=ErrorStack())
Recursively serializes the configuration to YAML nodes.
Definition configobject.cc:396
QString longDescription() const
Returns the long description of this instance if set by a class info.
Definition configobject.cc:989
virtual ConfigItem * clone() const =0
Clones this item.
bool hasDescription() const
Returns true if there is a class info "description" for this instance.
Definition configobject.cc:951
virtual void findItemsOfTypes(const QStringList &typeNames, QSet< ConfigItem * > &items) const
Searches the config tree to find all instances of the given type names.
Definition configobject.cc:928
virtual ConfigItem * allocateChild(QMetaProperty &prop, const YAML::Node &node, const Context &ctx, const ErrorStack &err=ErrorStack())
Allocates an instance for the given property on the given YAML node.
Definition configobject.cc:490
bool is() const
Returns true if this object is of class Object.
Definition configobject.hh:147
virtual bool label(Context &context, const ErrorStack &err=ErrorStack())
Recursively labels the config object.
Definition configobject.cc:342
virtual const Config * config() const
Returns the config, the item belongs to or nullptr if not part of a config.
Definition configobject.cc:917
virtual YAML::Node serialize(const Context &context, const ErrorStack &err=ErrorStack())
Recursively serializes the configuration to YAML nodes.
Definition configobject.cc:366
virtual void clear()
Clears the config object.
Definition configobject.cc:374
const Object * as() const
Casts this object to the given type.
Definition configobject.hh:153
virtual bool parse(const YAML::Node &node, Context &ctx, const ErrorStack &err=ErrorStack())
Parses the given YAML node, updates the given object and updates the given context (IDs).
Definition configobject.cc:518
QString description() const
Returns the description of this instance if set by a class info.
Definition configobject.cc:981
void endClear()
Gets emitted after clearing the item.
ConfigItem(QObject *parent=nullptr)
Hidden constructor.
Definition configobject.cc:133
void modified(ConfigItem *obj)
Gets emitted once the config object is modified.
void beginClear()
Gets emitted before clearing the item.
List class for config objects.
Definition configobject.hh:349
virtual ConfigItem * allocateChild(const YAML::Node &node, ConfigItem::Context &ctx, const ErrorStack &err=ErrorStack())=0
Allocates a member objects for the given YAML node.
List class for config objects.
Definition configobject.hh:390
Base class of all labeled and named objects.
Definition configobject.hh:199
virtual bool populate(YAML::Node &node, const Context &context, const ErrorStack &err=ErrorStack())
Recursively serializes the configuration to YAML nodes.
Definition configobject.cc:1089
bool parse(const YAML::Node &node, Context &ctx, const ErrorStack &err=ErrorStack())
Parses the given YAML node, updates the given object and updates the given context (IDs).
Definition configobject.cc:1071
bool label(Context &context, const ErrorStack &err=ErrorStack())
Recursively labels the config object.
Definition configobject.cc:1049
virtual void setName(const QString &name)
Sets the name of the object.
Definition configobject.cc:1036
QString _name
Holds the name of the object.
Definition configobject.hh:238
QString name
The name of the object.
Definition configobject.hh:203
QString idPrefix() const
Returns the ID prefix for this object.
Definition configobject.cc:1044
static QString findIdPrefix(const QMetaObject *meta)
Helper to find the IdPrefix class info in the class hierarchy.
Definition configobject.cc:1096
The config class, representing the codeplug configuration.
Definition config.hh:70
Implements a stack of error messages to provide a pretty formatted error traceback.
Definition errorstack.hh:41