[LIB-13] Modify RegexMatcher for searching by type
[chesshog-scanner.git] / src / main / java / org / hedgecode / chess / scanner / regex / type / RegexFinder.java
1 /*
2  * Copyright (c) 2019-2020. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.scanner.regex.type;
18
19 import java.util.regex.Matcher;
20 import java.util.regex.Pattern;
21
22 import org.hedgecode.chess.scanner.regex.AbstractRegexResult;
23 import org.hedgecode.chess.scanner.regex.RegexMatcher;
24 import org.hedgecode.chess.scanner.regex.RegexResult;
25
26 /**
27  * RegexFinder
28  *
29  * @author Dmitry Samoshin aka gotty
30  */
31 public class RegexFinder extends AbstractRegexResult implements RegexMatcher {
32
33     private Pattern pattern;
34
35     public RegexFinder(String match) {
36         pattern = Pattern.compile(match);
37     }
38
39     @Override
40     public void match(String input) {
41         Matcher matcher = pattern.matcher(input);
42         if (matcher.find()) {
43             if (matcher.groupCount() > 1) {
44                 add(matcher.group(1), matcher.group(2));
45             } else {
46                 add(matcher.group(1));
47             }
48         }
49     }
50
51     @Override
52     public RegexResult result() {
53         return this;
54     }
55
56 }