[my-place] Refactoring: Tizen C++ convention - File names chenge.
[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 <Json.h>
22 #include <TimerManager.h>
23 #include "../visit-detector/VisitDetector.h"
24 #include "../place/PlacesDetector.h"
25 #include "UserPlacesTypes.h"
26
27 namespace ctx {
28
29         class UserPlaces {
30
31         private:
32                 VisitDetector *__visitDetector;
33                 PlacesDetector *__placesDetector;
34                 int __placesDetectorTimerId;
35                 TimerManager __timerManager;
36                 std::vector<std::shared_ptr<Place>> __getPlaces();
37                 static Json __composeJson(std::vector<std::shared_ptr<Place>> places);
38
39         public:
40                 UserPlaces(PlaceRecogMode energyMode = PLACE_RECOG_HIGH_ACCURACY_MODE);
41                 ~UserPlaces();
42
43                 void setMode(PlaceRecogMode energyMode);
44                 ctx::Json getPlaces();
45
46         };      /* class UserPlaces */
47
48 }       /* namespace ctx */
49
50 #endif /* End of _CONTEXT_PLACE_RECOGNITION_USER_PLACES_H_ */