aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/monlib/service/pages/templates.h
blob: b4656f059fae1c82f1dd0f7b0a426036d50dbbc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
#pragma once

#include <util/stream/output.h>
#include <util/system/defaults.h>

#define WITH_SCOPED(var, value) WITH_SCOPED_I(var, value, Y_GENERATE_UNIQUE_ID(WITH_SCOPED_LABEL_))

#define WITH_SCOPED_I(var, value, label) \
    if (auto var = (value)) {              \
        Y_UNUSED(var);                   \
        goto label;                      \
    } else                               \
    label                                \
        :

#define TAG(name) WITH_SCOPED(tmp, NMonitoring::name(__stream))
#define TAG_CLASS(name, cls) WITH_SCOPED(tmp, NMonitoring::name(__stream, cls))
#define TAG_CLASS_STYLE(name, cls, style) WITH_SCOPED(tmp, NMonitoring::name(__stream, {{"class", cls}, {"style", style}}))
#define TAG_CLASS_ID(name, cls, id) WITH_SCOPED(tmp, NMonitoring::name(__stream, cls, "", id))
#define TAG_CLASS_FOR(name, cls, for0) WITH_SCOPED(tmp, NMonitoring::name(__stream, cls, for0))
#define TAG_ATTRS(name, ...) WITH_SCOPED(tmp, NMonitoring::name(__stream, ##__VA_ARGS__))

#define HTML(str) WITH_SCOPED(__stream, NMonitoring::TOutputStreamRef(str))

#define HEAD() TAG(THead)
#define BODY() TAG(TBody)
#define HTML_TAG() TAG(THtml)
#define DIV() TAG(TDiv)
#define DIV_CLASS(cls) TAG_CLASS(TDiv, cls)
#define DIV_CLASS_ID(cls, id) TAG_CLASS_ID(TDiv, cls, id)
#define PRE() TAG(TPre)
#define TABLE() TAG(TTable)
#define TABLE_CLASS(cls) TAG_CLASS(TTable, cls)
#define TABLE_SORTABLE() TABLE_CLASS("table-sortable")
#define TABLE_SORTABLE_CLASS(cls) TABLE_CLASS(cls " table-sortable")
#define TABLEHEAD() TAG(TTableHead)
#define TABLEHEAD_CLASS(cls) TAG_CLASS(TTableHead, cls)
#define TABLEBODY() TAG(TTableBody)
#define TABLEBODY_CLASS(cls) TAG_CLASS(TTableBody, cls)
#define TABLER() TAG(TTableR)
#define TABLER_CLASS(cls) TAG_CLASS(TTableR, cls)
#define TABLED() TAG(TTableD)
#define TABLED_CLASS(cls) TAG_CLASS(TTableD, cls)
#define TABLED_ATTRS(...) TAG_ATTRS(TTableD, ##__VA_ARGS__)
#define TABLEH() TAG(TTableH)
#define TABLEH_CLASS(cls) TAG_CLASS(TTableH, cls)
#define FORM() TAG(TFormC)
#define FORM_CLASS(cls) TAG_CLASS(TFormC, cls)
#define LABEL() TAG(TLabelC)
#define LABEL_CLASS(cls) TAG_CLASS(TLabelC, cls)
#define LABEL_CLASS_FOR(cls, for0) TAG_CLASS_FOR(TLabelC, cls, for0)
#define SPAN_CLASS(cls) TAG_CLASS(TSpanC, cls)
#define SPAN_CLASS_STYLE(cls, style) TAG_CLASS_STYLE(TSpanC, cls, style)

#define PARA() TAG(TPara)
#define PARA_CLASS(cls) TAG_CLASS(TPara, cls)

#define H1() TAG(TH1)
#define H1_CLASS(cls) TAG_CLASS(TH1, cls)
#define H2() TAG(TH2)
#define H2_CLASS(cls) TAG_CLASS(TH2, cls)
#define H3() TAG(TH3)
#define H3_CLASS(cls) TAG_CLASS(TH3, cls)
#define H4() TAG(TH4)
#define H4_CLASS(cls) TAG_CLASS(TH4, cls)
#define H5() TAG(TH5)
#define H5_CLASS(cls) TAG_CLASS(TH5, cls)
#define H6() TAG(TH6)
#define H6_CLASS(cls) TAG_CLASS(TH6, cls)

#define SMALL() TAG(TSMALL)
#define STRONG() TAG(TSTRONG)

#define LI() TAG(TLIST)
#define LI_CLASS(cls) TAG_CLASS(TLIST, cls)
#define UL() TAG(TULIST)
#define UL_CLASS(cls) TAG_CLASS(TULIST, cls)
#define OL() TAG(TOLIST)
#define OL_CLASS(cls) TAG_CLASS(TOLIST, cls)

#define DL() TAG(DLIST)
#define DL_CLASS(cls) TAG_CLASS(DLIST, cls)
#define DT() TAG(DTERM)
#define DT_CLASS(cls) TAG_CLASS(DTERM, cls)
#define DD() TAG(DDESC)
#define DD_CLASS(cls) TAG_CLASS(DDESC, cls)

#define CAPTION() TAG(TCaption)
#define CAPTION_CLASS(cls) CAPTION_CLASS(TCaption, cls)

#define HTML_OUTPUT_PARAM(str, param) str << #param << ": " << param << "<br/>"
#define HTML_OUTPUT_TIME_PARAM(str, param) str << #param << ": " << ToStringLocalTimeUpToSeconds(param) << "<br/>"

