3ed19d37b88198a7b2b0e20949f623408c04e495
[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 <DatabaseManager.h>
27 #include "../visit-detector/VisitDetector.h"
28 #include "../place/PlacesDetector.h"
29 #include "UserPlacesTypes.h"
30
31 namespace ctx {
32
33         class UserPlaces : public ITimerListener {
34
35         private:
36                 VisitDetector *__visitDetector;
37                 DatabaseManager *__dbManager;
38                 int __timerId;
39                 TimerManager __timerManager;
40                 std::vector<Json> __dbGetPlaces();
41                 std::map<std::string, std::string> __dbGetWifiAPsMap();
42                 std::shared_ptr<ctx::Place> __placeFromJson(Json &row, std::map<std::string,
43                                 std::string> &wifiAPsMap);
44                 void __placeCategoryFromJson(Json &row, ctx::Place &place);
45                 void __placeLocationFromJson(Json &row, ctx::Place &place);
46                 void __placeWifiAPsFromJson(Json &row, std::map<std::string,
47                                 std::string> &wifiAPsMap, ctx::Place &place);
48                 void __placeCreateDateFromJson(Json &row, ctx::Place &place);
49                 std::vector<std::shared_ptr<Place>> __placesFromJsons(
50                                 std::vector<Json>& records,
51                                 std::map<std::string, std::string> &wifiAPsMap);
52                 std::vector<std::shared_ptr<Place>> __getPlaces();
53                 static Json __composeJson(std::vector<std::shared_ptr<Place>> places);
54
55                 bool onTimerExpired(int timerId);
56
57         public:
58                 UserPlaces(PlaceRecogMode energyMode = PLACE_RECOG_HIGH_ACCURACY_MODE);
59                 ~UserPlaces();
60
61                 void setMode(PlaceRecogMode energyMode);
62                 ctx::Json getPlaces();
63
64         };      /* class UserPlaces */
65
66 }       /* namespace ctx */
67
68 #endif /* End of _CONTEXT_PLACE_RECOGNITION_USER_PLACES_H_ */