/**************************************************************************** ** ** Copyright (C) 2013 Sandro S. Andrade ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtMof module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qmofclass.h" #include "private/qmofclassobject_p.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include QT_BEGIN_NAMESPACE /*! \class QMofClass \inmodule QtMof \brief A class describes a set of objects that share the same specifications of features, constraints, and semantics. */ /*! Creates a new QMofClass. Also creates the corresponding QObject-based representation returned by asQModelingObject() if \a createQModelingObject is true. */ QMofClass::QMofClass(bool createQModelingObject) : _isAbstract(false) { if (createQModelingObject) _qModelingObject = qobject_cast(new QMofClassObject(this)); } /*! Destroys the QMofClass. */ QMofClass::~QMofClass() { QModelingElement::deleteQModelingObject(); } /*! Returns a deep-copied clone of the QMofClass. */ QModelingElement *QMofClass::clone() const { QMofClass *c = new QMofClass; c->asQModelingObject()->setObjectName(this->asQModelingObject()->objectName()); c->asQModelingObject()->setProperty("role", this->asQModelingObject()->property("role")); foreach (QMofComment *element, ownedComments()) c->addOwnedComment(dynamic_cast(element->clone())); c->setName(name()); c->setVisibility(visibility()); c->setLeaf(isLeaf()); foreach (QMofElementImport *element, elementImports()) c->addElementImport(dynamic_cast(element->clone())); foreach (QMofConstraint *element, ownedRules()) c->addOwnedRule(dynamic_cast(element->clone())); foreach (QMofPackageImport *element, packageImports()) c->addPackageImport(dynamic_cast(element->clone())); foreach (QMofGeneralization *element, generalizations()) c->addGeneralization(dynamic_cast(element->clone())); c->setFinalSpecialization(isFinalSpecialization()); c->setAbstract(isAbstract()); foreach (QMofClassifier *element, nestedClassifiers()) c->addNestedClassifier(dynamic_cast(element->clone())); foreach (QMofProperty *element, ownedAttributes()) c->addOwnedAttribute(dynamic_cast(element->clone())); foreach (QMofOperation *element, ownedOperations()) c->addOwnedOperation(dynamic_cast(element->clone())); return c; } // OWNED ATTRIBUTES /*! If true, the Classifier does not provide a complete declaration and can typically not be instantiated. An abstract classifier is intended to be used by other classifiers e.g. as the target of general metarelationships or generalization relationships. \b {Redefined property(ies):} QMofClassifier::isAbstract(). */ bool QMofClass::isAbstract() const { // This is a read-write property return _isAbstract; } /*! Adjusts isAbstract to \a isAbstract. */ void QMofClass::setAbstract(bool isAbstract) { // This is a read-write property if (_isAbstract != isAbstract) { _isAbstract = isAbstract; _qModelingObject->modifiedResettableProperties() << QStringLiteral("isAbstract"); // Adjust redefined properties QMofClassifier::setAbstract(isAbstract); } } /*! References all the Classifiers that are defined (nested) within the Class. \sa addNestedClassifier(), removeNestedClassifier() \b {Subsetted property(ies):} QMofNamespace::ownedMembers(). */ const QList QMofClass::nestedClassifiers() const { // This is a read-write association end return _nestedClassifiers; } /*! Adds \a nestedClassifier to nestedClassifiers. \sa nestedClassifiers(), removeNestedClassifier() */ void QMofClass::addNestedClassifier(QMofClassifier *nestedClassifier) { // This is a read-write association end if (!_nestedClassifiers.contains(nestedClassifier)) { _nestedClassifiers.append(nestedClassifier); if (nestedClassifier && nestedClassifier->asQModelingObject() && this->asQModelingObject()) QObject::connect(nestedClassifier->asQModelingObject(), SIGNAL(destroyed(QObject*)), this->asQModelingObject(), SLOT(removeNestedClassifier(QObject *))); nestedClassifier->asQModelingObject()->setParent(this->asQModelingObject()); // Adjust subsetted properties addOwnedMember(nestedClassifier); } } /*! Removes \a nestedClassifier from nestedClassifiers. \sa nestedClassifiers(), addNestedClassifier() */ void QMofClass::removeNestedClassifier(QMofClassifier *nestedClassifier) { // This is a read-write association end if (_nestedClassifiers.contains(nestedClassifier)) { _nestedClassifiers.removeAll(nestedClassifier); if (nestedClassifier->asQModelingObject()) nestedClassifier->asQModelingObject()->setParent(0); // Adjust subsetted properties removeOwnedMember(nestedClassifier); } } /*! The attributes (i.e. the properties) owned by the class. \sa addOwnedAttribute(), removeOwnedAttribute() \b {Subsetted property(ies):} QMofClassifier::attributes(), QMofNamespace::ownedMembers(). \b {Opposite property(ies):} QMofProperty::class_(). */ const QList QMofClass::ownedAttributes() const { // This is a read-write association end return _ownedAttributes; } /*! Adds \a ownedAttribute to ownedAttributes. \sa ownedAttributes(), removeOwnedAttribute() */ void QMofClass::addOwnedAttribute(QMofProperty *ownedAttribute) { // This is a read-write association end if (!_ownedAttributes.contains(ownedAttribute)) { _ownedAttributes.append(ownedAttribute); if (ownedAttribute && ownedAttribute->asQModelingObject() && this->asQModelingObject()) QObject::connect(ownedAttribute->asQModelingObject(), SIGNAL(destroyed(QObject*)), this->asQModelingObject(), SLOT(removeOwnedAttribute(QObject *))); ownedAttribute->asQModelingObject()->setParent(this->asQModelingObject()); // Adjust subsetted properties addAttribute(ownedAttribute); addOwnedMember(ownedAttribute); // Adjust opposite properties if (ownedAttribute) { ownedAttribute->setClass(this); } } } /*! Removes \a ownedAttribute from ownedAttributes. \sa ownedAttributes(), addOwnedAttribute() */ void QMofClass::removeOwnedAttribute(QMofProperty *ownedAttribute) { // This is a read-write association end if (_ownedAttributes.contains(ownedAttribute)) { _ownedAttributes.removeAll(ownedAttribute); if (ownedAttribute->asQModelingObject()) ownedAttribute->asQModelingObject()->setParent(0); // Adjust subsetted properties removeAttribute(ownedAttribute); removeOwnedMember(ownedAttribute); // Adjust opposite properties if (ownedAttribute) { ownedAttribute->setClass(0); } } } /*! The operations owned by the class. \sa addOwnedOperation(), removeOwnedOperation() \b {Subsetted property(ies):} QMofClassifier::features(), QMofNamespace::ownedMembers(), . \b {Opposite property(ies):} QMofOperation::class_(). */ const QList QMofClass::ownedOperations() const { // This is a read-write association end return _ownedOperations; } /*! Adds \a ownedOperation to ownedOperations. \sa ownedOperations(), removeOwnedOperation() */ void QMofClass::addOwnedOperation(QMofOperation *ownedOperation) { // This is a read-write association end if (!_ownedOperations.contains(ownedOperation)) { _ownedOperations.append(ownedOperation); if (ownedOperation && ownedOperation->asQModelingObject() && this->asQModelingObject()) QObject::connect(ownedOperation->asQModelingObject(), SIGNAL(destroyed(QObject*)), this->asQModelingObject(), SLOT(removeOwnedOperation(QObject *))); ownedOperation->asQModelingObject()->setParent(this->asQModelingObject()); // Adjust subsetted properties addFeature(ownedOperation); addOwnedMember(ownedOperation); // Adjust opposite properties if (ownedOperation) { ownedOperation->setClass(this); } } } /*! Removes \a ownedOperation from ownedOperations. \sa ownedOperations(), addOwnedOperation() */ void QMofClass::removeOwnedOperation(QMofOperation *ownedOperation) { // This is a read-write association end if (_ownedOperations.contains(ownedOperation)) { _ownedOperations.removeAll(ownedOperation); if (ownedOperation->asQModelingObject()) ownedOperation->asQModelingObject()->setParent(0); // Adjust subsetted properties removeFeature(ownedOperation); removeOwnedMember(ownedOperation); // Adjust opposite properties if (ownedOperation) { ownedOperation->setClass(0); } } } /*! This gives the superclasses of a class. \sa addSuperClass(), removeSuperClass() \b {This is a derived property.} \b {Redefined property(ies):} QMofClassifier::generals(). */ const QSet QMofClass::superClasses() const { // This is a read-write derived association end qWarning("QMofClass::superClasses(): to be implemented (this is a derived association end)"); return QSet(); } /*! Adds \a superClass to superClasses. \sa superClasses(), removeSuperClass() */ void QMofClass::addSuperClass(QMofClass *superClass) { // This is a read-write derived association end qWarning("QMofClass::addSuperClass(): to be implemented (this is a derived association end)"); Q_UNUSED(superClass); if (false /* */) { // // Adjust redefined properties QMofClassifier::addGeneral(superClass); } } /*! Removes \a superClass from superClasses. \sa superClasses(), addSuperClass() */ void QMofClass::removeSuperClass(QMofClass *superClass) { // This is a read-write derived association end qWarning("QMofClass::removeSuperClass(): to be implemented (this is a derived association end)"); Q_UNUSED(superClass); if (false /* */) { // // Adjust redefined properties QMofClassifier::removeGeneral(superClass); } } // OPERATIONS /*! The inherit operation is overridden to exclude redefined properties. */ QSet QMofClass::inherit(QSet inhs) const { qWarning("QMofClass::inherit(): to be implemented (operation)"); Q_UNUSED(inhs); return QSet (); } QT_END_NAMESPACE