CharQueue.cs :  » Inversion-of-Control-Dependency-Injection » Spring.net » Spring » Expressions » Parser » antlr » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Inversion of Control Dependency Injection » Spring.net 
Spring.net » Spring » Expressions » Parser » antlr » CharQueue.cs
using System;

namespace Spring.Expressions.Parser.antlr{
  /*ANTLR Translator Generator
  * Project led by Terence Parr at http://www.jGuru.com
  * Software rights: http://www.antlr.org/license.html
  *
  * $Id:$
  */

  //
  // ANTLR C# Code Generator by Micheal Jordan
  //                            Kunle Odutola       : kunle UNDERSCORE odutola AT hotmail DOT com
  //                            Anthony Oguntimehin
  //
  // With many thanks to Eric V. Smith from the ANTLR list.
  //
  
  /*A circular buffer object used by CharBuffer */
  public class CharQueue
  {
    /*Physical circular buffer of tokens */
    protected internal char[] buffer;
    /*buffer.length-1 for quick modulos */
    private int sizeLessOne;
    /*physical index of front token */
    private int offset;
    /*number of tokens in the queue */
    protected internal int nbrEntries;
    
    public CharQueue(int minSize)
    {
      // Find first power of 2 >= to requested size
      int size;
      if (minSize < 0)
      {
        init(16); // pick some value for them
        return ;
      }
      // check for overflow
      if (minSize >= (Int32.MaxValue / 2))
      {
        init(Int32.MaxValue); // wow that's big.
        return ;
      }
      for (size = 2; size < minSize; size *= 2) 
      { 
        ;
      }
      init(size);
    }
    
    /*Add token to end of the queue
    * @param tok The token to add
    */
    public void append(char tok)
    {
      if (nbrEntries == buffer.Length)
      {
        expand();
      }
      buffer[(offset + nbrEntries) & sizeLessOne] = tok;
      nbrEntries++;
    }
    
    /*Fetch a token from the queue by index
    * @param idx The index of the token to fetch, where zero is the token at the front of the queue
    */
    public char elementAt(int idx)
    {
      return buffer[(offset + idx) & sizeLessOne];
    }
    
    /*Expand the token buffer by doubling its capacity */
    private void  expand()
    {
      char[] newBuffer = new char[buffer.Length * 2];
      // Copy the contents to the new buffer
      // Note that this will store the first logical item in the
      // first physical array element.
       for (int i = 0; i < buffer.Length; i++)
      {
        newBuffer[i] = elementAt(i);
      }
      // Re-initialize with new contents, keep old nbrEntries
      buffer = newBuffer;
      sizeLessOne = buffer.Length - 1;
      offset = 0;
    }
    
    /*Initialize the queue.
    * @param size The initial size of the queue
    */
    public virtual void  init(int size)
    {
      // Allocate buffer
      buffer = new char[size];
      // Other initialization
      sizeLessOne = size - 1;
      offset = 0;
      nbrEntries = 0;
    }
    
    /*Clear the queue. Leaving the previous buffer alone.
    */
    public void  reset()
    {
      offset = 0;
      nbrEntries = 0;
    }
    
    /*Remove char from front of queue */
    public void  removeFirst()
    {
      offset = (offset + 1) & sizeLessOne;
      nbrEntries--;
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.