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