iotivity 0.9.0
[platform/upstream/iotivity.git] / resource / 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 /* A static observation counter: */
34 int observe_count();
35
36 /* Helpers for measuring request times: */
37 typedef std::pair<
38                     std::chrono::time_point<std::chrono::high_resolution_clock>,
39                     std::chrono::time_point<std::chrono::high_resolution_clock>
40                  > clock_interval;
41
42 struct call_times
43 {
44  public:
45  bool display_reports;
46
47  public:
48  std::map<std::string, clock_interval> timings;
49
50  public:
51  call_times()
52   : display_reports(true)
53  {}
54
55  call_times(const bool& display_reports_)
56   : display_reports(display_reports_)
57  {}
58
59  public:
60  void reset(const std::string& entry);
61  void mark(const std::string& name);
62
63  void report();
64  void report_and_reset(const std::string& name);
65 };
66
67 extern call_times call_timer;
68
69 }} // namespace Intel::OCDemo
70
71 #endif