[LIB-13] Modify RegexMatcher for searching by type
[chesshog-scanner.git] / src / main / java / org / hedgecode / chess / scanner / regex / type / RegexSplitter.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.List;
20 import java.util.Map;
21 import java.util.regex.Matcher;
22 import java.util.regex.Pattern;
23
24 import org.hedgecode.chess.scanner.ChessHogScannerConstants;
25 import org.hedgecode.chess.scanner.regex.AbstractRegexResult;
26 import org.hedgecode.chess.scanner.regex.RegexMatcher;
27 import org.hedgecode.chess.scanner.regex.RegexResult;
28
29 /**
30  * RegexSplitter
31  *
32  * @author Dmitry Samoshin aka gotty
33  */
34 public class RegexSplitter extends AbstractRegexResult implements RegexMatcher {
35
36     private Pattern pattern;
37     private StringBuilder current;
38     private String key;
39
40     public RegexSplitter(String match) {
41         pattern = Pattern.compile(match);
42         current = new StringBuilder();
43     }
44
45     @Override
46     public void match(String input) {
47         Matcher matcher = pattern.matcher(input);
48         if (matcher.find()) {
49             if (current.length() > 0) {
50                 if (key != null) {
51                     add(key, current.toString());
52                 } else {
53                     add(current.toString());
54                 }
55                 current = new StringBuilder();
56             } else {
57                 key = matcher.groupCount() > 0 ? matcher.group(1) : null;
58             }
59         }
60         addCurrent(input);
61     }
62
63     private void addCurrent(String input) {
64         current.append(
65                 input
66         ).append(
67                 ChessHogScannerConstants.CRLF
68         );
69     }
70
71     @Override
72     public RegexResult result() {
73         return this;
74     }
75
76     @Override
77     public List<String> resultList() {
78         if (current.length() > 0) {
79             add(current.toString());
80             current = new StringBuilder();
81         }
82         return super.resultList();
83     }
84
85     @Override
86     public Map<String, String> resultMap() {
87         if (current.length() > 0) {
88             add(key, current.toString());
89             current = new StringBuilder();
90         }
91         return super.resultMap();
92     }
93
94 }