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 org.apache.fop Show documentation
Show all versions of org.apache.fop Show documentation
The core maven build properties
The newest version!
/*
* 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 1804124 2017-08-04 14:13:54Z 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
© 2015 - 2025 Weber Informatics LLC | Privacy Policy