Copyright test
[jalview.git] / src / com / stevesoft / pat / lookAhead.java
1 /*******************************************************************************
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $(date) The Jalview Authors
4  *
5  * This file is part of Jalview.
6  *  
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *   
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  *******************************************************************************/
21 //
22 // This software is now distributed according to
23 // the Lesser Gnu Public License.  Please see
24 // http://www.gnu.org/copyleft/lesser.txt for
25 // the details.
26 //    -- Happy Computing!
27 //
28 package com.stevesoft.pat;
29
30 import java.util.Hashtable;
31
32 /** Implements "(?= )" and "(?! )" */
33 class lookAhead extends Or
34 {
35   boolean reverse;
36
37   lookAhead(boolean b)
38   {
39     reverse = b;
40   }
41
42   public Pattern getNext()
43   {
44     return null;
45   }
46
47   public int nextMatch(int pos, Pthings pt)
48   {
49     Pattern p = super.getNext();
50     if (p != null)
51     {
52       return p.matchInternal(pos, pt);
53     }
54     else
55     {
56       return pos;
57     }
58   }
59
60   public int matchInternal(int pos, Pthings pt)
61   {
62     if (super.matchInternal(pos, pt) >= 0)
63     {
64       if (reverse)
65       {
66         return -1;
67       }
68       else
69       {
70         return nextMatch(pos, pt);
71       }
72     }
73     else
74     {
75       if (reverse)
76       {
77         return nextMatch(pos, pt);
78       }
79       else
80       {
81         return -1;
82       }
83     }
84   }
85
86   String leftForm()
87   {
88     if (reverse)
89     {
90       return "(?!";
91     }
92     else
93     {
94       return "(?=";
95     }
96   }
97
98   public patInt minChars()
99   {
100     return new patInt(0);
101   }
102
103   public patInt maxChars()
104   {
105     return new patInt(0);
106   }
107
108   Pattern clone1(Hashtable h)
109   {
110     lookAhead la = new lookAhead(reverse);
111     h.put(this, la);
112     h.put(la, la);
113     for (int i = 0; i < v.size(); i++)
114     {
115       la.v.addElement(((Pattern) v.elementAt(i)).clone(h));
116     }
117     return la;
118   }
119 }