3c8b6286e1fb9865908591385744c0d033e1b524
[platform/upstream/iotivity.git] / examples / ocicuc / utility.hpp
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Corporation 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 #ifndef __OC_OCDEMO_UTILITY_H
22  #define __OC_OCDEMO_UTILITY_H
23
24 #include <map>
25 #include <tuple>
26 #include <chrono>
27 #include <ostream>
28
29 #include "OCApi.h"
30
31 namespace Intel { namespace OCDemo {
32
33 // Prettyprinter for AttributeMaps:
34 inline std::ostream& operator<<(std::ostream& os, const OC::AttributeMap& attrs)
35 {
36  for(const auto& attr : attrs)
37   {
38         os << "Attribute \"" << attr.first << "\": ";
39
40         for(const auto& val : attr.second)
41          os << val << "; ";
42   }
43
44  return os;
45 }
46
47 /* A static observation counter: */
48 int observe_count();
49
50 /* Helpers for measuring request times: */
51 typedef std::pair< 
52                     std::chrono::time_point<std::chrono::high_resolution_clock>, 
53                     std::chrono::time_point<std::chrono::high_resolution_clock> 
54                  > clock_interval;
55
56 struct call_times
57 {
58  public:
59  bool display_reports;
60
61  public:
62  std::map<std::string, clock_interval> timings;
63
64  public:
65  call_times()
66   : display_reports(true)
67  {}
68
69  call_times(const bool& display_reports_)
70   : display_reports(display_reports_)
71  {}
72  
73  public:
74  void reset(const std::string& entry);
75  void mark(const std::string& name);
76
77  void report();
78  void report_and_reset(const std::string& name);
79 };
80
81 extern call_times call_timer; 
82  
83 }} // namespace Intel::OCDemo
84
85 #endif