[LIB-9] Separate chesshog-uci module
[chesshog.git] / chesshog-uci / src / main / java / org / hedgecode / chess / uci / command / InfoParams.java
1 /*
2  * Copyright (c) 2018. 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.uci.command;
18
19 import java.util.regex.Matcher;
20 import java.util.regex.Pattern;
21
22 /**
23  * Container class for values of UCI command "info".
24  *
25  * @author Dmitry Samoshin aka gotty
26  */
27 public final class InfoParams {
28
29
30     private static final Pattern INFO_PATTERN =
31             Pattern.compile(
32                     String.format("^\\s*%s(.*)%s\\s+(%s)(.*)$" /*, ... */ )
33             );
34
35     private InfoParams() {
36
37     }
38
39 /*
40
41     depth|seldepth|time|nodes|pv|multipv|score...|currmove|currmovenumber|hashfull|nps
42     tbhits|sbhits|cpuload|string|refutation|currline
43
44 */
45
46
47     public static final class Factory {
48
49         public static InfoParams parse(String option) {
50             Matcher matcher = INFO_PATTERN.matcher(option);
51             if (matcher.find()) {
52 /*
53                 return new InfoParams(
54                         matcher.group(1).trim(),
55                         matcher.group(2).trim(),
56                         matcher.group(3).trim()
57                 );
58 */
59             }
60             return null;
61         }
62
63     }
64
65
66 }