Imported Upstream version 1.12.0
[platform/core/ml/nnfw.git] / runtime / onert / core / src / util / EventRecorder.h
1 /*
2  * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *    http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __ONERT_UTIL_EVENT_RECORDER_H__
18 #define __ONERT_UTIL_EVENT_RECORDER_H__
19
20 #include <map>
21 #include <memory>
22 #include <mutex>
23
24 #include <vector>
25
26 struct Event
27 {
28   std::string name;
29   std::string tid;
30   std::string ph;                                        /* REQUIRED */
31   std::string ts;                                        /* REQUIRED */
32   std::vector<std::pair<std::string, std::string>> args; // user-defined data: pairs of (key, value)
33 };
34
35 struct DurationEvent : public Event
36 {
37   // TO BE FILLED
38 };
39
40 struct CounterEvent : public Event
41 {
42   std::map<std::string, std::string> values;
43 };
44
45 //
46 // Record Event as Chrome Trace Event File Format
47 //
48 // Refrence: https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU/edit
49 //
50 class EventRecorder
51 {
52 public:
53   EventRecorder() = default;
54
55 public:
56   void emit(const DurationEvent &evt);
57   void emit(const CounterEvent &evt);
58
59 public:
60   bool empty() { return _duration_events.empty() && _counter_events.empty(); }
61   const std::vector<DurationEvent> &duration_events() const { return _duration_events; }
62   const std::vector<CounterEvent> &counter_events() const { return _counter_events; }
63
64 private:
65   std::mutex _mu;
66   std::vector<DurationEvent> _duration_events;
67   std::vector<CounterEvent> _counter_events;
68 };
69
70 #endif // __ONERT_UTIL_EVENT_RECORDER_H__