mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-20 18:32:29 +00:00
ADDITIONAL_INCLUDE_DIRS and ADDITIONAL_LIB_DIRS. * Testing/DynamicElements/Makefile.preamble: Ditto. * GSWExtensionsGSW.framework/Makefile.preamble: Ditto. Also remove comments. * GSWeb.framework/Makefile.preamble.in: Ditto. Also correct ADDITIONAL_CPPFLAGS * Testing/DynamicElements/GNUmakefile: Remove unused variables. * GSWeb.framework/GNUmakefile: Ditto. * GSWExtensions.framework/Makefile.postamble: Removed unused targets 'regenerate' and 'copy-dist'. * GSWExtensionsGSW.framework/Makefile.postamble: Ditto. * Testing/DynamicElements/Makefile.postamble: Ditto. * GSWeb.framework/Makefile.postamble: Ditto. Add rule for GNUSTEP_TARGET_DIR dependent 'config.h'. * Testing/DynamicElements/Resources/Info-DynamicElements.plist: Correct spelling. * Testing/DynamicElements/DynamicElements.m: Replace #import with #include. * Testing/DynamicElements/DynamicElements_main.m: Ditto. * Testing/DynamicElements/Main.h: Ditto. * Testing/DynamicElements/Main.m: Ditto. * Examples/hello/Hello.m: Ditto. * Examples/hello/HelloPage.h: Ditto. * Examples/hello/HelloPage.m: Ditto. * Examples/hello/Hello_main.m: Ditto. * Examples/hello/Main.h: Ditto. * Examples/hello/Main.m: Ditto. * Examples/hello/Resources/Info-Hello.plist: Reformatted. * GSWeb.framework/GSWDebug.h/m (GSWLogAssertGoodFn): Adjust prototype to use id instead of NSObject * and dereference via class_pointer instead of isa. ([NSObject isa]): Remove obsolete category. * GSWeb.framework/GSWPageDefLexer.h: Use "GSWeb.h" instead of <GSWeb/GSWeb.h> for include. * GSWeb.framework/GSWPageDefLexer.m: Ditto. * GSWeb.framework/GSWPageDefParser.h: Ditto. * GSWeb.framework/GSWPageDefParser.m: Ditto. * GSWeb.framework/GSWPageDefParserTokenTypes.h: Ditto. * GSWeb.framework/PageDef.g: Ditto. * GSWeb.framework/html.g: Ditto. * GSWeb.framework/htmltag.g: Ditto. * GSWeb.framework/GSWWOCompatibility.m: Remove file. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18338 72102866-910b-0410-8b05-ffd578937521
313 lines
7.2 KiB
Text
313 lines
7.2 KiB
Text
/*
|
|
*/
|
|
header {
|
|
#include "GSWeb.h"
|
|
}
|
|
|
|
options {
|
|
language="Objc";
|
|
}
|
|
|
|
class GSWPageDefParser extends Parser;
|
|
options {
|
|
/*exportVocab=GSWPageDef;*/
|
|
buildAST=true;
|
|
k = 4;
|
|
}
|
|
|
|
{
|
|
NSMutableDictionary* elements;
|
|
GSWPageDefElement* currentElement;
|
|
NSString* currentMemberName;
|
|
GSWAssociation* currentAssociation;
|
|
NSMutableArray* includes;
|
|
NSMutableArray* errors;
|
|
NSMutableArray* warnings;
|
|
}
|
|
|
|
/*
|
|
imaginaryTokenDefinitions
|
|
: INCLUDE
|
|
;
|
|
*/
|
|
|
|
document
|
|
{
|
|
DESTROY(elements);
|
|
elements=[NSMutableDictionary new];
|
|
DESTROY(includes);
|
|
includes=[NSMutableArray new];
|
|
DESTROY(errors);
|
|
DESTROY(warnings);
|
|
}
|
|
: ((object { [elements setObject:currentElement forKey:[currentElement elementName]]; } )
|
|
| (include))+
|
|
;
|
|
//TODO unescapedString
|
|
include:
|
|
(INCLUDE (WS)*)
|
|
includeObj:STRING { [includes addObject:[self unescapedString:[[[includeObj text] stringByDeletingPrefix:@"\""] stringByDeletingSuffix:@"\""]]]; }
|
|
;
|
|
|
|
object:
|
|
objectId:IDENT^ {currentElement=[[GSWPageDefElement new] autorelease]; [currentElement setElementName:[objectId_AST text]]; }
|
|
COLUMN^
|
|
( definition )!
|
|
;
|
|
|
|
definition:
|
|
( classname )
|
|
LCURLY^
|
|
( member { [currentElement setAssociation:currentAssociation forKey:currentMemberName]; DESTROY(currentMemberName); DESTROY(currentAssociation); })*! RCURLY!
|
|
(SEMI)?
|
|
;
|
|
classname:
|
|
objectClass:IDENT { [currentElement setClassName:[objectClass text]]; }
|
|
;
|
|
|
|
member:
|
|
memberName:mname { ASSIGN(currentMemberName,([memberName_AST toStringListWithSiblingSeparator:@"" openSeparator:@"" closeSeparator:@""])); }
|
|
ASSIGN ( mvalue )
|
|
(SEMI)*!
|
|
;
|
|
|
|
mname:
|
|
// (QUESTIONMARK)? (IDENT)
|
|
(QUESTIONMARK | EXCLAMATIONMARK)? (IDENT | STRING)
|
|
;
|
|
|
|
//TODO unescapedString
|
|
mvalue:
|
|
( assocKeyPath:idref
|
|
{ { GSWAssociation* assoc=[GSWAssociation associationWithKeyPath:[assocKeyPath_AST toStringListWithSiblingSeparator:@"" openSeparator:@"" closeSeparator:@""]];
|
|
ASSIGN(currentAssociation,assoc); }; }
|
|
| assocConstantInt:INT
|
|
{ { GSWAssociation* assoc=[GSWAssociation associationWithValue:[NSNumber valueFromString:[assocConstantInt text]]];
|
|
ASSIGN(currentAssociation,assoc); }; }
|
|
| YES
|
|
{ { GSWAssociation* assoc=[GSWAssociation associationWithValue:[NSNumber numberWithBool:YES]];
|
|
ASSIGN(currentAssociation,assoc); }; }
|
|
| NO
|
|
{ { GSWAssociation* assoc=[GSWAssociation associationWithValue:[NSNumber numberWithBool:NO]];
|
|
ASSIGN(currentAssociation,assoc); }; }
|
|
| assocConstantString:STRING
|
|
{ { GSWAssociation* assoc=[GSWAssociation associationWithValue:[self unescapedString:[[[assocConstantString text] stringByDeletingPrefix:@"\""] stringByDeletingSuffix:@"\""]]];
|
|
ASSIGN(currentAssociation,assoc); }; }
|
|
| assocConstantHexNum:HEXNUM
|
|
{ { GSWAssociation* assoc=[GSWAssociation associationWithValue:[NSNumber valueFromString:[assocConstantHexNum text]]];
|
|
ASSIGN(currentAssociation,assoc); }; }
|
|
)
|
|
;
|
|
|
|
idref:
|
|
(CIRC | TILDE)? (IDENT | IDENTREF ) (PIDENT | PIDENTREF)*
|
|
;
|
|
|
|
class GSWPageDefLexer extends Lexer;
|
|
options {
|
|
k = 4;
|
|
/*exportVocab=GSWPageDef;*/
|
|
charVocabulary = '\3'..'\377';
|
|
caseSensitive=true;
|
|
filter=UNDEFINED_TOKEN;
|
|
}
|
|
|
|
// Single-line comments
|
|
SL_COMMENT
|
|
: "//"
|
|
(~('\n'|'\r'))* ('\n'|'\r'('\n')?)
|
|
{ _ttype = ANTLRToken_SKIP; [self newline]; } //{$setType(Token.SKIP); newline();}
|
|
;
|
|
|
|
// multiple-line comments
|
|
ML_COMMENT
|
|
: "/*"
|
|
( /* '\r' '\n' can be matched in one alternative or by matching
|
|
'\r' in one iteration and '\n' in another. I am trying to
|
|
handle any flavor of newline that comes in, but the language
|
|
that allows both "\r\n" and "\r" and "\n" to all be valid
|
|
newline is ambiguous. Consequently, the resulting grammar
|
|
must be ambiguous. I'm shutting this warning off.
|
|
*/
|
|
options {
|
|
generateAmbigWarnings=false;
|
|
}
|
|
:
|
|
{ [self LA:2]!='/' }? '*'
|
|
| '\r' '\n' { [self newline]; } // {newline();}
|
|
| '\r' { [self newline]; } // {newline();}
|
|
| '\n' { [self newline]; } // {newline();}
|
|
| ~('*'|'\n'|'\r')
|
|
)*
|
|
"*/"
|
|
{ _ttype = ANTLRToken_SKIP; } // {$setType(Token.SKIP);}
|
|
;
|
|
|
|
|
|
/* STRUCTURAL tags
|
|
*/
|
|
|
|
INCLUDE: "#include"
|
|
;
|
|
|
|
IDENT
|
|
options { testLiterals = true; }
|
|
: (LETTER|'_') (LETTER|'_'|DIGIT)*
|
|
;
|
|
|
|
PIDENT
|
|
options { testLiterals = true; }
|
|
: POINT (IDENT | STRING)
|
|
;
|
|
|
|
IDENTREF
|
|
options { testLiterals = true; }
|
|
: (LETTER|'_'|'@') (LETTER|'_'|DIGIT)*
|
|
;
|
|
|
|
PIDENTREF
|
|
options { testLiterals = true; }
|
|
: POINT (IDENTREF | INT | STRING)
|
|
;
|
|
|
|
YES
|
|
options { testLiterals = true; }
|
|
: "YES"
|
|
;
|
|
|
|
NO
|
|
options { testLiterals = true; }
|
|
: "NO"
|
|
;
|
|
|
|
LCURLY: '{'
|
|
;
|
|
|
|
RCURLY: '}'
|
|
;
|
|
|
|
SEMI: ';'
|
|
;
|
|
|
|
CIRC: '^'
|
|
;
|
|
|
|
TILDE: '~'
|
|
;
|
|
|
|
COLUMN: ':'
|
|
;
|
|
|
|
ASSIGN: '='
|
|
;
|
|
|
|
QUESTIONMARK: '?'
|
|
;
|
|
|
|
EXCLAMATIONMARK: '!'
|
|
;
|
|
|
|
WS:
|
|
( ' '
|
|
| '\t'
|
|
| '\n' { [self newline]; }
|
|
| "\r\n" { [self newline]; }
|
|
| '\r' { [self newline]; }
|
|
) { _ttype = ANTLRToken_SKIP; }
|
|
;
|
|
|
|
STRING
|
|
// : '"' (~'"')* '"'
|
|
// | '\'' (~'\'')* '\''
|
|
: '\'' ( ESC |~('\''|'\\'))* '\''
|
|
| '"' ( ESC |~('"'|'\\'))* '"'
|
|
;
|
|
|
|
POINT: '.';
|
|
|
|
INT : (DIGIT)+
|
|
;
|
|
|
|
HEXNUM
|
|
: '#' HEXINT
|
|
;
|
|
|
|
// escape sequence -- note that this is protected; it can only be called
|
|
// from another lexer rule -- it will not ever directly return a token to
|
|
// the parser
|
|
// There are various ambiguities hushed in this rule. The optional
|
|
// '0'...'9' digit matches should be matched here rather than letting
|
|
// them go back to STRING_LITERAL to be matched. ANTLR does the
|
|
// right thing by matching immediately; hence, it's ok to shut off
|
|
// the FOLLOW ambig warnings.
|
|
protected
|
|
ESC
|
|
: '\\'
|
|
( 'n'
|
|
| 'r'
|
|
| 't'
|
|
| 'b'
|
|
| 'f'
|
|
| '"'
|
|
| '\''
|
|
| '\\'
|
|
| ('u')+ HEXDIGIT HEXDIGIT HEXDIGIT HEXDIGIT
|
|
| ('0'..'3')
|
|
(
|
|
options {
|
|
warnWhenFollowAmbig = false;
|
|
}
|
|
: ('0'..'9')
|
|
(
|
|
options {
|
|
warnWhenFollowAmbig = false;
|
|
}
|
|
: '0'..'9'
|
|
)?
|
|
)?
|
|
| ('4'..'7')
|
|
(
|
|
options {
|
|
warnWhenFollowAmbig = false;
|
|
}
|
|
: ('0'..'9')
|
|
)?
|
|
)
|
|
;
|
|
protected
|
|
HEXINT
|
|
: (
|
|
/* Technically, HEXINT cannot be followed by a..f, but due to our
|
|
loose grammar, the whitespace that normally would follow this
|
|
rule is optional. ANTLR reports that #4FACE could parse as
|
|
HEXINT "#4" followed by WORD "FACE", which is clearly bogus.
|
|
ANTLR does the right thing by consuming a much input as
|
|
possible here. I shut the warning off.
|
|
*/
|
|
options {
|
|
generateAmbigWarnings=false;
|
|
}
|
|
: HEXDIGIT
|
|
)+
|
|
;
|
|
|
|
protected
|
|
DIGIT
|
|
: '0'..'9'
|
|
;
|
|
|
|
protected
|
|
HEXDIGIT
|
|
: ('0'..'9'|'A'..'F'|'a'..'f')
|
|
;
|
|
|
|
protected
|
|
LCLETTER
|
|
: 'a'..'z'
|
|
;
|
|
|
|
protected
|
|
LETTER
|
|
: 'a'..'z'
|
|
| 'A'..'Z'
|
|
;
|