[my-place] DatabaseManager usage refactoring.
[platform/core/context/context-provider.git] / src / my-place / facade / UserPlaces.h
1 /*
2  * Copyright (c) 2016 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_PLACE_RECOGNITION_USER_PLACES_H_
18 #define _CONTEXT_PLACE_RECOGNITION_USER_PLACES_H_
19
20 #include <vector>
21 #include <map>
22 #include <string>
23 #include <Json.h>
24 #include <TimerManager.h>
25 #include <ITimerListener.h>
26 #include "../visit-detector/VisitDetector.h"
27 #include "../place/PlacesDetector.h"
28 #include "UserPlacesTypes.h"
29
30 namespace ctx {
31
32         class UserPlaces : public ITimerListener {
33
34         private:
35                 VisitDetector *__visitDetector;
36                 int __timerId;
37                 TimerManager __timerManager;
38                 std::vector<Json> __dbGetPlaces();
39                 std::map<std::string, std::string> __dbGetWifiAPsMap();
40                 std::shared_ptr<ctx::Place> __placeFromJson(Json &row, std::map<std::string,
41                                 std::string> &wifiAPsMap);
42                 void __placeCategoryFromJson(Json &row, ctx::Place &place);
43                 void __placeLocationFromJson(Json &row, ctx::Place &place);
44                 void __placeWifiAPsFromJson(Json &row, std::map<std::string,
45                                 std::string> &wifiAPsMap, ctx::Place &place);
46                 void __placeCreateDateFromJson(Json &row, ctx::Place &place);
47                 std::vector<std::shared_ptr<Place>> __placesFromJsons(
48                                 std::vector<Json>& records,
49                                 std::map<std::string, std::string> &wifiAPsMap);
50                 std::vector<std::shared_ptr<Place>> __getPlaces();
51                 static Json __composeJson(std::vector<std::shared_ptr<Place>> places);
52
53                 bool onTimerExpired(int timerId);
54
55         public:
56                 UserPlaces(PlaceRecogMode energyMode = PLACE_RECOG_HIGH_ACCURACY_MODE);
57                 ~UserPlaces();
58
59                 void setMode(PlaceRecogMode energyMode);
60                 ctx::Json getPlaces();
61
62         };      /* class UserPlaces */
63
64 }       /* namespace ctx */
65
66 #endif /* End of _CONTEXT_PLACE_RECOGNITION_USER_PLACES_H_ */