forked from jasder/antlr
227 lines
8.2 KiB
C#
227 lines
8.2 KiB
C#
/*
|
|
* [The "BSD license"]
|
|
* Copyright (c) 2013 Terence Parr
|
|
* Copyright (c) 2013 Sam Harwell
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
using System;
|
|
using Sharpen;
|
|
|
|
namespace Antlr4.Runtime.Misc
|
|
{
|
|
/// <summary>An immutable inclusive interval a..b</summary>
|
|
public class Interval
|
|
{
|
|
public const int IntervalPoolMaxValue = 1000;
|
|
|
|
public static readonly Antlr4.Runtime.Misc.Interval Invalid = new Antlr4.Runtime.Misc.Interval
|
|
(-1, -2);
|
|
|
|
private static Antlr4.Runtime.Misc.Interval[] cache = new Antlr4.Runtime.Misc.Interval
|
|
[IntervalPoolMaxValue + 1];
|
|
|
|
/// <summary>The start of the interval.</summary>
|
|
/// <remarks>The start of the interval.</remarks>
|
|
public readonly int a;
|
|
|
|
/// <summary>The end of the interval (inclusive).</summary>
|
|
/// <remarks>The end of the interval (inclusive).</remarks>
|
|
public readonly int b;
|
|
|
|
public Interval(int a, int b)
|
|
{
|
|
this.a = a;
|
|
this.b = b;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Interval objects are used readonly so share all with the
|
|
/// same single value a==b up to some max size.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Interval objects are used readonly so share all with the
|
|
/// same single value a==b up to some max size. Use an array as a perfect hash.
|
|
/// Return shared object for 0..INTERVAL_POOL_MAX_VALUE or a new
|
|
/// Interval object with a..a in it. On Java.g4, 218623 IntervalSets
|
|
/// have a..a (set with 1 element).
|
|
/// </remarks>
|
|
public static Antlr4.Runtime.Misc.Interval Of(int a, int b)
|
|
{
|
|
// cache just a..a
|
|
if (a != b || a < 0 || a > IntervalPoolMaxValue)
|
|
{
|
|
return new Antlr4.Runtime.Misc.Interval(a, b);
|
|
}
|
|
if (cache[a] == null)
|
|
{
|
|
cache[a] = new Antlr4.Runtime.Misc.Interval(a, a);
|
|
}
|
|
return cache[a];
|
|
}
|
|
|
|
/// <summary>return number of elements between a and b inclusively.</summary>
|
|
/// <remarks>
|
|
/// return number of elements between a and b inclusively. x..x is length 1.
|
|
/// if b < a, then length is 0. 9..10 has length 2.
|
|
/// </remarks>
|
|
public virtual int Length()
|
|
{
|
|
if (b < a)
|
|
{
|
|
return 0;
|
|
}
|
|
return b - a + 1;
|
|
}
|
|
|
|
public override bool Equals(object o)
|
|
{
|
|
if (o == this)
|
|
{
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
if (!(o is Antlr4.Runtime.Misc.Interval))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
Antlr4.Runtime.Misc.Interval other = (Antlr4.Runtime.Misc.Interval)o;
|
|
return this.a == other.a && this.b == other.b;
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
int hash = 5;
|
|
hash = 37 * hash ^ this.a;
|
|
hash = 37 * hash ^ this.b;
|
|
return hash;
|
|
}
|
|
|
|
/// <summary>Does this start completely before other? Disjoint</summary>
|
|
public virtual bool StartsBeforeDisjoint(Antlr4.Runtime.Misc.Interval other)
|
|
{
|
|
return this.a < other.a && this.b < other.a;
|
|
}
|
|
|
|
/// <summary>Does this start at or before other? Nondisjoint</summary>
|
|
public virtual bool StartsBeforeNonDisjoint(Antlr4.Runtime.Misc.Interval other)
|
|
{
|
|
return this.a <= other.a && this.b >= other.a;
|
|
}
|
|
|
|
/// <summary>Does this.a start after other.b? May or may not be disjoint</summary>
|
|
public virtual bool StartsAfter(Antlr4.Runtime.Misc.Interval other)
|
|
{
|
|
return this.a > other.a;
|
|
}
|
|
|
|
/// <summary>Does this start completely after other? Disjoint</summary>
|
|
public virtual bool StartsAfterDisjoint(Antlr4.Runtime.Misc.Interval other)
|
|
{
|
|
return this.a > other.b;
|
|
}
|
|
|
|
/// <summary>Does this start after other? NonDisjoint</summary>
|
|
public virtual bool StartsAfterNonDisjoint(Antlr4.Runtime.Misc.Interval other)
|
|
{
|
|
return this.a > other.a && this.a <= other.b;
|
|
}
|
|
|
|
// this.b>=other.b implied
|
|
/// <summary>Are both ranges disjoint? I.e., no overlap?</summary>
|
|
public virtual bool Disjoint(Antlr4.Runtime.Misc.Interval other)
|
|
{
|
|
return StartsBeforeDisjoint(other) || StartsAfterDisjoint(other);
|
|
}
|
|
|
|
/// <summary>Are two intervals adjacent such as 0..41 and 42..42?</summary>
|
|
public virtual bool Adjacent(Antlr4.Runtime.Misc.Interval other)
|
|
{
|
|
return this.a == other.b + 1 || this.b == other.a - 1;
|
|
}
|
|
|
|
public virtual bool ProperlyContains(Antlr4.Runtime.Misc.Interval other)
|
|
{
|
|
return other.a >= this.a && other.b <= this.b;
|
|
}
|
|
|
|
/// <summary>Return the interval computed from combining this and other</summary>
|
|
public virtual Antlr4.Runtime.Misc.Interval Union(Antlr4.Runtime.Misc.Interval other
|
|
)
|
|
{
|
|
return Antlr4.Runtime.Misc.Interval.Of(Math.Min(a, other.a), Math.Max(b, other.b)
|
|
);
|
|
}
|
|
|
|
/// <summary>Return the interval in common between this and o</summary>
|
|
public virtual Antlr4.Runtime.Misc.Interval Intersection(Antlr4.Runtime.Misc.Interval
|
|
other)
|
|
{
|
|
return Antlr4.Runtime.Misc.Interval.Of(Math.Max(a, other.a), Math.Min(b, other.b)
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Return the interval with elements from
|
|
/// <code>this</code>
|
|
/// not in
|
|
/// <code>other</code>
|
|
/// ;
|
|
/// <code>other</code>
|
|
/// must not be totally enclosed (properly contained)
|
|
/// within
|
|
/// <code>this</code>
|
|
/// , which would result in two disjoint intervals
|
|
/// instead of the single one returned by this method.
|
|
/// </summary>
|
|
public virtual Antlr4.Runtime.Misc.Interval DifferenceNotProperlyContained(Antlr4.Runtime.Misc.Interval
|
|
other)
|
|
{
|
|
Antlr4.Runtime.Misc.Interval diff = null;
|
|
// other.a to left of this.a (or same)
|
|
if (other.StartsBeforeNonDisjoint(this))
|
|
{
|
|
diff = Antlr4.Runtime.Misc.Interval.Of(Math.Max(this.a, other.b + 1), this.b);
|
|
}
|
|
else
|
|
{
|
|
// other.a to right of this.a
|
|
if (other.StartsAfterNonDisjoint(this))
|
|
{
|
|
diff = Antlr4.Runtime.Misc.Interval.Of(this.a, other.a - 1);
|
|
}
|
|
}
|
|
return diff;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return a + ".." + b;
|
|
}
|
|
}
|
|
}
|