sensor: update app uninstall event dbus signal
[platform/core/context/context-provider.git] / src / app-stats / DbInit.h
1 /*
2  * Copyright (c) 2015 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 #ifndef _CONTEXT_STATS_APP_DB_INITIALIZER_H_
18 #define _CONTEXT_STATS_APP_DB_INITIALIZER_H_
19
20 #include <package_manager.h>
21 #include <DatabaseManager.h>
22
23 namespace ctx {
24
25         class AppDbInitializer : public IDatabaseListener {
26         private:
27                 void __createTable();
28                 void __checkAppList();
29                 void __duplicateAppList();
30
31                 void onTableCreated(unsigned int queryId, int error);
32                 void onInserted(unsigned int queryId, int error, int64_t rowId);
33                 void onExecuted(unsigned int queryId, int error, std::vector<Json>& records);
34
35                 static bool __packageInfoCb(package_info_h packageInfo, void *userData);
36                 static bool __appInfoCb(package_info_app_component_type_e compType, const char *appId, void *userData);
37
38                 DatabaseManager __dbManager;
39
40         public:
41                 AppDbInitializer();
42                 ~AppDbInitializer();
43         };
44
45 }       /* namespace ctx */
46
47 #endif  /* End of _CONTEXT_STATS_APP_DB_INITIALIZER_H_ */