org.apache.xmlgraphics.image.writer.ImageWriterRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmlgraphics-commons Show documentation
Show all versions of xmlgraphics-commons Show documentation
Apache XML Graphics Commons is a library that consists of several reusable
components used by Apache Batik and Apache FOP. Many of these components
can easily be used separately outside the domains of SVG and XSL-FO.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* $Id: ImageWriterRegistry.java 1681108 2015-05-22 13:26:12Z ssteiner $ */
package org.apache.xmlgraphics.image.writer;
import java.io.IOException;
import java.io.InputStream;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
import java.util.Map;
import java.util.Properties;
import org.apache.xmlgraphics.util.Service;
/**
* Registry for {@link ImageWriter} implementations.
*/
public final class ImageWriterRegistry {
private static volatile ImageWriterRegistry instance;
private Map> imageWriterMap
= new java.util.HashMap>();
private Map preferredOrder;
/**
* Default constructor. The default preferred order for the image writers is loaded from the
* resources.
*/
public ImageWriterRegistry() {
Properties props = new Properties();
InputStream in = getClass().getResourceAsStream("default-preferred-order.properties");
if (in != null) {
try {
try {
props.load(in);
} finally {
in.close();
}
} catch (IOException ioe) {
throw new RuntimeException(
"Could not load default preferred order due to I/O error: "
+ ioe.getMessage());
}
}
setPreferredOrder(props);
setup();
}
/**
* Special constructor. The preferred order for the image writers can be specified as a
* Map (for example a Properties file). The entries of the Map consists of fully qualified
* class or package names as keys and integer numbers as values. Zero (0) is the default
* priority.
* @param preferredOrder the map of order properties used to order the plug-ins
*/
public ImageWriterRegistry(Properties preferredOrder) {
setPreferredOrder(preferredOrder);
setup();
}
private void setPreferredOrder(Properties preferredOrder) {
Map order = new java.util.HashMap();
for (Map.Entry