#define COLLAPSED_BUTTON_CONTENT(targetId, buttonText) \
    WITH_SCOPED(tmp, NMonitoring::TCollapsedButton(__stream, targetId, buttonText))

#define HREF(path) \
    WITH_SCOPED(tmp, NMonitoring::THref(__stream, path))

namespace NMonitoring {
    struct THref {
        THref(IOutputStream& str, TStringBuf path)
            : Str(str)
        {
            Str << "<a href="<< path << '>';
        }

        ~THref() {
            Str <<  "</a>";
        }

        explicit inline operator bool() const noexcept {
            return true; // just to work with WITH_SCOPED
        }

        IOutputStream& Str;
    };

    template <const char* tag>
    struct TTag {
        TTag(IOutputStream& str, TStringBuf cls = "", TStringBuf for0 = "", TStringBuf id = "")
            : Str(str)
        {
            Str << "<" << tag;

            if (!cls.empty()) {
                Str << " class=\"" << cls << "\"";
            }

            if (!for0.empty()) {
                Str << " for=\"" << for0 << "\"";
            }

            if (!id.empty()) {
                Str << "id=\"" << id << "\"";
            }
            Str << ">";
        }

        TTag(IOutputStream& str, std::initializer_list<std::pair<TStringBuf, TStringBuf>> attributes)
            : Str(str)
        {
            Str << "<" << tag;
            for (const std::pair<TStringBuf, TStringBuf>& attr : attributes) {
                if (!attr.second.empty()) {
                    Str << ' ' << attr.first << "=\"" << attr.second << "\"";
                }
            }
            Str << ">";
        }

        ~TTag() {
            try {
                Str << "</" << tag << ">";
            } catch (...) {
            }
        }

        explicit inline operator bool() const noexcept {
            return true; // just to work with WITH_SCOPED
        }

        IOutputStream& Str;
    };

    // a nice class for creating collapsable regions of html output
    struct TCollapsedButton {
        TCollapsedButton(IOutputStream& str, const TString& targetId, const TString& buttonText)
            : Str(str)
        {
            Str << "<button type='button' class='btn' data-toggle='collapse' data-target='#" << targetId << "'>"
                << buttonText << "</button>";
            Str << "<div id='" << targetId << "' class='collapse'>";
        }

        ~TCollapsedButton() {
            try {
                Str << "</div>";
            } catch (...) {
            }
        }

        explicit inline operator bool() const noexcept {
            return true; // just to work with WITH_SCOPED
        }

        IOutputStream& Str;
    };

    struct TOutputStreamRef {
        TOutputStreamRef(IOutputStream& str)
            : Str(str)
        {
        }

        inline operator IOutputStream&() noexcept {
            return Str;
        }

        explicit inline operator bool() const noexcept {
            return true; // just to work with WITH_SCOPED
        }

        IOutputStream& Str;
    };

    extern const char HtmlTag[5];
    extern const char HeadTag[5];
    extern const char BodyTag[5];
    extern const char DivTag[4];
    extern const char TableTag[6];
    extern const char TableHeadTag[6];
    extern const char TableBodyTag[6];
    extern const char TableRTag[3];
    extern const char TableDTag[3];
    extern const char TableHTag[3];
    extern const char FormTag[5];
    extern const char LabelTag[6];
    extern const char SpanTag[5];
    extern const char CaptionTag[8];
    extern const char PreTag[4];
    extern const char ParaTag[2];
    extern const char H1Tag[3];
    extern const char H2Tag[3];
    extern const char H3Tag[3];
    extern const char H4Tag[3];
    extern const char H5Tag[3];
    extern const char H6Tag[3];
    extern const char SmallTag[6];
    extern const char StrongTag[7];
    extern const char ListTag[3];
    extern const char UListTag[3];
    extern const char OListTag[3];
    extern const char DListTag[3];
    extern const char DTermTag[3];
    extern const char DDescTag[3];

    typedef TTag<HtmlTag> THtml;
    typedef TTag<HeadTag> THead;
    typedef TTag<BodyTag> TBody;
    typedef TTag<DivTag> TDiv;
    typedef TTag<TableTag> TTable;
    typedef TTag<TableHeadTag> TTableHead;
    typedef TTag<TableBodyTag> TTableBody;
    typedef TTag<TableRTag> TTableR;
    typedef TTag<TableDTag> TTableD;
    typedef TTag<TableHTag> TTableH;
    typedef TTag<FormTag> TFormC;
    typedef TTag<LabelTag> TLabelC;
    typedef TTag<SpanTag> TSpanC;
    typedef TTag<CaptionTag> TCaption;
    typedef TTag<PreTag> TPre;
    typedef TTag<ParaTag> TPara;
    typedef TTag<H1Tag> TH1;
    typedef TTag<H2Tag> TH2;
    typedef TTag<H3Tag> TH3;
    typedef TTag<H4Tag> TH4;
    typedef TTag<H5Tag> TH5;
    typedef TTag<H6Tag> TH6;
    typedef TTag<SmallTag> TSMALL;
    typedef TTag<StrongTag> TSTRONG;
    typedef TTag<ListTag> TLIST;
    typedef TTag<UListTag> TULIST;
    typedef TTag<OListTag> TOLIST;
    typedef TTag<DListTag> DLIST;
    typedef TTag<DTermTag> DTERM;
    typedef TTag<DDescTag> DDESC;
}