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
|
#include "CodegenUtils.hpp"
#include <Macros.hpp>
#include <ScopeGuard.hpp>
#include <Utils.hpp>
#include <cstdio>
#include <cstdlib>
bool Utils::WriteOutputFile(const CodegenOutput& output, const char* path) {
auto outputFile = Utils::OpenCstdioFile(path, Utils::WriteTruncate);
if (!outputFile) {
printf("[ERROR] unable to open output file %s\n", path);
return false;
}
DEFER { fclose(outputFile); };
DEBUG_PRINTF("Writing output %s\n", path);
output.Write(outputFile);
return true;
}
std::string Utils::MakeFullName(std::string_view name, DeclNamespace* ns) {
size_t length = 0;
std::vector<std::string_view> components;
if (!name.empty()) {
components.push_back(name);
length += name.length();
}
DeclNamespace* currentNamespace = ns;
while (currentNamespace) {
components.push_back(currentNamespace->name);
length += currentNamespace->name.size() + /*::*/ 2;
currentNamespace = currentNamespace->container;
}
std::string fullname;
fullname.reserve(length);
for (auto it = components.rbegin(); it != components.rend(); ++it) {
fullname += *it;
fullname += "::";
}
// Get rid of the last "::"
fullname.pop_back();
fullname.pop_back();
return fullname;
}
// NOTE: assuming we are only dealing with ASCII characters
static bool IsLowerCase(char c) {
return c >= 'a' && c <= 'z';
}
static bool IsUpperCase(char c) {
return c >= 'A' && c <= 'Z';
}
static bool IsAlphabetic(char c) {
return IsLowerCase(c) || IsUpperCase(c);
}
static char MakeUpperCase(char c) {
if (IsAlphabetic(c)) {
return IsUpperCase(c)
? c
: ('A' + (c - 'a'));
}
return c;
}
std::vector<std::string_view> Utils::SplitIdentifier(std::string_view name) {
// TODO handle SCREAMING_CASE
size_t chunkStart = 0;
size_t chunkEnd = 0;
std::vector<std::string_view> result;
auto PushChunk = [&]() { result.push_back(std::string_view(name.begin() + chunkStart, name.begin() + chunkEnd)); };
while (chunkEnd < name.size()) {
char c = name[chunkEnd];
if (IsUpperCase(c)) {
// Start of next chunk, using camelCase or PascalCase
PushChunk();
chunkStart = chunkEnd;
chunkEnd = chunkStart + 1;
continue;
} else if (c == '_') {
// End of this chunk, using snake_case
PushChunk();
chunkStart = chunkEnd + 1;
chunkEnd = chunkStart + 1;
continue;
} else if (c == '-') {
// End of this chunk, using kebab-case
PushChunk();
chunkStart = chunkEnd + 1;
chunkEnd = chunkStart + 1;
continue;
}
++chunkEnd;
}
if ((chunkEnd - chunkStart) >= 1) {
PushChunk();
}
return result;
}
std::string Utils::MakePascalCase(std::string_view name) {
std::string result;
for (auto part : SplitIdentifier(name)) {
result += MakeUpperCase(part[0]);
result += part.substr(1);
}
return result;
}
void Utils::ProduceGeneratedHeader(const char* headerFilename, CodegenOutput& header, const char* sourceFilename, CodegenOutput& source) {
CodegenOutputThing headerOut;
headerOut.text += &R"""(
// This file is generated. Any changes will be overidden when building.
#pragma once
#include <MetadataBase.hpp>
#include <cstddef>
#include <cstdint>
)"""[1];
CodegenOutputThing sourceOut;
APPEND_LIT_LN(sourceOut.text, "// This file is generated. Any changes will be overidden when building.");
APPEND_FMT_LN(sourceOut.text, "#include \"%s\"", headerFilename);
sourceOut.text += &R"""(
#include <MetadataDetails.hpp>
#include <frozen/string.h>
#include <frozen/unordered_map.h>
using namespace std::literals;
using namespace Metadata;
)"""[1];
header.AddOutputThing(std::move(headerOut));
source.AddOutputThing(std::move(sourceOut));
}
|