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 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
|
%{
//
// RELAX NG Compact Syntax parser
//
// Author:
// Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
//
// (C)2003 Atsushi Enomoto
//
// Copyright (c) 2004 Novell Inc.
// All rights reserved
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Collections;
using System.Collections.Specialized;
using System.IO;
using System.Xml;
using Commons.Xml.Relaxng;
namespace Commons.Xml.Relaxng.Rnc
{
public class RncParser
{
public static RelaxngPattern ParseRnc (TextReader reader)
{
return ParseRnc (reader, new NameTable ());
}
public static RelaxngPattern ParseRnc (TextReader reader, XmlNameTable nameTable)
{
return ParseRnc (reader, nameTable, null);
}
public static RelaxngPattern ParseRnc (TextReader reader, XmlNameTable nameTable, string baseUri)
{
return ParseRnc (reader, nameTable, baseUri, null);
}
public static RelaxngPattern ParseRnc (TextReader reader, XmlNameTable nameTable, string baseUri, string defaultNamespace)
{
return new RncParser (nameTable).Parse (reader, baseUri, defaultNamespace);
}
XmlNamespaceManager nsmgr;
XmlNamespaceManager dtnsmgr;
string defaultNamespace;
static int yacc_verbose_flag;
RncTokenizer tokenizer;
public RncParser (XmlNameTable nameTable)
{
if (nameTable == null)
nameTable = new NameTable ();
nsmgr = new XmlNamespaceManager (nameTable);
dtnsmgr = new XmlNamespaceManager (nameTable);
dtnsmgr.AddNamespace ("xsd", "http://www.w3.org/2001/XMLSchema-datatypes");
ErrorOutput = System.IO.TextWriter.Null;
}
public int Line {
get { return tokenizer.Line; }
}
public int Column {
get { return tokenizer.Column; }
}
public string BaseUri {
get { return tokenizer.BaseUri; }
}
// note that this is different notion than that of xmlns.
public RelaxngPattern Parse (TextReader source)
{
return Parse (source, null);
}
public RelaxngPattern Parse (TextReader source, string baseUri)
{
return Parse (source, baseUri, null);
}
public RelaxngPattern Parse (TextReader source, string baseUri, string defaultNamespace)
{
this.defaultNamespace = defaultNamespace ?? string.Empty;
if (defaultNamespace != null && defaultNamespace.Length != 0)
nsmgr.AddNamespace (String.Empty, defaultNamespace);
try {
if (Environment.GetEnvironmentVariable ("MONO_RELAXNG_COMPACT_DEBUG") == "yes")
debug = new yydebug.yyDebugSimple ();
tokenizer = new RncTokenizer (source, baseUri);
RelaxngPattern p = (RelaxngPattern) yyparse (tokenizer);
if (p is RelaxngGrammar)
((RelaxngGrammar) p).IsSourceCompactSyntax = true;
return p;
} catch (Exception ex) {
throw new RelaxngException (String.Format ("Tokenizer error at line {0}, column {1}: {2}", Line, Column, ex.Message), ex);
}
}
private void FillLocation (RelaxngElementBase el)
{
el.BaseUri = BaseUri;
el.LineNumber = Line;
el.LinePosition = Column;
}
private void FillGrammarContent (IList source, IList starts, IList defines, IList divs, IList includes)
{
foreach (RelaxngElementBase elem in source) {
if (elem is RelaxngStart)
starts.Add (elem);
else if (elem is RelaxngDefine)
defines.Add (elem);
else if (elem is RelaxngDiv)
divs.Add (elem);
else if (elem is RelaxngInclude)
includes.Add (elem);
else
throw new InvalidOperationException ();
}
}
private XmlQualifiedName SplitQName (XmlNamespaceManager nsmgr, string name)
{
int colon = name.IndexOf (':');
if (colon < 0)
return new XmlQualifiedName (name, String.Empty);
string local = name.Substring (colon + 1);
string prefix = name.Substring (0, colon);
return new XmlQualifiedName (local, nsmgr.LookupNamespace (nsmgr.NameTable.Get (prefix)));
}
private void FillElementDefaultNS (RelaxngNameClass nc)
{
RelaxngName name = nc as RelaxngName;
if (name != null) {
if (name.Namespace == null)
name.Namespace = defaultNamespace;
return;
}
RelaxngNameChoice choice = nc as RelaxngNameChoice;
if (choice != null) {
foreach (RelaxngNameClass c in choice.Children)
FillElementDefaultNS (c);
}
}
private void FillAttributeDefaultNS (RelaxngNameClass nc)
{
RelaxngName name = nc as RelaxngName;
if (name != null) {
if (name.Namespace == null)
name.Namespace = String.Empty;
return;
}
RelaxngNameChoice choice = nc as RelaxngNameChoice;
if (choice != null) {
foreach (RelaxngNameClass c in choice.Children)
FillAttributeDefaultNS (c);
}
}
%}
%token ERROR
%token EOF
%token KeywordAttribute "attribute"
%token KeywordDefault //"default"
%token KeywordDatatypes "datatypes"
%token KeywordDiv "div"
%token KeywordElement "element"
%token KeywordEmpty "empty"
%token KeywordExternal "external"
%token KeywordGrammar "grammar"
%token KeywordInclude "include"
%token KeywordInherit "inherit"
%token KeywordList "list"
%token KeywordMixed "mixed"
%token KeywordNamespace //"namespace"
%token KeywordNotAllowed "notAllowed"
%token KeywordParent "parent"
%token KeywordStart "start"
%token KeywordString //"string"
%token KeywordText "text"
%token KeywordToken "left"
%token Equal "="
%token Comma ","
%token Tilde "~"
%token OpenCurly "{"
%token CloseCurly "}"
%token OpenParen "("
%token CloseParen ")"
%token OpenBracket "["
%token CloseBracket "]"
%token Amp "&"
%token Bar "|"
%token Question "?"
%token Asterisk "*"
%token Plus "+"
%token Minus "-"
%token OrEquals "|="
%token AndEquals "&="
%token TwoGreaters ">>"
%token LiteralSegment
%token NCName
%token QuotedIdentifier
%token Documentation
/* These tokens are parsed by RncTokenizer, since whitespaces between
the particles are not allowed. */
%token NCName
%token CName
%token NsName
%start TopLevel
%%
TopLevel /* returns RelaxngPattern */
: Preamble TopLevelBody
{
$$ = (RelaxngPattern) $2;
}
;
Preamble /* returns null */
: /* empty */
{
$$ = null;
}
| Decl Preamble
{
$$ = null;
}
;
Decl /* returns null */
: KeywordNamespace NamespacePrefix Equal NamespaceURILiteral
{
// TODO: constraints
string prefix = (string) $2;
string ns = (string) $4;
if (prefix == "local")
nsmgr.AddNamespace (String.Empty, ns);
else
nsmgr.AddNamespace (prefix, ns);
$$ = null;
}
| KeywordDefault KeywordNamespace Equal NamespaceURILiteral
{
// TODO: constraints
string ns = (string) $4;
defaultNamespace = ns;
nsmgr.AddNamespace (String.Empty, ns);
$$ = null;
}
| KeywordDefault KeywordNamespace NamespacePrefix Equal NamespaceURILiteral
{
// TODO: constraints
string prefix = (string) $3;
string ns = (string) $5;
defaultNamespace = ns;
nsmgr.AddNamespace (String.Empty, ns);
nsmgr.AddNamespace (prefix, ns);
$$ = null;
}
| KeywordDatatypes DatatypePrefix Equal Literal
{
// TODO: constraints
string prefix = (string) $2;
string ns = (string) $4;
dtnsmgr.AddNamespace (prefix, ns);
$$ = null;
}
;
NamespacePrefix /* returns string */
: IdentifierOrKeyword
{
$$ = (string) $1;
}
;
DatatypePrefix /* returns string */
: IdentifierOrKeyword
{
$$ = (string) $1;
}
;
NamespaceURILiteral /* returns string */
: Literal
{
$$ = (string) $1;
}
| KeywordInherit
{
$$ = defaultNamespace;
}
;
TopLevelBody /* returns RelaxngPattern */
: Pattern
{
// TODO: Constraint: single element
// IList pl = (IList) $1;
// if (pl.Count != 1)
// throw new RelaxngException ("The number of the top level pattern must be exactly one.");
// $$ = pl [0];
$$ = (RelaxngPattern) $1;
}
| Grammar
{
RelaxngGrammar g = new RelaxngGrammar ();
FillLocation (g);
if (defaultNamespace != null)
g.DefaultNamespace = defaultNamespace;
RelaxngGrammarContentList list = (RelaxngGrammarContentList) $1;
FillGrammarContent (list, g.Starts, g.Defines, g.Divs, g.Includes);
$$ = g;
}
;
Grammar /* returns RelaxngGrammarContentList */
: /* empty */
{
$$ = new RelaxngGrammarContentList ();
}
| Member Grammar
{
RelaxngGrammarContentList al = (RelaxngGrammarContentList) $2;
if ($1 != null)
al.Insert (0, (IGrammarContent) $1);
$$ = al;
}
;
Member /* returns nullable IGrammarContent (RelaxngDiv, RelaxngInclude, RelaxngStart, RelaxngDefine) */
: AnnotatedComponent
{
$$ = (IGrammarContent) $1;
}
| AnnotationElementNotKeyword
{
$$ = null;
}
;
AnnotatedComponent /* returns IGrammarContent */
: Annotations Component
{
// $$ = ApplyAnnotations ((string) $1, (RelaxngElementBase) $2);
$$ = (IGrammarContent) $2;
}
;
Component /* returns IGrammarContent */
: Start
{
$$ = (RelaxngStart) $1;
}
| Define
{
$$ = (RelaxngDefine) $1;
}
| Include
{
$$ = (RelaxngInclude) $1;
}
| Div
{
$$ = (RelaxngDiv) $1;
}
;
Start /* returns RelaxngStart */
: KeywordStart AssignOp Pattern
{
RelaxngStart start = new RelaxngStart ();
FillLocation (start);
start.Combine = (string) $2;
start.Pattern = (RelaxngPattern) $3;
$$ = start;
}
;
Define /* returns RelaxngDefine */
: Identifier AssignOp Pattern
{
RelaxngDefine def = new RelaxngDefine ();
FillLocation (def);
def.Name = (string) $1;
def.Combine = (string) $2;
def.Patterns.Add ((RelaxngPattern) $3);
$$ = def;
}
;
AssignOp /* returns string */
: Equal
{
$$ = null;
}
| OrEquals
{
$$ = "choice";
}
| AndEquals
{
$$ = "interleave";
}
;
Include /* returns RelaxngInclude */
: KeywordInclude AnyURILiteral OptInherit OptIncludeBody
{
// FIXME: OptInherit is not handled properly.
RelaxngInclude include = new RelaxngInclude ();
FillLocation (include);
include.Href = (string) $2;
include.NSContext = (string) $3;
FillGrammarContent ((IList) $4, include.Starts, include.Defines, include.Divs, null);
$$ = include;
}
;
AnyURILiteral /* returns string */
: Literal
{
// Constraints: any URI
$$ = (string) $1;
}
;
OptInherit /* returns string */
/* The empty value will be handled at Compile() time. */
: /* empty */
{
// MakeNsAttribute (LookupDefault (environment));
$$ = defaultNamespace;
}
| KeywordInherit Equal IdentifierOrKeyword
{
// MakeNsAttribute (LookupPrefix (environment, $3));
$$ = nsmgr.LookupPrefix ((string) $3);
}
;
OptIncludeBody /* returns IList */
: /* empty */
{
$$ = new ArrayList ();
}
| OpenCurly IncludeBody CloseCurly
{
$$ = (IList) $2;
}
;
IncludeBody /* returns IList */
: /* empty */
{
$$ = new ArrayList ();
}
| IncludeMember IncludeBody
{
ArrayList al = (ArrayList) $2;
al.Insert (0, $1);
$$ = al;
}
;
IncludeMember /* returns RelaxngElementBase */
: AnnotatedIncludeComponent
{
$$ = (RelaxngElementBase) $1;
}
| AnnotationElementNotKeyword
{
$$ = (RelaxngElementBase) $1;
}
;
AnnotatedIncludeComponent /* returns IGrammarContent */
: Annotations IncludeComponent
{
// $$ = ApplyAnnotations ((string) $1, (RelaxngElementBase) $2);
$$ = (IGrammarContent) $2;
}
;
IncludeComponent /* returns IGrammarContent */
: Start
{
$$ = (RelaxngStart) $1;
}
| Define
{
$$ = (RelaxngDefine) $1;
}
| IncludeDiv
{
$$ = (RelaxngDiv) $1;
}
;
Div /* returns RelaxngDiv */
: KeywordDiv OpenCurly Grammar CloseCurly
{
RelaxngDiv div = new RelaxngDiv ();
FillLocation (div);
FillGrammarContent ((IList) $3, div.Starts, div.Defines, div.Divs, div.Includes);
$$ = div;
}
;
IncludeDiv /* returns RelaxngDiv */
: KeywordDiv OpenCurly IncludeBody CloseCurly
{
RelaxngDiv div = new RelaxngDiv ();
FillLocation (div);
FillGrammarContent ((IList) $3, div.Starts, div.Defines, div.Divs, div.Includes);
$$ = div;
}
;
Pattern /* returns RelaxngPattern */
: InnerPattern
;
InnerPattern /* returns RelaxngPattern */
/* TODO: applyAnnotations() are omitted */
: InnerParticle
{
$$ = (RelaxngPattern) $1;
}
| ParticleChoice
{
RelaxngPatternList list = (RelaxngPatternList) $1;
RelaxngChoice choice = new RelaxngChoice ();
FillLocation (choice);
for (int i = 0; i < list.Count; i++)
choice.Patterns.Add (list [i]);
// This is said as to return Elements, while ApplyAnnotations() is said to return Element
$$ = choice;
}
| ParticleGroup
{
RelaxngPatternList list = (RelaxngPatternList) $1;
RelaxngGroup group = new RelaxngGroup ();
FillLocation (group);
for (int i = 0; i < list.Count; i++)
group.Patterns.Add (list [i]);
// This is said as to return Elements, while ApplyAnnotations() is said to return Element
$$ = group;
}
| ParticleInterleave
{
RelaxngPatternList list = (RelaxngPatternList) $1;
RelaxngInterleave interleave = new RelaxngInterleave ();
FillLocation (interleave);
for (int i = 0; i < list.Count; i++)
interleave.Patterns.Add (list [i]);
// This is said as to return Elements, while ApplyAnnotations() is said to return Element
$$ = interleave;
}
| AnnotatedDataExcept
{
$$ = (RelaxngData) $1;
}
;
ParticleChoice /* returns RelaxngPatternList */
: Particle Bar Particle
{
RelaxngPatternList list = new RelaxngPatternList ();
list.Add ((RelaxngPattern) $1);
list.Add ((RelaxngPattern) $3);
$$ = list;
}
| Particle Bar ParticleChoice
{
RelaxngPatternList list = (RelaxngPatternList) $3;
list.Insert (0, (RelaxngPattern) $1);
$$ = list;
}
;
ParticleGroup /* returns RelaxngPatternList */
: Particle Comma Particle
{
RelaxngPatternList list = new RelaxngPatternList ();
list.Add ((RelaxngPattern) $1);
list.Add ((RelaxngPattern) $3);
$$ = list;
}
| Particle Comma ParticleGroup
{
RelaxngPatternList list = (RelaxngPatternList) $3;
list.Insert (0, (RelaxngPattern) $1);
$$ = list;
}
;
ParticleInterleave /* returns RelaxngPatternList */
: Particle Amp Particle
{
RelaxngPatternList list = new RelaxngPatternList ();
list.Add ((RelaxngPattern) $1);
list.Add ((RelaxngPattern) $3);
$$ = list;
}
| Particle Amp ParticleInterleave
{
RelaxngPatternList list = (RelaxngPatternList) $3;
list.Insert (0, (RelaxngPattern) $1);
$$ = list;
}
;
Particle /* returns RelaxngPattern */
: InnerParticle
;
InnerParticle /* returns RelaxngPattern */
: AnnotatedPrimary
{
// $$ = ApplyAnnotationsGroup (null, (RelaxngPatternList) $1);
$$ = $1;
}
| RepeatedPrimary FollowAnnotations
{
// FIXME: annotations are not handled
RelaxngPattern p = (RelaxngPattern) $1;
// RelaxngPatternList l = new RelaxngPatternList ();
// l.Add (p);
// $$ = l;
$$ = p;
}
;
RepeatedPrimary /* returns RelaxngPattern */
: AnnotatedPrimary Asterisk
{
RelaxngZeroOrMore zom = new RelaxngZeroOrMore ();
FillLocation (zom);
zom.Patterns.Add ((RelaxngPattern) $1);
$$ = zom;
}
| AnnotatedPrimary Plus
{
RelaxngOneOrMore oom = new RelaxngOneOrMore ();
FillLocation (oom);
oom.Patterns.Add ((RelaxngPattern) $1);
$$ = oom;
}
| AnnotatedPrimary Question
{
RelaxngOptional opt = new RelaxngOptional ();
FillLocation (opt);
opt.Patterns.Add ((RelaxngPattern) $1);
$$ = opt;
}
;
AnnotatedPrimary /* returns RelaxngPattern */
: LeadAnnotatedPrimary FollowAnnotations
{
// FIXME: handle followAnnotations
$$ = $1;
}
;
AnnotatedDataExcept /* returns RelaxngPattern */
: LeadAnnotatedDataExcept FollowAnnotations
{
// FIXME: handle followAnnotations
$$ = $1;
}
;
LeadAnnotatedDataExcept /* returns RelaxngData */
: Annotations DataExcept
{
$$ = $2;
}
;
LeadAnnotatedPrimary /* returns RelaxngPattern */
: Annotations Primary
{
// LAMESPEC: This should return Elements, while ApplyAnnotations() returns Element
// RelaxngPatternList list = new RelaxngPatternList ();
// list.Add ((RelaxngPattern) ApplyAnnotations ((string) $1, (RelaxngPattern) $2));
// $$ = list;
$$ = (RelaxngPattern) $2;
}
| Annotations OpenParen InnerPattern CloseParen
{
// $$ = (RelaxngPatternList) $3;
$$ = (RelaxngPattern) $3;
}
;
Primary /* returns RelaxngPattern */
: KeywordElement NameClass OpenCurly Pattern CloseCurly
{
RelaxngNameClass nc = (RelaxngNameClass) $2;
RelaxngElement el = new RelaxngElement ();
FillLocation (el);
el.NameClass = nc;
FillElementDefaultNS (el.NameClass);
el.Patterns.Add ((RelaxngPattern) $4);
$$ = el;
}
| KeywordAttribute NameClass OpenCurly Pattern CloseCurly
{
RelaxngNameClass nc = (RelaxngNameClass) $2;
RelaxngAttribute attr = new RelaxngAttribute ();
FillLocation (attr);
attr.NameClass = nc;
FillAttributeDefaultNS (attr.NameClass);
attr.Pattern = (RelaxngPattern) $4;
$$ = attr;
}
| KeywordMixed OpenCurly Pattern CloseCurly
{
RelaxngMixed mixed = new RelaxngMixed ();
FillLocation (mixed);
mixed.Patterns.Add ((RelaxngPattern) $3);
$$ = mixed;
}
| KeywordList OpenCurly Pattern CloseCurly
{
RelaxngList list = new RelaxngList ();
FillLocation (list);
list.Patterns.Add ((RelaxngPattern) $3);
$$ = list;
}
| DatatypeName OptParams
{
RelaxngData data = new RelaxngData ();
FillLocation (data);
XmlQualifiedName dtName = (XmlQualifiedName) $1;
data.DatatypeLibrary = dtName.Namespace;
data.Type = dtName.Name;
foreach (RelaxngParam p in (ICollection) $2)
data.ParamList.Add (p);
$$ = data;
}
| DatatypeName DatatypeValue
{
RelaxngValue value = new RelaxngValue ();
FillLocation (value);
XmlQualifiedName dtName = (XmlQualifiedName) $1;
if (dtName.Namespace != RelaxngGrammar.NamespaceURI)
value.DatatypeLibrary = dtName.Namespace;
value.Type = dtName.Name;
value.Value = (string) $2;
$$ = value;
}
| DatatypeValue
{
RelaxngValue value = new RelaxngValue ();
FillLocation (value);
value.Value = (string) $1;
// RELAX NG default type
value.Type = "string";
value.DatatypeLibrary = String.Empty;
$$ = value;
}
| KeywordEmpty
{
RelaxngEmpty empty = new RelaxngEmpty ();
FillLocation (empty);
$$ = empty;
}
| KeywordNotAllowed
{
RelaxngNotAllowed na = new RelaxngNotAllowed ();
FillLocation (na);
$$ = na;
}
| KeywordText
{
RelaxngText text = new RelaxngText ();
FillLocation (text);
$$ = text;
}
| Ref
{
RelaxngRef r = new RelaxngRef ();
FillLocation (r);
r.Name = (string) $1;
$$ = r;
}
| KeywordParent Ref
{
RelaxngParentRef pref = new RelaxngParentRef ();
FillLocation (pref);
pref.Name = (string) $2;
$$ = pref;
}
| KeywordGrammar OpenCurly Grammar CloseCurly
{
RelaxngGrammar g = new RelaxngGrammar ();
FillLocation (g);
FillGrammarContent ((IList) $3, g.Starts, g.Defines, g.Divs, g.Includes);
$$ = g;
}
| KeywordExternal AnyURILiteral OptInherit
{
RelaxngExternalRef extref = new RelaxngExternalRef ();
FillLocation (extref);
extref.Href = (string) $2;
extref.NSContext = (string) $3;
$$ = extref;
}
;
DataExcept /* returns RelaxngData */
: DatatypeName OptParams Minus LeadAnnotatedPrimary
{
XmlQualifiedName type = (XmlQualifiedName) $1;
RelaxngData data = new RelaxngData ();
FillLocation (data);
data.Type = type.Name;
data.DatatypeLibrary = type.Namespace;
foreach (RelaxngParam p in (RelaxngParamList) $2)
data.ParamList.Add (p);
data.Except = new RelaxngExcept ();
FillLocation (data.Except);
data.Except.Patterns.Add ((RelaxngPattern) $4);
$$ = data;
}
;
Ref /* returns string */
: Identifier
;
DatatypeName
: CName
{
string cname = (string) $1;
$$ = SplitQName (dtnsmgr, cname);
}
| KeywordString
{
$$ = new XmlQualifiedName ("string", String.Empty);
}
| KeywordToken
{
$$ = new XmlQualifiedName ("token", String.Empty);
}
;
DatatypeValue
: Literal
;
OptParams
: /* empty */
{
$$ = new RelaxngParamList ();
}
| OpenCurly Params CloseCurly
{
$$ = $2;
}
;
Params
: /* empty */
{
$$ = new RelaxngParamList ();
}
| Param Params
{
RelaxngParamList al = (RelaxngParamList) $2;
al.Insert (0, (RelaxngParam) $1);
$$ = al;
}
;
Param /* returns RelaxngParam */
: Annotations IdentifierOrKeyword Equal Literal
{
RelaxngParam prm = new RelaxngParam ();
FillLocation (prm);
prm.Name = (string) $2;
prm.Value = (string) $4;
// $$ = ApplyAnnotations ((string) $1, prm);
$$ = prm;
}
;
NameClass /* returns RelaxngNameClass */
: InnerNameClass
{
$$ = $1;
}
;
InnerNameClass /* returns RelaxngNameClass */
: AnnotatedSimpleNameClass
{
$$ = (RelaxngNameClass) $1;
}
| NameClassChoice
{
RelaxngNameChoice cho = new RelaxngNameChoice ();
FillLocation (cho);
RelaxngNameClassList list = (RelaxngNameClassList) $1;
for (int i = 0; i < list.Count; i++)
cho.Children.Add ((RelaxngNameClass) list [i]);
$$ = cho;
}
| AnnotatedExceptNameClass
{
$$ = (RelaxngNameClass) $1;
}
;
NameClassChoice /* returns RelaxngNameClassList */
: AnnotatedSimpleNameClass Bar AnnotatedSimpleNameClass
{
RelaxngNameClassList list = new RelaxngNameClassList ();
list.Add ((RelaxngNameClass) $1);
list.Add ((RelaxngNameClass) $3);
$$ = list;
}
| AnnotatedSimpleNameClass Bar NameClassChoice
{
RelaxngNameClassList list = (RelaxngNameClassList) $3;
list.Insert (0, (RelaxngNameClass) $1);
$$ = list;
}
;
AnnotatedExceptNameClass /* returns RelaxngNameClass */
: LeadAnnotatedExceptNameClass FollowAnnotations
{
$$ = (RelaxngNameClass) $1;
}
;
LeadAnnotatedExceptNameClass /* returns RelaxngNameClass */
: Annotations ExceptNameClass
{
$$ = (RelaxngNameClass) $2;
}
;
AnnotatedSimpleNameClass /* returns RelaxngNameClass */
: LeadAnnotatedSimpleNameClass FollowAnnotations
{
// FIXME: annotations
$$ = $1;
}
;
LeadAnnotatedSimpleNameClass /* returns RelaxngNameClass */
: Annotations SimpleNameClass
{
// FIXME: applyAnnotations
$$ = (RelaxngNameClass) $2;
}
| Annotations OpenParen InnerNameClass CloseParen
{
$$ = $3;
}
;
ExceptNameClass
: NsName Minus LeadAnnotatedSimpleNameClass
{
RelaxngNsName nsName = new RelaxngNsName ();
FillLocation (nsName);
nsName.Namespace = nsmgr.LookupNamespace ((string) $1);
nsName.Except = new RelaxngExceptNameClass ();
FillLocation (nsName.Except);
nsName.Except.Names.Add ((RelaxngNameClass) $3);
$$ = nsName;
}
| Asterisk Minus LeadAnnotatedSimpleNameClass
{
RelaxngAnyName anyName = new RelaxngAnyName ();
FillLocation (anyName);
anyName.Except = new RelaxngExceptNameClass ();
FillLocation (anyName.Except);
anyName.Except.Names.Add ((RelaxngNameClass) $3);
$$ = anyName;
}
;
SimpleNameClass /* returns RelaxngNameClass */
: IdentifierOrKeyword
{
RelaxngName name = new RelaxngName ();
FillLocation (name);
name.LocalName = (string) $1;
name.Namespace = null;
$$ = name;
}
| CName
{
string cname = (string) $1;
XmlQualifiedName qname = SplitQName (nsmgr, cname);
RelaxngName name = new RelaxngName ();
FillLocation (name);
name.LocalName = qname.Name;
name.Namespace = qname.Namespace;
$$ = name;
}
| NsName
{
RelaxngNsName nsName = new RelaxngNsName ();
FillLocation (nsName);
nsName.Namespace = nsmgr.LookupNamespace ((string) $1);
$$ = nsName;
}
| Asterisk
{
RelaxngAnyName anyName= new RelaxngAnyName ();
FillLocation (anyName);
$$ = anyName;
}
;
FollowAnnotations
: /* empty */
{
$$ = null;
}
| TwoGreaters AnnotationElement FollowAnnotations
{
// FIXME: handle them
$$ = null;
}
;
Annotations /* returns null */
/* FIXME: needed to handle them? */
: Documentations
{
$$ = null;
}
| Documentations OpenBracket AnnotationContentInAnnotations CloseBracket
{
$$ = null;
}
;
// This one is extra to the original syntax rule. Also it and following
// annotation related rules are modified to work fine without ambiguity.
// FIXME: it should reject attributes after elements...
AnnotationContentInAnnotations
: // empty
| PrefixedName Equal Literal AnnotationContentInAnnotations
| PrefixedName AnnotationAttributesContent AnnotationContentInAnnotations
| IdentifierOrKeyword AnnotationAttributesContent AnnotationContentInAnnotations
;
// ... but something like this one should be used instead.
AttributableAnnotations
: // empty
| AttributableAnnotations PrefixedName Equal Literal NonAttributableAnnotations
;
NonAttributableAnnotations
: // empty
| PrefixedName AnnotationAttributesContent
| NonAttributableAnnotations IdentifierOrKeyword AnnotationAttributesContent
;
AnnotationElement
: ForeignElementName AnnotationAttributesContent
{
// do nothing
// $$ = Element ($1, $2);
$$ = null;
}
;
ForeignElementName
: IdentifierOrKeyword
{
$$ = new XmlQualifiedName ((string) $1, String.Empty);
}
| PrefixedName
// Constraint: RELAX NG namespace URI
;
// FIXME: due to syntax ambiguity it cannot be included in the creation rules.
AnnotationElementNotKeyword /* null */
: ERROR
;
/*
AnnotationElementNotKeyword // null
: ForeignElementNameNotKeyword AnnotationAttributeContent
{
// do nothing
$$ = $1;
}
;
ForeignElementNameNotKeyword // QName
: Identifier
{
$$ = new XmlQualifiedName ((string) $1, String.Empty);
}
| PrefixedName
{
// Constraint: RELAX NG namespace URI
$$ = (XmlQualifiedName) $1;
}
;
*/
AnnotationAttributesContent /* returns null */
: OpenBracket NestedAnnotationContents CloseBracket
{
$$ = null;
}
;
// ditto (see also AnnotationContentInAnnotations)
NestedAnnotationContents
: /* empty */
| PrefixedName Equal Literal NestedAnnotationContents
| IdentifierOrKeyword Equal Literal NestedAnnotationContents
| PrefixedName AnnotationAttributesContent NestedAnnotationContents
| IdentifierOrKeyword AnnotationAttributesContent NestedAnnotationContents
| Literal
| Literal NestedAnnotationContents
;
NestedAnnotationAttributes /* returns null */
: /* empty */
{
$$ = null;
}
| AnyAttributeName Equal Literal NestedAnnotationAttributes
{
// Constraint: duplicate attributes
// do nothing
// $$ = Attribute ($1, $2);
$$ = null;
}
AnyAttributeName /* returns XmlQualifiedName */
: IdentifierOrKeyword
{
$$ = new XmlQualifiedName ((string) $1);
}
| PrefixedName
{
// Constraint: xmlns namespace URI
$$ = (XmlQualifiedName) $1;
}
;
AnnotationContent /* returns null */
: /* empty */
{
$$ = null;
}
| NestedAnnotationElement AnnotationContent
{
$$ = null;
}
| Literal AnnotationContent
{
$$ = null;
}
;
NestedAnnotationElement /* returns null */
: AnyElementName AnnotationAttributesContent
{
// do nothing
// $$ = Element ($1, $2);
$$ = null;
}
;
AnyElementName /* returns XmlQualifiedName */
: IdentifierOrKeyword
{
$$ = new XmlQualifiedName ((string) $1, String.Empty);
}
| PrefixedName
{
$$ = (XmlQualifiedName) $1;
}
;
PrefixedName /* returns XmlQualifiedName */
: CName
{
// Constraint: annotation inherit
$$ = SplitQName (nsmgr, (string) $1);
}
;
Documentations /* returns null */
: /* empty */
{
$$ = null;
}
| Documentation Documentations
{
// do nothing
// $$ = Element (DocumentationElementName (), Text ((string) $1), $2);
$$ = null;
}
;
IdentifierOrKeyword /* returns string */
: Identifier
{
$$ = (string) $1;
}
| Keyword
{
$$ = (string) $1;
}
;
Keyword /* returns string */
: KeywordAttribute
| KeywordDefault
| KeywordDatatypes
| KeywordDiv
| KeywordElement
| KeywordEmpty
| KeywordExternal
| KeywordGrammar
| KeywordInclude
| KeywordInherit
| KeywordList
| KeywordMixed
| KeywordNamespace
| KeywordNotAllowed
| KeywordParent
| KeywordStart
| KeywordString
| KeywordText
| KeywordToken
;
Literal /* returns string */
: LiteralSegment
{
$$ = (string) $1;
}
| LiteralSegment Tilde Literal
{
$$ = (string) $1 + (string) $3;
}
;
Identifier /* returns string */
: NCName
{
$$ = (string) $1;
}
| QuotedIdentifier
{
$$ = (string) $1;
}
;
%%
}
|