summaryrefslogtreecommitdiff
path: root/src/components/config_profile
diff options
context:
space:
mode:
authorAGaliuzov <AGaliuzov@luxoft.com>2015-08-28 16:30:49 +0300
committerAGaliuzov <AGaliuzov@luxoft.com>2015-08-28 16:30:49 +0300
commitb7e893fd66e79499f698c49c7046b88039d26f18 (patch)
tree9d8eca37959d0bd7113dabeddb8b031fe43f2bde /src/components/config_profile
parent89fc902bf3d3832fbf55a4aa97cbbb7adb4d31b5 (diff)
parentb156007e0b0f75a5a9a39255e3b1340e0404e6a8 (diff)
downloadsdl_core-b7e893fd66e79499f698c49c7046b88039d26f18.tar.gz
Merge pull request #193 from LuxoftSDL/IniFileUpdate
Update INI files according to PASA and Genevi requirements
Diffstat (limited to 'src/components/config_profile')
-rw-r--r--src/components/config_profile/include/config_profile/profile.h2
-rw-r--r--src/components/config_profile/src/profile.cc14
2 files changed, 0 insertions, 16 deletions
diff --git a/src/components/config_profile/include/config_profile/profile.h b/src/components/config_profile/include/config_profile/profile.h
index 90cdaf0387..9825390c9c 100644
--- a/src/components/config_profile/include/config_profile/profile.h
+++ b/src/components/config_profile/include/config_profile/profile.h
@@ -452,8 +452,6 @@ class Profile : public utils::Singleton<Profile> {
*/
const std::string& recording_file_name() const;
- const std::string& mme_db_name() const;
-
const std::string& event_mq_name() const;
const std::string& ack_mq_name() const;
diff --git a/src/components/config_profile/src/profile.cc b/src/components/config_profile/src/profile.cc
index 3e660a1acc..767e6cbf13 100644
--- a/src/components/config_profile/src/profile.cc
+++ b/src/components/config_profile/src/profile.cc
@@ -143,7 +143,6 @@ const char* kTTSDelimiterKey = "TTSDelimiter";
const char* kRecordingFileNameKey = "RecordingFileName";
const char* kRecordingFileSourceKey = "RecordingFileSource";
const char* kEnablePolicy = "EnablePolicy";
-const char* kMmeDatabaseNameKey = "MMEDatabase";
const char* kEventMQKey = "EventMQ";
const char* kAckMQKey = "AckMQ";
const char* kApplicationListUpdateTimeoutKey = "ApplicationListUpdateTimeout";
@@ -181,7 +180,6 @@ const char* kDefaultSystemFilesPath = "/tmp/fs/mp/images/ivsu_cache";
const char* kDefaultTtsDelimiter = ",";
const uint32_t kDefaultAudioDataStoppedTimeout = 1000;
const uint32_t kDefaultVideoDataStoppedTimeout = 1000;
-const char* kDefaultMmeDatabaseName = "/dev/qdb/mediaservice_db";
const char* kDefaultEventMQ = "/dev/mqueue/ToSDLCoreUSBAdapter";
const char* kDefaultAckMQ = "/dev/mqueue/FromSDLCoreUSBAdapter";
const char* kDefaultRecordingFileSourceName = "audio.8bit.wav";
@@ -298,7 +296,6 @@ Profile::Profile()
tts_delimiter_(kDefaultTtsDelimiter),
audio_data_stopped_timeout_(kDefaultAudioDataStoppedTimeout),
video_data_stopped_timeout_(kDefaultVideoDataStoppedTimeout),
- mme_db_name_(kDefaultMmeDatabaseName),
event_mq_name_(kDefaultEventMQ),
ack_mq_name_(kDefaultAckMQ),
recording_file_source_(kDefaultRecordingFileSourceName),
@@ -569,10 +566,6 @@ const std::string&Profile::recording_file_name() const {
return recording_file_name_;
}
-const std::string& Profile::mme_db_name() const {
- return mme_db_name_;
-}
-
const std::string& Profile::event_mq_name() const {
return event_mq_name_;
}
@@ -1253,13 +1246,6 @@ void Profile::UpdateValues() {
LOG_UPDATED_VALUE(transport_manager_tcp_adapter_port_, kTCPAdapterPortKey,
kTransportManagerSection);
- // MME database name
- ReadStringValue(&mme_db_name_,
- kDefaultMmeDatabaseName,
- kTransportManagerSection,
- kMmeDatabaseNameKey);
-
- LOG_UPDATED_VALUE(mme_db_name_, kMmeDatabaseNameKey, kTransportManagerSection);
// Event MQ
ReadStringValue(&event_mq_name_,
kDefaultEventMQ,