diff options
author | Frédéric Boisnard <fredericx.boisnard@intel.com> | 2013-02-25 15:56:56 +0100 |
---|---|---|
committer | David Wagner <david.wagner@intel.com> | 2014-02-12 17:03:48 +0100 |
commit | e42dacdeaf82d63000be61c6f1583a2ab08e0a98 (patch) | |
tree | ffbdab1836280ba3e9a979802949edb046f21c04 /parameter/ParameterMgr.h | |
parent | 6bc17c03f4b006a411b768fca33269843144542d (diff) | |
download | external_parameter-framework-e42dacdeaf82d63000be61c6f1583a2ab08e0a98.zip external_parameter-framework-e42dacdeaf82d63000be61c6f1583a2ab08e0a98.tar.gz external_parameter-framework-e42dacdeaf82d63000be61c6f1583a2ab08e0a98.tar.bz2 |
[PFW] Access Configurations directly
BZ: 88357
This patch aims to enable direct access to Configurations
without using the main blackboard. 2 additional commands are
available:
- getConfigurationParameter <domain> <configuration> <param path>:
Get value for parameter at given path from configuration.
- setConfigurationParameter <domain> <configuration> <param path> <value>
Set value for parameter at given path to configuration.
Change-Id: I9357ba5141feee558fa3f7c10f62db14406433b6
Signed-off-by: Frédéric Boisnard <fredericx.boisnard@intel.com>
Reviewed-on: http://android.intel.com:8080/92325
Reviewed-by: cactus <cactus@intel.com>
Reviewed-by: Gonzalve, Sebastien <sebastien.gonzalve@intel.com>
Tested-by: Dixon, CharlesX <charlesx.dixon@intel.com>
Reviewed-by: buildbot <buildbot@intel.com>
Tested-by: buildbot <buildbot@intel.com>
Diffstat (limited to 'parameter/ParameterMgr.h')
-rw-r--r-- | parameter/ParameterMgr.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/parameter/ParameterMgr.h b/parameter/ParameterMgr.h index 44f3d41..fa12128 100644 --- a/parameter/ParameterMgr.h +++ b/parameter/ParameterMgr.h @@ -49,6 +49,7 @@ class IRemoteProcessorServerInterface; class CBackSynchronizer; class CParameterHandle; class CSubsystemPlugins; +class CParameterAccessContext; class CParameterMgr : private CElement { @@ -135,7 +136,9 @@ public: bool sync(string& strError); // User set/get parameters - bool accessValue(const string& strPath, string& strValue, bool bSet, string& strError); + bool accessValue(CParameterAccessContext& parameterAccessContext, const string& strPath, string& strValue, bool bSet, string& strError); + bool accessParameterValue(const string& strPath, string& strValue, bool bSet, string& strError); + bool accessConfigurationValue(const string &strDomain, const string &stConfiguration, const string& strPath, string& strValue, bool bSet, string& strError); ////////// Configuration/Domains handling ////////////// // Creation/Deletion @@ -237,6 +240,8 @@ private: CCommandHandler::CommandStatus showPropertiesCommmandProcess(const IRemoteCommand& remoteCommand, string& strResult); CCommandHandler::CommandStatus getParameterCommmandProcess(const IRemoteCommand& remoteCommand, string& strResult); CCommandHandler::CommandStatus setParameterCommmandProcess(const IRemoteCommand& remoteCommand, string& strResult); + CCommandHandler::CommandStatus getConfigurationParameterCommmandProcess(const IRemoteCommand& remoteCommand, string& strResult); + CCommandHandler::CommandStatus setConfigurationParameterCommmandProcess(const IRemoteCommand& remoteCommand, string& strResult); CCommandHandler::CommandStatus listBelongingDomainsCommmandProcess(const IRemoteCommand& remoteCommand, string& strResult); CCommandHandler::CommandStatus listAssociatedDomainsCommmandProcess(const IRemoteCommand& remoteCommand, string& strResult); /// Browse |