1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
6 // Copyright (C) 2002-2016, International Business Machines Corporation and others.
7 // All Rights Reserved.
9 // This file contains the Rule Based Break Iterator Rule Builder functions for
10 // scanning the rules and assembling a parse tree. This is the first phase
11 // of compiling the rules.
13 // The overall of the rules is managed by class RBBIRuleBuilder, which will
14 // create and use an instance of this class as part of the process.
17 #include "unicode/utypes.h"
19 #if !UCONFIG_NO_BREAK_ITERATION
21 #include "unicode/unistr.h"
22 #include "unicode/uniset.h"
23 #include "unicode/uchar.h"
24 #include "unicode/uchriter.h"
25 #include "unicode/parsepos.h"
26 #include "unicode/parseerr.h"
30 #include "rbbirpt.h" // Contains state table for the rbbi rules parser.
31 // generated by a Perl script.
39 //------------------------------------------------------------------------------
41 // Unicode Set init strings for each of the character classes needed for parsing a rule file.
42 // (Initialized with hex values for portability to EBCDIC based machines.
43 // Really ugly, but there's no good way to avoid it.)
45 // The sets are referred to by name in the rbbirpt.txt, which is the
46 // source form of the state transition table for the RBBI rule parser.
48 //------------------------------------------------------------------------------
49 static const UChar gRuleSet_rule_char_pattern
[] = {
50 // [ ^ [ \ p { Z } \ u 0 0 2 0
51 0x5b, 0x5e, 0x5b, 0x5c, 0x70, 0x7b, 0x5a, 0x7d, 0x5c, 0x75, 0x30, 0x30, 0x32, 0x30,
52 // - \ u 0 0 7 f ] - [ \ p
53 0x2d, 0x5c, 0x75, 0x30, 0x30, 0x37, 0x66, 0x5d, 0x2d, 0x5b, 0x5c, 0x70,
54 // { L } ] - [ \ p { N } ] ]
55 0x7b, 0x4c, 0x7d, 0x5d, 0x2d, 0x5b, 0x5c, 0x70, 0x7b, 0x4e, 0x7d, 0x5d, 0x5d, 0};
57 static const UChar gRuleSet_name_char_pattern
[] = {
58 // [ _ \ p { L } \ p { N } ]
59 0x5b, 0x5f, 0x5c, 0x70, 0x7b, 0x4c, 0x7d, 0x5c, 0x70, 0x7b, 0x4e, 0x7d, 0x5d, 0};
61 static const UChar gRuleSet_digit_char_pattern
[] = {
63 0x5b, 0x30, 0x2d, 0x39, 0x5d, 0};
65 static const UChar gRuleSet_name_start_char_pattern
[] = {
67 0x5b, 0x5f, 0x5c, 0x70, 0x7b, 0x4c, 0x7d, 0x5d, 0 };
69 static const UChar kAny
[] = {0x61, 0x6e, 0x79, 0x00}; // "any"
73 static void U_CALLCONV
RBBISetTable_deleter(void *p
) {
74 icu::RBBISetTableEl
*px
= (icu::RBBISetTableEl
*)p
;
76 // Note: px->val is owned by the linked list "fSetsListHead" in scanner.
77 // Don't delete the value nodes here.
84 //------------------------------------------------------------------------------
88 //------------------------------------------------------------------------------
89 RBBIRuleScanner::RBBIRuleScanner(RBBIRuleBuilder
*rb
)
102 fNodeStack
[0] = NULL
;
105 fReverseRule
= FALSE
;
106 fLookAheadRule
= FALSE
;
107 fNoChainInRule
= FALSE
;
114 // Do not check status until after all critical fields are sufficiently initialized
115 // that the destructor can run cleanly.
116 if (U_FAILURE(*rb
->fStatus
)) {
121 // Set up the constant Unicode Sets.
122 // Note: These could be made static, lazily initialized, and shared among
123 // all instances of RBBIRuleScanners. BUT this is quite a bit simpler,
124 // and the time to build these few sets should be small compared to a
125 // full break iterator build.
126 fRuleSets
[kRuleSet_rule_char
-128]
127 = UnicodeSet(UnicodeString(gRuleSet_rule_char_pattern
), *rb
->fStatus
);
128 // fRuleSets[kRuleSet_white_space-128] = [:Pattern_White_Space:]
129 fRuleSets
[kRuleSet_white_space
-128].
130 add(9, 0xd).add(0x20).add(0x85).add(0x200e, 0x200f).add(0x2028, 0x2029);
131 fRuleSets
[kRuleSet_name_char
-128]
132 = UnicodeSet(UnicodeString(gRuleSet_name_char_pattern
), *rb
->fStatus
);
133 fRuleSets
[kRuleSet_name_start_char
-128]
134 = UnicodeSet(UnicodeString(gRuleSet_name_start_char_pattern
), *rb
->fStatus
);
135 fRuleSets
[kRuleSet_digit_char
-128]
136 = UnicodeSet(UnicodeString(gRuleSet_digit_char_pattern
), *rb
->fStatus
);
137 if (*rb
->fStatus
== U_ILLEGAL_ARGUMENT_ERROR
) {
138 // This case happens if ICU's data is missing. UnicodeSet tries to look up property
139 // names from the init string, can't find them, and claims an illegal argument.
140 // Change the error so that the actual problem will be clearer to users.
141 *rb
->fStatus
= U_BRK_INIT_ERROR
;
143 if (U_FAILURE(*rb
->fStatus
)) {
147 fSymbolTable
= new RBBISymbolTable(this, rb
->fRules
, *rb
->fStatus
);
148 if (fSymbolTable
== NULL
) {
149 *rb
->fStatus
= U_MEMORY_ALLOCATION_ERROR
;
152 fSetTable
= uhash_open(uhash_hashUnicodeString
, uhash_compareUnicodeString
, NULL
, rb
->fStatus
);
153 if (U_FAILURE(*rb
->fStatus
)) {
156 uhash_setValueDeleter(fSetTable
, RBBISetTable_deleter
);
161 //------------------------------------------------------------------------------
165 //------------------------------------------------------------------------------
166 RBBIRuleScanner::~RBBIRuleScanner() {
168 if (fSetTable
!= NULL
) {
169 uhash_close(fSetTable
);
176 // Normally has one entry, which is the entire parse tree for the rules.
177 // If errors occured, there may be additional subtrees left on the stack.
178 while (fNodeStackPtr
> 0) {
179 delete fNodeStack
[fNodeStackPtr
];
185 //------------------------------------------------------------------------------
187 // doParseAction Do some action during rule parsing.
188 // Called by the parse state machine.
189 // Actions build the parse tree and Unicode Sets,
190 // and maintain the parse stack for nested expressions.
192 // TODO: unify EParseAction and RBBI_RuleParseAction enum types.
193 // They represent exactly the same thing. They're separate
194 // only to work around enum forward declaration restrictions
195 // in some compilers, while at the same time avoiding multiple
196 // definitions problems. I'm sure that there's a better way.
198 //------------------------------------------------------------------------------
199 UBool
RBBIRuleScanner::doParseActions(int32_t action
)
203 UBool returnVal
= TRUE
;
208 pushNewNode(RBBINode::opStart
);
214 // Scanned a '^' while on the rule start state.
215 fNoChainInRule
= TRUE
;
219 case doExprOrOperator
:
221 fixOpStack(RBBINode::precOpCat
);
222 RBBINode
*operandNode
= fNodeStack
[fNodeStackPtr
--];
223 RBBINode
*orNode
= pushNewNode(RBBINode::opOr
);
224 if (U_FAILURE(*fRB
->fStatus
)) {
227 orNode
->fLeftChild
= operandNode
;
228 operandNode
->fParent
= orNode
;
232 case doExprCatOperator
:
233 // concatenation operator.
234 // For the implicit concatenation of adjacent terms in an expression that are
235 // not separated by any other operator. Action is invoked between the
236 // actions for the two terms.
238 fixOpStack(RBBINode::precOpCat
);
239 RBBINode
*operandNode
= fNodeStack
[fNodeStackPtr
--];
240 RBBINode
*catNode
= pushNewNode(RBBINode::opCat
);
241 if (U_FAILURE(*fRB
->fStatus
)) {
244 catNode
->fLeftChild
= operandNode
;
245 operandNode
->fParent
= catNode
;
251 // The openParen node is a dummy operation type with a low precedence,
252 // which has the affect of ensuring that any real binary op that
253 // follows within the parens binds more tightly to the operands than
254 // stuff outside of the parens.
255 pushNewNode(RBBINode::opLParen
);
259 fixOpStack(RBBINode::precLParen
);
266 // We've just scanned "$variable = "
267 // The top of the node stack has the $variable ref node.
269 // Save the start position of the RHS text in the StartExpression node
270 // that precedes the $variableReference node on the stack.
271 // This will eventually be used when saving the full $variable replacement
273 n
= fNodeStack
[fNodeStackPtr
-1];
274 n
->fFirstPos
= fNextIndex
; // move past the '='
276 // Push a new start-of-expression node; needed to keep parse of the
277 // RHS expression happy.
278 pushNewNode(RBBINode::opStart
);
286 // We have reached the end of an assignement statement.
287 // Current scan char is the ';' that terminates the assignment.
289 // Terminate expression, leaves expression parse tree rooted in TOS node.
290 fixOpStack(RBBINode::precStart
);
292 RBBINode
*startExprNode
= fNodeStack
[fNodeStackPtr
-2];
293 RBBINode
*varRefNode
= fNodeStack
[fNodeStackPtr
-1];
294 RBBINode
*RHSExprNode
= fNodeStack
[fNodeStackPtr
];
296 // Save original text of right side of assignment, excluding the terminating ';'
297 // in the root of the node for the right-hand-side expression.
298 RHSExprNode
->fFirstPos
= startExprNode
->fFirstPos
;
299 RHSExprNode
->fLastPos
= fScanIndex
;
300 fRB
->fRules
.extractBetween(RHSExprNode
->fFirstPos
, RHSExprNode
->fLastPos
, RHSExprNode
->fText
);
302 // Expression parse tree becomes l. child of the $variable reference node.
303 varRefNode
->fLeftChild
= RHSExprNode
;
304 RHSExprNode
->fParent
= varRefNode
;
306 // Make a symbol table entry for the $variableRef node.
307 fSymbolTable
->addEntry(varRefNode
->fText
, varRefNode
, *fRB
->fStatus
);
308 if (U_FAILURE(*fRB
->fStatus
)) {
309 // This is a round-about way to get the parse position set
310 // so that duplicate symbols error messages include a line number.
311 UErrorCode t
= *fRB
->fStatus
;
312 *fRB
->fStatus
= U_ZERO_ERROR
;
316 // Clean up the stack.
317 delete startExprNode
;
324 fixOpStack(RBBINode::precStart
); // Terminate expression, leaves expression
325 if (U_FAILURE(*fRB
->fStatus
)) { // parse tree rooted in TOS node.
329 if (fRB
->fDebugEnv
&& uprv_strstr(fRB
->fDebugEnv
, "rtree")) {printNodeStack("end of rule");}
331 U_ASSERT(fNodeStackPtr
== 1);
332 RBBINode
*thisRule
= fNodeStack
[fNodeStackPtr
];
334 // If this rule includes a look-ahead '/', add a endMark node to the
336 if (fLookAheadRule
) {
337 RBBINode
*endNode
= pushNewNode(RBBINode::endMark
);
338 RBBINode
*catNode
= pushNewNode(RBBINode::opCat
);
339 if (U_FAILURE(*fRB
->fStatus
)) {
343 catNode
->fLeftChild
= thisRule
;
344 catNode
->fRightChild
= endNode
;
345 fNodeStack
[fNodeStackPtr
] = catNode
;
346 endNode
->fVal
= fRuleNum
;
347 endNode
->fLookAheadEnd
= TRUE
;
350 // TODO: Disable chaining out of look-ahead (hard break) rules.
351 // The break on rule match is forced, so there is no point in building up
352 // the state table to chain into another rule for a longer match.
355 // Mark this node as being the root of a rule.
356 thisRule
->fRuleRoot
= TRUE
;
358 // Flag if chaining into this rule is wanted.
360 if (fRB
->fChainRules
&& // If rule chaining is enabled globally via !!chain
361 !fNoChainInRule
) { // and no '^' chain-in inhibit was on this rule
362 thisRule
->fChainIn
= TRUE
;
366 // All rule expressions are ORed together.
367 // The ';' that terminates an expression really just functions as a '|' with
368 // a low operator prededence.
370 // Each of the four sets of rules are collected separately.
371 // (forward, reverse, safe_forward, safe_reverse)
372 // OR this rule into the appropriate group of them.
374 RBBINode
**destRules
= (fReverseRule
? &fRB
->fReverseTree
: fRB
->fDefaultTree
);
376 if (*destRules
!= NULL
) {
377 // This is not the first rule encounted.
378 // OR previous stuff (from *destRules)
379 // with the current rule expression (on the Node Stack)
380 // with the resulting OR expression going to *destRules
382 RBBINode
*thisRule
= fNodeStack
[fNodeStackPtr
];
383 RBBINode
*prevRules
= *destRules
;
384 RBBINode
*orNode
= pushNewNode(RBBINode::opOr
);
385 if (U_FAILURE(*fRB
->fStatus
)) {
388 orNode
->fLeftChild
= prevRules
;
389 prevRules
->fParent
= orNode
;
390 orNode
->fRightChild
= thisRule
;
391 thisRule
->fParent
= orNode
;
396 // This is the first rule encountered (for this direction).
397 // Just move its parse tree from the stack to *destRules.
398 *destRules
= fNodeStack
[fNodeStackPtr
];
400 fReverseRule
= FALSE
; // in preparation for the next rule.
401 fLookAheadRule
= FALSE
;
402 fNoChainInRule
= FALSE
;
409 error(U_BRK_RULE_SYNTAX
);
414 case doVariableNameExpectedErr
:
415 error(U_BRK_RULE_SYNTAX
);
420 // Unary operands + ? *
421 // These all appear after the operand to which they apply.
422 // When we hit one, the operand (may be a whole sub expression)
423 // will be on the top of the stack.
424 // Unary Operator becomes TOS, with the old TOS as its one child.
427 RBBINode
*operandNode
= fNodeStack
[fNodeStackPtr
--];
428 RBBINode
*plusNode
= pushNewNode(RBBINode::opPlus
);
429 if (U_FAILURE(*fRB
->fStatus
)) {
432 plusNode
->fLeftChild
= operandNode
;
433 operandNode
->fParent
= plusNode
;
437 case doUnaryOpQuestion
:
439 RBBINode
*operandNode
= fNodeStack
[fNodeStackPtr
--];
440 RBBINode
*qNode
= pushNewNode(RBBINode::opQuestion
);
441 if (U_FAILURE(*fRB
->fStatus
)) {
444 qNode
->fLeftChild
= operandNode
;
445 operandNode
->fParent
= qNode
;
451 RBBINode
*operandNode
= fNodeStack
[fNodeStackPtr
--];
452 RBBINode
*starNode
= pushNewNode(RBBINode::opStar
);
453 if (U_FAILURE(*fRB
->fStatus
)) {
456 starNode
->fLeftChild
= operandNode
;
457 operandNode
->fParent
= starNode
;
462 // A "Rule Character" is any single character that is a literal part
463 // of the regular expression. Like a, b and c in the expression "(abc*) | [:L:]"
464 // These are pretty uncommon in break rules; the terms are more commonly
465 // sets. To keep things uniform, treat these characters like as
466 // sets that just happen to contain only one character.
468 n
= pushNewNode(RBBINode::setRef
);
469 if (U_FAILURE(*fRB
->fStatus
)) {
472 findSetFor(UnicodeString(fC
.fChar
), n
);
473 n
->fFirstPos
= fScanIndex
;
474 n
->fLastPos
= fNextIndex
;
475 fRB
->fRules
.extractBetween(n
->fFirstPos
, n
->fLastPos
, n
->fText
);
480 // scanned a ".", meaning match any single character.
482 n
= pushNewNode(RBBINode::setRef
);
483 if (U_FAILURE(*fRB
->fStatus
)) {
486 findSetFor(UnicodeString(TRUE
, kAny
, 3), n
);
487 n
->fFirstPos
= fScanIndex
;
488 n
->fLastPos
= fNextIndex
;
489 fRB
->fRules
.extractBetween(n
->fFirstPos
, n
->fLastPos
, n
->fText
);
494 // Scanned a '/', which identifies a look-ahead break position in a rule.
495 n
= pushNewNode(RBBINode::lookAhead
);
496 if (U_FAILURE(*fRB
->fStatus
)) {
500 n
->fFirstPos
= fScanIndex
;
501 n
->fLastPos
= fNextIndex
;
502 fRB
->fRules
.extractBetween(n
->fFirstPos
, n
->fLastPos
, n
->fText
);
503 fLookAheadRule
= TRUE
;
507 case doStartTagValue
:
508 // Scanned a '{', the opening delimiter for a tag value within a rule.
509 n
= pushNewNode(RBBINode::tag
);
510 if (U_FAILURE(*fRB
->fStatus
)) {
514 n
->fFirstPos
= fScanIndex
;
515 n
->fLastPos
= fNextIndex
;
519 // Just scanned a decimal digit that's part of a tag value
521 n
= fNodeStack
[fNodeStackPtr
];
522 uint32_t v
= u_charDigitValue(fC
.fChar
);
524 n
->fVal
= n
->fVal
*10 + v
;
529 n
= fNodeStack
[fNodeStackPtr
];
530 n
->fLastPos
= fNextIndex
;
531 fRB
->fRules
.extractBetween(n
->fFirstPos
, n
->fLastPos
, n
->fText
);
534 case doTagExpectedError
:
535 error(U_BRK_MALFORMED_RULE_TAG
);
540 // Scanning a !!option. At the start of string.
541 fOptionStart
= fScanIndex
;
546 UnicodeString
opt(fRB
->fRules
, fOptionStart
, fScanIndex
-fOptionStart
);
547 if (opt
== UNICODE_STRING("chain", 5)) {
548 fRB
->fChainRules
= TRUE
;
549 } else if (opt
== UNICODE_STRING("LBCMNoChain", 11)) {
550 fRB
->fLBCMNoChain
= TRUE
;
551 } else if (opt
== UNICODE_STRING("forward", 7)) {
552 fRB
->fDefaultTree
= &fRB
->fForwardTree
;
553 } else if (opt
== UNICODE_STRING("reverse", 7)) {
554 fRB
->fDefaultTree
= &fRB
->fReverseTree
;
555 } else if (opt
== UNICODE_STRING("safe_forward", 12)) {
556 fRB
->fDefaultTree
= &fRB
->fSafeFwdTree
;
557 } else if (opt
== UNICODE_STRING("safe_reverse", 12)) {
558 fRB
->fDefaultTree
= &fRB
->fSafeRevTree
;
559 } else if (opt
== UNICODE_STRING("lookAheadHardBreak", 18)) {
560 fRB
->fLookAheadHardBreak
= TRUE
;
562 error(U_BRK_UNRECOGNIZED_OPTION
);
571 case doStartVariableName
:
572 n
= pushNewNode(RBBINode::varRef
);
573 if (U_FAILURE(*fRB
->fStatus
)) {
576 n
->fFirstPos
= fScanIndex
;
579 case doEndVariableName
:
580 n
= fNodeStack
[fNodeStackPtr
];
581 if (n
==NULL
|| n
->fType
!= RBBINode::varRef
) {
582 error(U_BRK_INTERNAL_ERROR
);
585 n
->fLastPos
= fScanIndex
;
586 fRB
->fRules
.extractBetween(n
->fFirstPos
+1, n
->fLastPos
, n
->fText
);
587 // Look the newly scanned name up in the symbol table
588 // If there's an entry, set the l. child of the var ref to the replacement expression.
589 // (We also pass through here when scanning assignments, but no harm is done, other
590 // than a slight wasted effort that seems hard to avoid. Lookup will be null)
591 n
->fLeftChild
= fSymbolTable
->lookupNode(n
->fText
);
595 n
= fNodeStack
[fNodeStackPtr
];
596 if (n
->fLeftChild
== NULL
) {
597 error(U_BRK_UNDEFINED_VARIABLE
);
605 case doRuleErrorAssignExpr
:
606 error(U_BRK_ASSIGN_ERROR
);
614 case doScanUnicodeSet
:
619 error(U_BRK_INTERNAL_ERROR
);
623 return returnVal
&& U_SUCCESS(*fRB
->fStatus
);
629 //------------------------------------------------------------------------------
631 // Error Report a rule parse error.
632 // Only report it if no previous error has been recorded.
634 //------------------------------------------------------------------------------
635 void RBBIRuleScanner::error(UErrorCode e
) {
636 if (U_SUCCESS(*fRB
->fStatus
)) {
638 if (fRB
->fParseError
) {
639 fRB
->fParseError
->line
= fLineNum
;
640 fRB
->fParseError
->offset
= fCharNum
;
641 fRB
->fParseError
->preContext
[0] = 0;
642 fRB
->fParseError
->postContext
[0] = 0;
650 //------------------------------------------------------------------------------
652 // fixOpStack The parse stack holds partially assembled chunks of the parse tree.
653 // An entry on the stack may be as small as a single setRef node,
654 // or as large as the parse tree
655 // for an entire expression (this will be the one item left on the stack
656 // when the parsing of an RBBI rule completes.
658 // This function is called when a binary operator is encountered.
659 // It looks back up the stack for operators that are not yet associated
660 // with a right operand, and if the precedence of the stacked operator >=
661 // the precedence of the current operator, binds the operand left,
662 // to the previously encountered operator.
664 //------------------------------------------------------------------------------
665 void RBBIRuleScanner::fixOpStack(RBBINode::OpPrecedence p
) {
667 // printNodeStack("entering fixOpStack()");
669 n
= fNodeStack
[fNodeStackPtr
-1]; // an operator node
670 if (n
->fPrecedence
== 0) {
671 RBBIDebugPuts("RBBIRuleScanner::fixOpStack, bad operator node");
672 error(U_BRK_INTERNAL_ERROR
);
676 if (n
->fPrecedence
< p
|| n
->fPrecedence
<= RBBINode::precLParen
) {
677 // The most recent operand goes with the current operator,
678 // not with the previously stacked one.
681 // Stack operator is a binary op ( '|' or concatenation)
682 // TOS operand becomes right child of this operator.
683 // Resulting subexpression becomes the TOS operand.
684 n
->fRightChild
= fNodeStack
[fNodeStackPtr
];
685 fNodeStack
[fNodeStackPtr
]->fParent
= n
;
687 // printNodeStack("looping in fixOpStack() ");
690 if (p
<= RBBINode::precLParen
) {
691 // Scan is at a right paren or end of expression.
692 // The scanned item must match the stack, or else there was an error.
693 // Discard the left paren (or start expr) node from the stack,
694 // leaving the completed (sub)expression as TOS.
695 if (n
->fPrecedence
!= p
) {
696 // Right paren encountered matched start of expression node, or
697 // end of expression matched with a left paren node.
698 error(U_BRK_MISMATCHED_PAREN
);
700 fNodeStack
[fNodeStackPtr
-1] = fNodeStack
[fNodeStackPtr
];
702 // Delete the now-discarded LParen or Start node.
705 // printNodeStack("leaving fixOpStack()");
711 //------------------------------------------------------------------------------
713 // findSetFor given a UnicodeString,
714 // - find the corresponding Unicode Set (uset node)
715 // (create one if necessary)
716 // - Set fLeftChild of the caller's node (should be a setRef node)
718 // Maintain a hash table of uset nodes, so the same one is always used
719 // for the same string.
720 // If a "to adopt" set is provided and we haven't seen this key before,
721 // add the provided set to the hash table.
722 // If the string is one (32 bit) char in length, the set contains
723 // just one element which is the char in question.
724 // If the string is "any", return a set containing all chars.
726 //------------------------------------------------------------------------------
727 void RBBIRuleScanner::findSetFor(const UnicodeString
&s
, RBBINode
*node
, UnicodeSet
*setToAdopt
) {
731 // First check whether we've already cached a set for this string.
732 // If so, just use the cached set in the new node.
733 // delete any set provided by the caller, since we own it.
734 el
= (RBBISetTableEl
*)uhash_get(fSetTable
, &s
);
737 node
->fLeftChild
= el
->val
;
738 U_ASSERT(node
->fLeftChild
->fType
== RBBINode::uset
);
742 // Haven't seen this set before.
743 // If the caller didn't provide us with a prebuilt set,
744 // create a new UnicodeSet now.
745 if (setToAdopt
== NULL
) {
746 if (s
.compare(kAny
, -1) == 0) {
747 setToAdopt
= new UnicodeSet(0x000000, 0x10ffff);
751 setToAdopt
= new UnicodeSet(c
, c
);
756 // Make a new uset node to refer to this UnicodeSet
757 // This new uset node becomes the child of the caller's setReference node.
759 RBBINode
*usetNode
= new RBBINode(RBBINode::uset
);
760 if (usetNode
== NULL
) {
761 error(U_MEMORY_ALLOCATION_ERROR
);
764 usetNode
->fInputSet
= setToAdopt
;
765 usetNode
->fParent
= node
;
766 node
->fLeftChild
= usetNode
;
771 // Add the new uset node to the list of all uset nodes.
773 fRB
->fUSetNodes
->addElement(usetNode
, *fRB
->fStatus
);
777 // Add the new set to the set hash table.
779 el
= (RBBISetTableEl
*)uprv_malloc(sizeof(RBBISetTableEl
));
780 UnicodeString
*tkey
= new UnicodeString(s
);
781 if (tkey
== NULL
|| el
== NULL
|| setToAdopt
== NULL
) {
782 // Delete to avoid memory leak
790 error(U_MEMORY_ALLOCATION_ERROR
);
795 uhash_put(fSetTable
, el
->key
, el
, fRB
->fStatus
);
803 // Assorted Unicode character constants.
804 // Numeric because there is no portable way to enter them as literals.
807 static const UChar chCR
= 0x0d; // New lines, for terminating comments.
808 static const UChar chLF
= 0x0a;
809 static const UChar chNEL
= 0x85; // NEL newline variant
810 static const UChar chLS
= 0x2028; // Unicode Line Separator
811 static const UChar chApos
= 0x27; // single quote, for quoted chars.
812 static const UChar chPound
= 0x23; // '#', introduces a comment.
813 static const UChar chBackSlash
= 0x5c; // '\' introduces a char escape
814 static const UChar chLParen
= 0x28;
815 static const UChar chRParen
= 0x29;
818 //------------------------------------------------------------------------------
820 // stripRules Return a rules string without unnecessary
823 //------------------------------------------------------------------------------
824 UnicodeString
RBBIRuleScanner::stripRules(const UnicodeString
&rules
) {
825 UnicodeString strippedRules
;
826 int rulesLength
= rules
.length();
827 for (int idx
= 0; idx
< rulesLength
; ) {
828 UChar ch
= rules
[idx
++];
830 while (idx
< rulesLength
831 && ch
!= chCR
&& ch
!= chLF
&& ch
!= chNEL
)
836 if (!u_isISOControl(ch
)) {
837 strippedRules
.append(ch
);
840 // strippedRules = strippedRules.unescape();
841 return strippedRules
;
845 //------------------------------------------------------------------------------
847 // nextCharLL Low Level Next Char from rule input source.
848 // Get a char from the input character iterator,
849 // keep track of input position for error reporting.
851 //------------------------------------------------------------------------------
852 UChar32
RBBIRuleScanner::nextCharLL() {
855 if (fNextIndex
>= fRB
->fRules
.length()) {
858 ch
= fRB
->fRules
.char32At(fNextIndex
);
859 fNextIndex
= fRB
->fRules
.moveIndex32(fNextIndex
, 1);
864 (ch
== chLF
&& fLastChar
!= chCR
)) {
865 // Character is starting a new line. Bump up the line number, and
866 // reset the column to 0.
870 error(U_BRK_NEW_LINE_IN_QUOTED_STRING
);
875 // Character is not starting a new line. Except in the case of a
876 // LF following a CR, increment the column position.
886 //------------------------------------------------------------------------------
888 // nextChar for rules scanning. At this level, we handle stripping
889 // out comments and processing backslash character escapes.
890 // The rest of the rules grammar is handled at the next level up.
892 //------------------------------------------------------------------------------
893 void RBBIRuleScanner::nextChar(RBBIRuleChar
&c
) {
895 // Unicode Character constants needed for the processing done by nextChar(),
896 // in hex because literals wont work on EBCDIC machines.
898 fScanIndex
= fNextIndex
;
899 c
.fChar
= nextCharLL();
903 // check for '' sequence.
904 // These are recognized in all contexts, whether in quoted text or not.
906 if (c
.fChar
== chApos
) {
907 if (fRB
->fRules
.char32At(fNextIndex
) == chApos
) {
908 c
.fChar
= nextCharLL(); // get nextChar officially so character counts
909 c
.fEscaped
= TRUE
; // stay correct.
913 // Single quote, by itself.
914 // Toggle quoting mode.
915 // Return either '(' or ')', because quotes cause a grouping of the quoted text.
916 fQuoteMode
= !fQuoteMode
;
917 if (fQuoteMode
== TRUE
) {
922 c
.fEscaped
= FALSE
; // The paren that we return is not escaped.
932 // We are not in a 'quoted region' of the source.
934 if (c
.fChar
== chPound
) {
935 // Start of a comment. Consume the rest of it.
936 // The new-line char that terminates the comment is always returned.
937 // It will be treated as white-space, and serves to break up anything
938 // that might otherwise incorrectly clump together with a comment in
939 // the middle (a variable name, for example.)
941 c
.fChar
= nextCharLL();
942 if (c
.fChar
== (UChar32
)-1 || // EOF
946 c
.fChar
== chLS
) {break;}
949 if (c
.fChar
== (UChar32
)-1) {
954 // check for backslash escaped characters.
955 // Use UnicodeString::unescapeAt() to handle them.
957 if (c
.fChar
== chBackSlash
) {
959 int32_t startX
= fNextIndex
;
960 c
.fChar
= fRB
->fRules
.unescapeAt(fNextIndex
);
961 if (fNextIndex
== startX
) {
962 error(U_BRK_HEX_DIGITS_EXPECTED
);
964 fCharNum
+= fNextIndex
-startX
;
967 // putc(c.fChar, stdout);
970 //------------------------------------------------------------------------------
972 // Parse RBBI rules. The state machine for rules parsing is here.
973 // The state tables are hand-written in the file rbbirpt.txt,
974 // and converted to the form used here by a perl
977 //------------------------------------------------------------------------------
978 void RBBIRuleScanner::parse() {
980 const RBBIRuleTableEl
*tableEl
;
982 if (U_FAILURE(*fRB
->fStatus
)) {
989 // Main loop for the rule parsing state machine.
990 // Runs once per state transition.
991 // Each time through optionally performs, depending on the state table,
992 // - an advance to the the next input char
993 // - an action to be performed.
994 // - pushing or popping a state to/from the local state return stack.
997 // Bail out if anything has gone wrong.
998 // RBBI rule file parsing stops on the first error encountered.
999 if (U_FAILURE(*fRB
->fStatus
)) {
1003 // Quit if state == 0. This is the normal way to exit the state machine.
1009 // Find the state table element that matches the input char from the rule, or the
1010 // class of the input character. Start with the first table row for this
1011 // state, then linearly scan forward until we find a row that matches the
1012 // character. The last row for each state always matches all characters, so
1013 // the search will stop there, if not before.
1015 tableEl
= &gRuleParseStateTable
[state
];
1017 if (fRB
->fDebugEnv
&& uprv_strstr(fRB
->fDebugEnv
, "scan")) {
1018 RBBIDebugPrintf("char, line, col = (\'%c\', %d, %d) state=%s ",
1019 fC
.fChar
, fLineNum
, fCharNum
, RBBIRuleStateNames
[state
]);
1025 if (fRB
->fDebugEnv
&& uprv_strstr(fRB
->fDebugEnv
, "scan")) { RBBIDebugPrintf("."); fflush(stdout
);}
1027 if (tableEl
->fCharClass
< 127 && fC
.fEscaped
== FALSE
&& tableEl
->fCharClass
== fC
.fChar
) {
1028 // Table row specified an individual character, not a set, and
1029 // the input character is not escaped, and
1030 // the input character matched it.
1033 if (tableEl
->fCharClass
== 255) {
1034 // Table row specified default, match anything character class.
1037 if (tableEl
->fCharClass
== 254 && fC
.fEscaped
) {
1038 // Table row specified "escaped" and the char was escaped.
1041 if (tableEl
->fCharClass
== 253 && fC
.fEscaped
&&
1042 (fC
.fChar
== 0x50 || fC
.fChar
== 0x70 )) {
1043 // Table row specified "escaped P" and the char is either 'p' or 'P'.
1046 if (tableEl
->fCharClass
== 252 && fC
.fChar
== (UChar32
)-1) {
1047 // Table row specified eof and we hit eof on the input.
1051 if (tableEl
->fCharClass
>= 128 && tableEl
->fCharClass
< 240 && // Table specs a char class &&
1052 fC
.fEscaped
== FALSE
&& // char is not escaped &&
1053 fC
.fChar
!= (UChar32
)-1) { // char is not EOF
1054 U_ASSERT((tableEl
->fCharClass
-128) < UPRV_LENGTHOF(fRuleSets
));
1055 if (fRuleSets
[tableEl
->fCharClass
-128].contains(fC
.fChar
)) {
1056 // Table row specified a character class, or set of characters,
1057 // and the current char matches it.
1062 // No match on this row, advance to the next row for this state,
1065 if (fRB
->fDebugEnv
&& uprv_strstr(fRB
->fDebugEnv
, "scan")) { RBBIDebugPuts("");}
1068 // We've found the row of the state table that matches the current input
1069 // character from the rules string.
1070 // Perform any action specified by this row in the state table.
1071 if (doParseActions((int32_t)tableEl
->fAction
) == FALSE
) {
1072 // Break out of the state machine loop if the
1073 // the action signalled some kind of error, or
1074 // the action was to exit, occurs on normal end-of-rules-input.
1078 if (tableEl
->fPushState
!= 0) {
1080 if (fStackPtr
>= kStackSize
) {
1081 error(U_BRK_INTERNAL_ERROR
);
1082 RBBIDebugPuts("RBBIRuleScanner::parse() - state stack overflow.");
1085 fStack
[fStackPtr
] = tableEl
->fPushState
;
1088 if (tableEl
->fNextChar
) {
1092 // Get the next state from the table entry, or from the
1093 // state stack if the next state was specified as "pop".
1094 if (tableEl
->fNextState
!= 255) {
1095 state
= tableEl
->fNextState
;
1097 state
= fStack
[fStackPtr
];
1099 if (fStackPtr
< 0) {
1100 error(U_BRK_INTERNAL_ERROR
);
1101 RBBIDebugPuts("RBBIRuleScanner::parse() - state stack underflow.");
1108 if (U_FAILURE(*fRB
->fStatus
)) {
1112 // If there are no forward rules set an error.
1114 if (fRB
->fForwardTree
== NULL
) {
1115 error(U_BRK_RULE_SYNTAX
);
1120 // If there were NO user specified reverse rules, set up the equivalent of ".*;"
1122 if (fRB
->fReverseTree
== NULL
) {
1123 fRB
->fReverseTree
= pushNewNode(RBBINode::opStar
);
1124 RBBINode
*operand
= pushNewNode(RBBINode::setRef
);
1125 if (U_FAILURE(*fRB
->fStatus
)) {
1128 findSetFor(UnicodeString(TRUE
, kAny
, 3), operand
);
1129 fRB
->fReverseTree
->fLeftChild
= operand
;
1130 operand
->fParent
= fRB
->fReverseTree
;
1136 // Parsing of the input RBBI rules is complete.
1137 // We now have a parse tree for the rule expressions
1138 // and a list of all UnicodeSets that are referenced.
1141 if (fRB
->fDebugEnv
&& uprv_strstr(fRB
->fDebugEnv
, "symbols")) {fSymbolTable
->rbbiSymtablePrint();}
1142 if (fRB
->fDebugEnv
&& uprv_strstr(fRB
->fDebugEnv
, "ptree")) {
1143 RBBIDebugPrintf("Completed Forward Rules Parse Tree...\n");
1144 RBBINode::printTree(fRB
->fForwardTree
, TRUE
);
1145 RBBIDebugPrintf("\nCompleted Reverse Rules Parse Tree...\n");
1146 RBBINode::printTree(fRB
->fReverseTree
, TRUE
);
1147 RBBIDebugPrintf("\nCompleted Safe Point Forward Rules Parse Tree...\n");
1148 RBBINode::printTree(fRB
->fSafeFwdTree
, TRUE
);
1149 RBBIDebugPrintf("\nCompleted Safe Point Reverse Rules Parse Tree...\n");
1150 RBBINode::printTree(fRB
->fSafeRevTree
, TRUE
);
1156 //------------------------------------------------------------------------------
1158 // printNodeStack for debugging...
1160 //------------------------------------------------------------------------------
1162 void RBBIRuleScanner::printNodeStack(const char *title
) {
1164 RBBIDebugPrintf("%s. Dumping node stack...\n", title
);
1165 for (i
=fNodeStackPtr
; i
>0; i
--) {RBBINode::printTree(fNodeStack
[i
], TRUE
);}
1172 //------------------------------------------------------------------------------
1174 // pushNewNode create a new RBBINode of the specified type and push it
1175 // onto the stack of nodes.
1177 //------------------------------------------------------------------------------
1178 RBBINode
*RBBIRuleScanner::pushNewNode(RBBINode::NodeType t
) {
1179 if (U_FAILURE(*fRB
->fStatus
)) {
1182 if (fNodeStackPtr
>= kStackSize
- 1) {
1183 error(U_BRK_RULE_SYNTAX
);
1184 RBBIDebugPuts("RBBIRuleScanner::pushNewNode - stack overflow.");
1188 fNodeStack
[fNodeStackPtr
] = new RBBINode(t
);
1189 if (fNodeStack
[fNodeStackPtr
] == NULL
) {
1190 *fRB
->fStatus
= U_MEMORY_ALLOCATION_ERROR
;
1192 return fNodeStack
[fNodeStackPtr
];
1197 //------------------------------------------------------------------------------
1199 // scanSet Construct a UnicodeSet from the text at the current scan
1200 // position. Advance the scan position to the first character
1203 // A new RBBI setref node referring to the set is pushed onto the node
1206 // The scan position is normally under the control of the state machine
1207 // that controls rule parsing. UnicodeSets, however, are parsed by
1208 // the UnicodeSet constructor, not by the RBBI rule parser.
1210 //------------------------------------------------------------------------------
1211 void RBBIRuleScanner::scanSet() {
1217 if (U_FAILURE(*fRB
->fStatus
)) {
1221 pos
.setIndex(fScanIndex
);
1222 startPos
= fScanIndex
;
1223 UErrorCode localStatus
= U_ZERO_ERROR
;
1224 uset
= new UnicodeSet();
1226 localStatus
= U_MEMORY_ALLOCATION_ERROR
;
1228 uset
->applyPatternIgnoreSpace(fRB
->fRules
, pos
, fSymbolTable
, localStatus
);
1230 if (U_FAILURE(localStatus
)) {
1231 // TODO: Get more accurate position of the error from UnicodeSet's return info.
1232 // UnicodeSet appears to not be reporting correctly at this time.
1234 RBBIDebugPrintf("UnicodeSet parse postion.ErrorIndex = %d\n", pos
.getIndex());
1241 // Verify that the set contains at least one code point.
1243 U_ASSERT(uset
!=NULL
);
1244 if (uset
->isEmpty()) {
1245 // This set is empty.
1246 // Make it an error, because it almost certainly is not what the user wanted.
1247 // Also, avoids having to think about corner cases in the tree manipulation code
1248 // that occurs later on.
1249 error(U_BRK_RULE_EMPTY_SET
);
1255 // Advance the RBBI parse postion over the UnicodeSet pattern.
1256 // Don't just set fScanIndex because the line/char positions maintained
1257 // for error reporting would be thrown off.
1260 if (fNextIndex
>= i
) {
1266 if (U_SUCCESS(*fRB
->fStatus
)) {
1269 n
= pushNewNode(RBBINode::setRef
);
1270 if (U_FAILURE(*fRB
->fStatus
)) {
1273 n
->fFirstPos
= startPos
;
1274 n
->fLastPos
= fNextIndex
;
1275 fRB
->fRules
.extractBetween(n
->fFirstPos
, n
->fLastPos
, n
->fText
);
1276 // findSetFor() serves several purposes here:
1277 // - Adopts storage for the UnicodeSet, will be responsible for deleting.
1278 // - Mantains collection of all sets in use, needed later for establishing
1279 // character categories for run time engine.
1280 // - Eliminates mulitiple instances of the same set.
1281 // - Creates a new uset node if necessary (if this isn't a duplicate.)
1282 findSetFor(n
->fText
, n
, uset
);
1289 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */