source: josm/trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParser.jj@ 10837

Last change on this file since 10837 was 10837, checked in by Don-vip, 8 years ago

see #11924 - extract MapCSS conditions to new class ConditionFactory (on the same model than ExpressionFactory) - should workaround Groovy bug with Java 9 (https://issues.apache.org/jira/browse/GROOVY-7879 ?)

  • Property svn:eol-style set to native
File size: 30.6 KB
RevLine 
[3848]1// License: GPL. For details, see LICENSE file.
2options {
3 STATIC = false;
[6521]4 OUTPUT_DIRECTORY = "parsergen";
[3848]5}
6
7PARSER_BEGIN(MapCSSParser)
[4252]8package org.openstreetmap.josm.gui.mappaint.mapcss.parsergen;
[3848]9
[9336]10import static org.openstreetmap.josm.tools.I18n.tr;
11
[6970]12import java.io.InputStream;
[8331]13import java.io.Reader;
[3848]14import java.util.ArrayList;
[8256]15import java.util.Arrays;
16import java.util.Collections;
[3848]17import java.util.List;
[8404]18import java.util.Locale;
[3848]19
[8086]20import org.openstreetmap.josm.Main;
[3967]21import org.openstreetmap.josm.gui.mappaint.Keyword;
[3848]22import org.openstreetmap.josm.gui.mappaint.mapcss.Condition;
[4069]23import org.openstreetmap.josm.gui.mappaint.mapcss.Condition.Context;
[10837]24import org.openstreetmap.josm.gui.mappaint.mapcss.ConditionFactory;
25import org.openstreetmap.josm.gui.mappaint.mapcss.ConditionFactory.KeyMatchType;
26import org.openstreetmap.josm.gui.mappaint.mapcss.ConditionFactory.Op;
[3848]27import org.openstreetmap.josm.gui.mappaint.mapcss.Expression;
[8086]28import org.openstreetmap.josm.gui.mappaint.mapcss.ExpressionFactory;
[8260]29import org.openstreetmap.josm.gui.mappaint.mapcss.ExpressionFactory.NullExpression;
[3848]30import org.openstreetmap.josm.gui.mappaint.mapcss.Instruction;
[8086]31import org.openstreetmap.josm.gui.mappaint.mapcss.LiteralExpression;
32import org.openstreetmap.josm.gui.mappaint.mapcss.MapCSSException;
[3848]33import org.openstreetmap.josm.gui.mappaint.mapcss.MapCSSRule;
[7064]34import org.openstreetmap.josm.gui.mappaint.mapcss.MapCSSRule.Declaration;
[3848]35import org.openstreetmap.josm.gui.mappaint.mapcss.MapCSSStyleSource;
36import org.openstreetmap.josm.gui.mappaint.mapcss.Selector;
[4011]37import org.openstreetmap.josm.gui.mappaint.mapcss.Selector.ChildOrParentSelector;
[3902]38import org.openstreetmap.josm.gui.mappaint.mapcss.Selector.GeneralSelector;
[4069]39import org.openstreetmap.josm.gui.mappaint.mapcss.Selector.LinkSelector;
[8086]40import org.openstreetmap.josm.gui.mappaint.mapcss.Subpart;
[6740]41import org.openstreetmap.josm.tools.ColorHelper;
[3848]42import org.openstreetmap.josm.tools.Pair;
[8515]43import org.openstreetmap.josm.tools.Utils;
[3848]44
[6970]45/**
46 * MapCSS parser.
[6897]47 *
[6970]48 * Contains two independent grammars:
49 * (a) the preprocessor and (b) the main mapcss parser.
[6897]50 *
[8087]51 * The preprocessor handles @supports and @media syntax (@media is deprecated).
52 * Basically this allows to write one style for different versions of JOSM (or different editors).
53 * When the @supports condition is not fulfilled, it should simply skip over
[6970]54 * the whole section and not attempt to parse the possibly unknown
55 * grammar. It preserves whitespace and comments, in order to keep the
56 * line and column numbers in the error messages correct for the second pass.
[6897]57 *
58 */
[3848]59public class MapCSSParser {
[3863]60 MapCSSStyleSource sheet;
[6970]61 StringBuilder sb;
[7064]62 int declarationCounter;
[6970]63
64 /**
65 * Nicer way to refer to a lexical state.
66 */
67 public static enum LexicalState {
68 PREPROCESSOR(0), /* the preprocessor */
69 DEFAULT(2); /* the main parser */
70
71 int idx; // the integer, which javacc assigns to this state
72
73 LexicalState(int idx) {
74 if (!this.name().equals(MapCSSParserTokenManager.lexStateNames[idx])) {
75 throw new RuntimeException();
76 }
77 this.idx = idx;
78 }
79 };
80
81 /**
82 * Constructor which initializes the parser with a certain lexical state.
[9239]83 * @param in input
84 * @param encoding contents encoding
85 * @param initState initial state
[6970]86 */
87 public MapCSSParser(InputStream in, String encoding, LexicalState initState) {
88 this(createTokenManager(in, encoding, initState));
[7064]89 declarationCounter = 0;
[6970]90 }
91
92 protected static MapCSSParserTokenManager createTokenManager(InputStream in, String encoding, LexicalState initState) {
93 SimpleCharStream scs;
94 try {
95 scs = new SimpleCharStream(in, encoding, 1, 1);
[8510]96 } catch (java.io.UnsupportedEncodingException e) {
[6970]97 throw new RuntimeException(e);
98 }
99 return new MapCSSParserTokenManager(scs, initState.idx);
100 }
[8331]101
102 /**
103 * Constructor which initializes the parser with a certain lexical state.
[9239]104 * @param in input
105 * @param initState initial state
[8331]106 */
107 public MapCSSParser(Reader in, LexicalState initState) {
108 this(createTokenManager(in, initState));
109 declarationCounter = 0;
110 }
111
112 protected static MapCSSParserTokenManager createTokenManager(Reader in, LexicalState initState) {
113 final SimpleCharStream scs = new SimpleCharStream(in, 1, 1);
114 return new MapCSSParserTokenManager(scs, initState.idx);
115 }
[3848]116}
117PARSER_END(MapCSSParser)
118
[9239]119/**
[3848]120 * Token definitions
[6970]121 *
122 * Lexical states for the preprocessor: <PREPROCESSOR>, <PP_COMMENT>
123 * Lexical states for the main parser: <DEFAULT>, <COMMENT>
[3848]124 */
[6970]125
126<PREPROCESSOR>
127TOKEN:
128{
129 < PP_AND: "and" >
[8087]130| < PP_OR: "or" >
[6970]131| < PP_NOT: "not" >
[8087]132| < PP_SUPPORTS: "@supports" >
[6970]133| < PP_MEDIA: "@media" >
134| < PP_NEWLINECHAR: "\n" | "\r" | "\f" >
135| < PP_WHITESPACE: " " | "\t" >
136| < PP_COMMENT_START: "/*" > : PP_COMMENT
137}
[3848]138
[6970]139<PP_COMMENT>
140TOKEN:
141{
142 < PP_COMMENT_END: "*/" > : PREPROCESSOR
143}
144
145<PP_COMMENT>
146MORE:
147{
148 < ~[] >
149}
150
[3848]151<DEFAULT>
[6896]152TOKEN [IGNORE_CASE]:
153{
[6970]154 /* Special keyword in some contexts, ordinary identifier in other contexts.
155 Use the parsing rule <code>ident()</code> to refer to a general
156 identifier, including "set". */
157 < SET: "set" >
[6896]158}
159
[6970]160<DEFAULT,PREPROCESSOR>
[3848]161TOKEN:
162{
[6896]163 < IDENT: ["a"-"z","A"-"Z","_"] ( ["a"-"z","A"-"Z","_","-","0"-"9"] )* >
[9247]164| < UINT: ( ["0"-"9"] )+ >
[3876]165| < STRING: "\"" ( [" ","!","#"-"[","]"-"~","\u0080"-"\uFFFF"] | "\\\"" | "\\\\" )* "\"" >
[7761]166| < #PREDEFINED: "\\" ["d","D","s","S","w","W","b","B","A","G","Z","z"] >
[9857]167| < #REGEX_CHAR_WITHOUT_STAR: [" "-")","+"-".","0"-"[","]"-"~","\u0080"-"\uFFFF"] | "\\/" | "\\\\" | "\\[" | "\\]" | "\\+" | "\\." | "\\'" | "\\\"" | "\\(" | "\\)" | "\\{" | "\\}" | "\\?" | "\\*" | "\\^" | "\\$" | "\\|" | "\\p" |<PREDEFINED> >
[3876]168| < REGEX: "/" <REGEX_CHAR_WITHOUT_STAR> ( <REGEX_CHAR_WITHOUT_STAR> | "*" )* "/" >
[6970]169| < LBRACE: "{" >
170| < RBRACE: "}" >
171| < LPAR: "(" >
172| < RPAR: ")" >
[7277]173| < COMMA: "," >
[6970]174| < COLON: ":" >
175}
176
177<PREPROCESSOR>
178TOKEN:
179{
180 < PP_SOMETHING_ELSE : ~[] >
181}
182
183<DEFAULT>
184TOKEN:
185{
186 < UFLOAT: ( ["0"-"9"] )+ ( "." ( ["0"-"9"] )+ )? >
[3848]187| < #H: ["0"-"9","a"-"f","A"-"F"] >
[6774]188| < HEXCOLOR: "#" ( <H><H><H><H><H><H><H><H> | <H><H><H><H><H><H> | <H><H><H> ) >
[3848]189| < S: ( " " | "\t" | "\n" | "\r" | "\f" )+ >
190| < STAR: "*" >
191| < SLASH: "/" >
192| < LSQUARE: "[" >
193| < RSQUARE: "]" >
[3867]194| < GREATER_EQUAL: ">=" >
195| < LESS_EQUAL: "<=" >
196| < GREATER: ">" >
197| < LESS: "<" >
[3848]198| < EQUAL: "=" >
199| < EXCLAMATION: "!" >
[3876]200| < TILDE: "~" >
[3848]201| < DCOLON: "::" >
202| < SEMICOLON: ";" >
[3856]203| < PIPE: "|" >
[3848]204| < PIPE_Z: "|z" >
205| < PLUS: "+" >
206| < MINUS: "-" >
[3856]207| < AMPERSAND: "&" >
208| < QUESTION: "?" >
[3876]209| < DOLLAR: "$" >
210| < CARET: "^" >
[6560]211| < FULLSTOP: "." >
[8260]212| < DEG: "°" >
[6609]213| < ELEMENT_OF: "∈" >
[6613]214| < CROSSING: "⧉" >
[9099]215| < PERCENT: "%" >
[3848]216| < COMMENT_START: "/*" > : COMMENT
217| < UNEXPECTED_CHAR : ~[] > // avoid TokenMgrErrors because they are hard to recover from
218}
219
220<COMMENT>
221TOKEN:
222{
223 < COMMENT_END: "*/" > : DEFAULT
224}
225
226<COMMENT>
227SKIP:
228{
229 < ~[] >
230}
231
[6970]232
[9239]233/*
[6970]234 * Preprocessor parser definitions:
235 *
236 * <pre>
237 *
238 * {@literal @media} { ... } queries are supported, following http://www.w3.org/TR/css3-mediaqueries/#syntax
239 *
240 * media_query
241 * ___________________________|_______________________________
242 * | |
243 * {@literal @media} all and (min-josm-version: 7789) and (max-josm-version: 7790), all and (user-agent: xyz) { ... }
244 * |______________________|
245 * |
246 * media_expression
247 * </pre>
248 */
249
250
251/**
252 * root method for the preprocessor.
[9239]253 * @param sheet MapCSS style source
254 * @return result string
255 * @throws ParseException in case of parsing error
[6970]256 */
257String pp_root(MapCSSStyleSource sheet):
258{
259}
260{
261 { sb = new StringBuilder(); this.sheet = sheet; }
262 pp_black_box(true) <EOF>
263 { return sb.toString(); }
264}
265
266/**
267 * Parse any unknown grammar (black box).
268 *
269 * Only stop when "@media" is encountered and keep track of correct number of
270 * opening and closing curly brackets.
271 *
272 * @param write false if this content should be skipped (@pp_media condition is not fulfilled), true otherwise
[9239]273 * @throws ParseException in case of parsing error
[6970]274 */
275void pp_black_box(boolean write):
276{
277 Token t;
278}
279{
280 (
[8087]281 (t=<PP_AND> | t=<PP_OR> | t=<PP_NOT> | t=<UINT> | t=<STRING> | t=<REGEX> | t=<LPAR> | t=<RPAR> | t=<COMMA> | t=<COLON> | t=<IDENT> | t=<PP_SOMETHING_ELSE>) { if (write) sb.append(t.image); }
[6970]282 |
283 pp_w1()
284 |
[8087]285 pp_supports(!write)
286 |
[7277]287 pp_media(!write)
[6970]288 |
289 t=<LBRACE> { if (write) sb.append(t.image); } pp_black_box(write) t=<RBRACE> { if (write) sb.append(t.image); }
290 )*
291}
292
[8087]293/**
294 * Parses an @supports rule.
295 *
296 * @param ignore if the content of this rule should be ignored
297 * (because we are already inside a @supports block that didn't pass)
[9239]298 * @throws ParseException in case of parsing error
[8087]299 */
300void pp_supports(boolean ignore):
301{
302 boolean pass;
303}
304{
305 <PP_SUPPORTS> pp_w()
306 pass=pp_supports_condition()
307 <LBRACE>
308 pp_black_box(pass && !ignore)
309 <RBRACE>
310}
311
312/**
313 * Parses the condition of the @supports rule.
314 *
315 * Unlike other parsing rules, grabs trailing whitespace.
316 * @return true, if the condition is fulfilled
[9239]317 * @throws ParseException in case of parsing error
[8087]318 */
319boolean pp_supports_condition():
320{
321 boolean pass;
322 boolean q;
323}
324{
325 (
326 <PP_NOT> pp_w() q=pp_supports_condition_in_parens() { pass = !q; } pp_w()
327 |
328 LOOKAHEAD(pp_supports_condition_in_parens() pp_w() <PP_AND>)
329 pass=pp_supports_condition_in_parens() pp_w()
330 ( <PP_AND> pp_w() q=pp_supports_condition_in_parens() { pass = pass && q; } pp_w() )+
331 |
332 LOOKAHEAD(pp_supports_condition_in_parens() pp_w() <PP_OR>)
333 pass=pp_supports_condition_in_parens() pp_w()
334 ( <PP_OR> pp_w() q=pp_supports_condition_in_parens() { pass = pass || q; } pp_w() )+
335 |
336 pass=pp_supports_condition_in_parens() pp_w()
337 )
338 { return pass; }
339}
340
341/**
342 * Parses something in parenthesis inside the condition of the @supports rule.
343 *
344 * @return true, if the condition is fulfilled
[9239]345 * @throws ParseException in case of parsing error
[8087]346 */
347boolean pp_supports_condition_in_parens():
348{
349 boolean pass;
350}
351{
352 (
353 LOOKAHEAD(pp_supports_declaration_condition())
354 pass=pp_supports_declaration_condition()
355 |
356 <LPAR> pp_w() pass=pp_supports_condition() <RPAR>
357 )
358 { return pass; }
359}
360
361/**
362 * Parse an @supports declaration condition, e.&nbsp;g. a single (key:value) or (key) statement.
363 *
364 * The parsing rule {@link #literal()} from the main mapcss parser is reused here.
365 *
366 * @return true if the condition is fulfilled
[9239]367 * @throws ParseException in case of parsing error
[8087]368 */
369boolean pp_supports_declaration_condition():
370{
371 Token t;
372 String feature;
373 Object val = null;
374}
375{
376 <LPAR> pp_w() t=<IDENT> { feature = t.image; } pp_w() ( <COLON> pp_w() val=literal() )? <RPAR>
377 { return this.sheet.evalSupportsDeclCondition(feature, val); }
378}
379
380// deprecated
[7277]381void pp_media(boolean ignore):
[6970]382{
383 boolean pass = false;
384 boolean q;
385 boolean empty = true;
386}
387{
[9336]388 {
389 if (sheet != null) {
390 String msg = tr("Detected deprecated ''{0}'' in ''{1}'' which will be removed shortly. Use ''{2}'' instead.",
391 "@media", sheet.getDisplayString(), "@supports");
392 Main.error(msg);
393 sheet.logWarning(msg);
394 }
395 }
[6970]396 <PP_MEDIA> pp_w()
397 ( q=pp_media_query() { pass = pass || q; empty = false; }
398 ( <COMMA> pp_w() q=pp_media_query() { pass = pass || q; } )*
399 )?
400 <LBRACE>
[7277]401 pp_black_box((empty || pass) && !ignore)
[6970]402 <RBRACE>
403}
404
[8087]405// deprecated
[6970]406boolean pp_media_query():
407{
408 Token t;
409 String mediatype = "all";
410 boolean pass = true;
411 boolean invert = false;
412 boolean e;
413}
414{
415 ( <PP_NOT> { invert = true; } pp_w() )?
416 (
[8404]417 t=<IDENT> { mediatype = t.image.toLowerCase(Locale.ENGLISH); } pp_w()
[6970]418 ( <PP_AND> pp_w() e=pp_media_expression() { pass = pass && e; } pp_w() )*
419 |
420 e=pp_media_expression() { pass = pass && e; } pp_w()
421 ( <PP_AND> pp_w() e=pp_media_expression() { pass = pass && e; } pp_w() )*
422 )
423 {
424 if (!"all".equals(mediatype)) {
425 pass = false;
426 }
427 return invert ? (!pass) : pass;
428 }
429}
430
431/**
432 * Parse an @media expression.
433 *
434 * The parsing rule {@link #literal()} from the main mapcss parser is reused here.
435 *
436 * @return true if the condition is fulfilled
[9239]437 * @throws ParseException in case of parsing error
[6970]438 */
[8087]439// deprecated
[6970]440boolean pp_media_expression():
441{
442 Token t;
443 String feature;
444 Object val = null;
445}
446{
447 <LPAR> pp_w() t=<IDENT> { feature = t.image; } pp_w() ( <COLON> pp_w() val=literal() )? <RPAR>
[8087]448 { return this.sheet.evalSupportsDeclCondition(feature, val); }
[6970]449}
450
451void pp_w1():
452{
453 Token t;
454}
455{
456 t=<PP_NEWLINECHAR> { sb.append(t.image); }
457 |
458 t=<PP_WHITESPACE> { sb.append(t.image); }
459 |
460 t=<PP_COMMENT_START> { sb.append(t.image); } t=<PP_COMMENT_END> { sb.append(t.image); }
461}
462
463void pp_w():
464{
465}
466{
467 ( pp_w1() )*
468}
469
[9239]470/*
[6970]471 * Parser definition for the main MapCSS parser:
472 *
473 * <pre>
474 *
475 * rule
476 * _______________________|______________________________
477 * | |
478 * selector declaration
479 * _________|___________________ _________|____________
480 * | | | |
481 *
482 * way|z11-12[highway=residential] { color: red; width: 3 }
483 *
484 * |_____||___________________| |_________|
485 * | | |
486 * zoom condition instruction
487 *
488 * more general:
489 *
490 * way|z13-[a=b][c=d]::subpart, way|z-3[u=v]:closed::subpart2 { p1 : val; p2 : val; }
491 *
492 * 'val' can be a literal, or an expression like "prop(width, default) + 0.8".
493 *
494 * </pre>
495 */
496
[3848]497int uint() :
498{
499 Token i;
500}
501{
502 i=<UINT> { return Integer.parseInt(i.image); }
503}
504
[3911]505int int_() :
506{
507 int i;
508}
509{
510 <MINUS> i=uint() { return -i; } | i=uint() { return i; }
511}
512
[3848]513float ufloat() :
514{
515 Token f;
516}
517{
518 ( f=<UFLOAT> | f=<UINT> )
519 { return Float.parseFloat(f.image); }
520}
521
[3876]522float float_() :
523{
524 float f;
525}
526{
527 <MINUS> f=ufloat() { return -f; } | f=ufloat() { return f; }
528}
529
[3848]530String string() :
531{
532 Token t;
533}
534{
535 t=<STRING>
[3876]536 { return t.image.substring(1, t.image.length() - 1).replace("\\\"", "\"").replace("\\\\", "\\"); }
[3848]537}
538
[6896]539String ident():
540{
541 Token t;
542 String s;
543}
544{
[6970]545 ( t=<IDENT> | t=<SET> ) { return t.image; }
[6896]546}
547
[3848]548String string_or_ident() :
549{
550 Token t;
551 String s;
552}
553{
[6896]554 ( s=ident() | s=string() ) { return s; }
[3848]555}
556
[3876]557String regex() :
558{
559 Token t;
560}
561{
562 t=<REGEX>
563 { return t.image.substring(1, t.image.length() - 1); }
564}
565
[3848]566/**
567 * white-space
[9239]568 * @throws ParseException in case of parsing error
[3848]569 */
570void s() :
571{
572}
573{
574 ( <S> )?
575}
576
577/**
578 * mix of white-space and comments
[9239]579 * @throws ParseException in case of parsing error
[3848]580 */
581void w() :
582{
583}
584{
[3876]585 ( <S> | <COMMENT_START> <COMMENT_END> )*
[3848]586}
587
588/**
[6830]589 * comma delimited list of floats (at least 2, all &gt;= 0)
[9239]590 * @return list of floats
591 * @throws ParseException in case of parsing error
[3848]592 */
[3856]593List<Float> float_array() :
[3848]594{
595 float f;
596 List<Float> fs = new ArrayList<Float>();
597}
598{
599 f=ufloat() { fs.add(f); }
600 (
601 <COMMA> s()
602 f=ufloat() { fs.add(f); }
603 )+
604 {
[3856]605 return fs;
[3848]606 }
607}
608
609/**
[6970]610 * entry point for the main parser
[9239]611 * @param sheet MapCSS style source
612 * @throws ParseException in case of parsing error
[3848]613 */
614void sheet(MapCSSStyleSource sheet):
615{
616}
617{
[3863]618 { this.sheet = sheet; }
[3848]619 w()
[3876]620 (
621 try {
[7064]622 rule() w()
[4069]623 } catch (MapCSSException mex) {
[8521]624 Main.error(mex);
[4069]625 error_skipto(RBRACE, mex);
626 w();
[3876]627 } catch (ParseException ex) {
[4069]628 error_skipto(RBRACE, null);
[3876]629 w();
630 }
631 )*
[6970]632 <EOF>
[3848]633}
634
[7064]635void rule():
[3848]636{
[8822]637 List<Selector> selectors;
[7064]638 Declaration decl;
[3848]639}
640{
[8822]641 selectors=selectors()
[3848]642 decl=declaration()
[7064]643 {
644 for (Selector s : selectors) {
645 sheet.rules.add(new MapCSSRule(s, decl));
646 }
647 }
[3848]648}
649
[8822]650List<Selector> selectors():
651{
652 List<Selector> selectors = new ArrayList<Selector>();
653 Selector sel;
654}
655{
656 sel=child_selector() { selectors.add(sel); }
657 (
658 <COMMA> w()
659 sel=child_selector() { selectors.add(sel); }
660 )*
661 { return selectors; }
662}
663
[3902]664Selector child_selector() :
665{
[6607]666 Selector.ChildOrParentSelectorType type = null;
[4069]667 Condition c;
668 List<Condition> conditions = new ArrayList<Condition>();
669 Selector selLeft;
670 LinkSelector selLink = null;
671 Selector selRight = null;
[3902]672}
673{
[4069]674 selLeft=selector() w()
[3902]675 (
[6607]676 (
[6927]677 (
[7166]678 (
679 <GREATER> { type = Selector.ChildOrParentSelectorType.CHILD; }
680 |
681 <LESS> { type = Selector.ChildOrParentSelectorType.PARENT; }
682 |
683 <PLUS> { type = Selector.ChildOrParentSelectorType.SIBLING; }
684 )
685 ( ( c=condition(Context.LINK) | c=class_or_pseudoclass(Context.LINK) ) { conditions.add(c); } )*
[6927]686 |
[7166]687 <ELEMENT_OF> { type = Selector.ChildOrParentSelectorType.ELEMENT_OF; }
[6927]688 |
[7166]689 <CROSSING> { type = Selector.ChildOrParentSelectorType.CROSSING; }
[6927]690 )
[7166]691 w()
[6607]692 |
[7166]693 { /* <GREATER> is optional for child selector */ type = Selector.ChildOrParentSelectorType.CHILD; }
[6607]694 )
[4069]695 { selLink = new LinkSelector(conditions); }
696 selRight=selector() w()
[3902]697 )?
[6607]698 { return selRight != null ? new ChildOrParentSelector(selLeft, selLink, selRight, type) : selLeft; }
[3902]699}
700
[3848]701Selector selector() :
702{
703 Token base;
704 Condition c;
705 Pair<Integer, Integer> r = null;
706 List<Condition> conditions = new ArrayList<Condition>();
[8086]707 Subpart sub = null;
[3848]708}
709{
710 ( base=<IDENT> | base=<STAR> )
711 ( r=zoom() )?
[6560]712 ( ( c=condition(Context.PRIMITIVE) | c=class_or_pseudoclass(Context.PRIMITIVE) ) { conditions.add(c); } )*
[3848]713 ( sub=subpart() )?
[3902]714 { return new GeneralSelector(base.image, r, conditions, sub); }
[3848]715}
716
717Pair<Integer, Integer> zoom() :
718{
719 Integer min = 0;
720 Integer max = Integer.MAX_VALUE;
721}
722{
723 <PIPE_Z>
724 (
[3876]725 <MINUS> max=uint()
726 |
[4280]727 LOOKAHEAD(2)
728 min=uint() <MINUS> ( max=uint() )?
729 |
730 min=uint() { max = min; }
[3848]731 )
732 { return new Pair<Integer, Integer>(min, max); }
733}
734
[4069]735Condition condition(Context context) :
[3848]736{
[3856]737 Condition c;
738 Expression e;
739}
740{
[3911]741 <LSQUARE> s()
[3876]742 (
[4069]743 LOOKAHEAD( simple_key_condition(context) s() <RSQUARE> )
744 c=simple_key_condition(context) s() <RSQUARE> { return c; }
[3876]745 |
[4069]746 LOOKAHEAD( simple_key_value_condition(context) s() <RSQUARE> )
747 c=simple_key_value_condition(context) s() <RSQUARE> { return c; }
[3876]748 |
[10837]749 e=expression() <RSQUARE> { return ConditionFactory.createExpressionCondition(e, context); }
[3856]750 )
751}
752
[3902]753String tag_key() :
754{
[6896]755 String s, s2;
[3902]756 Token t;
757}
758{
759 s=string() { return s; }
760 |
[6896]761 s=ident() ( <COLON> s2=ident() { s += ':' + s2; } )* { return s; }
[3902]762}
763
[4069]764Condition simple_key_condition(Context context) :
[3856]765{
[3848]766 boolean not = false;
[10837]767 KeyMatchType matchType = null;;
[3848]768 String key;
769}
770{
771 ( <EXCLAMATION> { not = true; } )?
[6547]772 (
[10837]773 { matchType = KeyMatchType.REGEX; } key = regex()
[6547]774 |
775 key = tag_key()
776 )
[10837]777 ( LOOKAHEAD(2) <QUESTION> <EXCLAMATION> { matchType = KeyMatchType.FALSE; } )?
778 ( <QUESTION> { matchType = KeyMatchType.TRUE; } )?
779 { return ConditionFactory.createKeyCondition(key, not, matchType, context); }
[3848]780}
781
[4069]782Condition simple_key_value_condition(Context context) :
[3856]783{
784 String key;
785 String val;
[3876]786 float f;
[3911]787 int i;
[10837]788 KeyMatchType matchType = null;;
789 Op op;
[6554]790 boolean considerValAsKey = false;
[3856]791}
792{
[3876]793 (
[10837]794 key = regex() s() { matchType = KeyMatchType.REGEX; }
[8874]795 |
796 key=tag_key() s()
797 )
798 (
[6554]799 LOOKAHEAD(3)
800 (
[10837]801 <EQUAL> <TILDE> { op=Op.REGEX; }
[6554]802 |
[10837]803 <EXCLAMATION> <TILDE> { op=Op.NREGEX; }
[6554]804 )
805 s()
806 ( <STAR> { considerValAsKey=true; } )?
807 val=regex()
[3911]808 |
[3876]809 (
[10837]810 <EXCLAMATION> <EQUAL> { op=Op.NEQ; }
[3876]811 |
[10837]812 <EQUAL> { op=Op.EQ; }
[3876]813 |
[10837]814 <TILDE> <EQUAL> { op=Op.ONE_OF; }
[3876]815 |
[10837]816 <CARET> <EQUAL> { op=Op.BEGINS_WITH; }
[3876]817 |
[10837]818 <DOLLAR> <EQUAL> { op=Op.ENDS_WITH; }
[3876]819 |
[10837]820 <STAR> <EQUAL> { op=Op.CONTAINS; }
[3876]821 )
[3911]822 s()
[6554]823 ( <STAR> { considerValAsKey=true; } )?
[3911]824 (
825 LOOKAHEAD(2)
826 i=int_() { val=Integer.toString(i); }
827 |
828 f=float_() { val=Float.toString(f); }
829 |
830 val=string_or_ident()
831 )
[3876]832 |
833 (
[10837]834 <GREATER_EQUAL> { op=Op.GREATER_OR_EQUAL; }
[3876]835 |
[10837]836 <GREATER> { op=Op.GREATER; }
[3876]837 |
[10837]838 <LESS_EQUAL> { op=Op.LESS_OR_EQUAL; }
[3876]839 |
[10837]840 <LESS> { op=Op.LESS; }
[3876]841 )
[3911]842 s()
843 f=float_() { val=Float.toString(f); }
[3876]844 )
[10837]845 { return KeyMatchType.REGEX == matchType
846 ? ConditionFactory.createRegexpKeyRegexpValueCondition(key, val, op)
847 : ConditionFactory.createKeyValueCondition(key, val, op, context, considerValAsKey); }
[3856]848}
849
[6560]850Condition class_or_pseudoclass(Context context) :
[3848]851{
[6896]852 String s;
[3848]853 boolean not = false;
[6560]854 boolean pseudo;
[3848]855}
856{
[3888]857 ( <EXCLAMATION> { not = true; } )?
[6560]858 (
859 <FULLSTOP> { pseudo = false; }
860 |
861 <COLON> { pseudo = true; }
862 )
[6896]863 s=ident()
[6560]864 { return pseudo
[10837]865 ? ConditionFactory.createPseudoClassCondition(s, not, context)
866 : ConditionFactory.createClassCondition(s, not, context); }
[3848]867}
868
[8086]869Subpart subpart() :
[3848]870{
[6896]871 String s;
[8086]872 Expression e;
[3848]873}
874{
[3876]875 <DCOLON>
[8086]876 (
877 s=ident() { return new Subpart.StringSubpart(s); }
878 |
879 <STAR> { return new Subpart.StringSubpart("*"); }
880 |
881 <LPAR> e=expression() <RPAR> { return new Subpart.ExpressionSubpart(e); }
882 )
[3848]883}
884
[7064]885Declaration declaration() :
[3848]886{
887 List<Instruction> ins = new ArrayList<Instruction>();
888 Instruction i;
889 Token key;
[6560]890 Object val = null;
[3848]891}
892{
[3876]893 <LBRACE> w()
[3848]894 (
[6560]895 (
[6561]896 <SET> w()
897 (<FULLSTOP>)? // specification allows "set .class" to set "class". we also support "set class"
898 key=<IDENT> w()
899 ( <EQUAL> val=expression() )?
[6611]900 { ins.add(new Instruction.AssignmentInstruction(key.image, val == null ? true : val, true)); }
[7064]901 ( <RBRACE> { return new Declaration(ins, declarationCounter++); } | <SEMICOLON> w() )
[6560]902 )
[6561]903 |
[3876]904 key=<IDENT> w() <COLON> w()
905 (
906 LOOKAHEAD( float_array() w() ( <SEMICOLON> | <RBRACE> ) )
907 val=float_array()
[6611]908 { ins.add(new Instruction.AssignmentInstruction(key.image, val, false)); }
[3876]909 w()
[7064]910 ( <RBRACE> { return new Declaration(ins, declarationCounter++); } | <SEMICOLON> w() )
[3876]911 |
912 LOOKAHEAD( expression() ( <SEMICOLON> | <RBRACE> ) )
913 val=expression()
[6611]914 { ins.add(new Instruction.AssignmentInstruction(key.image, val, false)); }
[7064]915 ( <RBRACE> { return new Declaration(ins, declarationCounter++); } | <SEMICOLON> w() )
[3876]916 |
[6611]917 val=readRaw() w() { ins.add(new Instruction.AssignmentInstruction(key.image, val, false)); }
[3876]918 )
919 )*
920 <RBRACE>
[7064]921 { return new Declaration(ins, declarationCounter++); }
[3848]922}
923
[8256]924/**
925 * General expression.
926 * Separate production rule for each level of operator precedence (recursive descent).
927 */
928Expression expression() :
[3848]929{
930 Expression e;
[8256]931}
932{
933 e=conditional_expression()
934 {
935 return e;
936 }
937}
938
939Expression conditional_expression() :
940{
941 Expression e, e1, e2;
[3848]942 String op = null;
943}
944{
[8256]945 e=or_expression()
[3848]946 (
[8256]947 <QUESTION> w()
948 e1=conditional_expression()
949 <COLON> w()
950 e2=conditional_expression()
951 {
952 e = ExpressionFactory.createFunctionExpression("cond", Arrays.asList(e, e1, e2));
953 }
954 )?
955 {
956 return e;
957 }
958}
[3876]959
[8256]960Expression or_expression() :
961{
962 Expression e, e2;
963 String op = null;
964}
965{
966 e=and_expression()
967 (
968 <PIPE> <PIPE> w()
969 e2=and_expression()
970 {
971 e = ExpressionFactory.createFunctionExpression("or", Arrays.asList(e, e2));
972 }
973 )*
974 {
975 return e;
976 }
977}
978
979Expression and_expression() :
980{
981 Expression e, e2;
982 String op = null;
983}
984{
985 e=relational_expression()
986 (
987 <AMPERSAND> <AMPERSAND> w()
988 e2=relational_expression()
989 {
990 e = ExpressionFactory.createFunctionExpression("and", Arrays.asList(e, e2));
991 }
992 )*
993 {
994 return e;
995 }
996}
997
998Expression relational_expression() :
999{
1000 Expression e, e2;
1001 String op = null;
1002}
1003{
1004 e=additive_expression()
1005 (
[3867]1006 (
[8256]1007 <GREATER_EQUAL> { op = "greater_equal"; }
1008 |
1009 <LESS_EQUAL> { op = "less_equal"; }
1010 |
1011 <GREATER> { op = "greater"; }
1012 |
1013 <LESS> { op = "less"; }
1014 |
1015 <EQUAL> ( <EQUAL> )? { op = "equal"; }
1016 |
1017 <EXCLAMATION> <EQUAL> { op = "not_equal"; }
1018 ) w()
1019 e2=additive_expression()
1020 {
1021 e = ExpressionFactory.createFunctionExpression(op, Arrays.asList(e, e2));
1022 }
1023 )?
[3848]1024 {
[8256]1025 return e;
1026 }
1027}
1028
1029Expression additive_expression() :
1030{
1031 Expression e, e2;
1032 String op = null;
1033}
1034{
1035 e=multiplicative_expression()
1036 (
1037 ( <PLUS> { op = "plus"; } | <MINUS> { op = "minus"; } ) w()
1038 e2=multiplicative_expression()
1039 {
1040 e = ExpressionFactory.createFunctionExpression(op, Arrays.asList(e, e2));
1041 }
1042 )*
1043 {
1044 return e;
1045 }
1046}
1047
1048Expression multiplicative_expression() :
1049{
1050 Expression e, e2;
1051 String op = null;
1052}
1053{
1054 e=unary_expression()
1055 (
1056 ( <STAR> { op = "times"; } | <SLASH> { op = "divided_by"; } ) w()
1057 e2=unary_expression()
1058 {
1059 e = ExpressionFactory.createFunctionExpression(op, Arrays.asList(e, e2));
1060 }
1061 )*
1062 {
1063 return e;
1064 }
1065}
1066
1067Expression unary_expression() :
1068{
1069 Expression e;
1070 String op = null;
1071}
1072{
1073 (
1074 <MINUS> { op = "minus"; } w()
1075 |
1076 <EXCLAMATION> { op = "not"; } w()
1077 )?
1078 e=primary() w()
1079 {
[3856]1080 if (op == null)
[8256]1081 return e;
1082 return ExpressionFactory.createFunctionExpression(op, Collections.singletonList(e));
[3848]1083 }
1084}
1085
1086Expression primary() :
1087{
1088 Expression nested;
[5705]1089 Expression fn;
[3848]1090 Object lit;
1091}
1092{
[3971]1093 LOOKAHEAD(3) // both function and identifier start with an identifier (+ optional whitespace)
[3848]1094 fn=function() { return fn; }
1095 |
[8260]1096 lit=literal()
1097 {
1098 if (lit == null)
1099 return NullExpression.INSTANCE;
1100 return new LiteralExpression(lit);
1101 }
[3848]1102 |
[3876]1103 <LPAR> w() nested=expression() <RPAR> { return nested; }
[3848]1104}
1105
[5705]1106Expression function() :
[3848]1107{
1108 Expression arg;
1109 String name;
1110 List<Expression> args = new ArrayList<Expression>();
1111}
1112{
[6896]1113 name=ident() w()
[3848]1114 <LPAR> w()
[3856]1115 (
1116 arg=expression() { args.add(arg); }
1117 ( <COMMA> w() arg=expression() { args.add(arg); } )*
1118 )?
[3848]1119 <RPAR>
[5705]1120 { return ExpressionFactory.createFunctionExpression(name, args); }
[3848]1121}
1122
1123Object literal() :
1124{
[6970]1125 String val, pref;
1126 Token t;
[8260]1127 Float f;
[3848]1128}
1129{
[6740]1130 LOOKAHEAD(2)
[6970]1131 pref=ident() t=<HEXCOLOR>
1132 { return Main.pref.getColor("mappaint." + (sheet == null ? "MapCSS" : sheet.title) + "." + pref, ColorHelper.html2color(t.image)); }
[6740]1133 |
[3967]1134 t=<IDENT> { return new Keyword(t.image); }
[3848]1135 |
[3967]1136 val=string() { return val; }
1137 |
[3876]1138 <PLUS> f=ufloat() { return new Instruction.RelativeFloat(f); }
[3848]1139 |
[8260]1140 LOOKAHEAD(2)
1141 f=ufloat_unit() { return f; }
1142 |
[3848]1143 f=ufloat() { return f; }
1144 |
[6740]1145 t=<HEXCOLOR> { return ColorHelper.html2color(t.image); }
[3848]1146}
1147
[8260]1148/**
1149 * Number followed by a unit.
1150 *
1151 * Returns angles in radians and lengths in pixels.
1152 */
1153Float ufloat_unit() :
1154{
1155 float f;
1156 String u;
1157}
1158{
[9099]1159 f=ufloat() ( u=ident() | <DEG> { u = "°"; } | <PERCENT> { u = "%"; } )
[8260]1160 {
1161 Double m = unit_factor(u);
1162 if (m == null)
1163 return null;
1164 return (float) (f * m);
1165 }
1166}
1167
[3848]1168JAVACODE
[8260]1169private Double unit_factor(String unit) {
1170 switch (unit) {
1171 case "deg":
1172 case "°": return Math.PI / 180;
1173 case "rad": return 1.;
1174 case "grad": return Math.PI / 200;
1175 case "turn": return 2 * Math.PI;
[9099]1176 case "%": return 0.01;
[8260]1177 case "px": return 1.;
1178 case "cm": return 96/2.54;
1179 case "mm": return 9.6/2.54;
1180 case "in": return 96.;
1181 case "q": return 2.4/2.54;
1182 case "pc": return 16.;
1183 case "pt": return 96./72;
1184 default: return null;
1185 }
1186}
1187
1188JAVACODE
[4069]1189void error_skipto(int kind, MapCSSException me) {
[3893]1190 if (token.kind == EOF)
1191 throw new ParseException("Reached end of file while parsing");
[4069]1192
1193 Exception e = null;
1194 ParseException pe = generateParseException();
1195
1196 if (me != null) {
[8515]1197 final Token token = Utils.firstNonNull(pe.currentToken.next, pe.currentToken);
1198 me.setLine(token.beginLine);
1199 me.setColumn(token.beginColumn);
[4069]1200 e = me;
1201 } else {
1202 e = new ParseException(pe.getMessage()); // prevent memory leak
1203 }
1204
[6248]1205 Main.error("Skipping to the next rule, because of an error:");
1206 Main.error(e);
[3863]1207 if (sheet != null) {
[4069]1208 sheet.logError(e);
[3863]1209 }
1210 Token t;
1211 do {
1212 t = getNextToken();
[3867]1213 } while (t.kind != kind && t.kind != EOF);
1214 if (t.kind == EOF)
1215 throw new ParseException("Reached end of file while parsing");
[3848]1216}
1217
[3876]1218JAVACODE
1219/**
1220 * read everything to the next semicolon
1221 */
1222String readRaw() {
1223 Token t;
1224 StringBuilder s = new StringBuilder();
1225 while (true) {
1226 t = getNextToken();
[3893]1227 if ((t.kind == S || t.kind == STRING || t.kind == UNEXPECTED_CHAR) &&
1228 t.image.contains("\n")) {
1229 ParseException e = new ParseException(String.format("Warning: end of line while reading an unquoted string at line %s column %s.", t.beginLine, t.beginColumn));
[6248]1230 Main.error(e);
[3893]1231 if (sheet != null) {
1232 sheet.logError(e);
1233 }
1234 }
[3876]1235 if (t.kind == SEMICOLON || t.kind == EOF)
1236 break;
1237 s.append(t.image);
1238 }
1239 if (t.kind == EOF)
1240 throw new ParseException("Reached end of file while parsing");
1241 return s.toString();
1242}
1243
Note: See TracBrowser for help on using the repository browser.