author | avstepan |
Mon, 11 Jan 2016 17:51:54 +0300 | |
changeset 35667 | ed476aba94de |
parent 25859 | 3317bb8137f4 |
child 36511 | 9d0388c6b336 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
22584
eed64ee05369
8032733: Fix cast lint warnings in client libraries
darcy
parents:
21278
diff
changeset
|
2 |
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package javax.imageio.spi; |
|
27 |
||
28 |
import java.io.IOException; |
|
29 |
import java.lang.reflect.Constructor; |
|
30 |
import java.lang.reflect.Method; |
|
31 |
import java.util.Arrays; |
|
32 |
import java.util.Iterator; |
|
33 |
import javax.imageio.ImageReader; |
|
34 |
import javax.imageio.metadata.IIOMetadata; |
|
35 |
import javax.imageio.metadata.IIOMetadataFormat; |
|
36 |
import javax.imageio.metadata.IIOMetadataFormatImpl; |
|
37 |
import javax.imageio.stream.ImageInputStream; |
|
38 |
||
39 |
/** |
|
40 |
* A superclass containing instance variables and methods common to |
|
35667 | 41 |
* {@code ImageReaderSpi} and {@code ImageWriterSpi}. |
2 | 42 |
* |
43 |
* @see IIORegistry |
|
44 |
* @see ImageReaderSpi |
|
45 |
* @see ImageWriterSpi |
|
46 |
* |
|
47 |
*/ |
|
48 |
public abstract class ImageReaderWriterSpi extends IIOServiceProvider { |
|
49 |
||
50 |
/** |
|
51 |
* An array of strings to be returned from |
|
35667 | 52 |
* {@code getFormatNames}, initially {@code null}. |
53 |
* Constructors should set this to a non-{@code null} value. |
|
2 | 54 |
*/ |
55 |
protected String[] names = null; |
|
56 |
||
57 |
/** |
|
58 |
* An array of strings to be returned from |
|
35667 | 59 |
* {@code getFileSuffixes}, initially {@code null}. |
2 | 60 |
*/ |
61 |
protected String[] suffixes = null; |
|
62 |
||
63 |
/** |
|
64 |
* An array of strings to be returned from |
|
35667 | 65 |
* {@code getMIMETypes}, initially {@code null}. |
2 | 66 |
*/ |
67 |
protected String[] MIMETypes = null; |
|
68 |
||
69 |
/** |
|
35667 | 70 |
* A {@code String} containing the name of the associated |
71 |
* plug-in class, initially {@code null}. |
|
2 | 72 |
*/ |
73 |
protected String pluginClassName = null; |
|
74 |
||
75 |
/** |
|
76 |
* A boolean indicating whether this plug-in supports the |
|
77 |
* standard metadata format for stream metadata, initially |
|
35667 | 78 |
* {@code false}. |
2 | 79 |
*/ |
80 |
protected boolean supportsStandardStreamMetadataFormat = false; |
|
81 |
||
82 |
/** |
|
35667 | 83 |
* A {@code String} containing the name of the native stream |
2 | 84 |
* metadata format supported by this plug-in, initially |
35667 | 85 |
* {@code null}. |
2 | 86 |
*/ |
87 |
protected String nativeStreamMetadataFormatName = null; |
|
88 |
||
89 |
/** |
|
35667 | 90 |
* A {@code String} containing the class name of the native |
2 | 91 |
* stream metadata format supported by this plug-in, initially |
35667 | 92 |
* {@code null}. |
2 | 93 |
*/ |
94 |
protected String nativeStreamMetadataFormatClassName = null; |
|
95 |
||
96 |
/** |
|
35667 | 97 |
* An array of {@code String}s containing the names of any |
2 | 98 |
* additional stream metadata formats supported by this plug-in, |
35667 | 99 |
* initially {@code null}. |
2 | 100 |
*/ |
101 |
protected String[] extraStreamMetadataFormatNames = null; |
|
102 |
||
103 |
/** |
|
35667 | 104 |
* An array of {@code String}s containing the class names of |
2 | 105 |
* any additional stream metadata formats supported by this plug-in, |
35667 | 106 |
* initially {@code null}. |
2 | 107 |
*/ |
108 |
protected String[] extraStreamMetadataFormatClassNames = null; |
|
109 |
||
110 |
/** |
|
111 |
* A boolean indicating whether this plug-in supports the |
|
112 |
* standard metadata format for image metadata, initially |
|
35667 | 113 |
* {@code false}. |
2 | 114 |
*/ |
115 |
protected boolean supportsStandardImageMetadataFormat = false; |
|
116 |
||
117 |
/** |
|
35667 | 118 |
* A {@code String} containing the name of the |
2 | 119 |
* native stream metadata format supported by this plug-in, |
35667 | 120 |
* initially {@code null}. |
2 | 121 |
*/ |
122 |
protected String nativeImageMetadataFormatName = null; |
|
123 |
||
124 |
/** |
|
35667 | 125 |
* A {@code String} containing the class name of the |
2 | 126 |
* native stream metadata format supported by this plug-in, |
35667 | 127 |
* initially {@code null}. |
2 | 128 |
*/ |
129 |
protected String nativeImageMetadataFormatClassName = null; |
|
130 |
||
131 |
/** |
|
35667 | 132 |
* An array of {@code String}s containing the names of any |
2 | 133 |
* additional image metadata formats supported by this plug-in, |
35667 | 134 |
* initially {@code null}. |
2 | 135 |
*/ |
136 |
protected String[] extraImageMetadataFormatNames = null; |
|
137 |
||
138 |
/** |
|
35667 | 139 |
* An array of {@code String}s containing the class names of |
2 | 140 |
* any additional image metadata formats supported by this |
35667 | 141 |
* plug-in, initially {@code null}. |
2 | 142 |
*/ |
143 |
protected String[] extraImageMetadataFormatClassNames = null; |
|
144 |
||
145 |
/** |
|
35667 | 146 |
* Constructs an {@code ImageReaderWriterSpi} with a given |
2 | 147 |
* set of values. |
148 |
* |
|
35667 | 149 |
* @param vendorName the vendor name, as a non-{@code null} |
150 |
* {@code String}. |
|
151 |
* @param version a version identifier, as a non-{@code null} |
|
152 |
* {@code String}. |
|
153 |
* @param names a non-{@code null} array of |
|
154 |
* {@code String}s indicating the format names. At least one |
|
2 | 155 |
* entry must be present. |
35667 | 156 |
* @param suffixes an array of {@code String}s indicating the |
2 | 157 |
* common file suffixes. If no suffixes are defined, |
35667 | 158 |
* {@code null} should be supplied. An array of length 0 |
159 |
* will be normalized to {@code null}. |
|
160 |
* @param MIMETypes an array of {@code String}s indicating |
|
2 | 161 |
* the format's MIME types. If no MIME types are defined, |
35667 | 162 |
* {@code null} should be supplied. An array of length 0 |
163 |
* will be normalized to {@code null}. |
|
2 | 164 |
* @param pluginClassName the fully-qualified name of the |
35667 | 165 |
* associated {@code ImageReader} or {@code ImageWriter} |
166 |
* class, as a non-{@code null String}. |
|
2 | 167 |
* @param supportsStandardStreamMetadataFormat a |
35667 | 168 |
* {@code boolean} that indicates whether a stream metadata |
2 | 169 |
* object can use trees described by the standard metadata format. |
170 |
* @param nativeStreamMetadataFormatName a |
|
35667 | 171 |
* {@code String}, or {@code null}, to be returned from |
172 |
* {@code getNativeStreamMetadataFormatName}. |
|
2 | 173 |
* @param nativeStreamMetadataFormatClassName a |
35667 | 174 |
* {@code String}, or {@code null}, to be used to instantiate |
2 | 175 |
* a metadata format object to be returned from |
35667 | 176 |
* {@code getNativeStreamMetadataFormat}. |
2 | 177 |
* @param extraStreamMetadataFormatNames an array of |
35667 | 178 |
* {@code String}s, or {@code null}, to be returned from |
179 |
* {@code getExtraStreamMetadataFormatNames}. An array of length |
|
180 |
* 0 is normalized to {@code null}. |
|
2 | 181 |
* @param extraStreamMetadataFormatClassNames an array of |
35667 | 182 |
* {@code String}s, or {@code null}, to be used to instantiate |
2 | 183 |
* a metadata format object to be returned from |
35667 | 184 |
* {@code getStreamMetadataFormat}. An array of length |
185 |
* 0 is normalized to {@code null}. |
|
2 | 186 |
* @param supportsStandardImageMetadataFormat a |
35667 | 187 |
* {@code boolean} that indicates whether an image metadata |
2 | 188 |
* object can use trees described by the standard metadata format. |
189 |
* @param nativeImageMetadataFormatName a |
|
35667 | 190 |
* {@code String}, or {@code null}, to be returned from |
191 |
* {@code getNativeImageMetadataFormatName}. |
|
2 | 192 |
* @param nativeImageMetadataFormatClassName a |
35667 | 193 |
* {@code String}, or {@code null}, to be used to instantiate |
2 | 194 |
* a metadata format object to be returned from |
35667 | 195 |
* {@code getNativeImageMetadataFormat}. |
2 | 196 |
* @param extraImageMetadataFormatNames an array of |
35667 | 197 |
* {@code String}s to be returned from |
198 |
* {@code getExtraImageMetadataFormatNames}. An array of length 0 |
|
199 |
* is normalized to {@code null}. |
|
2 | 200 |
* @param extraImageMetadataFormatClassNames an array of |
35667 | 201 |
* {@code String}s, or {@code null}, to be used to instantiate |
2 | 202 |
* a metadata format object to be returned from |
35667 | 203 |
* {@code getImageMetadataFormat}. An array of length |
204 |
* 0 is normalized to {@code null}. |
|
2 | 205 |
* |
35667 | 206 |
* @exception IllegalArgumentException if {@code vendorName} |
207 |
* is {@code null}. |
|
208 |
* @exception IllegalArgumentException if {@code version} |
|
209 |
* is {@code null}. |
|
210 |
* @exception IllegalArgumentException if {@code names} |
|
211 |
* is {@code null} or has length 0. |
|
212 |
* @exception IllegalArgumentException if {@code pluginClassName} |
|
213 |
* is {@code null}. |
|
2 | 214 |
*/ |
215 |
public ImageReaderWriterSpi(String vendorName, |
|
216 |
String version, |
|
217 |
String[] names, |
|
218 |
String[] suffixes, |
|
219 |
String[] MIMETypes, |
|
220 |
String pluginClassName, |
|
221 |
boolean supportsStandardStreamMetadataFormat, |
|
222 |
String nativeStreamMetadataFormatName, |
|
223 |
String nativeStreamMetadataFormatClassName, |
|
224 |
String[] extraStreamMetadataFormatNames, |
|
225 |
String[] extraStreamMetadataFormatClassNames, |
|
226 |
boolean supportsStandardImageMetadataFormat, |
|
227 |
String nativeImageMetadataFormatName, |
|
228 |
String nativeImageMetadataFormatClassName, |
|
229 |
String[] extraImageMetadataFormatNames, |
|
230 |
String[] extraImageMetadataFormatClassNames) { |
|
231 |
super(vendorName, version); |
|
232 |
if (names == null) { |
|
233 |
throw new IllegalArgumentException("names == null!"); |
|
234 |
} |
|
235 |
if (names.length == 0) { |
|
236 |
throw new IllegalArgumentException("names.length == 0!"); |
|
237 |
} |
|
238 |
if (pluginClassName == null) { |
|
239 |
throw new IllegalArgumentException("pluginClassName == null!"); |
|
240 |
} |
|
241 |
||
22584
eed64ee05369
8032733: Fix cast lint warnings in client libraries
darcy
parents:
21278
diff
changeset
|
242 |
this.names = names.clone(); |
2 | 243 |
// If length == 0, leave it null |
244 |
if (suffixes != null && suffixes.length > 0) { |
|
22584
eed64ee05369
8032733: Fix cast lint warnings in client libraries
darcy
parents:
21278
diff
changeset
|
245 |
this.suffixes = suffixes.clone(); |
2 | 246 |
} |
247 |
// If length == 0, leave it null |
|
248 |
if (MIMETypes != null && MIMETypes.length > 0) { |
|
22584
eed64ee05369
8032733: Fix cast lint warnings in client libraries
darcy
parents:
21278
diff
changeset
|
249 |
this.MIMETypes = MIMETypes.clone(); |
2 | 250 |
} |
251 |
this.pluginClassName = pluginClassName; |
|
252 |
||
253 |
this.supportsStandardStreamMetadataFormat = |
|
254 |
supportsStandardStreamMetadataFormat; |
|
255 |
this.nativeStreamMetadataFormatName = nativeStreamMetadataFormatName; |
|
256 |
this.nativeStreamMetadataFormatClassName = |
|
257 |
nativeStreamMetadataFormatClassName; |
|
258 |
// If length == 0, leave it null |
|
259 |
if (extraStreamMetadataFormatNames != null && |
|
260 |
extraStreamMetadataFormatNames.length > 0) { |
|
261 |
this.extraStreamMetadataFormatNames = |
|
22584
eed64ee05369
8032733: Fix cast lint warnings in client libraries
darcy
parents:
21278
diff
changeset
|
262 |
extraStreamMetadataFormatNames.clone(); |
2 | 263 |
} |
264 |
// If length == 0, leave it null |
|
265 |
if (extraStreamMetadataFormatClassNames != null && |
|
266 |
extraStreamMetadataFormatClassNames.length > 0) { |
|
267 |
this.extraStreamMetadataFormatClassNames = |
|
22584
eed64ee05369
8032733: Fix cast lint warnings in client libraries
darcy
parents:
21278
diff
changeset
|
268 |
extraStreamMetadataFormatClassNames.clone(); |
2 | 269 |
} |
270 |
this.supportsStandardImageMetadataFormat = |
|
271 |
supportsStandardImageMetadataFormat; |
|
272 |
this.nativeImageMetadataFormatName = nativeImageMetadataFormatName; |
|
273 |
this.nativeImageMetadataFormatClassName = |
|
274 |
nativeImageMetadataFormatClassName; |
|
275 |
// If length == 0, leave it null |
|
276 |
if (extraImageMetadataFormatNames != null && |
|
277 |
extraImageMetadataFormatNames.length > 0) { |
|
278 |
this.extraImageMetadataFormatNames = |
|
22584
eed64ee05369
8032733: Fix cast lint warnings in client libraries
darcy
parents:
21278
diff
changeset
|
279 |
extraImageMetadataFormatNames.clone(); |
2 | 280 |
} |
281 |
// If length == 0, leave it null |
|
282 |
if (extraImageMetadataFormatClassNames != null && |
|
283 |
extraImageMetadataFormatClassNames.length > 0) { |
|
284 |
this.extraImageMetadataFormatClassNames = |
|
22584
eed64ee05369
8032733: Fix cast lint warnings in client libraries
darcy
parents:
21278
diff
changeset
|
285 |
extraImageMetadataFormatClassNames.clone(); |
2 | 286 |
} |
287 |
} |
|
288 |
||
289 |
/** |
|
35667 | 290 |
* Constructs a blank {@code ImageReaderWriterSpi}. It is up |
2 | 291 |
* to the subclass to initialize instance variables and/or |
292 |
* override method implementations in order to provide working |
|
293 |
* versions of all methods. |
|
294 |
*/ |
|
295 |
public ImageReaderWriterSpi() { |
|
296 |
} |
|
297 |
||
298 |
/** |
|
35667 | 299 |
* Returns an array of {@code String}s containing |
2 | 300 |
* human-readable names for the formats that are generally usable |
35667 | 301 |
* by the {@code ImageReader} or {@code ImageWriter} |
2 | 302 |
* implementation associated with this service provider. For |
35667 | 303 |
* example, a single {@code ImageReader} might be able to |
2 | 304 |
* process both PBM and PNM files. |
305 |
* |
|
35667 | 306 |
* @return a non-{@code null} array of {@code String}s |
2 | 307 |
* or length at least 1 containing informal format names |
308 |
* associated with this reader or writer. |
|
309 |
*/ |
|
310 |
public String[] getFormatNames() { |
|
22584
eed64ee05369
8032733: Fix cast lint warnings in client libraries
darcy
parents:
21278
diff
changeset
|
311 |
return names.clone(); |
2 | 312 |
} |
313 |
||
314 |
/** |
|
35667 | 315 |
* Returns an array of {@code String}s containing a list of |
2 | 316 |
* file suffixes associated with the formats that are generally |
35667 | 317 |
* usable by the {@code ImageReader} or |
318 |
* {@code ImageWriter} implementation associated with this |
|
2 | 319 |
* service provider. For example, a single |
35667 | 320 |
* {@code ImageReader} might be able to process files with |
2 | 321 |
* '.pbm' and '.pnm' suffixes, or both '.jpg' and '.jpeg' |
322 |
* suffixes. If there are no known file suffixes, |
|
35667 | 323 |
* {@code null} will be returned. |
2 | 324 |
* |
325 |
* <p> Returning a particular suffix does not guarantee that files |
|
326 |
* with that suffix can be processed; it merely indicates that it |
|
327 |
* may be worthwhile attempting to decode or encode such files |
|
328 |
* using this service provider. |
|
329 |
* |
|
35667 | 330 |
* @return an array of {@code String}s or length at least 1 |
2 | 331 |
* containing common file suffixes associated with this reader or |
35667 | 332 |
* writer, or {@code null}. |
2 | 333 |
*/ |
334 |
public String[] getFileSuffixes() { |
|
22584
eed64ee05369
8032733: Fix cast lint warnings in client libraries
darcy
parents:
21278
diff
changeset
|
335 |
return suffixes == null ? null : suffixes.clone(); |
2 | 336 |
} |
337 |
||
338 |
/** |
|
35667 | 339 |
* Returns an array of {@code String}s containing a list of |
2 | 340 |
* MIME types associated with the formats that are generally |
35667 | 341 |
* usable by the {@code ImageReader} or |
342 |
* {@code ImageWriter} implementation associated with this |
|
2 | 343 |
* service provider. |
344 |
* |
|
345 |
* <p> Ideally, only a single MIME type would be required in order |
|
346 |
* to describe a particular format. However, for several reasons |
|
347 |
* it is necessary to associate a list of types with each service |
|
348 |
* provider. First, many common image file formats do not have |
|
349 |
* standard MIME types, so a list of commonly used unofficial |
|
35667 | 350 |
* names will be required, such as {@code image/x-pbm} and |
351 |
* {@code image/x-portable-bitmap}. Some file formats have |
|
2 | 352 |
* official MIME types but may sometimes be referred to using |
353 |
* their previous unofficial designations, such as |
|
35667 | 354 |
* {@code image/x-png} instead of the official |
355 |
* {@code image/png}. Finally, a single service provider may |
|
2 | 356 |
* be capable of parsing multiple distinct types from the MIME |
35667 | 357 |
* point of view, for example {@code image/x-xbitmap} and |
358 |
* {@code image/x-xpixmap}. |
|
2 | 359 |
* |
360 |
* <p> Returning a particular MIME type does not guarantee that |
|
361 |
* files claiming to be of that type can be processed; it merely |
|
362 |
* indicates that it may be worthwhile attempting to decode or |
|
363 |
* encode such files using this service provider. |
|
364 |
* |
|
35667 | 365 |
* @return an array of {@code String}s or length at least 1 |
2 | 366 |
* containing MIME types associated with this reader or writer, or |
35667 | 367 |
* {@code null}. |
2 | 368 |
*/ |
369 |
public String[] getMIMETypes() { |
|
22584
eed64ee05369
8032733: Fix cast lint warnings in client libraries
darcy
parents:
21278
diff
changeset
|
370 |
return MIMETypes == null ? null : MIMETypes.clone(); |
2 | 371 |
} |
372 |
||
373 |
/** |
|
374 |
* Returns the fully-qualified class name of the |
|
35667 | 375 |
* {@code ImageReader} or {@code ImageWriter} plug-in |
2 | 376 |
* associated with this service provider. |
377 |
* |
|
35667 | 378 |
* @return the class name, as a non-{@code null} |
379 |
* {@code String}. |
|
2 | 380 |
*/ |
381 |
public String getPluginClassName() { |
|
382 |
return pluginClassName; |
|
383 |
} |
|
384 |
||
385 |
/** |
|
35667 | 386 |
* Returns {@code true} if the standard metadata format is |
2 | 387 |
* among the document formats recognized by the |
35667 | 388 |
* {@code getAsTree} and {@code setFromTree} methods on |
2 | 389 |
* the stream metadata objects produced or consumed by this |
390 |
* plug-in. |
|
391 |
* |
|
35667 | 392 |
* @return {@code true} if the standard format is supported |
2 | 393 |
* for stream metadata. |
394 |
*/ |
|
395 |
public boolean isStandardStreamMetadataFormatSupported() { |
|
396 |
return supportsStandardStreamMetadataFormat; |
|
397 |
} |
|
398 |
||
399 |
/** |
|
400 |
* Returns the name of the "native" stream metadata format for |
|
401 |
* this plug-in, which typically allows for lossless encoding and |
|
402 |
* transmission of the stream metadata stored in the format handled by |
|
403 |
* this plug-in. If no such format is supported, |
|
35667 | 404 |
* {@code null} will be returned. |
2 | 405 |
* |
406 |
* <p> The default implementation returns the |
|
35667 | 407 |
* {@code nativeStreamMetadataFormatName} instance variable, |
2 | 408 |
* which is typically set by the constructor. |
409 |
* |
|
410 |
* @return the name of the native stream metadata format, or |
|
35667 | 411 |
* {@code null}. |
2 | 412 |
* |
413 |
*/ |
|
414 |
public String getNativeStreamMetadataFormatName() { |
|
415 |
return nativeStreamMetadataFormatName; |
|
416 |
} |
|
417 |
||
418 |
/** |
|
35667 | 419 |
* Returns an array of {@code String}s containing the names |
2 | 420 |
* of additional document formats, other than the native and |
421 |
* standard formats, recognized by the |
|
35667 | 422 |
* {@code getAsTree} and {@code setFromTree} methods on |
2 | 423 |
* the stream metadata objects produced or consumed by this |
424 |
* plug-in. |
|
425 |
* |
|
426 |
* <p> If the plug-in does not handle metadata, null should be |
|
427 |
* returned. |
|
428 |
* |
|
429 |
* <p> The set of formats may differ according to the particular |
|
430 |
* images being read or written; this method should indicate all |
|
431 |
* the additional formats supported by the plug-in under any |
|
432 |
* circumstances. |
|
433 |
* |
|
434 |
* <p> The default implementation returns a clone of the |
|
35667 | 435 |
* {@code extraStreamMetadataFormatNames} instance variable, |
2 | 436 |
* which is typically set by the constructor. |
437 |
* |
|
35667 | 438 |
* @return an array of {@code String}s, or null. |
2 | 439 |
* |
440 |
* @see IIOMetadata#getMetadataFormatNames |
|
441 |
* @see #getExtraImageMetadataFormatNames |
|
442 |
* @see #getNativeStreamMetadataFormatName |
|
443 |
*/ |
|
444 |
public String[] getExtraStreamMetadataFormatNames() { |
|
445 |
return extraStreamMetadataFormatNames == null ? |
|
22584
eed64ee05369
8032733: Fix cast lint warnings in client libraries
darcy
parents:
21278
diff
changeset
|
446 |
null : extraStreamMetadataFormatNames.clone(); |
2 | 447 |
} |
448 |
||
449 |
/** |
|
35667 | 450 |
* Returns {@code true} if the standard metadata format is |
2 | 451 |
* among the document formats recognized by the |
35667 | 452 |
* {@code getAsTree} and {@code setFromTree} methods on |
2 | 453 |
* the image metadata objects produced or consumed by this |
454 |
* plug-in. |
|
455 |
* |
|
35667 | 456 |
* @return {@code true} if the standard format is supported |
2 | 457 |
* for image metadata. |
458 |
*/ |
|
459 |
public boolean isStandardImageMetadataFormatSupported() { |
|
460 |
return supportsStandardImageMetadataFormat; |
|
461 |
} |
|
462 |
||
463 |
/** |
|
464 |
* Returns the name of the "native" image metadata format for |
|
465 |
* this plug-in, which typically allows for lossless encoding and |
|
466 |
* transmission of the image metadata stored in the format handled by |
|
467 |
* this plug-in. If no such format is supported, |
|
35667 | 468 |
* {@code null} will be returned. |
2 | 469 |
* |
470 |
* <p> The default implementation returns the |
|
35667 | 471 |
* {@code nativeImageMetadataFormatName} instance variable, |
2 | 472 |
* which is typically set by the constructor. |
473 |
* |
|
474 |
* @return the name of the native image metadata format, or |
|
35667 | 475 |
* {@code null}. |
2 | 476 |
* |
477 |
* @see #getExtraImageMetadataFormatNames |
|
478 |
*/ |
|
479 |
public String getNativeImageMetadataFormatName() { |
|
480 |
return nativeImageMetadataFormatName; |
|
481 |
} |
|
482 |
||
483 |
/** |
|
35667 | 484 |
* Returns an array of {@code String}s containing the names |
2 | 485 |
* of additional document formats, other than the native and |
486 |
* standard formats, recognized by the |
|
35667 | 487 |
* {@code getAsTree} and {@code setFromTree} methods on |
2 | 488 |
* the image metadata objects produced or consumed by this |
489 |
* plug-in. |
|
490 |
* |
|
491 |
* <p> If the plug-in does not handle image metadata, null should |
|
492 |
* be returned. |
|
493 |
* |
|
494 |
* <p> The set of formats may differ according to the particular |
|
495 |
* images being read or written; this method should indicate all |
|
496 |
* the additional formats supported by the plug-in under any circumstances. |
|
497 |
* |
|
498 |
* <p> The default implementation returns a clone of the |
|
35667 | 499 |
* {@code extraImageMetadataFormatNames} instance variable, |
2 | 500 |
* which is typically set by the constructor. |
501 |
* |
|
35667 | 502 |
* @return an array of {@code String}s, or null. |
2 | 503 |
* |
504 |
* @see IIOMetadata#getMetadataFormatNames |
|
505 |
* @see #getExtraStreamMetadataFormatNames |
|
506 |
* @see #getNativeImageMetadataFormatName |
|
507 |
*/ |
|
508 |
public String[] getExtraImageMetadataFormatNames() { |
|
509 |
return extraImageMetadataFormatNames == null ? |
|
22584
eed64ee05369
8032733: Fix cast lint warnings in client libraries
darcy
parents:
21278
diff
changeset
|
510 |
null : extraImageMetadataFormatNames.clone(); |
2 | 511 |
} |
512 |
||
513 |
/** |
|
35667 | 514 |
* Returns an {@code IIOMetadataFormat} object describing the |
515 |
* given stream metadata format, or {@code null} if no |
|
2 | 516 |
* description is available. The supplied name must be the native |
517 |
* stream metadata format name, the standard metadata format name, |
|
518 |
* or one of those returned by |
|
35667 | 519 |
* {@code getExtraStreamMetadataFormatNames}. |
2 | 520 |
* |
521 |
* @param formatName the desired stream metadata format. |
|
522 |
* |
|
35667 | 523 |
* @return an {@code IIOMetadataFormat} object. |
2 | 524 |
* |
35667 | 525 |
* @exception IllegalArgumentException if {@code formatName} |
526 |
* is {@code null} or is not a supported name. |
|
2 | 527 |
*/ |
528 |
public IIOMetadataFormat getStreamMetadataFormat(String formatName) { |
|
529 |
return getMetadataFormat(formatName, |
|
530 |
supportsStandardStreamMetadataFormat, |
|
531 |
nativeStreamMetadataFormatName, |
|
532 |
nativeStreamMetadataFormatClassName, |
|
533 |
extraStreamMetadataFormatNames, |
|
534 |
extraStreamMetadataFormatClassNames); |
|
535 |
} |
|
536 |
||
537 |
/** |
|
35667 | 538 |
* Returns an {@code IIOMetadataFormat} object describing the |
539 |
* given image metadata format, or {@code null} if no |
|
2 | 540 |
* description is available. The supplied name must be the native |
21278 | 541 |
* image metadata format name, the standard metadata format name, |
2 | 542 |
* or one of those returned by |
35667 | 543 |
* {@code getExtraImageMetadataFormatNames}. |
2 | 544 |
* |
545 |
* @param formatName the desired image metadata format. |
|
546 |
* |
|
35667 | 547 |
* @return an {@code IIOMetadataFormat} object. |
2 | 548 |
* |
35667 | 549 |
* @exception IllegalArgumentException if {@code formatName} |
550 |
* is {@code null} or is not a supported name. |
|
2 | 551 |
*/ |
552 |
public IIOMetadataFormat getImageMetadataFormat(String formatName) { |
|
553 |
return getMetadataFormat(formatName, |
|
554 |
supportsStandardImageMetadataFormat, |
|
555 |
nativeImageMetadataFormatName, |
|
556 |
nativeImageMetadataFormatClassName, |
|
557 |
extraImageMetadataFormatNames, |
|
558 |
extraImageMetadataFormatClassNames); |
|
559 |
} |
|
560 |
||
561 |
private IIOMetadataFormat getMetadataFormat(String formatName, |
|
562 |
boolean supportsStandard, |
|
563 |
String nativeName, |
|
564 |
String nativeClassName, |
|
565 |
String [] extraNames, |
|
566 |
String [] extraClassNames) { |
|
567 |
if (formatName == null) { |
|
568 |
throw new IllegalArgumentException("formatName == null!"); |
|
569 |
} |
|
570 |
if (supportsStandard && formatName.equals |
|
571 |
(IIOMetadataFormatImpl.standardMetadataFormatName)) { |
|
572 |
||
573 |
return IIOMetadataFormatImpl.getStandardFormatInstance(); |
|
574 |
} |
|
575 |
String formatClassName = null; |
|
576 |
if (formatName.equals(nativeName)) { |
|
577 |
formatClassName = nativeClassName; |
|
578 |
} else if (extraNames != null) { |
|
579 |
for (int i = 0; i < extraNames.length; i++) { |
|
580 |
if (formatName.equals(extraNames[i])) { |
|
581 |
formatClassName = extraClassNames[i]; |
|
582 |
break; // out of for |
|
583 |
} |
|
584 |
} |
|
585 |
} |
|
586 |
if (formatClassName == null) { |
|
587 |
throw new IllegalArgumentException("Unsupported format name"); |
|
588 |
} |
|
589 |
try { |
|
23313
f100f0d49e0b
8035487: Fix raw and unchecked lint warnings in javax.imageio.spi
henryjen
parents:
22584
diff
changeset
|
590 |
Class<?> cls = Class.forName(formatClassName, true, |
2 | 591 |
ClassLoader.getSystemClassLoader()); |
592 |
Method meth = cls.getMethod("getInstance"); |
|
593 |
return (IIOMetadataFormat) meth.invoke(null); |
|
594 |
} catch (Exception e) { |
|
595 |
RuntimeException ex = |
|
596 |
new IllegalStateException ("Can't obtain format"); |
|
597 |
ex.initCause(e); |
|
598 |
throw ex; |
|
599 |
} |
|
600 |
} |
|
601 |
} |