merge with master
[platform/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 class WidgetInterfaceDAO :
32     public LocalStorage::Api::ILocalStorage
33 {
34   public:
35     WidgetInterfaceDAO(int widgetHandle);
36     virtual ~WidgetInterfaceDAO();
37
38     void setItem(const std::string& key,
39                  const std::string& value,
40                  bool readOnly,
41                  bool fromConfigXml);
42     void setItem(const std::string& key,
43                  const std::string& value,
44                  bool readOnly);
45     void removeItem(const std::string& key);
46     DPL::Optional<std::string> getValue(const std::string& key) const;
47     void clear(bool removeReadOnly);
48     size_t getStorageSize() const;
49     std::string getKeyByIndex(size_t index) const;
50
51   protected:
52     int m_widgetHandle;
53     mutable DPL::DB::ThreadDatabaseSupport m_databaseInterface;
54
55   private:
56     bool checkDatabase();
57     bool copyPropertiesFromWrtDatabase();
58     static std::string databaseFileName(int widgetHandle);
59 };
60 }
61
62 #endif //WRTDEVICEAPIS_COMMONS_WIDGET_INTERFACE_DAO_H_