/* * Copyright (c) 2011-2015, Intel Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation and/or * other materials provided with the distribution. * * 3. Neither the name of the copyright holder nor the names of its contributors * may be used to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #pragma once #include "parameter_export.h" #include #include #include #include "XmlSink.h" #include "XmlSource.h" #include "PathNavigator.h" class CXmlElementSerializingContext; namespace utility { class ErrorContext; } // namespace utility class PARAMETER_EXPORT CElement : public IXmlSink, public IXmlSource { public: CElement(const std::string &strName = ""); ~CElement() override; // Description void setDescription(const std::string &strDescription); const std::string &getDescription() const; // Name / Path const std::string &getName() const; void setName(const std::string &strName); bool rename(const std::string &strName, std::string &strError); std::string getPath() const; std::string getQualifiedPath() const; // Creation / build virtual bool init(std::string &strError); virtual void clean(); // Children management void addChild(CElement *pChild); bool removeChild(CElement *pChild); void listChildren(std::string &strChildList) const; std::string listQualifiedPaths(bool bDive, size_t level = 0) const; void listChildrenPaths(std::string &strChildPathList) const; // Hierarchy query size_t getNbChildren() const; CElement *findChildOfKind(const std::string &strKind); const CElement *findChildOfKind(const std::string &strKind) const; const CElement *getParent() const; /** * Get a child element (const) * * Note: this method will assert if given a wrong child index (>= number of children) * * @param[in] index the index of the child element from 0 to number of children - 1 * @return the child element */ const CElement *getChild(size_t index) const; /** * Get a child element * * Note: this method will assert if given a wrong child index (>= number of children) * * @param[in] index the index of the child element from 0 to number of children - 1 * @return the child element */ CElement *getChild(size_t index); const CElement *findChild(const std::string &strName) const; CElement *findChild(const std::string &strName); const CElement *findDescendant(CPathNavigator &pathNavigator) const; CElement *findDescendant(CPathNavigator &pathNavigator); bool isDescendantOf(const CElement *pCandidateAscendant) const; // From IXmlSink bool fromXml(const CXmlElement &xmlElement, CXmlSerializingContext &serializingContext) override; // From IXmlSource void toXml(CXmlElement &xmlElement, CXmlSerializingContext &serializingContext) const override; /** * Serialize the children to XML * * This method is virtual, to be derived in case a special treatment is * needed before doing so. * * @param[in,out] xmlElement the XML Element below which the children must * be serialized (which may or may not be the CElement * object upon which this method is called) * @param[in,out] serializingContext information about the serialization */ virtual void childrenToXml(CXmlElement &xmlElement, CXmlSerializingContext &serializingContext) const; // Content structure dump std::string dumpContent(utility::ErrorContext &errorContext, const size_t depth = 0) const; // Element properties virtual void showProperties(std::string &strResult) const; // Class kind virtual std::string getKind() const = 0; /** * Fill the Description field of the Xml Element during XML composing. * * @param[in,out] xmlElement to fill with the description */ void setXmlDescriptionAttribute(CXmlElement &xmlElement) const; /** * Appends if found human readable description property. * * @param[out] strResult in which the description is wished to be appended. */ void showDescriptionProperty(std::string &strResult) const; /** * Returns Xml element name used for element XML importing/exporting functionalities */ virtual std::string getXmlElementName() const; protected: // Content dumping virtual std::string logValue(utility::ErrorContext &errorContext) const; // Hierarchy CElement *getParent(); /** * Creates a child CElement from a child XML Element * * @param[in] childElement the XML element to create CElement from * @param[in] elementSerializingContext the serializing context * * @return child a pointer on the CElement object that has been added to the tree */ CElement *createChild(const CXmlElement &childElement, CXmlSerializingContext &elementSerializingContext); static const std::string gDescriptionPropertyName; private: // Returns Name or Kind if no Name std::string getPathName() const; // Returns true if children dynamic creation is to be dealt with virtual bool childrenAreDynamic() const; // House keeping void removeChildren(); // Fill XmlElement during XML composing void setXmlNameAttribute(CXmlElement &xmlElement) const; // Name std::string _strName; // Description std::string _strDescription; // Child iterators typedef std::vector::iterator ChildArrayIterator; typedef std::vector::reverse_iterator ChildArrayReverseIterator; // Children std::vector _childArray; // Parent CElement *_pParent{nullptr}; };