forked from sass/libsass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemitter.cpp
255 lines (223 loc) · 5.95 KB
/
emitter.cpp
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
#include "util.hpp"
#include "context.hpp"
#include "output.hpp"
#include "emitter.hpp"
#include "utf8_string.hpp"
namespace Sass {
using namespace std;
Emitter::Emitter(Context* ctx)
: wbuf(),
ctx(ctx),
indentation(0),
scheduled_space(0),
scheduled_linefeed(0),
scheduled_delimiter(false),
in_comment(false),
in_wrapped(false),
in_media_block(false),
in_declaration(false),
in_declaration_list(false)
{ }
// return buffer as string
string Emitter::get_buffer(void)
{
return wbuf.buffer;
}
Output_Style Emitter::output_style(void)
{
return ctx ? ctx->output_style : COMPRESSED;
}
// PROXY METHODS FOR SOURCE MAPS
void Emitter::add_source_index(size_t idx)
{ wbuf.smap.source_index.push_back(idx); }
string Emitter::generate_source_map(Context &ctx)
{ return wbuf.smap.generate_source_map(ctx); }
void Emitter::set_filename(const string& str)
{ wbuf.smap.file = str; }
void Emitter::add_open_mapping(AST_Node* node)
{ wbuf.smap.add_open_mapping(node); }
void Emitter::add_close_mapping(AST_Node* node)
{ wbuf.smap.add_close_mapping(node); }
ParserState Emitter::remap(const ParserState& pstate)
{ return wbuf.smap.remap(pstate); }
// MAIN BUFFER MANIPULATION
// add outstanding delimiter
void Emitter::finalize(void)
{
scheduled_space = 0;
if (scheduled_linefeed)
scheduled_linefeed = 1;
flush_schedules();
}
// flush scheduled space/linefeed
void Emitter::flush_schedules(void)
{
// check the schedule
if (scheduled_linefeed) {
string linefeeds = "";
for (size_t i = 0; i < scheduled_linefeed; i++)
linefeeds += ctx ? ctx->linefeed : "\n";
scheduled_space = 0;
scheduled_linefeed = 0;
append_string(linefeeds);
} else if (scheduled_space) {
string spaces(scheduled_space, ' ');
scheduled_space = 0;
append_string(spaces);
}
if (scheduled_delimiter) {
scheduled_delimiter = false;
append_string(";");
}
}
// prepend some text or token to the buffer
void Emitter::prepend_output(const OutputBuffer& output)
{
wbuf.smap.prepend(output);
wbuf.buffer = output.buffer + wbuf.buffer;
}
// prepend some text or token to the buffer
void Emitter::prepend_string(const string& text)
{
wbuf.smap.prepend(Offset(text));
wbuf.buffer = text + wbuf.buffer;
}
// append some text or token to the buffer
void Emitter::append_string(const string& text)
{
// write space/lf
flush_schedules();
if (in_comment && output_style() == COMPACT) {
// unescape comment nodes
string out = comment_to_string(text);
// add to buffer
wbuf.buffer += out;
// account for data in source-maps
wbuf.smap.append(Offset(out));
} else {
// add to buffer
wbuf.buffer += text;
// account for data in source-maps
wbuf.smap.append(Offset(text));
}
}
// append some white-space only text
void Emitter::append_wspace(const string& text)
{
if (text.empty()) return;
if (peek_linefeed(text.c_str())) {
scheduled_space = 0;
append_mandatory_linefeed();
}
}
// append some text or token to the buffer
// this adds source-mappings for node start and end
void Emitter::append_token(const string& text, AST_Node* node)
{
flush_schedules();
add_open_mapping(node);
append_string(text);
add_close_mapping(node);
}
// HELPER METHODS
void Emitter::append_indentation()
{
if (output_style() == COMPRESSED) return;
if (output_style() == COMPACT) return;
if (scheduled_linefeed && indentation)
scheduled_linefeed = 1;
string indent = "";
for (size_t i = 0; i < indentation; i++)
indent += ctx ? ctx->indent : " ";
append_string(indent);
}
void Emitter::append_delimiter()
{
scheduled_delimiter = true;
if (output_style() == COMPACT) {
if (indentation == 0) {
append_mandatory_linefeed();
} else {
append_mandatory_space();
}
} else if (output_style() != COMPRESSED) {
append_optional_linefeed();
}
}
void Emitter::append_comma_separator()
{
scheduled_space = 0;
append_string(",");
append_optional_space();
}
void Emitter::append_colon_separator()
{
scheduled_space = 0;
append_string(":");
append_optional_space();
}
void Emitter::append_mandatory_space()
{
scheduled_space = 1;
}
void Emitter::append_optional_space()
{
if (output_style() != COMPRESSED && buffer().size()) {
char lst = buffer().at(buffer().length() - 1);
if (!isspace(lst)) append_mandatory_space();
}
}
void Emitter::append_special_linefeed()
{
if (output_style() == COMPACT) {
append_mandatory_linefeed();
for (size_t p = 0; p < indentation; p++)
append_string(ctx ? ctx->indent : " ");
}
}
void Emitter::append_optional_linefeed()
{
if (output_style() == COMPACT) {
append_mandatory_space();
} else {
append_mandatory_linefeed();
}
}
void Emitter::append_mandatory_linefeed()
{
if (output_style() != COMPRESSED) {
scheduled_linefeed = 1;
scheduled_space = 0;
// flush_schedules();
}
}
void Emitter::append_scope_opener(AST_Node* node)
{
append_optional_space();
flush_schedules();
if (node) add_open_mapping(node);
append_string("{");
append_optional_linefeed();
// append_optional_space();
++ indentation;
}
void Emitter::append_scope_closer(AST_Node* node)
{
-- indentation;
scheduled_linefeed = 0;
if (output_style() == COMPRESSED)
scheduled_delimiter = false;
if (output_style() == EXPANDED) {
append_optional_linefeed();
append_indentation();
} else {
append_optional_space();
}
append_string("}");
if (node) add_close_mapping(node);
append_optional_linefeed();
if (indentation != 0) return;
if (output_style() != COMPRESSED)
scheduled_linefeed = 2;
}
}