8c4a5cb7698dc5e0ec34c34a47143b231508bfda
[mir.git] / source / mir / util / SimpleParser.java
1 /*
2  * Copyright (C) 2001, 2002  The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with the com.oreilly.servlet library, any library
22  * licensed under the Apache Software License, The Sun (tm) Java Advanced
23  * Imaging library (JAI), The Sun JIMI library (or with modified versions of
24  * the above that use the same license as the above), and distribute linked
25  * combinations including the two.  You must obey the GNU General Public
26  * License in all respects for all of the code used other than the above
27  * mentioned libraries.  If you modify this file, you may extend this exception
28  * to your version of the file, but you are not obligated to do so.  If you do
29  * not wish to do so, delete this exception statement from your version.
30  */
31
32 package mir.util;
33
34 import java.util.*;
35 import gnu.regexp.*;
36 import multex.Exc;
37 import multex.Failure;
38
39 public class SimpleParser {
40   private String data;
41   private int position;
42
43   public SimpleParser(String aData) {
44     data=aData;
45     position=0;
46
47     System.out.println("Will parse: "+aData);
48   }
49
50   public boolean parses(RE aRegularExpression) throws SimpleParserExc {
51     REMatch match = aRegularExpression.getMatch(data, position);
52
53     return (match!=null && match.getStartIndex()==position) ;
54   }
55
56   public String parse(RE aRegularExpression, String aMessage) throws SimpleParserExc {
57     REMatch match = aRegularExpression.getMatch(data, position);
58
59     if (match==null || match.getStartIndex()!=position)
60       throw new SimpleParserExc(aMessage+" at position "+position+" in '"+data+"'");
61
62     position=match.getEndIndex();
63
64     return match.toString();
65   }
66
67   public String parse(RE aRegularExpression) throws SimpleParserExc {
68     return parse( aRegularExpression, "No match found for '"+aRegularExpression.toString()+"'");
69   }
70
71   public void skip(RE aRegularExpression) throws SimpleParserExc {
72     REMatch match = aRegularExpression.getMatch(data, position);
73
74     if (match!=null && match.getStartIndex()==position)
75       position=match.getEndIndex();
76   }
77
78   public boolean parses(String anExpression) throws SimpleParserExc {
79     try {
80       return parses(new RE(anExpression));
81     }
82     catch (SimpleParserExc e) {
83       throw e;
84     }
85     catch (REException e) {
86       throw new SimpleParserFailure( "Error compiling regular expression '" + anExpression + "': " + e.getMessage(), e);
87     }
88     catch (Throwable t) {
89       throw new SimpleParserFailure( t );
90     }
91   }
92
93   public String parse(String anExpression) throws SimpleParserExc, SimpleParserFailure {
94     try {
95       return parse(new RE(anExpression));
96     }
97     catch (SimpleParserExc e) {
98       throw e;
99     }
100     catch (REException e) {
101       throw new SimpleParserFailure( "Error compiling regular expression '" + anExpression + "': " + e.getMessage(), e);
102     }
103     catch (Throwable t) {
104       throw new SimpleParserFailure( t );
105     }
106   }
107
108   public String parse(String anExpression, String aMessage) throws SimpleParserExc, SimpleParserFailure {
109     try {
110       System.out.println("Expression: "+anExpression);
111
112       return parse(new RE(anExpression), aMessage);
113     }
114     catch (SimpleParserExc e) {
115       throw e;
116     }
117     catch (REException e) {
118       throw new SimpleParserFailure( "Error compiling regular expression '" + anExpression + "': " + e.getMessage(), e);
119     }
120     catch (Throwable t) {
121       throw new SimpleParserFailure( t );
122     }
123   }
124
125   public void skip(String anExpression) throws SimpleParserExc, SimpleParserFailure {
126     try {
127       skip(new RE(anExpression));
128     }
129     catch (SimpleParserExc e) {
130       throw e;
131     }
132     catch (REException e) {
133       throw new SimpleParserFailure( "Error compiling regular expression '" + anExpression + "': " + e.getMessage(), e);
134     }
135     catch (Throwable t) {
136       throw new SimpleParserFailure( t );
137     }
138   }
139   public boolean isAtEnd() {
140     return position>=data.length();
141   }
142
143   public static class SimpleParserFailure extends Failure {
144     public SimpleParserFailure(Throwable aThrowable) {
145       super(aThrowable.getMessage(), aThrowable);
146     }
147
148     public SimpleParserFailure(String aMessage, Throwable aThrowable) {
149       super(aMessage, aThrowable);
150     }
151   }
152
153   public static class SimpleParserExc extends Exc {
154     public SimpleParserExc(String aMessage) {
155       super(aMessage);
156     }
157   }
158 }