Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / compiler / circledump / src / MetadataPrinter.h
1 /*
2  * Copyright (c) 2021 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 __CIRCLEDUMP_METADATA_PRINTER_H__
18 #define __CIRCLEDUMP_METADATA_PRINTER_H__
19
20 #include <ostream>
21 #include <string>
22 #include <map>
23 #include <memory>
24
25 namespace circledump
26 {
27
28 class MetadataPrinter
29 {
30 public:
31   virtual void print(const uint8_t * /* buffer */, std::ostream &) const = 0;
32   virtual ~MetadataPrinter() = default;
33 };
34
35 class MetadataPrinterRegistry
36 {
37 public:
38   MetadataPrinterRegistry();
39
40 public:
41   const MetadataPrinter *lookup(std::string op) const
42   {
43     if (_metadata_map.find(op) == _metadata_map.end())
44       return nullptr;
45
46     return _metadata_map.at(op).get();
47   }
48
49 public:
50   static MetadataPrinterRegistry &get()
51   {
52     static MetadataPrinterRegistry me;
53     return me;
54   }
55
56 private:
57   std::map<std::string /* metadata name */, std::unique_ptr<MetadataPrinter>> _metadata_map;
58 };
59
60 } // namespace circledump
61
62 #endif // __CIRCLEDUMP_METADATA_PRINTER_H__