Update privilege string, PackageAppInfo for wgt
[platform/framework/native/appfw.git] / src / app / FApp_SqlDataControlImpl.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file        FApp_SqlDataControlImpl.h
20  * @brief       This is the header file for the %_SqlDataControlImpl class.
21  */
22
23 #ifndef _FAPP_INTERNAL_SQL_DATA_CONTROL_IMPL_H_
24 #define _FAPP_INTERNAL_SQL_DATA_CONTROL_IMPL_H_
25
26 #include <app_service.h>
27
28 #include <FBaseDataType.h>
29 #include <FBaseObject.h>
30 #include <FBaseString.h>
31 #include <FBaseRtEvent.h>
32
33 #include "FApp_AppManagerImpl.h"
34
35 namespace Tizen { namespace Base
36 {
37 namespace Collection
38 {
39 class IList;
40 class IMap;
41 }
42 }}
43
44 namespace Tizen { namespace App
45 {
46
47 class ISqlDataControlResponseListener;
48 class _AppArg;
49
50 class _SqlDataControlImpl
51         : public Tizen::Base::Object
52 {
53
54 public:
55         virtual ~_SqlDataControlImpl(void);
56
57         static _SqlDataControlImpl* GetInstance(SqlDataControl& dc);
58
59         static const _SqlDataControlImpl* GetInstance(const SqlDataControl& dc);
60
61         result Select(const Tizen::Base::String& dataId, const Tizen::Base::Collection::IList* pColumnList,
62                         const Tizen::Base::String* pWhere, const Tizen::Base::String *pOrder, RequestId& reqId,
63                         int pageNo = 1, int countPerPage = 20);
64
65         result Insert(const Tizen::Base::String& dataId, const Tizen::Base::Collection::IMap& insertMap, RequestId& reqId);
66
67         result Update(const Tizen::Base::String& dataId, const Tizen::Base::Collection::IMap& updateMap,
68                         const Tizen::Base::String* pWhere, RequestId& reqId);
69
70         result Delete(const Tizen::Base::String& dataId, const Tizen::Base::String* pWhere, RequestId& reqId);
71
72         result SetSqlDataControlResponseListener(ISqlDataControlResponseListener* pListener);
73
74         static result SqlDataControlCallback(void* data, _AppArg* pArg, _AppArg* pResArg, service_result_e res, int prop);
75
76 private:
77         _SqlDataControlImpl(void);
78
79         static SqlDataControl* CreateSqlDataControl(const Tizen::Base::String& appId, const Tizen::Base::String& providerId,
80             const Tizen::Base::String& access);
81
82         result StartSqlDataControl(int type, const Tizen::Base::Collection::IList* pDataList, int* pReq);
83
84 private:
85         Tizen::Base::String __appId;
86         Tizen::Base::String __providerId;
87         int __access;
88         ISqlDataControlResponseListener* __pPreviousListener;
89         Tizen::Base::Runtime::Event* __pSqlDataControlEvent;
90
91         friend class SqlDataControl;
92         friend class _AppManagerImpl;
93         friend class _AppArg;
94
95 }; // _SqlDataControlImpl
96
97 }} // Tizen::App
98
99 #endif // _FAPP_INTERNAL_SQL_DATA_CONTROL_IMPL_H_
100