File: CustomHiddenStreamToken.cs

package info (click to toggle)
antlr 2.7.7%2Bdfsg-14
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,016 kB
  • sloc: java: 54,649; cs: 12,537; makefile: 8,854; cpp: 7,359; pascal: 5,273; sh: 4,333; python: 4,297; lisp: 1,969; xml: 220; lex: 192; ansic: 127
file content (146 lines) | stat: -rw-r--r-- 4,349 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
[The "BSD licence"]
Copyright (c) 2002-2005 Kunle Odutola
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.
*/


namespace Kunle.CSharpParser
{
	using System;
	using FileInfo					= System.IO.FileInfo;
	using IToken					= antlr.IToken;
	using TokenCreator				= antlr.TokenCreator;
	using CommonHiddenStreamToken	= antlr.CommonHiddenStreamToken;

	/// <summary>
	/// A sub-class of antlr.CommonHiddenStreamToken that can be used to track the
	/// file from which a token was created.
	///
	/// Has an ugly but convenient dependency on the CSharpParser class. See
	/// ToString() below.
	/// </summary>
	/// 
	public class CustomHiddenStreamToken : CommonHiddenStreamToken 
	{
		private string		filename_;
		private FileInfo	fileinfo_;

		protected CustomHiddenStreamToken() : base()
		{
		}
		
		public CustomHiddenStreamToken(int t, string txt) : base(t, txt)
		{
		}
		
		public CustomHiddenStreamToken(int t, string txt, FileInfo fileinfo) : base(t, txt)
		{
			fileinfo_ = fileinfo;
		}
		
		public CustomHiddenStreamToken(int t, string txt, FileInfo fileinfo, int line, int col) : base(t, txt)
		{
			this.fileinfo_	= fileinfo;
			this.line		= line;
			this.col		= col;
		}
		
		public override string getFilename()
		{
			if (fileinfo_ != null)
				return fileinfo_.FullName;
			else
				return null;
		}

		override public string ToString()
		{
			return "[\"" + getText() + "\",<" + CSharpParser.tokenNames_[type_] + ">,line=" + line + ",col=" + col + "]";
		}
		
		/// <summary>
		/// Sets the source file of the token
		/// </summary>
		///
		public FileInfo File
		{
			[System.Diagnostics.DebuggerStepThrough]
			get { return fileinfo_;  }
			[System.Diagnostics.DebuggerStepThrough]
			set { fileinfo_ = value; }
		}

		/// <summary>
		/// Gets or sets the contents of the hidden-before token stream.
		/// </summary>
		///
		public CustomHiddenStreamToken HiddenBefore
		{
			[System.Diagnostics.DebuggerStepThrough]
			get { return (CustomHiddenStreamToken) hiddenBefore;  }
			[System.Diagnostics.DebuggerStepThrough]
			set { hiddenBefore = (CommonHiddenStreamToken) value; }
		}

		/// <summary>
		/// Gets or sets the contents of the hidden-after token stream.
		/// </summary>
		///
		public CustomHiddenStreamToken HiddenAfter
		{
			[System.Diagnostics.DebuggerStepThrough]
			get { return (CustomHiddenStreamToken) hiddenAfter;  }
			[System.Diagnostics.DebuggerStepThrough]
			set { hiddenAfter = (CommonHiddenStreamToken) value; }
		}

		public class CustomHiddenStreamTokenCreator : TokenCreator
		{
			public CustomHiddenStreamTokenCreator() {}

			/// <summary>
			/// Returns the fully qualified name of the Token type that this
			/// class creates.
			/// </summary>
			public override string TokenTypeName
			{
				[System.Diagnostics.DebuggerStepThrough]
				get 
				{
					return typeof(CustomHiddenStreamToken).FullName;; 
				}
			}

			/// <summary>
			/// Constructs a <see cref="Token"/> instance.
			/// </summary>
			public override IToken Create()
			{
				return new CustomHiddenStreamToken();
			}
		}
	}
}