Merge "add cleanup for osp-appfw unload" into tizen_2.2
[platform/framework/native/appfw.git] / src / app / FApp_SqlDataControlImpl.h
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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 /**
18  * @file        FApp_SqlDataControlImpl.h
19  * @brief       This is the header file for the %_SqlDataControlImpl class.
20  */
21
22 #ifndef _FAPP_INTERNAL_SQL_DATA_CONTROL_IMPL_H_
23 #define _FAPP_INTERNAL_SQL_DATA_CONTROL_IMPL_H_
24
25 #include <app_service.h>
26
27 #include <FBaseDataType.h>
28 #include <FBaseObject.h>
29 #include <FBaseString.h>
30 #include <FBaseRtEvent.h>
31
32 #include "FApp_AppManagerImpl.h"
33
34 namespace Tizen { namespace Base
35 {
36 namespace Collection
37 {
38 class LinkedList;
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, int option);
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         Tizen::Base::Collection::LinkedList* __pRequestList;
91
92         friend class SqlDataControl;
93         friend class _AppManagerImpl;
94         friend class _AppArg;
95
96 }; // _SqlDataControlImpl
97
98 }} // Tizen::App
99
100 #endif // _FAPP_INTERNAL_SQL_DATA_CONTROL_IMPL_H_
101