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