sync
[platform/framework/web/wrt-plugins-common.git] / src / plugins-installer / plugin_objects.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file    plugin_objects.h
18  * @author  Grzegorz Krawczyk (g.krawczyk@samgsung.com)
19  * @version
20  * @brief
21  */
22 #include <string>
23 #include <dpl/log/log.h>
24 #include "plugin_objects.h"
25 #include <IObject.h>
26
27 namespace {
28 const char* SEPARATOR = ".";
29 const std::string GLOBAL_OBJECT_NAME = WrtPluginsApi::IObject::WINDOW_OBJECT();
30 const std::string OLD_GLOBAL_OBJECT_NAME = "GLOBAL_OBJECT";
31
32 std::string normalizeName(const std::string& objectName)
33 {
34     if (objectName.empty()) {
35         LogError("Normalize name, name size is 0");
36         return objectName;
37     }
38
39     if (!objectName.compare(0, GLOBAL_OBJECT_NAME.size(),
40                             GLOBAL_OBJECT_NAME)) {
41         return objectName;
42     }
43     if (!objectName.compare(0, OLD_GLOBAL_OBJECT_NAME.size(),
44         OLD_GLOBAL_OBJECT_NAME))
45     {
46         return GLOBAL_OBJECT_NAME;
47     }
48
49     //each object in storage has name started from $GLOBAL_OBJECT_NAME$
50     return GLOBAL_OBJECT_NAME + std::string(SEPARATOR) + objectName;
51 }
52
53 std::string normalizeName(const std::string& objectName,
54         const std::string& parentName)
55 {
56     if (objectName.empty() || parentName.empty()) {
57         LogError("Normalize name, name size or parent name size is 0");
58         return std::string();
59     }
60
61     std::string normalizedName;
62     normalizedName = normalizeName(parentName) +
63         std::string(SEPARATOR) + objectName;
64
65     return normalizedName;
66 }
67 }
68
69 PluginObjects::PluginObjects()
70 {
71     m_implemented = ObjectsPtr(new Objects());
72     m_dependent = ObjectsPtr(new Objects());
73 }
74
75 PluginObjects::ObjectsPtr PluginObjects::getImplementedObject() const
76 {
77     return m_implemented;
78 }
79
80 PluginObjects::ObjectsPtr PluginObjects::getDependentObjects() const
81 {
82     return m_dependent;
83 }
84
85 void PluginObjects::addObjects(const std::string& parentName,
86         const std::string& name)
87 {
88     LogDebug("\n Parent: "  << parentName
89              << "\n Name: " << name
90             << "\n After: Implemented: "  << normalizeName(name, parentName)
91              << "\n After Dependent: " << normalizeName(parentName)
92              );
93
94     addImplementedObject(normalizeName(name, parentName));
95     addDependentObject(normalizeName(parentName));
96 }
97
98 void PluginObjects::addDependentObject(const std::string& value)
99 {
100     if (!value.compare(GLOBAL_OBJECT_NAME)) {
101         //dont add dependency to GLOBAL_OBJECT
102         return;
103     }
104     m_dependent->insert(value);
105 }
106
107 bool PluginObjects::hasObject(const std::string& name) const
108 {
109     return m_implemented->find(name) != m_implemented->end();
110 }
111
112 void PluginObjects::addImplementedObject(const std::string& value)
113 {
114     m_implemented->insert(value);
115 }