iotivity 0.9.0
[platform/upstream/iotivity.git] / examples / OICMiddle / Client.h
1 #ifndef CLIENT_H
2 #define CLIENT_H
3
4 //******************************************************************
5 //
6 // Copyright 2014 Intel Corporation.
7 //
8 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
9 //
10 // Licensed under the Apache License, Version 2.0 (the "License");
11 // you may not use this file except in compliance with the License.
12 // You may obtain a copy of the License at
13 //
14 //      http://www.apache.org/licenses/LICENSE-2.0
15 //
16 // Unless required by applicable law or agreed to in writing, software
17 // distributed under the License is distributed on an "AS IS" BASIS,
18 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 // See the License for the specific language governing permissions and
20 // limitations under the License.
21 //
22 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
23
24 #include <mutex>
25
26 #include "OICMiddle.h"
27
28 typedef map<string, WrapResource *> resourcemap_t;
29 typedef pair<string, WrapResource *> resourcemappair_t;
30
31 class MiddleClient
32 {
33 public:
34     MiddleClient();
35
36     bool init();
37     void findResources();
38
39     friend class LineInput;
40     friend class HueResource;
41     friend class HueResources;
42     friend class RestInput;
43
44 protected:
45     mutex m_mutexFoundCB;
46     map<string, WrapResource *> m_resourceMap;
47     HueResources *m_hueResources;
48     std::function<void(std::shared_ptr<OCResource> resource)> m_findCB;
49
50     void foundOCResource(shared_ptr<OCResource> resource);
51     string formatResourceID(std::shared_ptr<OCResource> resource);
52     void findHueResources();
53     void addResource(WrapResource *wres);
54 };
55
56
57 #endif // CLIENT_H
58