[LIB-13] Add lichess scanner
[chesshog-scanner.git] / src / main / java / org / hedgecode / chess / scanner / ChessHogScanner.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;
18
19 import java.util.HashMap;
20 import java.util.Map;
21
22 import org.hedgecode.chess.scanner.portal.ChessGamesScanner;
23 import org.hedgecode.chess.scanner.portal.LiChessScanner;
24
25 /**
26  * ChessHogScanner
27  *
28  * @author Dmitry Samoshin aka gotty
29  */
30 public final class ChessHogScanner {
31
32     private static ChessHogScanner _instance;
33
34     private final Map<ScannerType, Scanner> SCANNERS = new HashMap<ScannerType, Scanner>() {
35         {
36             put( ScannerType.CHESSGAMES, new ChessGamesScanner() );
37             put( ScannerType.LICHESS,    new LiChessScanner()    );
38         }
39     };
40
41     public static Scanner get(ScannerType type) {
42         return getInstance().scanner(type);
43     }
44
45     private void init() {
46         try {
47             for (Scanner scanner : SCANNERS.values()) {
48                 if (scanner instanceof Initiable) {
49                     Initiable initiableScanner = (Initiable) scanner;
50                     initiableScanner.init();
51                 }
52             }
53         } catch (ChessHogScannerException e) {
54             throw new RuntimeException(e);
55         }
56     }
57
58     private Scanner scanner(ScannerType type) {
59         return SCANNERS.get(type);
60     }
61
62     private ChessHogScanner() {
63     }
64
65     private static ChessHogScanner getInstance() {
66         if (_instance == null) {
67             _instance = new ChessHogScanner();
68             _instance.init();
69         }
70         return _instance;
71     }
72
73 }