Update wrt-plugins-common_0.3.53
[framework/web/wrt-plugins-common.git] / src / modules / tizen / WidgetInterfaceDAO / WidgetInterfaceDAO.h
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  * @author      Lukasz Marek (l.marek@samsung.com)
18  * @version     0.1
19  * @brief
20  */
21
22 #ifndef WRTDEVICEAPIS_COMMONS_WIDGET_INTERFACE_DAO_H_
23 #define WRTDEVICEAPIS_COMMONS_WIDGET_INTERFACE_DAO_H_
24
25 #include <string>
26 #include <dpl/db/thread_database_support.h>
27 #include <dpl/db/orm_interface.h>
28 #include <LocalStorage/ILocalStorage.h>
29
30 namespace WrtDeviceApis {
31
32 class WidgetInterfaceDAO :
33     public LocalStorage::Api::ILocalStorage
34 {
35   public:
36     WidgetInterfaceDAO(int widgetHandle);
37     virtual ~WidgetInterfaceDAO();
38
39     void setItem(const std::string& key,
40                  const std::string& value,
41                  bool readOnly,
42                  bool fromConfigXml);
43     void setItem(const std::string& key,
44                  const std::string& value,
45                  bool readOnly);
46     void removeItem(const std::string& key);
47     DPL::Optional<std::string> getValue(const std::string& key) const;
48     void clear(bool removeReadOnly);
49     size_t getStorageSize() const;
50     std::string getKeyByIndex(size_t index) const;
51
52   protected:
53     int m_widgetHandle;
54     mutable DPL::DB::ThreadDatabaseSupport m_databaseInterface;
55
56   private:
57     bool checkDatabase();
58     bool copyPropertiesFromWrtDatabase();
59     static std::string databaseFileName(int widgetHandle);
60 };
61
62 }
63
64 #endif //WRTDEVICEAPIS_COMMONS_WIDGET_INTERFACE_DAO_H_