xref: /aosp_15_r20/external/parameter-framework/upstream/parameter/ComponentInstance.cpp (revision c33452fb792a5495ec310a9626f2638b053af5dd)
1*c33452fbSAndroid Build Coastguard Worker /*
2*c33452fbSAndroid Build Coastguard Worker  * Copyright (c) 2011-2014, Intel Corporation
3*c33452fbSAndroid Build Coastguard Worker  * All rights reserved.
4*c33452fbSAndroid Build Coastguard Worker  *
5*c33452fbSAndroid Build Coastguard Worker  * Redistribution and use in source and binary forms, with or without modification,
6*c33452fbSAndroid Build Coastguard Worker  * are permitted provided that the following conditions are met:
7*c33452fbSAndroid Build Coastguard Worker  *
8*c33452fbSAndroid Build Coastguard Worker  * 1. Redistributions of source code must retain the above copyright notice, this
9*c33452fbSAndroid Build Coastguard Worker  * list of conditions and the following disclaimer.
10*c33452fbSAndroid Build Coastguard Worker  *
11*c33452fbSAndroid Build Coastguard Worker  * 2. Redistributions in binary form must reproduce the above copyright notice,
12*c33452fbSAndroid Build Coastguard Worker  * this list of conditions and the following disclaimer in the documentation and/or
13*c33452fbSAndroid Build Coastguard Worker  * other materials provided with the distribution.
14*c33452fbSAndroid Build Coastguard Worker  *
15*c33452fbSAndroid Build Coastguard Worker  * 3. Neither the name of the copyright holder nor the names of its contributors
16*c33452fbSAndroid Build Coastguard Worker  * may be used to endorse or promote products derived from this software without
17*c33452fbSAndroid Build Coastguard Worker  * specific prior written permission.
18*c33452fbSAndroid Build Coastguard Worker  *
19*c33452fbSAndroid Build Coastguard Worker  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20*c33452fbSAndroid Build Coastguard Worker  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21*c33452fbSAndroid Build Coastguard Worker  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22*c33452fbSAndroid Build Coastguard Worker  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
23*c33452fbSAndroid Build Coastguard Worker  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24*c33452fbSAndroid Build Coastguard Worker  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25*c33452fbSAndroid Build Coastguard Worker  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26*c33452fbSAndroid Build Coastguard Worker  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27*c33452fbSAndroid Build Coastguard Worker  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28*c33452fbSAndroid Build Coastguard Worker  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29*c33452fbSAndroid Build Coastguard Worker  */
30*c33452fbSAndroid Build Coastguard Worker #include "ComponentInstance.h"
31*c33452fbSAndroid Build Coastguard Worker #include "ComponentLibrary.h"
32*c33452fbSAndroid Build Coastguard Worker #include "ComponentType.h"
33*c33452fbSAndroid Build Coastguard Worker #include "Component.h"
34*c33452fbSAndroid Build Coastguard Worker #include "ParameterBlock.h" // for "array" instantiation
35*c33452fbSAndroid Build Coastguard Worker #include "XmlParameterSerializingContext.h"
36*c33452fbSAndroid Build Coastguard Worker 
37*c33452fbSAndroid Build Coastguard Worker #define base CTypeElement
38*c33452fbSAndroid Build Coastguard Worker 
CComponentInstance(const std::string & strName)39*c33452fbSAndroid Build Coastguard Worker CComponentInstance::CComponentInstance(const std::string &strName) : base(strName)
40*c33452fbSAndroid Build Coastguard Worker {
41*c33452fbSAndroid Build Coastguard Worker }
42*c33452fbSAndroid Build Coastguard Worker 
getKind() const43*c33452fbSAndroid Build Coastguard Worker std::string CComponentInstance::getKind() const
44*c33452fbSAndroid Build Coastguard Worker {
45*c33452fbSAndroid Build Coastguard Worker     return "ComponentInstance";
46*c33452fbSAndroid Build Coastguard Worker }
47*c33452fbSAndroid Build Coastguard Worker 
getXmlElementName() const48*c33452fbSAndroid Build Coastguard Worker std::string CComponentInstance::getXmlElementName() const
49*c33452fbSAndroid Build Coastguard Worker {
50*c33452fbSAndroid Build Coastguard Worker     // Once instantiated components are reflected as parameter blocks
51*c33452fbSAndroid Build Coastguard Worker     // in XML documents
52*c33452fbSAndroid Build Coastguard Worker     return "ParameterBlock";
53*c33452fbSAndroid Build Coastguard Worker }
54*c33452fbSAndroid Build Coastguard Worker 
childrenAreDynamic() const55*c33452fbSAndroid Build Coastguard Worker bool CComponentInstance::childrenAreDynamic() const
56*c33452fbSAndroid Build Coastguard Worker {
57*c33452fbSAndroid Build Coastguard Worker     return true;
58*c33452fbSAndroid Build Coastguard Worker }
59*c33452fbSAndroid Build Coastguard Worker 
getMappingData(const std::string & strKey,const std::string * & pStrValue) const60*c33452fbSAndroid Build Coastguard Worker bool CComponentInstance::getMappingData(const std::string &strKey,
61*c33452fbSAndroid Build Coastguard Worker                                         const std::string *&pStrValue) const
62*c33452fbSAndroid Build Coastguard Worker {
63*c33452fbSAndroid Build Coastguard Worker     // Try myself first then associated component type
64*c33452fbSAndroid Build Coastguard Worker     return base::getMappingData(strKey, pStrValue) ||
65*c33452fbSAndroid Build Coastguard Worker            (_pComponentType && _pComponentType->getMappingData(strKey, pStrValue));
66*c33452fbSAndroid Build Coastguard Worker }
67*c33452fbSAndroid Build Coastguard Worker 
hasMappingData() const68*c33452fbSAndroid Build Coastguard Worker bool CComponentInstance::hasMappingData() const
69*c33452fbSAndroid Build Coastguard Worker {
70*c33452fbSAndroid Build Coastguard Worker     // Try myself first then extended component type
71*c33452fbSAndroid Build Coastguard Worker     return base::hasMappingData() || (_pComponentType && _pComponentType->hasMappingData());
72*c33452fbSAndroid Build Coastguard Worker }
73*c33452fbSAndroid Build Coastguard Worker 
getFormattedMapping() const74*c33452fbSAndroid Build Coastguard Worker std::string CComponentInstance::getFormattedMapping() const
75*c33452fbSAndroid Build Coastguard Worker {
76*c33452fbSAndroid Build Coastguard Worker     return base::getFormattedMapping(_pComponentType);
77*c33452fbSAndroid Build Coastguard Worker }
78*c33452fbSAndroid Build Coastguard Worker 
fromXml(const CXmlElement & xmlElement,CXmlSerializingContext & serializingContext)79*c33452fbSAndroid Build Coastguard Worker bool CComponentInstance::fromXml(const CXmlElement &xmlElement,
80*c33452fbSAndroid Build Coastguard Worker                                  CXmlSerializingContext &serializingContext)
81*c33452fbSAndroid Build Coastguard Worker {
82*c33452fbSAndroid Build Coastguard Worker     // Context
83*c33452fbSAndroid Build Coastguard Worker     CXmlParameterSerializingContext &parameterBuildContext =
84*c33452fbSAndroid Build Coastguard Worker         static_cast<CXmlParameterSerializingContext &>(serializingContext);
85*c33452fbSAndroid Build Coastguard Worker 
86*c33452fbSAndroid Build Coastguard Worker     const CComponentLibrary *pComponentLibrary = parameterBuildContext.getComponentLibrary();
87*c33452fbSAndroid Build Coastguard Worker 
88*c33452fbSAndroid Build Coastguard Worker     std::string strComponentType;
89*c33452fbSAndroid Build Coastguard Worker     xmlElement.getAttribute("Type", strComponentType);
90*c33452fbSAndroid Build Coastguard Worker 
91*c33452fbSAndroid Build Coastguard Worker     _pComponentType = pComponentLibrary->getComponentType(strComponentType);
92*c33452fbSAndroid Build Coastguard Worker 
93*c33452fbSAndroid Build Coastguard Worker     if (!_pComponentType) {
94*c33452fbSAndroid Build Coastguard Worker 
95*c33452fbSAndroid Build Coastguard Worker         serializingContext.setError("Unable to create Component " + xmlElement.getPath() +
96*c33452fbSAndroid Build Coastguard Worker                                     ". ComponentType " + strComponentType + " not found!");
97*c33452fbSAndroid Build Coastguard Worker 
98*c33452fbSAndroid Build Coastguard Worker         return false;
99*c33452fbSAndroid Build Coastguard Worker     }
100*c33452fbSAndroid Build Coastguard Worker     if (_pComponentType == getParent()) {
101*c33452fbSAndroid Build Coastguard Worker 
102*c33452fbSAndroid Build Coastguard Worker         serializingContext.setError("Recursive definition of " + _pComponentType->getName() +
103*c33452fbSAndroid Build Coastguard Worker                                     " due to " + xmlElement.getPath() +
104*c33452fbSAndroid Build Coastguard Worker                                     " referring to one of its own type.");
105*c33452fbSAndroid Build Coastguard Worker 
106*c33452fbSAndroid Build Coastguard Worker         return false;
107*c33452fbSAndroid Build Coastguard Worker     }
108*c33452fbSAndroid Build Coastguard Worker 
109*c33452fbSAndroid Build Coastguard Worker     return base::fromXml(xmlElement, serializingContext);
110*c33452fbSAndroid Build Coastguard Worker }
111*c33452fbSAndroid Build Coastguard Worker 
doInstantiate() const112*c33452fbSAndroid Build Coastguard Worker CInstanceConfigurableElement *CComponentInstance::doInstantiate() const
113*c33452fbSAndroid Build Coastguard Worker {
114*c33452fbSAndroid Build Coastguard Worker     if (isScalar()) {
115*c33452fbSAndroid Build Coastguard Worker         return new CComponent(getName(), this);
116*c33452fbSAndroid Build Coastguard Worker     } else {
117*c33452fbSAndroid Build Coastguard Worker         return new CParameterBlock(getName(), this);
118*c33452fbSAndroid Build Coastguard Worker     }
119*c33452fbSAndroid Build Coastguard Worker }
120*c33452fbSAndroid Build Coastguard Worker 
populate(CElement * pElement) const121*c33452fbSAndroid Build Coastguard Worker void CComponentInstance::populate(CElement *pElement) const
122*c33452fbSAndroid Build Coastguard Worker {
123*c33452fbSAndroid Build Coastguard Worker     size_t arrayLength = getArrayLength();
124*c33452fbSAndroid Build Coastguard Worker 
125*c33452fbSAndroid Build Coastguard Worker     if (arrayLength != 0) {
126*c33452fbSAndroid Build Coastguard Worker 
127*c33452fbSAndroid Build Coastguard Worker         // Create child elements
128*c33452fbSAndroid Build Coastguard Worker         for (size_t child = 0; child < arrayLength; child++) {
129*c33452fbSAndroid Build Coastguard Worker 
130*c33452fbSAndroid Build Coastguard Worker             CComponent *pChildComponent = new CComponent(std::to_string(child), this);
131*c33452fbSAndroid Build Coastguard Worker 
132*c33452fbSAndroid Build Coastguard Worker             pElement->addChild(pChildComponent);
133*c33452fbSAndroid Build Coastguard Worker 
134*c33452fbSAndroid Build Coastguard Worker             base::populate(pChildComponent);
135*c33452fbSAndroid Build Coastguard Worker 
136*c33452fbSAndroid Build Coastguard Worker             _pComponentType->populate(pChildComponent);
137*c33452fbSAndroid Build Coastguard Worker         }
138*c33452fbSAndroid Build Coastguard Worker     } else {
139*c33452fbSAndroid Build Coastguard Worker         base::populate(pElement);
140*c33452fbSAndroid Build Coastguard Worker 
141*c33452fbSAndroid Build Coastguard Worker         _pComponentType->populate(static_cast<CComponent *>(pElement));
142*c33452fbSAndroid Build Coastguard Worker     }
143*c33452fbSAndroid Build Coastguard Worker }
144