Imported Upstream version 1.1.0
[platform/upstream/iotivity.git] / resource / include / OCRepresentation.h
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 /**
22  * @file
23  *
24  * This file contains the declaration of classes and its members related
25  * to OCRepresentation.
26  */
27
28 #ifndef OC_REPRESENTATION_H_
29 #define OC_REPRESENTATION_H_
30
31
32 #include <string>
33 #include <sstream>
34 #include <vector>
35 #include <map>
36
37 #include <AttributeValue.h>
38 #include <StringConstants.h>
39
40 #ifdef __ANDROID__
41 #include "OCAndroid.h"
42 #endif
43
44 #include <OCException.h>
45
46 namespace OC
47 {
48
49     enum class InterfaceType
50     {
51         None,
52         LinkParent,
53         BatchParent,
54         DefaultParent,
55         LinkChild,
56         BatchChild,
57         DefaultChild
58     };
59
60     class MessageContainer
61     {
62         public:
63             void setPayload(const OCPayload* rep);
64
65             void setPayload(const OCDevicePayload* rep);
66
67             void setPayload(const OCPlatformPayload* rep);
68
69             void setPayload(const OCRepPayload* rep);
70
71             OCRepPayload* getPayload() const;
72
73             const std::vector<OCRepresentation>& representations() const;
74
75             void addRepresentation(const OCRepresentation& rep);
76
77             const OCRepresentation& operator[](int index) const
78             {
79                 return m_reps[index];
80             }
81
82             const OCRepresentation& back() const
83             {
84                 return m_reps.back();
85             }
86         private:
87             std::vector<OCRepresentation> m_reps;
88     };
89     class OCRepresentation
90     {
91         public:
92             friend bool operator==(const OC::OCRepresentation&, const OC::OCRepresentation&);
93             // Note: Implementation of all constructors and destructors
94             // are all placed in the same location due to a crash that
95             // was observed in Android, where merely constructing/destructing
96             // an OCRepresentation object was enough to cause an invalid 'free'.
97             // It is believed that this is a result of incompatible compiler
98             // options between the gradle JNI and armeabi scons build, however
99             // this fix will work in the meantime.
100             OCRepresentation(): m_interfaceType(InterfaceType::None){}
101
102             OCRepresentation(OCRepresentation&&) = default;
103
104             OCRepresentation(const OCRepresentation&) = default;
105
106             OCRepresentation& operator=(const OCRepresentation&) = default;
107
108             OCRepresentation& operator=(OCRepresentation&&) = default;
109
110             virtual ~OCRepresentation(){}
111
112             void setDevAddr(const OCDevAddr addr);
113
114             const std::string getHost() const;
115
116             OCRepPayload* getPayload() const;
117
118             void addChild(const OCRepresentation&);
119
120             void clearChildren();
121
122             const std::vector<OCRepresentation>& getChildren() const;
123
124             void setChildren(const std::vector<OCRepresentation>& children);
125
126             void setUri(const char* uri);
127
128             void setUri(const std::string& uri);
129
130             std::string getUri() const;
131
132             const std::vector<std::string>& getResourceTypes() const;
133
134             void setResourceTypes(const std::vector<std::string>& resourceTypes);
135
136             void addResourceType(const std::string& str);
137
138             const std::vector<std::string>& getResourceInterfaces() const;
139
140             void setResourceInterfaces(const std::vector<std::string>& resourceInterfaces);
141
142             void addResourceInterface(const std::string& str);
143
144             bool emptyData() const;
145
146             int numberOfAttributes() const;
147
148             bool erase(const std::string& str);
149
150             template <typename T>
151             void setValue(const std::string& str, const T& val)
152             {
153                 m_values[str] = val;
154             }
155
156             /**
157              *  Retrieve the attribute value associated with the supplied name
158              *
159              *  @param str Name of the attribute
160              *  @param val Value of the attribute
161              *  @return The getValue method returns true if the attribute was
162              *        found in the representation.  Otherwise it returns false.
163              */
164             template <typename T>
165             bool getValue(const std::string& str, T& val) const
166             {
167                 auto x = m_values.find(str);
168
169                 if(x!= m_values.end())
170                 {
171                     try
172                     {
173                         val = boost::get<T>(x->second);
174                         return true;
175                     }
176                     catch (boost::bad_get& e)
177                     {
178                         val = T();
179                         return false;
180                     }
181                 }
182                 else
183                 {
184                     val = T();
185                     return false;
186                 }
187             }
188
189             /**
190              *  Return the attribute value associated with the supplied name
191              *
192              *  @param str Name of the attribute
193              *  @return When the representation contains the attribute, the
194              *       the associated value is returned.  Otherwise, getValue
195              *       returns the default contructed value for the type.
196              */
197             template <typename T>
198             T getValue(const std::string& str) const
199             {
200                 T val = T();
201                 auto x = m_values.find(str);
202                 if(x != m_values.end())
203                 {
204                     try
205                     {
206                         val = boost::get<T>(x->second);
207                     }
208                     catch (boost::bad_get& e)
209                     {
210                         return val;
211                     }
212                 }
213                 return val;
214             }
215
216            /**
217             *  Retrieve the attributevalue structure associated with the supplied name
218             *
219             *  @param str Name of the attribute
220             *  @param attrValue Attribute Value structure
221             *  @return The getAttributeValue method returns true if the attribute was
222             *        found in the representation.  Otherwise it returns false.
223             */
224             bool getAttributeValue(const std::string& str, AttributeValue& attrValue) const
225             {
226                 auto x = m_values.find(str);
227
228                 if (x != m_values.end())
229                 {
230                     attrValue = x->second;
231                     return true;
232                 }
233                 else
234                 {
235                     return false;
236                 }
237             }
238
239             std::string getValueToString(const std::string& key) const;
240             bool hasAttribute(const std::string& str) const;
241
242             void setNULL(const std::string& str);
243
244             bool isNULL(const std::string& str) const;
245
246         private:
247             std::string m_host;
248
249             // STL Container stuff
250         public:
251             class iterator;
252             class const_iterator;
253             // Shim class to allow iterating and indexing of the OCRepresentation
254             // object.
255             class AttributeItem
256             {
257                 friend class OCRepresentation;
258                 friend class iterator;
259                 friend class const_iterator;
260                 public:
261                     const std::string& attrname() const;
262                     AttributeType type() const;
263                     AttributeType base_type() const;
264                     size_t depth() const;
265                     template<typename T>
266                     T getValue() const
267                     {
268                         try
269                         {
270                             return boost::get<T>(m_values[m_attrName]);
271                         }
272                         catch (boost::bad_get& e)
273                         {
274                             T val = T();
275                             return val;
276                         }
277                     }
278
279                     std::string getValueToString() const;
280
281                     template<typename T>
282                     AttributeItem& operator=(T&& rhs)
283                     {
284                         m_values[m_attrName] = std::forward<T>(rhs);
285                         return *this;
286                     }
287
288                     AttributeItem& operator=(std::nullptr_t /*rhs*/)
289                     {
290                         NullType t;
291                         m_values[m_attrName] = t;
292                         return *this;
293                     }
294
295                     // Enable-if required to prevent conversions to alternate types.  This prevents
296                     // ambigious conversions in the case where conversions can include a number of
297                     // types, such as the string constructor.
298                     template<typename T, typename std::enable_if<
299                         is_component<T,
300                             remove_first<AttributeValue>::type
301                             >::value
302                         , int>::type = 0
303                     >
304                     operator T() const
305                     {
306                         return this->getValue<T>();
307                     }
308
309                     template<typename T, typename std::enable_if<
310                         std::is_same<T, std::nullptr_t>::value
311                         , int>::type = 0
312                     >
313                     operator T() const
314                     {
315                         this->getValue<NullType>();
316                         return nullptr;
317                     }
318
319                 private:
320                     AttributeItem(const std::string& name,
321                             std::map<std::string, AttributeValue>& vals);
322                     AttributeItem(const AttributeItem&) = default;
323                     std::string m_attrName;
324                     std::map<std::string, AttributeValue>& m_values;
325             };
326
327             // Iterator to allow iteration via STL containers/methods
328             class iterator
329             {
330                 friend class OCRepresentation;
331                 public:
332                     typedef iterator self_type;
333                     typedef AttributeItem value_type;
334                     typedef value_type& reference;
335                     typedef value_type* pointer;
336                     typedef std::forward_iterator_tag iterator_category;
337                     typedef int difference_type;
338
339                     iterator(const iterator&) = default;
340                     ~iterator() = default;
341
342                     bool operator ==(const iterator&) const;
343                     bool operator !=(const iterator&) const;
344
345                     iterator& operator++();
346                     iterator operator++(int);
347
348                     reference operator*();
349                     pointer operator->();
350                 private:
351                     iterator(std::map<std::string, AttributeValue>::iterator&& itr,
352                             std::map<std::string, AttributeValue>& vals)
353                         : m_iterator(std::move(itr)),
354                         m_item(m_iterator != vals.end() ? m_iterator->first:"", vals){}
355                     std::map<std::string, AttributeValue>::iterator m_iterator;
356                     AttributeItem m_item;
357             };
358
359             class const_iterator
360             {
361                 friend class OCRepresentation;
362                 public:
363                     typedef iterator self_type;
364                     typedef const AttributeItem value_type;
365                     typedef value_type& const_reference;
366                     typedef value_type* const_pointer;
367                     typedef std::forward_iterator_tag iterator_category;
368                     typedef int difference_type;
369
370                     const_iterator(const iterator& rhs)
371                         :m_iterator(rhs.m_iterator), m_item(rhs.m_item){}
372                     const_iterator(const const_iterator&) = default;
373                     ~const_iterator() = default;
374
375                     bool operator ==(const const_iterator&) const;
376                     bool operator !=(const const_iterator&) const;
377
378                     const_iterator& operator++();
379                     const_iterator operator++(int);
380
381                     const_reference operator*() const;
382                     const_pointer operator->() const;
383                 private:
384                     const_iterator(std::map<std::string, AttributeValue>::const_iterator&& itr,
385                             std::map<std::string, AttributeValue>& vals)
386                         : m_iterator(std::move(itr)),
387                         m_item(m_iterator != vals.end() ? m_iterator->first: "", vals){}
388                     std::map<std::string, AttributeValue>::const_iterator m_iterator;
389                     AttributeItem m_item;
390             };
391
392             iterator begin();
393             const_iterator begin() const;
394             const_iterator cbegin() const;
395             iterator end();
396             const_iterator end() const;
397             const_iterator cend() const;
398             size_t size() const;
399             bool empty() const;
400
401             AttributeItem operator[](const std::string& key);
402             const AttributeItem operator[](const std::string& key) const;
403         private:
404             friend class OCResourceResponse;
405             friend class MessageContainer;
406
407             template<typename T>
408             void payload_array_helper(const OCRepPayloadValue* pl, size_t depth);
409             template<typename T>
410             T payload_array_helper_copy(size_t index, const OCRepPayloadValue* pl);
411             void setPayload(const OCRepPayload* payload);
412             void setPayloadArray(const OCRepPayloadValue* pl);
413             void getPayloadArray(OCRepPayload* payload,
414                     const OCRepresentation::AttributeItem& item) const;
415             // the root node has a slightly different JSON version
416             // based on the interface type configured in ResourceResponse.
417             // This allows ResourceResponse to set it, so that the save function
418             // doesn't serialize things that it isn't supposed to serialize.
419             void setInterfaceType(InterfaceType ift)
420             {
421                 m_interfaceType = ift;
422             }
423
424             // class used to wrap the 'prop' feature of the save/load
425             class Prop
426             {
427                 public:
428                     Prop(std::vector<std::string>& resourceTypes,
429                             std::vector<std::string>& interfaces)
430                     : m_types(resourceTypes), m_interfaces(interfaces)
431                     {}
432
433                  /*   Prop(const std::vector<std::string>& resourceTypes,
434                             const std::vector<std::string>& interfaces)
435                     :m_types(resourceTypes),
436                     m_interfaces(interfaces)
437                     {}*/
438                 private:
439                     std::vector<std::string>& m_types;
440                     std::vector<std::string>& m_interfaces;
441             };
442         private:
443             std::string m_uri;
444             std::vector<OCRepresentation> m_children;
445             mutable std::map<std::string, AttributeValue> m_values;
446             std::vector<std::string> m_resourceTypes;
447             std::vector<std::string> m_interfaces;
448
449             InterfaceType m_interfaceType;
450     };
451
452     std::ostream& operator <<(std::ostream& os, const OCRepresentation::AttributeItem& ai);
453 } // namespace OC
454
455
456 #endif // OC_REPRESENTATION_H_
457