summaryrefslogtreecommitdiffstats
path: root/parameter/FixedPointParameterType.cpp
diff options
context:
space:
mode:
authorGeorges-Henri Baron <georges-henrix.baron@intel.com>2012-06-28 12:05:09 +0200
committerDavid Wagner <david.wagner@intel.com>2014-02-12 17:03:13 +0100
commit326a31df0dd401283de6170ed09bcf605f61ef7d (patch)
tree8b41618325db75380a53df102e2f0e62451a3b2b /parameter/FixedPointParameterType.cpp
parentdc32d63f2ed740af1bfc0b3f8fd2337cba46d895 (diff)
downloadexternal_parameter-framework-326a31df0dd401283de6170ed09bcf605f61ef7d.zip
external_parameter-framework-326a31df0dd401283de6170ed09bcf605f61ef7d.tar.gz
external_parameter-framework-326a31df0dd401283de6170ed09bcf605f61ef7d.tar.bz2
PFW: Add two commands to print xml settings and structure
BZ: 44910 Creates two commands that can be called through the command line of the parameter-framework. First command getDomainXML returns a string containing the xml structure of the domains, configurations and settings. Second command getSystemClassXML returns a string containing the xml structure of all the instantiated parameter with their attributes. Change-Id: I9a35333802049a2177b8fc416754fdb67e6efff0 Signed-off-by: Georges-Henri Baron <georges-henrix.baron@intel.com> Reviewed-on: http://android.intel.com:8080/55155 Reviewed-by: Rocard, KevinX <kevinx.rocard@intel.com> Reviewed-by: Centelles, Sylvain <sylvain.centelles@intel.com> Tested-by: Mendi, EduardoX <eduardox.mendi@intel.com> Reviewed-by: buildbot <buildbot@intel.com> Tested-by: buildbot <buildbot@intel.com>
Diffstat (limited to 'parameter/FixedPointParameterType.cpp')
-rw-r--r--parameter/FixedPointParameterType.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/parameter/FixedPointParameterType.cpp b/parameter/FixedPointParameterType.cpp
index aa93ac2..3c9e20f 100644
--- a/parameter/FixedPointParameterType.cpp
+++ b/parameter/FixedPointParameterType.cpp
@@ -340,3 +340,18 @@ double CFixedPointParameterType::asDouble(int32_t iValue) const
// Convert
return (double)iValue / (1UL << _uiFractional);
}
+
+// From IXmlSource
+void CFixedPointParameterType::toXml(CXmlElement& xmlElement, CXmlSerializingContext& serializingContext) const
+{
+ // Size
+ xmlElement.setAttributeString("Size", toString(getSize() * 8));
+
+ // Integral
+ xmlElement.setAttributeString("Integral", toString(_uiIntegral));
+
+ // Fractional
+ xmlElement.setAttributeString("Fractional", toString(_uiFractional));
+
+ base::toXml(xmlElement, serializingContext);
+}