6b92fd9db78e3d6753cc99326829849ce7c83df4
[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   os << "Attribute \"" << attr.first << "\": " << attr.second << "; ";
38
39  return os;
40 }
41
42 /* A static observation counter: */
43 int observe_count();
44
45 /* Helpers for measuring request times: */
46 typedef std::pair< 
47                     std::chrono::time_point<std::chrono::high_resolution_clock>, 
48                     std::chrono::time_point<std::chrono::high_resolution_clock> 
49                  > clock_interval;
50
51 struct call_times
52 {
53  public:
54  bool display_reports;
55
56  public:
57  std::map<std::string, clock_interval> timings;
58
59  public:
60  call_times()
61   : display_reports(true)
62  {}
63
64  call_times(const bool& display_reports_)
65   : display_reports(display_reports_)
66  {}
67  
68  public:
69  void reset(const std::string& entry);
70  void mark(const std::string& name);
71
72  void report();
73  void report_and_reset(const std::string& name);
74 };
75
76 extern call_times call_timer; 
77  
78 }} // namespace Intel::OCDemo
79
80 #endif