P4C
The P4 Compiler
Loading...
Searching...
No Matches
indent.h
1/*
2Copyright 2013-present Barefoot Networks, Inc.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17#ifndef LIB_INDENT_H_
18#define LIB_INDENT_H_
19
20#include <iomanip>
21#include <iostream>
22#include <vector>
23
24class indent_t {
25 int indent;
26
27 public:
28 static int tabsz;
29 indent_t() : indent(0) {}
30 explicit indent_t(int i) : indent(i) {}
31 indent_t &operator++() {
32 ++indent;
33 return *this;
34 }
35 indent_t &operator--() {
36 --indent;
37 return *this;
38 }
39 indent_t operator++(int) {
40 indent_t rv = *this;
41 ++indent;
42 return rv;
43 }
44 indent_t operator--(int) {
45 indent_t rv = *this;
46 --indent;
47 return rv;
48 }
49 friend std::ostream &operator<<(std::ostream &os, indent_t i);
50 indent_t operator+(int v) {
51 indent_t rv = *this;
52 rv.indent += v;
53 return rv;
54 }
55 indent_t operator-(int v) {
56 indent_t rv = *this;
57 rv.indent -= v;
58 return rv;
59 }
60 indent_t &operator+=(int v) {
61 indent += v;
62 return *this;
63 }
64 indent_t &operator-=(int v) {
65 indent -= v;
66 return *this;
67 }
68 static indent_t &getindent(std::ostream &);
69};
70
71inline std::ostream &operator<<(std::ostream &os, indent_t i) {
72 os << std::setw(i.indent * i.tabsz) << "";
73 return os;
74}
75
76namespace IndentCtl {
77inline std::ostream &endl(std::ostream &out) {
78 return out << std::endl << indent_t::getindent(out);
79}
80inline std::ostream &indent(std::ostream &out) {
81 ++indent_t::getindent(out);
82 return out;
83}
84inline std::ostream &unindent(std::ostream &out) {
85 --indent_t::getindent(out);
86 return out;
87}
88
90 // an indent that can be added to any stream and unrolls when the object is destroyed
91 std::vector<std::ostream *> streams; // streams that have been indented
92
93 public:
94 TempIndent(const TempIndent &) = delete; // not copyable
95 TempIndent() = default;
96 friend std::ostream &operator<<(std::ostream &out, TempIndent &ti) {
97 ti.streams.push_back(&out);
98 return out << indent;
99 }
100 friend std::ostream &operator<<(std::ostream &out, TempIndent &&ti) {
101 ti.streams.push_back(&out);
102 return out << indent;
103 }
104 const char *pop_back() {
105 if (!streams.empty()) {
106 *streams.back() << unindent;
107 streams.pop_back();
108 }
109 return "";
110 }
111 const char *reset() {
112 for (auto *out : streams) *out << unindent;
113 streams.clear();
114 return "";
115 }
116 ~TempIndent() {
117 for (auto *out : streams) *out << unindent;
118 }
119};
120
121} // end namespace IndentCtl
122
123#endif /* LIB_INDENT_H_ */
Definition indent.h:89
Definition indent.h:24