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