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