antlr/runtime/CSharp/Antlr4.Runtime/IIntStream.cs

373 lines
14 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 Antlr4.Runtime;
using Sharpen;
namespace Antlr4.Runtime
{
/// <summary>A simple stream of symbols whose values are represented as integers.</summary>
/// <remarks>
/// A simple stream of symbols whose values are represented as integers. This
/// interface provides <em>marked ranges</em> with support for a minimum level
/// of buffering necessary to implement arbitrary lookahead during prediction.
/// For more information on marked ranges, see
/// <see cref="Mark()">Mark()</see>
/// .
/// <p/>
/// <strong>Initializing Methods:</strong> Some methods in this interface have
/// unspecified behavior if no call to an initializing method has occurred after
/// the stream was constructed. The following is a list of initializing methods:
/// <ul>
/// <li>
/// <see cref="La(int)">La(int)</see>
/// </li>
/// <li>
/// <see cref="Consume()">Consume()</see>
/// </li>
/// <li>
/// <see cref="Size()">Size()</see>
/// </li>
/// </ul>
/// </remarks>
public interface IIntStream
{
/// <summary>Consumes the current symbol in the stream.</summary>
/// <remarks>
/// Consumes the current symbol in the stream. This method has the following
/// effects:
/// <ul>
/// <li><strong>Forward movement:</strong> The value of
/// <see cref="Index()">index()</see>
/// before calling this method is less than the value of
/// <code>index()</code>
/// after calling this method.</li>
/// <li><strong>Ordered lookahead:</strong> The value of
/// <code>LA(1)</code>
/// before
/// calling this method becomes the value of
/// <code>LA(-1)</code>
/// after calling
/// this method.</li>
/// </ul>
/// Note that calling this method does not guarantee that
/// <code>index()</code>
/// is
/// incremented by exactly 1, as that would preclude the ability to implement
/// filtering streams (e.g.
/// <see cref="CommonTokenStream">CommonTokenStream</see>
/// which distinguishes
/// between "on-channel" and "off-channel" tokens).
/// </remarks>
/// <exception cref="System.InvalidOperationException">
/// if an attempt is made to consume the the
/// end of the stream (i.e. if
/// <code>LA(1)==</code>
/// <see cref="Eof">EOF</see>
/// before calling
/// <code>consume</code>
/// ).
/// </exception>
void Consume();
/// <summary>
/// Gets the value of the symbol at offset
/// <code>i</code>
/// from the current
/// position. When
/// <code>i==1</code>
/// , this method returns the value of the current
/// symbol in the stream (which is the next symbol to be consumed). When
/// <code>i==-1</code>
/// , this method returns the value of the previously read
/// symbol in the stream. It is not valid to call this method with
/// <code>i==0</code>
/// , but the specific behavior is unspecified because this
/// method is frequently called from performance-critical code.
/// <p/>
/// This method is guaranteed to succeed if any of the following are true:
/// <ul>
/// <li>
/// <code>i&gt;0</code>
/// </li>
/// <li>
/// <code>i==-1</code>
/// and
/// <see cref="Index()">index()</see>
/// returns a value greater
/// than the value of
/// <code>index()</code>
/// after the stream was constructed
/// and
/// <code>LA(1)</code>
/// was called in that order. Specifying the current
/// <code>index()</code>
/// relative to the index after the stream was created
/// allows for filtering implementations that do not return every symbol
/// from the underlying source. Specifying the call to
/// <code>LA(1)</code>
/// allows for lazily initialized streams.</li>
/// <li>
/// <code>LA(i)</code>
/// refers to a symbol consumed within a marked region
/// that has not yet been released.</li>
/// </ul>
/// If
/// <code>i</code>
/// represents a position at or beyond the end of the stream,
/// this method returns
/// <see cref="Eof">Eof</see>
/// .
/// <p/>
/// The return value is unspecified if
/// <code>i&lt;0</code>
/// and fewer than
/// <code>-i</code>
/// calls to
/// <see cref="Consume()">consume()</see>
/// have occurred from the beginning of
/// the stream before calling this method.
/// </summary>
/// <exception cref="System.NotSupportedException">
/// if the stream does not support
/// retrieving the value of the specified symbol
/// </exception>
int La(int i);
/// <summary>
/// A mark provides a guarantee that
/// <see cref="Seek(int)">seek()</see>
/// operations will be
/// valid over a "marked range" extending from the index where
/// <code>mark()</code>
/// was called to the current
/// <see cref="Index()">index()</see>
/// . This allows the use of
/// streaming input sources by specifying the minimum buffering requirements
/// to support arbitrary lookahead during prediction.
/// <p/>
/// The returned mark is an opaque handle (type
/// <code>int</code>
/// ) which is passed
/// to
/// <see cref="Release(int)">release()</see>
/// when the guarantees provided by the marked
/// range are no longer necessary. When calls to
/// <code>mark()</code>
/// /
/// <code>release()</code>
/// are nested, the marks must be released
/// in reverse order of which they were obtained. Since marked regions are
/// used during performance-critical sections of prediction, the specific
/// behavior of invalid usage is unspecified (i.e. a mark is not released, or
/// a mark is released twice, or marks are not released in reverse order from
/// which they were created).
/// <p/>
/// The behavior of this method is unspecified if no call to an
/// <see cref="IIntStream">initializing method</see>
/// has occurred after this stream was
/// constructed.
/// <p/>
/// This method does not change the current position in the input stream.
/// <p/>
/// The following example shows the use of
/// <see cref="Mark()">mark()</see>
/// ,
/// <see cref="Release(int)">release(mark)</see>
/// ,
/// <see cref="Index()">index()</see>
/// , and
/// <see cref="Seek(int)">seek(index)</see>
/// as part of an operation to safely work within a
/// marked region, then restore the stream position to its original value and
/// release the mark.
/// <pre>
/// IntStream stream = ...;
/// int index = -1;
/// int mark = stream.mark();
/// try {
/// index = stream.index();
/// // perform work here...
/// } finally {
/// if (index != -1) {
/// stream.seek(index);
/// }
/// stream.release(mark);
/// }
/// </pre>
/// </summary>
/// <returns>
/// An opaque marker which should be passed to
/// <see cref="Release(int)">release()</see>
/// when the marked range is no longer required.
/// </returns>
int Mark();
/// <summary>
/// This method releases a marked range created by a call to
/// <see cref="Mark()">mark()</see>
/// . Calls to
/// <code>release()</code>
/// must appear in the
/// reverse order of the corresponding calls to
/// <code>mark()</code>
/// . If a mark is
/// released twice, or if marks are not released in reverse order of the
/// corresponding calls to
/// <code>mark()</code>
/// , the behavior is unspecified.
/// <p/>
/// For more information and an example, see
/// <see cref="Mark()">Mark()</see>
/// .
/// </summary>
/// <param name="marker">
/// A marker returned by a call to
/// <code>mark()</code>
/// .
/// </param>
/// <seealso cref="Mark()">Mark()</seealso>
void Release(int marker);
/// <summary>
/// Return the index into the stream of the input symbol referred to by
/// <code>LA(1)</code>
/// .
/// <p/>
/// The behavior of this method is unspecified if no call to an
/// <see cref="IIntStream">initializing method</see>
/// has occurred after this stream was
/// constructed.
/// </summary>
int Index
{
get;
}
/// <summary>
/// Set the input cursor to the position indicated by
/// <code>index</code>
/// . If the
/// specified index lies past the end of the stream, the operation behaves as
/// though
/// <code>index</code>
/// was the index of the EOF symbol. After this method
/// returns without throwing an exception, the at least one of the following
/// will be true.
/// <ul>
/// <li>
/// <see cref="Index()">index()</see>
/// will return the index of the first symbol
/// appearing at or after the specified
/// <code>index</code>
/// . Specifically,
/// implementations which filter their sources should automatically
/// adjust
/// <code>index</code>
/// forward the minimum amount required for the
/// operation to target a non-ignored symbol.</li>
/// <li>
/// <code>LA(1)</code>
/// returns
/// <see cref="Eof">Eof</see>
/// </li>
/// </ul>
/// This operation is guaranteed to not throw an exception if
/// <code>index</code>
/// lies within a marked region. For more information on marked regions, see
/// <see cref="Mark()">Mark()</see>
/// . The behavior of this method is unspecified if no call to
/// an
/// <see cref="IIntStream">initializing method</see>
/// has occurred after this stream
/// was constructed.
/// </summary>
/// <param name="index">The absolute index to seek to.</param>
/// <exception cref="System.ArgumentException">
/// if
/// <code>index</code>
/// is less than 0
/// </exception>
/// <exception cref="System.NotSupportedException">
/// if the stream does not support
/// seeking to the specified index
/// </exception>
void Seek(int index);
/// <summary>
/// Returns the total number of symbols in the stream, including a single EOF
/// symbol.
/// </summary>
/// <remarks>
/// Returns the total number of symbols in the stream, including a single EOF
/// symbol.
/// </remarks>
/// <exception cref="System.NotSupportedException">
/// if the size of the stream is
/// unknown.
/// </exception>
int Size
{
get;
}
/// <summary>Gets the name of the underlying symbol source.</summary>
/// <remarks>
/// Gets the name of the underlying symbol source. This method returns a
/// non-null, non-empty string. If such a name is not known, this method
/// returns
/// <see cref="UnknownSourceName">UnknownSourceName</see>
/// .
/// </remarks>
string SourceName
{
get;
}
}
public static class IntStreamConstants
{
/// <summary>
/// The value returned by
/// <see cref="La(int)">LA()</see>
/// when the end of the stream is
/// reached.
/// </summary>
public const int Eof = -1;
/// <summary>
/// The value returned by
/// <see cref="SourceName()">SourceName()</see>
/// when the actual name of the
/// underlying source is not known.
/// </summary>
public const string UnknownSourceName = "<unknown>";
}
}