[LIB-9] Separate chesshog-hedgefish module
[chesshog.git] / src / main / java / org / hedgecode / chess / img / ImageFormat.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.img;
18
19 import java.util.ArrayList;
20 import java.util.Arrays;
21 import java.util.List;
22
23 import javax.imageio.ImageIO;
24
25 /**
26  * Supported image formats for reading/writing.
27  *
28  * @author Dmitry Samoshin aka gotty
29  */
30 public enum ImageFormat {
31
32     PNG ( new String[]{"png"} ),
33     GIF ( new String[]{"gif"} ),
34     JPG ( new String[]{"jpg", "jpeg"} ),
35     SVG ( new String[]{"svg"} ), // todo
36     BMP ( new String[]{"bmp", "wbmp"} );
37
38     private String[] fortmatExts;
39
40     private boolean isRead;
41     private boolean isWrite;
42
43     private static String[] allAvailableExts;
44
45     ImageFormat(String[] exts) {
46         fortmatExts = exts;
47         isRead = isExist(
48                 ImageIO.getReaderFormatNames(), fortmatExts
49         );
50         isWrite = isExist(
51                 ImageIO.getWriterFormatNames(), fortmatExts
52         );
53     }
54
55     public String getExt() {
56         return fortmatExts[0];
57     }
58
59     public String[] getExts() {
60         return fortmatExts;
61     }
62
63     public boolean isRead() {
64         return isRead;
65     }
66
67     public boolean isWrite() {
68         return isWrite;
69     }
70
71     public static ImageFormat findFormat(String formatName) {
72         if (formatName != null) {
73             for (ImageFormat imageFormat : ImageFormat.values()) {
74                 if (isExist(imageFormat.getExts(), formatName))
75                     return imageFormat;
76             }
77         }
78         return null;
79     }
80
81     public static String[] getAllExts() {
82         if (allAvailableExts == null) {
83             List<String> listExts = new ArrayList<>();
84             for (ImageFormat imageFormat : ImageFormat.values()) {
85                 listExts.addAll(Arrays.asList(imageFormat.getExts()));
86             }
87             allAvailableExts = listExts.toArray(new String[listExts.size()]);
88         }
89         return allAvailableExts;
90     }
91
92     private static boolean isExist(String[] names, String... args) {
93         for (String arg : args) {
94             for (String name : names) {
95                 if (arg.equalsIgnoreCase(name))
96                     return true;
97             }
98         }
99         return false;
100     }
101
102
103 /*
104     public static void main(String[] args) {
105         ImageFormat imageFormat = JPG;
106         System.out.println("Supported format: " + imageFormat);
107         imageFormat = findFormat("jpeg");
108         imageFormat = findFormat("svg");
109         imageFormat = findFormat("jpeeg");
110     }
111 */
112
113 }