All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.jasperreports.engine.component.ComponentsEnvironment Maven / Gradle / Ivy

There is a newer version: 6.21.2
Show newest version
/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2019 TIBCO Software Inc. All rights reserved.
 * http://www.jaspersoft.com
 *
 * Unless you have purchased a commercial license agreement from Jaspersoft,
 * the following license terms apply:
 *
 * This program is part of JasperReports.
 *
 * JasperReports is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * JasperReports is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with JasperReports. If not, see .
 */
package net.sf.jasperreports.engine.component;

import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import org.apache.commons.collections4.map.ReferenceMap;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import net.sf.jasperreports.engine.JRRuntimeException;
import net.sf.jasperreports.engine.JasperReportsContext;
import net.sf.jasperreports.extensions.ExtensionsEnvironment;

/**
 * A class that provides access to {@link ComponentsBundle component bundles}.
 * 
 * 

* Component bundles are registered as JasperReports extensions of type * {@link ComponentsBundle} via the central extension framework (see * {@link ExtensionsEnvironment}). * * @author Lucian Chirita ([email protected]) */ public final class ComponentsEnvironment { private static final Log log = LogFactory.getLog(ComponentsEnvironment.class); public static final String EXCEPTION_MESSAGE_KEY_BUNDLE_NOT_REGISTERED = "components.bundle.not.registered"; private final ReferenceMap> cache = new ReferenceMap>( ReferenceMap.ReferenceStrength.WEAK, ReferenceMap.ReferenceStrength.HARD ); private JasperReportsContext jasperReportsContext; /** * */ private ComponentsEnvironment(JasperReportsContext jasperReportsContext) { this.jasperReportsContext = jasperReportsContext; } /** * */ public static ComponentsEnvironment getInstance(JasperReportsContext jasperReportsContext) { return new ComponentsEnvironment(jasperReportsContext); } /** * Returns the set of all component bundles present in the registry. * * @return the set of component bundles */ public Collection getBundles() { Map components = getCachedBundles(); return components.values(); } protected Map getCachedBundles() { Object cacheKey = ExtensionsEnvironment.getExtensionsCacheKey(); synchronized (cache) { Map components = cache.get(cacheKey); if (components == null) { components = findBundles(); cache.put(cacheKey, components); } return components; } } protected Map findBundles() { Map components = new HashMap(); List bundles = jasperReportsContext.getExtensions(ComponentsBundle.class); for (Iterator it = bundles.iterator(); it.hasNext();) { ComponentsBundle bundle = it.next(); String namespace = bundle.getXmlParser().getNamespace(); if (components.containsKey(namespace)) { log.warn("Found two components for namespace " + namespace); } else { components.put(namespace, bundle); } } return components; } /** * Returns a component bundle that corresponds to a namespace. * * @param namespace a component bundle namespace * @return the corresponding component bundle * @throws JRRuntimeException if no bundle corresponding to the namespace * is found in the registry */ public ComponentsBundle getBundle(String namespace) { Map components = getCachedBundles(); ComponentsBundle componentsBundle = components.get(namespace); if (componentsBundle == null) { throw new JRRuntimeException( EXCEPTION_MESSAGE_KEY_BUNDLE_NOT_REGISTERED, new Object[]{namespace}); } return componentsBundle; } /** * Returns a component manager that corresponds to a particular component * type key. * * @param componentKey the component type key * @return the manager for the component type * @throws JRRuntimeException if the registry does not contain the specified * component type */ public ComponentManager getManager(ComponentKey componentKey) { String namespace = componentKey.getNamespace(); ComponentsBundle componentsBundle = getBundle(namespace); String name = componentKey.getName(); return componentsBundle.getComponentManager(name); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy