1 /* Copyright (C) 2013 BMW Group
2 * Author: Manfred Bathelt (manfred.bathelt@bmw.de)
3 * Author: Juergen Gehring (juergen.gehring@bmw.de)
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
9 #include "DBusAddressTranslator.h"
10 #include "DBusUtils.h"
12 #include <unordered_set>
24 DBUS_CONNECTION, DBUS_OBJECT, DBUS_INTERFACE
27 static const std::unordered_map<std::string, TypeEnum> allowedValueTypes = {
28 {"dbus_connection", TypeEnum::DBUS_CONNECTION},
29 {"dbus_object", TypeEnum::DBUS_OBJECT},
30 {"dbus_interface", TypeEnum::DBUS_INTERFACE}
34 inline void readValue(std::string& readLine, DBusServiceAddress& dbusServiceAddress) {
35 std::stringstream readStream(readLine);
37 std::string paramName;
38 std::string paramValue;
40 getline(readStream, paramName, '=');
42 auto typeEntry = allowedValueTypes.find(paramName);
43 if(typeEntry != allowedValueTypes.end()) {
44 getline(readStream, paramValue);
45 switch(typeEntry->second) {
46 case TypeEnum::DBUS_CONNECTION:
47 std::get<0>(dbusServiceAddress) = paramValue;
49 case TypeEnum::DBUS_OBJECT:
50 std::get<1>(dbusServiceAddress) = paramValue;
52 case TypeEnum::DBUS_INTERFACE:
53 std::get<2>(dbusServiceAddress) = paramValue;
60 inline void reset(DBusServiceAddress& dbusServiceAddress) {
61 std::get<0>(dbusServiceAddress) = "";
62 std::get<1>(dbusServiceAddress) = "";
63 std::get<2>(dbusServiceAddress) = "";
67 void DBusAddressTranslator::fillUndefinedValues(DBusServiceAddress& dbusServiceAddress, const std::string& commonApiAddress) const {
68 std::string connectionName;
69 std::string objectPath;
70 std::string interfaceName;
72 findFallbackDBusAddress(commonApiAddress, interfaceName, connectionName, objectPath);
74 std::get<0>(dbusServiceAddress) = std::get<0>(dbusServiceAddress) == "" ? connectionName : std::get<0>(dbusServiceAddress);
75 std::get<1>(dbusServiceAddress) = std::get<1>(dbusServiceAddress) == "" ? objectPath : std::get<1>(dbusServiceAddress);
76 std::get<2>(dbusServiceAddress) = std::get<2>(dbusServiceAddress) == "" ? interfaceName : std::get<2>(dbusServiceAddress);
80 DBusAddressTranslator::DBusAddressTranslator() {}
83 void DBusAddressTranslator::init() {
84 std::string fqnOfConfigFile = getCurrentBinaryFileFQN();
85 fqnOfConfigFile += DBUS_CONFIG_SUFFIX;
87 std::ifstream addressConfigFile;
88 addressConfigFile.open(fqnOfConfigFile.c_str());
90 if(addressConfigFile.is_open()) {
91 readConfigFile(addressConfigFile);
93 addressConfigFile.clear();
94 std::vector<std::string> splittedConfigFQN = split(fqnOfConfigFile, '/');
95 std::string globalConfigFQN = DBUS_GLOBAL_CONFIG_ROOT + splittedConfigFQN.at(splittedConfigFQN.size() - 1);
96 addressConfigFile.open(globalConfigFQN);
97 if(addressConfigFile.is_open()) {
98 readConfigFile(addressConfigFile);
104 void DBusAddressTranslator::readConfigFile(std::ifstream& addressConfigFile) {
105 std::string currentlyParsedCommonApiAddress;
106 DBusServiceAddress dbusServiceAddress;
107 reset(dbusServiceAddress);
109 bool currentAddressNotYetContained = false;
110 bool atLeastOneAddressFound = false;
112 while (addressConfigFile.good()) {
113 std::string readLine;
114 getline(addressConfigFile, readLine);
115 const size_t readLineLength = readLine.length();
117 if (readLine[0] == '[' && readLine[readLineLength - 1] == ']') {
118 if (atLeastOneAddressFound) {
119 fillUndefinedValues(dbusServiceAddress, currentlyParsedCommonApiAddress);
120 knownDBusAddresses.insert( {currentlyParsedCommonApiAddress, dbusServiceAddress});
121 knownCommonAddresses.insert( {dbusServiceAddress, currentlyParsedCommonApiAddress});
123 reset(dbusServiceAddress);
124 currentlyParsedCommonApiAddress = readLine.substr(1, readLineLength - 2);
125 currentAddressNotYetContained =
126 knownDBusAddresses.find(currentlyParsedCommonApiAddress) == knownDBusAddresses.end() &&
127 knownCommonAddresses.find(dbusServiceAddress) == knownCommonAddresses.end();
128 atLeastOneAddressFound = true;
130 } else if (currentAddressNotYetContained) {
131 readValue(readLine, dbusServiceAddress);
134 if(atLeastOneAddressFound) {
135 fillUndefinedValues(dbusServiceAddress, currentlyParsedCommonApiAddress);
136 knownDBusAddresses.insert( {currentlyParsedCommonApiAddress, dbusServiceAddress});
137 knownCommonAddresses.insert( {dbusServiceAddress, currentlyParsedCommonApiAddress});
140 addressConfigFile.close();
144 DBusAddressTranslator& DBusAddressTranslator::getInstance() {
145 static DBusAddressTranslator* dbusNameService_;
146 if(!dbusNameService_) {
147 dbusNameService_ = new DBusAddressTranslator();
148 dbusNameService_->init();
150 return *dbusNameService_;
154 void DBusAddressTranslator::searchForDBusAddress(const std::string& commonApiAddress,
155 std::string& interfaceName,
156 std::string& connectionName,
157 std::string& objectPath) {
159 const auto& foundAddressMapping = knownDBusAddresses.find(commonApiAddress);
161 if(foundAddressMapping != knownDBusAddresses.end()) {
162 connectionName = std::get<0>(foundAddressMapping->second);
163 objectPath = std::get<1>(foundAddressMapping->second);
164 interfaceName = std::get<2>(foundAddressMapping->second);
166 findFallbackDBusAddress(commonApiAddress, interfaceName, connectionName, objectPath);
167 knownDBusAddresses.insert( {commonApiAddress, std::make_tuple(connectionName, objectPath, interfaceName) } );
171 void DBusAddressTranslator::searchForCommonAddress(const std::string& interfaceName,
172 const std::string& connectionName,
173 const std::string& objectPath,
174 std::string& commonApiAddress) {
176 DBusServiceAddress dbusAddress(connectionName, objectPath, interfaceName);
178 const auto& foundAddressMapping = knownCommonAddresses.find(dbusAddress);
179 if (foundAddressMapping != knownCommonAddresses.end()) {
180 commonApiAddress = foundAddressMapping->second;
182 findFallbackCommonAddress(commonApiAddress, interfaceName, connectionName, objectPath);
183 knownCommonAddresses.insert( {std::move(dbusAddress), commonApiAddress} );
188 void DBusAddressTranslator::findFallbackDBusAddress(const std::string& commonApiAddress,
189 std::string& interfaceName,
190 std::string& connectionName,
191 std::string& objectPath) const {
192 std::vector<std::string> parts = split(commonApiAddress, ':');
193 interfaceName = parts[1];
194 connectionName = parts[2];
195 objectPath = '/' + parts[2];
196 std::replace(objectPath.begin(), objectPath.end(), '.', '/');
199 void DBusAddressTranslator::findFallbackCommonAddress(std::string& commonApiAddress,
200 const std::string& interfaceName,
201 const std::string& connectionName,
202 const std::string& objectPath) const {
203 commonApiAddress = "local:" + interfaceName + ":" + connectionName;
208 }// namespace CommonAPI