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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
|
/*
* Copyright 2000-2013 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.vaadin.sass.internal;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.logging.Logger;
import org.w3c.css.sac.CSSException;
import org.w3c.css.sac.InputSource;
import com.vaadin.sass.internal.handler.SCSSDocumentHandler;
import com.vaadin.sass.internal.handler.SCSSDocumentHandlerImpl;
import com.vaadin.sass.internal.handler.SCSSErrorHandler;
import com.vaadin.sass.internal.parser.ParseException;
import com.vaadin.sass.internal.parser.Parser;
import com.vaadin.sass.internal.parser.SCSSParseException;
import com.vaadin.sass.internal.resolver.ScssStylesheetResolver;
import com.vaadin.sass.internal.resolver.VaadinResolver;
import com.vaadin.sass.internal.tree.BlockNode;
import com.vaadin.sass.internal.tree.MixinDefNode;
import com.vaadin.sass.internal.tree.Node;
import com.vaadin.sass.internal.tree.VariableNode;
import com.vaadin.sass.internal.tree.controldirective.IfElseDefNode;
import com.vaadin.sass.internal.visitor.ImportNodeHandler;
public class ScssStylesheet extends Node {
private static final long serialVersionUID = 3849790204404961608L;
private static ScssStylesheet mainStyleSheet = null;
private static final HashMap<String, VariableNode> variables = new HashMap<String, VariableNode>();
private static final Map<String, MixinDefNode> mixinDefs = new HashMap<String, MixinDefNode>();
private static final HashSet<IfElseDefNode> ifElseDefNodes = new HashSet<IfElseDefNode>();
private static HashMap<Node, Node> lastNodeAdded = new HashMap<Node, Node>();
private String fileName;
private String charset;
/**
* Read in a file SCSS and parse it into a ScssStylesheet
*
* @param file
* @throws IOException
*/
public ScssStylesheet() {
super();
}
/**
* Main entry point for the SASS compiler. Takes in a file and builds up a
* ScssStylesheet tree out of it. Calling compile() on it will transform
* SASS into CSS. Calling toString() will print out the SCSS/CSS.
*
* @param file
* @return
* @throws CSSException
* @throws IOException
*/
public static ScssStylesheet get(String identifier) throws CSSException,
IOException {
return get(identifier, null);
}
/**
* Main entry point for the SASS compiler. Takes in a file and encoding then
* builds up a ScssStylesheet tree out of it. Calling compile() on it will
* transform SASS into CSS. Calling toString() will print out the SCSS/CSS.
*
* @param file
* @param encoding
* @return
* @throws CSSException
* @throws IOException
*/
public static ScssStylesheet get(String identifier, String encoding)
throws CSSException, IOException {
/*
* The encoding to be used is passed through "encoding" parameter. the
* imported children scss node will have the same encoding as their
* parent, ultimately the root scss file. The root scss node has this
* "encoding" parameter to be null. Its encoding is determined by the
*
* @charset declaration, the default one is ASCII.
*/
File file = new File(identifier);
file = file.getCanonicalFile();
SCSSDocumentHandler handler = new SCSSDocumentHandlerImpl();
ScssStylesheet stylesheet = handler.getStyleSheet();
InputSource source = stylesheet.resolveStylesheet(identifier);
if (source == null) {
return null;
}
source.setEncoding(encoding);
Parser parser = new Parser();
parser.setErrorHandler(new SCSSErrorHandler());
parser.setDocumentHandler(handler);
try {
parser.parseStyleSheet(source);
} catch (ParseException e) {
// catch ParseException, re-throw a SCSSParseException which has
// file name info.
throw new SCSSParseException(e, identifier);
}
stylesheet.setCharset(parser.getInputSource().getEncoding());
return stylesheet;
}
private static ScssStylesheetResolver[] resolvers = null;
public static void setStylesheetResolvers(
ScssStylesheetResolver... styleSheetResolvers) {
resolvers = Arrays.copyOf(styleSheetResolvers,
styleSheetResolvers.length);
}
public InputSource resolveStylesheet(String identifier) {
if (resolvers == null) {
setStylesheetResolvers(new VaadinResolver());
}
for (ScssStylesheetResolver resolver : resolvers) {
InputSource source = resolver.resolve(identifier);
if (source != null) {
File f = new File(source.getURI());
setFileName(f.getParent());
return source;
}
}
return null;
}
/**
* Applies all the visitors and compiles SCSS into Css.
*
* @throws Exception
*/
public void compile() throws Exception {
mainStyleSheet = this;
mixinDefs.clear();
variables.clear();
ifElseDefNodes.clear();
lastNodeAdded.clear();
importOtherFiles(this);
populateDefinitions(this);
traverse(this);
removeEmptyBlocks(this);
}
private void importOtherFiles(ScssStylesheet node) {
ImportNodeHandler.traverse(node);
}
private void populateDefinitions(Node node) {
if (node instanceof MixinDefNode) {
mixinDefs.put(((MixinDefNode) node).getName(), (MixinDefNode) node);
node.getParentNode().removeChild(node);
} else if (node instanceof IfElseDefNode) {
ifElseDefNodes.add((IfElseDefNode) node);
}
for (final Node child : new ArrayList<Node>(node.getChildren())) {
populateDefinitions(child);
}
}
/**
* Prints out the current state of the node tree. Will return SCSS before
* compile and CSS after.
*
* For now this is an own method with it's own implementation that most node
* types will implement themselves.
*/
@Override
public String toString() {
StringBuilder string = new StringBuilder("");
String delimeter = "\n\n";
// add charset declaration, if it is not default "ASCII".
if (!"ASCII".equals(getCharset())) {
string.append("@charset \"").append(getCharset()).append("\";")
.append(delimeter);
}
if (children.size() > 0) {
string.append(children.get(0).toString());
}
if (children.size() > 1) {
for (int i = 1; i < children.size(); i++) {
String childString = children.get(i).toString();
if (childString != null) {
string.append(delimeter).append(childString);
}
}
}
String output = string.toString();
return output;
}
public void addChild(int index, VariableNode node) {
if (node != null) {
children.add(index, node);
}
}
public static ScssStylesheet get() {
return mainStyleSheet;
}
@Override
public void traverse() {
// Not used for ScssStylesheet
}
/**
* Traverses a node and its children recursively, calling all the
* appropriate handlers via {@link Node#traverse()}.
*
* The node itself may be removed during the traversal and replaced with
* other nodes at the same position or later on the child list of its
* parent.
*
* @param node
* node to traverse
* @return true if the node was removed (and possibly replaced by others),
* false if not
*/
public boolean traverse(Node node) {
Node originalParent = node.getParentNode();
node.traverse();
Map<String, VariableNode> variableScope = openVariableScope();
// the size of the child list may change on each iteration: current node
// may get deleted and possibly other nodes have been inserted where it
// was or after that position
for (int i = 0; i < node.getChildren().size(); i++) {
Node current = node.getChildren().get(i);
if (traverse(current)) {
// current has been removed
--i;
}
}
closeVariableScope(variableScope);
// clean up insert point so that processing of the next block will
// insert after that block
lastNodeAdded.remove(originalParent);
// has the node been removed from its parent?
if (originalParent != null) {
boolean removed = !originalParent.getChildren().contains(node);
return removed;
} else {
return false;
}
}
/**
* Start a new scope for variables. Any variables set or modified after
* opening a new scope are only valid until the scope is closed, at which
* time they are replaced with their old values.
*
* @return old scope to give to a paired {@link #closeVariableScope(Map)}
* call at the end of the scope (unmodifiable map).
*/
public static Map<String, VariableNode> openVariableScope() {
@SuppressWarnings("unchecked")
HashMap<String, VariableNode> variableScope = (HashMap<String, VariableNode>) variables
.clone();
return Collections.unmodifiableMap(variableScope);
}
/**
* End a scope for variables, replacing all active variables with those from
* the original scope (obtained from {@link #openVariableScope()}).
*
* @param originalScope
* original scope
*/
public static void closeVariableScope(
Map<String, VariableNode> originalScope) {
variables.clear();
variables.putAll(originalScope);
}
public void removeEmptyBlocks(Node node) {
// depth first for avoiding re-checking parents of removed nodes
for (Node child : new ArrayList<Node>(node.getChildren())) {
removeEmptyBlocks(child);
}
Node parent = node.getParentNode();
if (node instanceof BlockNode && node.getChildren().isEmpty()
&& parent != null) {
// remove empty block
parent.removeChild(node);
}
}
public static void addVariable(VariableNode node) {
variables.put(node.getName(), node);
}
public static VariableNode getVariable(String string) {
return variables.get(string);
}
public static ArrayList<VariableNode> getVariables() {
return new ArrayList<VariableNode>(variables.values());
}
public static MixinDefNode getMixinDefinition(String name) {
return mixinDefs.get(name);
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getFileName() {
return fileName;
}
public static HashMap<Node, Node> getLastNodeAdded() {
return lastNodeAdded;
}
public static final void warning(String msg) {
Logger.getLogger(ScssStylesheet.class.getName()).warning(msg);
}
public String getCharset() {
return charset;
}
public void setCharset(String charset) {
this.charset = charset;
}
}
|