Rename the class Json to avoid symbol conflicts with Jsoncpp
[platform/core/context/context-provider.git] / src / sensor / pressure / Pressure.cpp
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 #include <SensorRecorderTypes.h>
18 #include <Util.h>
19 #include "../TypesInternal.h"
20 #include "PressureLogger.h"
21 #include "PressureQuerier.h"
22 #include "Pressure.h"
23
24 using namespace ctx;
25
26 PressureProvider::PressureProvider() :
27         SensorProvider(SUBJ_SENSOR_PRESSURE)
28 {
29         IF_FAIL_VOID(isSupported());
30
31         sensorLogger = new(std::nothrow) PressureLogger();
32         IF_FAIL_VOID_TAG(sensorLogger, _E, "Memory allocation failed");
33 }
34
35 PressureProvider::~PressureProvider()
36 {
37 }
38
39 bool PressureProvider::isSupported()
40 {
41         return util::getSystemInfoBool("tizen.org/feature/sensor.barometer");
42 }
43
44 Querier* PressureProvider::getQuerier(CtxJson1 option)
45 {
46         PressureQuerier *querier = new(std::nothrow) PressureQuerier(this, option);
47         IF_FAIL_RETURN_TAG(querier, NULL, _E, "Memory allocation failed");
48         return querier;
49 }