Rename the class Json to avoid symbol conflicts with Jsoncpp
[platform/core/context/context-provider.git] / src / custom / CustomManager.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_CUSTOM_MANAGER_H_
18 #define _CONTEXT_CUSTOM_MANAGER_H_
19
20 #include <CustomRegister.h>
21 #include <BasicProvider.h>
22 #include <ProviderTypes.h>
23
24 namespace ctx {
25
26         class CustomManager : public BasicProvider, CustomRegister {
27         public:
28                 CustomManager();
29                 ~CustomManager();
30
31                 int subscribe();
32                 int unsubscribe();
33                 int write(CtxJson1 data, CtxJson1 *requestResult);
34
35                 bool isSupported();
36
37                 bool unloadable();
38
39                 ContextProvider* getProvider(const char* subject);
40
41         private:
42                 bool __initialize();
43                 int __addCustomItem(std::string subject, std::string name, ctx::CtxJson1 tmpl, std::string owner, bool isInit = false);
44                 int __removeCustomItem(std::string subject);
45                 int __publishData(std::string, ctx::CtxJson1 fact);
46         };
47 }
48
49 #endif  /* End of _CONTEXT_CUSTOM_MANAGER_H_ */