2005-04-12 Dick Porter <dick@ximian.com>
[mono.git] / mcs / class / System / System.Text.RegularExpressions / RegexRunner.cs
1 //
2 // assembly:    System
3 // namespace:   System.Text.RegularExpressions
4 // file:        RegexRunner.cs
5 //
6 // author:      Dan Lewis (dihlewis@yahoo.co.uk)
7 //              (c) 2002
8
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System;
31 using System.ComponentModel;
32
33 namespace System.Text.RegularExpressions {
34         [EditorBrowsable (EditorBrowsableState.Never)]
35         public abstract class RegexRunner {
36                 // constructor
37
38                 [MonoTODO]
39                 protected internal RegexRunner () {
40                         throw new NotImplementedException ("RegexRunner is not supported by Mono.");
41                 }
42
43                 // protected abstract
44
45                 protected abstract bool FindFirstChar ();
46
47                 protected abstract void Go ();
48
49                 protected abstract void InitTrackCount ();
50
51                 // protected methods
52
53                 [MonoTODO]
54                 protected void Capture (int capnum, int start, int end) {
55                         throw new NotImplementedException ();
56                 }
57
58                 [MonoTODO]
59                 protected static bool CharInSet (char ch, string set, string category) {
60                         throw new NotImplementedException ();
61                 }
62
63                 [MonoTODO]
64                 protected void Crawl (int i) {
65                         throw new NotImplementedException ();
66                 }
67
68                 [MonoTODO]
69                 protected int Crawlpos () {
70                         throw new NotImplementedException ();
71                 }
72
73                 [MonoTODO]
74                 protected void DoubleCrawl () {
75                         throw new NotImplementedException ();
76                 }
77
78                 [MonoTODO]
79                 protected void DoubleStack () {
80                         throw new NotImplementedException ();
81                 }
82
83                 [MonoTODO]
84                 protected void DoubleTrack () {
85                         throw new NotImplementedException ();
86                 }
87
88                 [MonoTODO]
89                 protected void EnsureStorage () {
90                         throw new NotImplementedException ();
91                 }
92
93                 [MonoTODO]
94                 protected bool IsBoundary (int index, int startpos, int endpos) {
95                         throw new NotImplementedException ();
96                 }
97
98                 [MonoTODO]
99                 protected bool IsECMABoundary (int index, int startpos, int endpos) {
100                         throw new NotImplementedException ();
101                 }
102
103                 [MonoTODO]
104                 protected bool IsMatched (int cap) {
105                         throw new NotImplementedException ();
106                 }
107
108                 [MonoTODO]
109                 protected int MatchIndex (int cap) {
110                         throw new NotImplementedException ();
111                 }
112
113                 [MonoTODO]
114                 protected int MatchLength (int cap) {
115                         throw new NotImplementedException ();
116                 }
117
118                 [MonoTODO]
119                 protected int Popcrawl () {
120                         throw new NotImplementedException ();
121                 }
122
123                 [MonoTODO]
124                 protected void TransferCapture (int capnum, int uncapnum, int start, int end) {
125                         throw new NotImplementedException ();
126                 }
127
128                 [MonoTODO]
129                 protected void Uncapture () {
130                         throw new NotImplementedException ();
131                 }
132
133                 // internal
134                 
135                 protected internal Match Scan (Regex regex, string text, int textbeg, int textend, int textstart, int prevlen, bool quick) {
136                         throw new NotImplementedException ();
137                 }
138
139                 [MonoTODO]
140                 protected internal int[] runcrawl;
141                 [MonoTODO]
142                 protected internal int runcrawlpos;
143                 [MonoTODO]
144                 protected internal Match runmatch;
145                 [MonoTODO]
146                 protected internal Regex runregex;
147                 [MonoTODO]
148                 protected internal int[] runstack;
149                 [MonoTODO]
150                 protected internal int runstackpos;
151                 [MonoTODO]
152                 protected internal string runtext;
153                 [MonoTODO]
154                 protected internal int runtextbeg;
155                 [MonoTODO]
156                 protected internal int runtextend;
157                 [MonoTODO]
158                 protected internal int runtextpos;
159                 [MonoTODO]
160                 protected internal int runtextstart;
161                 [MonoTODO]
162                 protected internal int[] runtrack;
163                 [MonoTODO]
164                 protected internal int runtrackcount;
165                 [MonoTODO]
166                 protected internal int runtrackpos;
167         }
168 }