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

com.anrisoftware.resources.binary.internal.binaries.BinariesWorker Maven / Gradle / Ivy

/*
 * Copyright 2016 Erwin Müller 
 *
 * Licensed 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.
 */
package com.anrisoftware.resources.binary.internal.binaries;

import java.net.MalformedURLException;
import java.net.URL;
import java.util.Locale;
import java.util.ResourceBundle;

import javax.inject.Inject;

import com.anrisoftware.resources.binary.external.BinariesMap;
import com.anrisoftware.resources.binary.external.BinaryResource;
import com.anrisoftware.resources.binary.external.BinaryResourceFactory;
import com.anrisoftware.resources.binary.external.BinariesBundlesMap;
import com.anrisoftware.resources.external.GetBundle;
import com.anrisoftware.resources.external.ResourcesException;
import com.google.inject.assistedinject.Assisted;

/**
 * Returns the binary resource with the desired name and locale.
 * 
 * @author Erwin Mueller, [email protected]
 * @since 1.0
 */
class BinariesWorker {

	private final BinariesWorkerLogger log;

	private final String name;

	private final Locale locale;

	private final GetBundle getBundle;

	private final BinariesBundlesMap bundles;

	private final BinaryResourceFactory resourceFactory;

	/**
	 * Injects the dependencies.
	 * 
	 * @param logger
	 *            the {@link BinariesWorkerLogger} where the logging messages
	 *            are logged.
	 * 
	 * @param resourceFactory
	 *            the {@link BinaryResourceFactory} to create a new image
	 *            resource.
	 * 
	 * @param name
	 *            the {@link String} name of the image resource we want to get.
	 * 
	 * @param locale
	 *            the {@link Locale} of the image resource we want to get.
	 * 
	 * @param getBundle
	 *            the {@link GetBundle} that returns the resource bundle for the
	 *            locale.
	 * 
	 * @param bundles
	 *            the map of bundles with their binary resources maps.
	 */
	@Inject
	BinariesWorker(BinariesWorkerLogger logger,
			BinaryResourceFactory resourceFactory, @Assisted String name,
			@Assisted Locale locale, @Assisted GetBundle getBundle,
			@Assisted BinariesBundlesMap bundles) {
		this.log = logger;
		this.resourceFactory = resourceFactory;
		this.name = name;
		this.locale = locale;
		this.getBundle = getBundle;
		this.bundles = bundles;
	}

	/**
	 * Returns the binary resource with the desired name and locale.
	 * 
	 * @return a {@link BinaryResource}.
	 */
	public BinaryResource binaryResource() {
		ResourceBundle bundle = getBundle.bundleFor(locale);
		BinariesMap map = bundles.getBinaries(getBundle.getBaseName(), bundle);
		log.loadedResourceBundle(name, bundle);
		lazyLoadBinary(map, bundle);
		log.checkBinaryLoaded(map.haveBinary(name), name, locale, bundle);
		BinaryResource image = map.getBinary(name);
		return image;
	}

	private void lazyLoadBinary(BinariesMap map, ResourceBundle bundle)
			throws ResourcesException {
		if (map.haveBinary(name)) {
			return;
		}
		String location = bundle.getString(name);
		URL url = createURL(location);
		BinaryResource resource;
		if (url != null) {
			resource = resourceFactory.create(name, locale, url);
			addResource(map, resource);
		}
	}

	private URL createURL(String value) {
		try {
			return new URL(value);
		} catch (MalformedURLException e) {
			URL url = BinariesImpl.class.getClassLoader().getResource(value);
			return log.checkResourceURL(url, value);
		}
	}

	private void addResource(BinariesMap map, BinaryResource resource) {
		map.putBinary(resource);
		log.addedBinaryResource(resource);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy