Implement MachineKey.Protect and MachineKey.Unprotect
[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 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
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.ComponentModel;
31
32 namespace System.Text.RegularExpressions {
33
34         [EditorBrowsable (EditorBrowsableState.Never)]
35         [MonoTODO ("RegexRunner is not supported by Mono.")]
36         public abstract class RegexRunner {
37                 // constructor
38
39                 [MonoTODO]
40                 protected internal RegexRunner ()
41                 {
42                 }
43
44                 // protected abstract
45
46                 protected abstract bool FindFirstChar ();
47
48                 protected abstract void Go ();
49
50                 protected abstract void InitTrackCount ();
51
52                 // protected methods
53
54                 [MonoTODO]
55                 protected void Capture (int capnum, int start, int end) {
56                         throw new NotImplementedException ();
57                 }
58                 [MonoTODO]
59                 protected static bool CharInClass (char ch, string charClass)
60                 {
61                         throw new NotImplementedException ();
62                 }
63                 [MonoTODO]
64                 protected static bool CharInSet (char ch, string set, string category) {
65                         throw new NotImplementedException ();
66                 }
67
68                 [MonoTODO]
69                 protected void Crawl (int i) {
70                         throw new NotImplementedException ();
71                 }
72
73                 [MonoTODO]
74                 protected int Crawlpos () {
75                         throw new NotImplementedException ();
76                 }
77
78                 [MonoTODO]
79                 protected void DoubleCrawl () {
80                         throw new NotImplementedException ();
81                 }
82
83                 [MonoTODO]
84                 protected void DoubleStack () {
85                         throw new NotImplementedException ();
86                 }
87
88                 [MonoTODO]
89                 protected void DoubleTrack () {
90                         throw new NotImplementedException ();
91                 }
92
93                 [MonoTODO]
94                 protected void EnsureStorage () {
95                         throw new NotImplementedException ();
96                 }
97
98                 [MonoTODO]
99                 protected bool IsBoundary (int index, int startpos, int endpos) {
100                         throw new NotImplementedException ();
101                 }
102
103                 [MonoTODO]
104                 protected bool IsECMABoundary (int index, int startpos, int endpos) {
105                         throw new NotImplementedException ();
106                 }
107
108                 [MonoTODO]
109                 protected bool IsMatched (int cap) {
110                         throw new NotImplementedException ();
111                 }
112
113                 [MonoTODO]
114                 protected int MatchIndex (int cap) {
115                         throw new NotImplementedException ();
116                 }
117
118                 [MonoTODO]
119                 protected int MatchLength (int cap) {
120                         throw new NotImplementedException ();
121                 }
122
123                 [MonoTODO]
124                 protected int Popcrawl () {
125                         throw new NotImplementedException ();
126                 }
127
128                 [MonoTODO]
129                 protected void TransferCapture (int capnum, int uncapnum, int start, int end) {
130                         throw new NotImplementedException ();
131                 }
132
133                 [MonoTODO]
134                 protected void Uncapture () {
135                         throw new NotImplementedException ();
136                 }
137
138                 // internal
139                 
140                 protected internal Match Scan (Regex regex, string text, int textbeg, int textend, int textstart, int prevlen, bool quick) {
141                         throw new NotImplementedException ();
142                 }
143
144                 [MonoTODO]
145                 protected internal int[] runcrawl;
146                 [MonoTODO]
147                 protected internal int runcrawlpos;
148                 [MonoTODO]
149                 protected internal Match runmatch;
150                 [MonoTODO]
151                 protected internal Regex runregex;
152                 [MonoTODO]
153                 protected internal int[] runstack;
154                 [MonoTODO]
155                 protected internal int runstackpos;
156                 [MonoTODO]
157                 protected internal string runtext;
158                 [MonoTODO]
159                 protected internal int runtextbeg;
160                 [MonoTODO]
161                 protected internal int runtextend;
162                 [MonoTODO]
163                 protected internal int runtextpos;
164                 [MonoTODO]
165                 protected internal int runtextstart;
166                 [MonoTODO]
167                 protected internal int[] runtrack;
168                 [MonoTODO]
169                 protected internal int runtrackcount;
170                 [MonoTODO]
171                 protected internal int runtrackpos;
172         }
173 }