2 // This software is now distributed according to
3 // the Lesser Gnu Public License. Please see
4 // http://www.gnu.org/copyleft/lesser.txt for
8 package com.stevesoft.pat;
10 import jalview.util.MessageManager;
12 import com.stevesoft.pat.wrap.StringWrap;
14 /** Internally used class. */
19 RegHolder prev = null;
23 * Internally used class.
33 CodeVal(int p, char c)
39 public String toString()
41 return "(" + pos + "," + code + ")";
46 * To use this class, first use either the getReplacer() method from Transformer
47 * or Regex. You can then use replaceAll, replaceFirst, etc. methods on the
48 * Replacer in the same way that you can from either of those two classes.
50 * The only potential difference between using the methods of Replacer to do the
51 * replacing is that Replacer remembers changes to the replacing object between
52 * calls to replaceAll, replaceFirst etc. For details, see the example file <a
53 * href="http://javaregex.com/code/trans3.java.html">trans3.java</a>.
55 * @see com.stevesoft.pat.Transformer
56 * @see com.stevesoft.pat.Regex
62 /** Instantiate a new Replacer. */
67 public StringLike replaceFirstRegion(String s, Regex r, int start, int end)
69 return replaceFirstRegion(new StringWrap(s), r, start, end);
73 * This method replaces the first occurence of the Regex in the String
74 * starting with position pos according to the Replacer rule of this object.
76 public StringLike replaceFirstRegion(StringLike s, Regex r, int start,
82 return dorep(s, start, end);
85 public StringLike replaceFirst(StringLike s)
87 return replaceFirstRegion(s, 0, s.length());
90 public StringLike replaceFirstFrom(StringLike s, int start)
92 return replaceFirstRegion(s, start, s.length());
95 public StringLike replaceFirstRegion(StringLike s, int start, int end)
98 return dorep(s, start, end);
101 RegHolder rh = new RegHolder();
103 public StringLike replaceAllRegion(String s, Regex r, int start, int end)
105 return replaceAllRegion(new StringWrap(s), r, start, end);
109 * This method replaces all occurences of the Regex in the String starting
110 * with postition pos according to the Replacer rule of this object.
112 public StringLike replaceAllRegion(StringLike s, Regex r, int start,
119 return dorep(s, start, end);
122 public StringLike replaceAll(StringLike s)
124 return replaceAllRegion(s, 0, s.length());
127 public StringLike replaceAllFrom(StringLike s, int start)
129 return replaceAllRegion(s, start, s.length());
132 public StringLike replaceAllRegion(StringLike s, int start, int end)
135 return dorep(s, start, end);
138 public String replaceAll(String s)
140 return replaceAllRegion(new StringWrap(s), 0, s.length()).toString();
143 public String replaceAllFrom(String s, int start)
145 return replaceAllRegion(new StringWrap(s), start, s.length())
149 public String replaceAllRegion(String s, int start, int end)
152 return dorep(new StringWrap(s), start, end).toString();
155 final public boolean isSpecial(ReplaceRule x)
159 if (x instanceof SpecialRule
160 || (x instanceof RuleHolder && ((RuleHolder) x).held instanceof SpecialRule))
169 final public void apply1(RegRes rr)
176 final StringLike dorep(StringLike s, int start, int end)
179 want_more_text = false;
183 throw new NullPointerException(
185 .getString("exception.replace_null_regex_pointer"));
187 if (rh.me._search(s, start, end))
189 int rmn = rh.me.matchedTo();
190 if (rh.me.charsMatched() == 0 && !isSpecial(rh.me.getReplaceRule()))
198 for (int i = rmn; !want_more_text && rh.me._search(s, i, end); i = rmn)
200 rmn = rh.me.matchedTo();
201 if (rh.me.charsMatched() == 0)
203 if (!isSpecial(rh.me.getReplaceRule()))
213 ret = ret == null ? s : ret;
218 StringBufferLike sb = null;
220 StringLike src = null;
225 * This method allows you to apply the results of several matches in a
226 * sequence to modify a String of text. Each call in the sequence must operate
227 * on the same piece of text and the matchedFrom() of each RegRes given to
228 * this method must be greater in value than the preceeding RegRes's
231 public void apply(RegRes r, ReplaceRule rp)
233 if (rp == null || (rp.next == null && rp instanceof AmpersandRule))
241 src = r.getStringLike();
245 sb = new StringBufferLike(src.newStringBufferLike());
247 int rmf = r.matchedFrom();
248 for (int ii = pos; ii < rmf; ii++)
250 sb.append(src.charAt(ii));
253 for (ReplaceRule x = rp; x != null; x = x.next)
256 if (x instanceof SpecialRule)
258 if (x instanceof WantMoreTextReplaceRule && want_more_text_enable)
260 want_more_text = true;
262 else if (x instanceof PushRule)
264 RegHolder rh2 = new RegHolder();
265 rh2.me = ((PushRule) x).NewRule;
269 else if (x instanceof PopRule)
276 else if (x instanceof ChangeRule)
278 rh.me = ((ChangeRule) x).NewRule;
289 boolean want_more_text = false, want_more_text_enable = false;
291 public boolean WantMoreText()
293 return want_more_text;
297 * Another form of apply, it is the same as apply(r,r.getReplaceRule()).
299 public void apply(Regex r)
301 apply(r, r.getReplaceRule());
305 * This finishes the replacement, appending the right() part of the last
306 * RegRes given to substitute(RegRes). After this method is called, the
307 * Replace object is reset to perform another substitution. If no RegRes
308 * objects with a true didMatch are applied, this returns null.
310 public StringLike finish()
316 // sb.append(src.substring(pos,src.length()));
317 int s_end = src.length();
318 for (int ii = pos; ii < s_end; ii++)
320 sb.append(src.charAt(ii));
325 StringLike retstr = sb.toStringLike();
330 int lastMatchedTo = 0;
332 public Object clone()
334 Replacer r = new Replacer();
339 r.lastMatchedTo = lastMatchedTo;
340 r.want_more_text = want_more_text;
341 r.want_more_text_enable = want_more_text_enable;
347 public int lastMatchedTo()
349 return lastMatchedTo;
352 public Regex getRegex()
357 public void setSource(StringLike sl)
362 public void setBuffer(StringBufferLike sbl)
367 public void setPos(int pos)