-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathGeneratorUtil.cpp
More file actions
141 lines (115 loc) · 2.38 KB
/
GeneratorUtil.cpp
File metadata and controls
141 lines (115 loc) · 2.38 KB
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#include "GeneratorUtil.h"
#include <algorithm>
namespace graphql::generator {
IncludeGuardScope::IncludeGuardScope(
std::ostream& outputFile, std::string_view headerFileName) noexcept
: _outputFile(outputFile)
, _includeGuardName(headerFileName.size(), char {})
{
std::transform(headerFileName.begin(),
headerFileName.end(),
_includeGuardName.begin(),
[](char ch) noexcept -> char {
if (ch == '.')
{
return '_';
}
return static_cast<char>(std::toupper(ch));
});
_outputFile << R"cpp(// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// WARNING! Do not edit this file manually, your changes will be overwritten.
#pragma once
#ifndef )cpp" << _includeGuardName
<< R"cpp(
#define )cpp" << _includeGuardName
<< R"cpp(
)cpp";
}
IncludeGuardScope::~IncludeGuardScope() noexcept
{
_outputFile << R"cpp(
#endif // )cpp" << _includeGuardName
<< R"cpp(
)cpp";
}
NamespaceScope::NamespaceScope(
std::ostream& outputFile, std::string_view cppNamespace, bool deferred /*= false*/) noexcept
: _outputFile(outputFile)
, _cppNamespace(cppNamespace)
{
if (!deferred)
{
enter();
}
}
NamespaceScope::NamespaceScope(NamespaceScope&& other) noexcept
: _inside(other._inside)
, _outputFile(other._outputFile)
, _cppNamespace(other._cppNamespace)
{
other._inside = false;
}
NamespaceScope::~NamespaceScope() noexcept
{
exit();
}
bool NamespaceScope::enter() noexcept
{
if (!_inside)
{
_inside = true;
if (_cppNamespace.empty())
{
_outputFile << R"cpp(namespace {
)cpp";
}
else
{
_outputFile << R"cpp(namespace )cpp" << _cppNamespace << R"cpp( {
)cpp";
}
return true;
}
return false;
}
bool NamespaceScope::exit() noexcept
{
if (_inside)
{
if (_cppNamespace.empty())
{
_outputFile << R"cpp(} // namespace
)cpp";
}
else
{
_outputFile << R"cpp(} // namespace )cpp" << _cppNamespace << R"cpp(
)cpp";
}
_inside = false;
return true;
}
return false;
}
PendingBlankLine::PendingBlankLine(std::ostream& outputFile) noexcept
: _outputFile(outputFile)
{
}
void PendingBlankLine::add() noexcept
{
_pending = true;
}
bool PendingBlankLine::reset() noexcept
{
if (_pending)
{
_outputFile << std::endl;
_pending = false;
return true;
}
return false;
}
} // namespace graphql::generator