Herunterladen als
root/src/entity.cpp @ 56b9e133
81c23b56 | Christian Ehringfeld | /*
|
|
4d58ef6a | Christian Ehringfeld | * Copyright (C) 2015 Christian Ehringfeld <c.ehringfeld@t-online.de>
|
|
*
|
|||
* This program is free software; you can redistribute it and/or modify it
|
|||
* under the terms of the GNU Lesser General Public License as published by
|
|||
* the Free Software Foundation.
|
|||
*
|
|||
* This program is distributed in the hope that it will be useful, but
|
|||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|||
* for more details.
|
|||
*
|
|||
* You should have received a copy of the GNU Lesser General Public License
|
|||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|||
*/
|
|||
81c23b56 | Christian Ehringfeld | ||
#include "entity.h"
|
|||
9cf4747e | Christian Ehringfeld | using namespace CuteEntityManager;
|
|
81c23b56 | Christian Ehringfeld | ||
9d05e414 | Christian Ehringfeld | Entity::Entity(QObject *parent) : QObject(parent) {
|
|
81c23b56 | Christian Ehringfeld | this->id = -1;
|
|
}
|
|||
2e43da3f | Christian Ehringfeld | QString Entity::toString() const {
|
|
7e233492 | Christian Ehringfeld | return this->getTablename() + ":" + QString::number(this->id);
|
|
9d05e414 | Christian Ehringfeld | }
|
|
81c23b56 | Christian Ehringfeld | Entity::~Entity() {
|
|
ba800d6d | Christian Ehringfeld | ||
81c23b56 | Christian Ehringfeld | }
|
|
2e43da3f | Christian Ehringfeld | QString Entity::getTablename() const {
|
|
2075db87 | Christian Ehringfeld | return QString(this->metaObject()->className()).toLower();
|
|
caea9141 | Christian Ehringfeld | }
|
|
7e233492 | Christian Ehringfeld | ||
a06633f7 | Christian Ehringfeld | const QHash<QString, Relation> Entity::getRelations() const {
|
|
24425325 | Christian Ehringfeld | return QHash<QString, Relation>();
|
|
24c5480c | Christian Ehringfeld | }
|
|
a06633f7 | Christian Ehringfeld | const QStringList Entity::getTransientAttributes() const {
|
|
7e233492 | Christian Ehringfeld | return QStringList();
|
|
}
|
|||
24c5480c | Christian Ehringfeld | ||
a06633f7 | Christian Ehringfeld | const QStringList Entity::getBLOBColumns() const {
|
|
24c5480c | Christian Ehringfeld | return QStringList();
|
|
}
|
|||
2e43da3f | Christian Ehringfeld | InheritanceStrategy Entity::getInheritanceStrategy() const {
|
|
1a3b37ba | Christian Ehringfeld | return JOINED_TABLE;
|
|
}
|
|||
2e43da3f | Christian Ehringfeld | QString Entity::getPrimaryKey() const {
|
|
24c5480c | Christian Ehringfeld | return "id";
|
|
}
|
|||
813205af | Christian Ehringfeld | ||
2e43da3f | Christian Ehringfeld | const QStack<const QMetaObject *> Entity::superClasses() const {
|
|
QStack<const QMetaObject *> classes = QStack<const QMetaObject *>();
|
|||
auto superMetaObject = this->metaObject()->superClass();
|
|||
if (this->getInheritanceStrategy() == JOINED_TABLE) {
|
|||
while (QString(superMetaObject->className()) != QString("Entity")) {
|
|||
classes.push(superMetaObject);
|
|||
superMetaObject = superMetaObject->superClass();
|
|||
}
|
|||
}
|
|||
return classes;
|
|||
}
|
|||
a06633f7 | Christian Ehringfeld | const QHash<QString, QMetaProperty> Entity::getMetaProperties() const {
|
|
2e43da3f | Christian Ehringfeld | return Entity::getMetaProperties(this->metaObject());
|
|
}
|
|||
const QHash<QString, QMetaProperty> Entity::getMetaProperties(const QMetaObject *object) {
|
|||
a06633f7 | Christian Ehringfeld | auto h = QHash<QString, QMetaProperty>();
|
|
2e43da3f | Christian Ehringfeld | for (int var = 0; var < object->propertyCount(); ++var) {
|
|
QMetaProperty m = object->property(var);
|
|||
a06633f7 | Christian Ehringfeld | if (m.isValid() && m.name() != QString("objectName")) {
|
|
h.insert(m.name(), m);
|
|||
}
|
|||
}
|
|||
return h;
|
|||
}
|
|||
2e43da3f | Christian Ehringfeld | const QHash<QString, QMetaProperty> Entity::getInheritedMetaProperties() const {
|
|
auto classes = this->superClasses();
|
|||
auto wholeProperties = QHash<QString, QMetaProperty>();
|
|||
while(!classes.isEmpty()) {
|
|||
auto metaObject = classes.pop();
|
|||
auto properties = Entity::getMetaProperties(metaObject);
|
|||
auto iterator = properties.constBegin();
|
|||
while (iterator != properties.constEnd()) {
|
|||
wholeProperties.insert(iterator.key(),iterator.value());
|
|||
++iterator;
|
|||
}
|
|||
}
|
|||
return wholeProperties;
|
|||
}
|
|||
2d9fab10 | Christian Ehringfeld | const QHash<Relation, QMetaProperty> Entity::getRelationProperties() const {
|
|
auto h = QHash<Relation, QMetaProperty>();
|
|||
a06633f7 | Christian Ehringfeld | auto relations = this->getRelations();
|
|
for (int var = 0; var < this->metaObject()->propertyCount(); ++var) {
|
|||
QMetaProperty m = this->metaObject()->property(var);
|
|||
if (m.isValid() && relations.contains(QString(m.name()))) {
|
|||
2d9fab10 | Christian Ehringfeld | h.insert(relations.value(m.name()), m);
|
|
f4e3904b | Christian Ehringfeld | }
|
|
}
|
|||
return h;
|
|||
}
|
|||
const char *Entity::getClassname() const {
|
|||
return this->metaObject()->className();
|
|||
}
|
|||
813205af | Christian Ehringfeld | qint64 Entity::getId() const {
|
|
586bb527 | Christian Ehringfeld | return id;
|
|
}
|
|||
813205af | Christian Ehringfeld | void Entity::setId(const qint64 &value) {
|
|
a06633f7 | Christian Ehringfeld | if (value != this->id) {
|
|
a205e8a9 | Christian Ehringfeld | id = value;
|
|
emit idChanged();
|
|||
}
|
|||
586bb527 | Christian Ehringfeld | }
|