Initialize Tizen 2.3
[framework/web/wrt-commons.git] / modules_wearable / widget_dao / include / dpl / wrt-dao-ro / property_dao_read_only.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  * property_dao_read_only.h
18  *
19  *  Created on: Nov 16, 2011
20  *      Author: Krzysztof Jackiewicz(k.jackiewicz@samsung.com)
21  */
22
23 #ifndef PROPERTY_DAO_READ_ONLY_H_
24 #define PROPERTY_DAO_READ_ONLY_H_
25
26 #include <list>
27 #include <dpl/string.h>
28 #include <dpl/exception.h>
29 #include <dpl/db/orm.h>
30 #include <dpl/wrt-dao-ro/common_dao_types.h>
31
32 namespace WrtDB {
33 namespace PropertyDAOReadOnly {
34 typedef DPL::String WidgetPropertyKey;
35 typedef DPL::OptionalString WidgetPropertyValue;
36
37 typedef std::list<WidgetPropertyKey> WidgetPropertyKeyList;
38
39 struct WidgetPreferenceRow {
40     int appId;
41     TizenAppId tizen_appid;
42     WidgetPropertyKey key_name;
43     WidgetPropertyValue key_value;
44     DPL::OptionalInt readonly;
45 };
46
47 typedef std::list<WidgetPreferenceRow> WidgetPreferenceList;
48
49 /**
50  * PropertyDAO Exception classes
51  */
52 class Exception
53 {
54   public:
55     DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
56     DECLARE_EXCEPTION_TYPE(Base, DatabaseError)
57     DECLARE_EXCEPTION_TYPE(Base, ReadOnlyProperty)
58 };
59
60 //deprecated
61 /* This method checks read only flag for given property
62  */
63 DPL::OptionalInt CheckPropertyReadFlag(DbWidgetHandle widgetHandle,
64                                        const WidgetPropertyKey &key)
65 __attribute__((deprecated));
66
67 /* This method checks read only flag for given property
68  */
69 DPL::OptionalInt CheckPropertyReadFlag(TizenAppId tzAppid,
70                                        const WidgetPropertyKey &key);
71
72 /* This method gets widget property key list
73  */
74 WidgetPropertyKeyList GetPropertyKeyList(TizenAppId tzAppid);
75
76 //deprecated
77 /* This method gets widget property list
78  */
79 WidgetPreferenceList GetPropertyList(DbWidgetHandle widgetHandle)
80 __attribute__((deprecated));
81
82 /* This method gets widget property list
83  */
84 WidgetPreferenceList GetPropertyList(TizenAppId tzAppid);
85
86 /* This method get widget property value
87  */
88 WidgetPropertyValue GetPropertyValue(TizenAppId tzAppid,
89                                      const WidgetPropertyKey &key);
90 } // PropertyDAOReadOnly
91 } // namespace WrtDB
92
93 #endif /* PROPERTY_DAO_READ_ONLY_H_ */