| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031 |
- //
- // assembly: System
- // namespace: System.Text.RegularExpressions
- // file: syntax.cs
- //
- // author: Dan Lewis ([email protected])
- // (c) 2002
- using System;
- using System.Collections;
- namespace System.Text.RegularExpressions.Syntax {
- // collection classes
-
- class ExpressionCollection : CollectionBase {
- public void Add (Expression e) {
- List.Add (e);
- }
- public Expression this[int i] {
- get { return (Expression)List[i]; }
- set { List[i] = value; }
- }
- protected override void OnValidate (object o) {
- // allow null elements
- }
- }
- // abstract classes
-
- abstract class Expression {
- public abstract void Compile (ICompiler cmp, bool reverse);
- public abstract void GetWidth (out int min, out int max);
- public int GetFixedWidth () {
- int min, max;
- GetWidth (out min, out max);
- if (min == max)
- return min;
- return -1;
- }
- public virtual AnchorInfo GetAnchorInfo (bool reverse) {
- return new AnchorInfo (this, GetFixedWidth ());
- }
- public virtual bool IsComplex () {
- return true;
- }
- }
- // composite expressions
-
- abstract class CompositeExpression : Expression {
- public CompositeExpression () {
- expressions = new ExpressionCollection ();
- }
- protected ExpressionCollection Expressions {
- get { return expressions; }
- }
- protected void GetWidth (out int min, out int max, int count) {
- min = Int32.MaxValue;
- max = 0;
- bool empty = true;
- for (int i = 0; i < count; ++ i) {
- Expression e = Expressions[i];
- if (e == null)
- continue;
-
- empty = false;
- int a, b;
- e.GetWidth (out a, out b);
- if (a < min) min = a;
- if (b > max) max = b;
- }
- if (empty)
- min = max = 0;
- }
- private ExpressionCollection expressions;
- }
- // groups
-
- class Group : CompositeExpression {
- public Group () {
- }
- public Expression Expression {
- get { return Expressions[0]; }
- set { Expressions[0] = value; }
- }
- public void AppendExpression (Expression e) {
- Expressions.Add (e);
- }
- public override void Compile (ICompiler cmp, bool reverse) {
- int count = Expressions.Count;
- for (int i = 0; i < count; ++ i) {
- Expression e;
- if (reverse)
- e = Expressions[count - i - 1];
- else
- e = Expressions[i];
- e.Compile (cmp, reverse);
- }
- }
- public override void GetWidth (out int min, out int max) {
- min = 0;
- max = 0;
- foreach (Expression e in Expressions) {
- int a, b;
- e.GetWidth (out a, out b);
- min += a;
- if (max == Int32.MaxValue || b == Int32.MaxValue)
- max = Int32.MaxValue;
- else
- max += b;
- }
- }
- public override AnchorInfo GetAnchorInfo (bool reverse) {
- int ptr;
- int width = GetFixedWidth ();
- ArrayList infos = new ArrayList ();
- IntervalCollection segments = new IntervalCollection ();
- // accumulate segments
- ptr = 0;
- //foreach (Expression e in Expressions) {
- int count = Expressions.Count;
- for (int i = 0; i < count; ++ i) {
- Expression e;
- if (reverse)
- e = Expressions [count - i - 1];
- else
- e = Expressions [i];
-
- AnchorInfo info = e.GetAnchorInfo (reverse);
- infos.Add (info);
- if (info.IsPosition)
- return new AnchorInfo (this, ptr + info.Offset, width, info.Position);
- if (info.IsSubstring)
- segments.Add (info.GetInterval (ptr));
- if (info.IsUnknownWidth)
- break;
- ptr += info.Width;
- }
- // normalize and find the longest segment
- segments.Normalize ();
- Interval longest = Interval.Empty;
- foreach (Interval segment in segments) {
- if (segment.Size > longest.Size)
- longest = segment;
- }
- // now chain the substrings that made this segment together
- if (!longest.IsEmpty) {
- string str = "";
- ArrayList strs = new ArrayList();
- bool ignore = false;
- ptr = 0;
-
- //foreach (AnchorInfo info in infos) {
- for (int i = 0; i < infos.Count; ++ i) {
- AnchorInfo info;
- info = (AnchorInfo)infos[i];
-
- if (info.IsSubstring && longest.Contains (info.GetInterval (ptr))) {
- //str += info.Substring; // TODO mark subexpressions
- strs.Add(info.Substring);
- ignore |= info.IgnoreCase;
- }
-
- if (info.IsUnknownWidth)
- break;
-
- ptr += info.Width;
- }
-
- for (int i = 0; i< strs.Count; ++i)
- {
- if (reverse)
- str += strs [strs.Count - i - 1];
- else
- str += strs [i];
-
-
- }
-
- return new AnchorInfo (this, longest.low, width, str, ignore);
- }
- return new AnchorInfo (this, width);
- }
- public override bool IsComplex () {
- bool comp = false;
- foreach (Expression e in Expressions) {
- comp |= e.IsComplex ();
- }
- return comp | GetFixedWidth () <= 0;
- }
- }
- class RegularExpression : Group {
- public RegularExpression () {
- group_count = 0;
- }
- public int GroupCount {
- get { return group_count; }
- set { group_count = value; }
- }
- public override void Compile (ICompiler cmp, bool reverse) {
- // info block
- int min, max;
- GetWidth (out min, out max);
- cmp.EmitInfo (group_count, min, max);
- // anchoring expression
- AnchorInfo info = GetAnchorInfo (reverse);
- //if (reverse)
- // info = new AnchorInfo (this, GetFixedWidth ()); // FIXME
- LinkRef pattern = cmp.NewLink ();
- cmp.EmitAnchor (reverse, info.Offset, pattern);
- if (info.IsPosition)
- cmp.EmitPosition (info.Position);
- else if (info.IsSubstring)
- cmp.EmitString (info.Substring, info.IgnoreCase, reverse);
-
- cmp.EmitTrue ();
-
- // pattern
- cmp.ResolveLink (pattern);
- base.Compile (cmp, reverse);
- cmp.EmitTrue ();
- }
- private int group_count;
- }
- class CapturingGroup : Group {
- public CapturingGroup () {
- this.gid = 0;
- this.name = null;
- }
- public int Number {
- get { return gid; }
- set { gid = value; }
- }
- public string Name {
- get { return name; }
- set { name = value; }
- }
- public bool IsNamed {
- get { return name != null; }
- }
- public override void Compile (ICompiler cmp, bool reverse) {
- cmp.EmitOpen (gid);
- base.Compile (cmp, reverse);
- cmp.EmitClose (gid);
- }
- public override bool IsComplex () {
- return true;
- }
- private int gid;
- private string name;
- }
- class BalancingGroup : CapturingGroup {
- public BalancingGroup () {
- this.balance = null;
- }
- public CapturingGroup Balance {
- get { return balance; }
- set { balance = value; }
- }
- public override void Compile (ICompiler cmp, bool reverse) {
- // can't invoke Group.Compile from here :(
- // so I'll just repeat the code
-
- LinkRef tail = cmp.NewLink ();
- cmp.EmitBalanceStart (this.Number, balance.Number, this.IsNamed, tail);
- int count = Expressions.Count;
- for (int i = 0; i < count; ++ i) {
- Expression e;
- if (reverse)
- e = Expressions[count - i - 1];
- else
- e = Expressions[i];
- e.Compile (cmp, reverse);
- }
- cmp.EmitBalance ();
- cmp.ResolveLink(tail);
- }
- private CapturingGroup balance;
- }
- class NonBacktrackingGroup : Group {
- public NonBacktrackingGroup () {
- }
- public override void Compile (ICompiler cmp, bool reverse) {
- LinkRef tail = cmp.NewLink ();
- cmp.EmitSub (tail);
- base.Compile (cmp, reverse);
- cmp.EmitTrue ();
- cmp.ResolveLink (tail);
- }
- public override bool IsComplex () {
- return true;
- }
- }
- // repetition
- class Repetition : CompositeExpression {
- public Repetition (int min, int max, bool lazy) {
- Expressions.Add (null);
-
- this.min = min;
- this.max = max;
- this.lazy = lazy;
- }
- public Expression Expression {
- get { return Expressions[0]; }
- set { Expressions[0] = value; }
- }
- public int Minimum {
- get { return min; }
- set { min = value; }
- }
- public int Maximum {
- get { return max; }
- set { max = value; }
- }
- public bool Lazy {
- get { return lazy; }
- set { lazy = value; }
- }
- public override void Compile (ICompiler cmp, bool reverse) {
- if (Expression.IsComplex ()) {
- LinkRef until = cmp.NewLink ();
-
- cmp.EmitRepeat (min, max, lazy, until);
- Expression.Compile (cmp, reverse);
- cmp.EmitUntil (until);
- }
- else {
- LinkRef tail = cmp.NewLink ();
- cmp.EmitFastRepeat (min, max, lazy, tail);
- Expression.Compile (cmp, reverse);
- cmp.EmitTrue ();
- cmp.ResolveLink (tail);
- }
- }
- public override void GetWidth (out int min, out int max) {
- Expression.GetWidth (out min, out max);
- min = min * this.min;
- if (max == Int32.MaxValue || this.max == 0xffff)
- max = Int32.MaxValue;
- else
- max = max * this.max;
- }
- public override AnchorInfo GetAnchorInfo (bool reverse) {
- int width = GetFixedWidth ();
- if (Minimum == 0)
- return new AnchorInfo (this, width);
-
- AnchorInfo info = Expression.GetAnchorInfo (reverse);
- if (info.IsPosition)
- return new AnchorInfo (this, info.Offset, width, info.Position);
-
- if (info.IsSubstring) {
- if (info.IsComplete) {
- string str = "";
- for (int i = 0; i < Minimum; ++ i)
- str += info.Substring;
- return new AnchorInfo (this, 0, width, str, info.IgnoreCase);
- }
- return new AnchorInfo (this, info.Offset, width, info.Substring, info.IgnoreCase);
- }
- return new AnchorInfo (this, width);
- }
- private int min, max;
- private bool lazy;
- }
- // assertions
- abstract class Assertion : CompositeExpression {
- public Assertion () {
- Expressions.Add (null); // true expression
- Expressions.Add (null); // false expression
- }
- public Expression TrueExpression {
- get { return Expressions[0]; }
- set { Expressions[0] = value; }
- }
- public Expression FalseExpression {
- get { return Expressions[1]; }
- set { Expressions[1] = value; }
- }
- public override void GetWidth (out int min, out int max) {
- GetWidth (out min, out max, 2);
- if (TrueExpression == null || FalseExpression == null)
- min = 0;
- }
- }
- class CaptureAssertion : Assertion {
- public CaptureAssertion () {
- }
- public CapturingGroup CapturingGroup {
- get { return group; }
- set { group = value; }
- }
- public override void Compile (ICompiler cmp, bool reverse) {
- int gid = group.Number;
- LinkRef tail = cmp.NewLink ();
- if (FalseExpression == null) {
- // IfDefined :1
- // <yes_exp>
- // 1: <tail>
-
- cmp.EmitIfDefined (gid, tail);
- TrueExpression.Compile (cmp, reverse);
- }
- else {
- // IfDefined :1
- // <yes_expr>
- // Jump :2
- // 1: <no_expr>
- // 2: <tail>
-
- LinkRef false_expr = cmp.NewLink ();
- cmp.EmitIfDefined (gid, false_expr);
- TrueExpression.Compile (cmp, reverse);
- cmp.EmitJump (tail);
- cmp.ResolveLink (false_expr);
- FalseExpression.Compile (cmp, reverse);
- }
- cmp.ResolveLink (tail);
- }
- public override bool IsComplex () {
- bool comp = false;
- if (TrueExpression != null)
- comp |= TrueExpression.IsComplex ();
- if (FalseExpression != null)
- comp |= FalseExpression.IsComplex ();
- return comp | GetFixedWidth () <= 0;
- }
- private CapturingGroup group;
- }
- class ExpressionAssertion : Assertion {
- public ExpressionAssertion () {
- Expressions.Add (null); // test expression
- }
- public bool Reverse {
- get { return reverse; }
- set { reverse = value; }
- }
- public bool Negate {
- get { return negate; }
- set { negate = value; }
- }
- public Expression TestExpression {
- get { return Expressions[2]; }
- set { Expressions[2] = value; }
- }
- public override void Compile (ICompiler cmp, bool reverse) {
- LinkRef true_expr = cmp.NewLink ();
- LinkRef false_expr = cmp.NewLink ();
- // test op: positive / negative
- if (!negate)
- cmp.EmitTest (true_expr, false_expr);
- else
- cmp.EmitTest (false_expr, true_expr);
-
- // test expression: lookahead / lookbehind
- TestExpression.Compile (cmp, this.reverse);
- cmp.EmitTrue ();
- // target expressions
- if (TrueExpression == null) { // (?= ...)
- // Test :1, :2
- // <test_expr>
- // :2 False
- // :1 <tail>
-
- cmp.ResolveLink (false_expr);
- cmp.EmitFalse ();
- cmp.ResolveLink (true_expr);
- }
- else {
- cmp.ResolveLink (true_expr);
- TrueExpression.Compile (cmp, reverse);
-
- if (FalseExpression == null) { // (?(...) ...)
- // Test :1, :2
- // <test_expr>
- // :1 <yes_expr>
- // :2 <tail>
- cmp.ResolveLink (false_expr);
- }
- else { // (?(...) ... | ...)
- // Test :1, :2
- // <test_expr>
- // :1 <yes_expr>
- // Jump :3
- // :2 <no_expr>
- // :3 <tail>
-
- LinkRef tail = cmp.NewLink ();
-
- cmp.EmitJump (tail);
- cmp.ResolveLink (false_expr);
- FalseExpression.Compile (cmp, reverse);
- cmp.ResolveLink (tail);
- }
- }
- }
- private bool reverse, negate;
- }
- // alternation
- class Alternation : CompositeExpression {
- public Alternation () {
- }
- public ExpressionCollection Alternatives {
- get { return Expressions; }
- }
- public void AddAlternative (Expression e) {
- Alternatives.Add (e);
- }
- public override void Compile (ICompiler cmp, bool reverse) {
- // LinkRef next = cmp.NewLink ();
- LinkRef tail = cmp.NewLink ();
-
- foreach (Expression e in Alternatives) {
- LinkRef next = cmp.NewLink ();
- cmp.EmitBranch (next);
- e.Compile (cmp, reverse);
- cmp.EmitJump (tail);
- cmp.ResolveLink (next);
- cmp.EmitBranchEnd();
- }
- cmp.EmitFalse ();
- cmp.ResolveLink (tail);
- cmp.EmitAlternationEnd();
- }
- public override void GetWidth (out int min, out int max) {
- GetWidth (out min, out max, Alternatives.Count);
- }
- public override bool IsComplex () {
- bool comp = false;
- foreach (Expression e in Alternatives) {
- comp |= e.IsComplex ();
- }
- return comp | GetFixedWidth () <= 0;
- }
- }
- // terminal expressions
- class Literal : Expression {
- public Literal (string str, bool ignore) {
- this.str = str;
- this.ignore = ignore;
- }
- public string String {
- get { return str; }
- set { str = value; }
- }
- public bool IgnoreCase {
- get { return ignore; }
- set { ignore = value; }
- }
- public override void Compile (ICompiler cmp, bool reverse) {
- if (str.Length == 0)
- return;
- if (str.Length == 1)
- cmp.EmitCharacter (str[0], false, ignore, reverse);
- else
- cmp.EmitString (str, ignore, reverse);
- }
- public override void GetWidth (out int min, out int max) {
- min = max = str.Length;
- }
- public override AnchorInfo GetAnchorInfo (bool reverse) {
- return new AnchorInfo (this, 0, str.Length, str, ignore);
- }
- public override bool IsComplex () {
- return false;
- }
- private string str;
- private bool ignore;
- }
- class PositionAssertion : Expression {
- public PositionAssertion (Position pos) {
- this.pos = pos;
- }
- public Position Position {
- get { return pos; }
- set { pos = value; }
- }
- public override void Compile (ICompiler cmp, bool reverse) {
- cmp.EmitPosition (pos);
- }
- public override void GetWidth (out int min, out int max) {
- min = max = 0;
- }
- public override bool IsComplex () {
- return false;
- }
- public override AnchorInfo GetAnchorInfo (bool revers) {
- switch (pos) {
- case Position.StartOfString: case Position.StartOfLine: case Position.StartOfScan:
- return new AnchorInfo (this, 0, 0, pos);
- default:
- return new AnchorInfo (this, 0);
- }
- }
- private Position pos;
- }
- class Reference : Expression {
- public Reference (bool ignore) {
- this.ignore = ignore;
- }
- public CapturingGroup CapturingGroup {
- get { return group; }
- set { group = value; }
- }
- public bool IgnoreCase {
- get { return ignore; }
- set { ignore = value; }
- }
- public override void Compile (ICompiler cmp, bool reverse) {
- cmp.EmitReference (group.Number, ignore, reverse);
- }
- public override void GetWidth (out int min, out int max) {
- //group.GetWidth (out min, out max);
- // TODO set width to referenced group for non-cyclical references
- min = 0;
- max = Int32.MaxValue;
- }
- public override bool IsComplex () {
- return true; // FIXME incorporate cyclic check
- }
- private CapturingGroup group;
- private bool ignore;
- }
- class CharacterClass : Expression {
- public CharacterClass (bool negate, bool ignore) {
- this.negate = negate;
- this.ignore = ignore;
- intervals = new IntervalCollection ();
- // initialize pos/neg category arrays
- int cat_size = (int) Category.LastValue;
- pos_cats = new BitArray (cat_size);
- neg_cats = new BitArray (cat_size);
- }
- public CharacterClass (Category cat, bool negate) : this (false, false) {
- this.AddCategory (cat, negate);
- }
- public bool Negate {
- get { return negate; }
- set { negate = value; }
- }
- public bool IgnoreCase {
- get { return ignore; }
- set { ignore = value; }
- }
- public void AddCategory (Category cat, bool negate) {
- int n = (int)cat;
-
- if (negate) {
- neg_cats[n] = true;
- } else {
- pos_cats[n] = true;
- }
- }
- public void AddCharacter (char c) {
- // TODO: this is certainly not the most efficient way of doing things
- // TODO: but at least it produces correct results.
- AddRange (c, c);
- }
- public void AddRange (char lo, char hi) {
- Interval new_interval = new Interval (lo, hi);
-
- // ignore case is on. we must make sure our interval does not
- // use upper case. if it does, we must normalize the upper case
- // characters into lower case.
- if (ignore) {
- if (upper_case_characters.Intersects (new_interval)) {
- Interval partial_new_interval;
-
- if (new_interval.low < upper_case_characters.low) {
- partial_new_interval = new Interval (upper_case_characters.low + distance_between_upper_and_lower_case,
- new_interval.high + distance_between_upper_and_lower_case);
- new_interval.high = upper_case_characters.low - 1;
- }
- else {
- partial_new_interval = new Interval (new_interval.low + distance_between_upper_and_lower_case,
- upper_case_characters.high + distance_between_upper_and_lower_case);
- new_interval.low = upper_case_characters.high + 1;
- }
- intervals.Add (partial_new_interval);
- }
- else if (upper_case_characters.Contains (new_interval)) {
- new_interval.high += distance_between_upper_and_lower_case;
- new_interval.low += distance_between_upper_and_lower_case;
- }
- }
- intervals.Add (new_interval);
- }
- public override void Compile (ICompiler cmp, bool reverse) {
- // create the meta-collection
- IntervalCollection meta =
- intervals.GetMetaCollection (new IntervalCollection.CostDelegate (GetIntervalCost));
- // count ops
-
- int count = meta.Count;
- for (int i = 0; i < pos_cats.Length; ++ i) {
- if (pos_cats[i]) ++ count;
- if (neg_cats[i]) ++ count;
- }
- if (count == 0)
- return;
- // emit in op for |meta| > 1
- LinkRef tail = cmp.NewLink ();
- if (count > 1)
- cmp.EmitIn (tail);
-
- // emit categories
- for (int i = 0; i < pos_cats.Length; ++ i) {
- if (pos_cats[i])
- cmp.EmitCategory ((Category)i, negate, reverse);
- else if (neg_cats[i])
- cmp.EmitCategory ((Category)i, !negate, reverse);
- }
- // emit character/range/sets from meta-collection
- foreach (Interval a in meta) {
- if (a.IsDiscontiguous) { // Set
- BitArray bits = new BitArray (a.Size);
- foreach (Interval b in intervals) {
- if (a.Contains (b)) {
- for (int i = b.low; i <= b.high; ++ i)
- bits[i - a.low] = true;
- }
- }
- cmp.EmitSet ((char)a.low, bits, negate, ignore, reverse);
- }
- else if (a.IsSingleton) // Character
- cmp.EmitCharacter ((char)a.low, negate, ignore, reverse);
- else // Range
- cmp.EmitRange ((char)a.low, (char)a.high, negate, ignore, reverse);
- }
-
- // finish up
- if (count > 1) {
- if (negate)
- cmp.EmitTrue ();
- else
- cmp.EmitFalse ();
- cmp.ResolveLink (tail);
- }
- }
- public override void GetWidth (out int min, out int max) {
- min = max = 1;
- }
- public override bool IsComplex () {
- return false;
- }
- // private
- private static double GetIntervalCost (Interval i) {
- // use op length as cost metric (=> optimize for space)
-
- if (i.IsDiscontiguous)
- return 3 + ((i.Size + 0xf) >> 4); // Set
- else if (i.IsSingleton)
- return 2; // Character
- else
- return 3; // Range
- }
- private static Interval upper_case_characters = new Interval ((char)65, (char)90);
- private const int distance_between_upper_and_lower_case = 32;
- private bool negate, ignore;
- private BitArray pos_cats, neg_cats;
- private IntervalCollection intervals;
- }
- class AnchorInfo {
- private Expression expr;
- private Position pos;
- private int offset;
- private string str;
- private int width;
- private bool ignore;
- public AnchorInfo (Expression expr, int width) {
- this.expr = expr;
- this.offset = 0;
- this.width = width;
- this.str = null;
- this.ignore = false;
- this.pos = Position.Any;
- }
-
- public AnchorInfo (Expression expr, int offset, int width, string str, bool ignore) {
- this.expr = expr;
- this.offset = offset;
- this.width = width;
- this.str = ignore ? str.ToLower () : str;
- this.ignore = ignore;
- this.pos = Position.Any;
- }
- public AnchorInfo (Expression expr, int offset, int width, Position pos) {
- this.expr = expr;
- this.offset = offset;
- this.width = width;
- this.pos = pos;
- this.str = null;
- this.ignore = false;
- }
- public Expression Expression {
- get { return expr; }
- }
- public int Offset {
- get { return offset; }
- }
- public int Width {
- get { return width; }
- }
- public int Length {
- get { return (str != null) ? str.Length : 0; }
- }
- public bool IsUnknownWidth {
- get { return width < 0; }
- }
- public bool IsComplete {
- get { return Length == Width; }
- }
- public string Substring {
- get { return str; }
- }
- public bool IgnoreCase {
- get { return ignore; }
- }
- public Position Position {
- get { return pos; }
- }
- public bool IsSubstring {
- get { return str != null; }
- }
- public bool IsPosition {
- get { return pos != Position.Any; }
- }
- public Interval GetInterval () {
- return GetInterval (0);
- }
- public Interval GetInterval (int start) {
- if (!IsSubstring)
- return Interval.Empty;
- return new Interval (start + Offset, start + Offset + Length - 1);
- }
- }
- }
|