/* * 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. */ package org.apache.deltaspike.core.api.resourceloader; import javax.enterprise.inject.Any; import javax.enterprise.inject.Instance; import javax.enterprise.inject.spi.InjectionPoint; import javax.inject.Inject; import java.io.IOException; import java.io.InputStream; import java.lang.annotation.Annotation; import java.util.Collections; import java.util.List; import java.util.Properties; import java.util.Set; import java.util.logging.Level; import java.util.logging.Logger; /** * An abstract InjectableResourceProvider implementation with some basic utility functionality. */ public abstract class AbstractResourceProvider implements InjectableResourceProvider { private static final Logger logger = Logger.getLogger(AbstractResourceProvider.class.getName()); @Inject @Any private Instance<InjectionPoint> injectionPoint; protected boolean isXml(String fileName) { return fileName.endsWith(".xml"); } protected InjectionPoint getInjectionPoint() { return this.injectionPoint.get(); } protected Set<Annotation> getAnnotations() { return this.getInjectionPoint().getAnnotated().getAnnotations(); } protected void loadInputStreamToProperties(InputStream inputStream, Properties properties, String name) { boolean isXml = this.isXml(name); try { if (isXml) { properties.loadFromXML(inputStream); } else { properties.load(inputStream); } } catch (IOException e) { logger.log(Level.WARNING,"Unable to read resource " + name,e); } } @Override public Properties readProperties(InjectableResource injectableResource) { final Properties properties = new Properties(); final String name = injectableResource.location(); InputStream inputStream = null; try { inputStream = this.readStream(injectableResource); this.loadInputStreamToProperties(inputStream, properties, name); return properties; } finally { if (inputStream != null) { try { inputStream.close(); } catch (IOException e) { if (logger.isLoggable(Level.FINE)) { logger.log(Level.FINE, "Problem closing resource.", e); } } } } } @Override public List<InputStream> readStreams(InjectableResource injectableResource) { return Collections.singletonList(this.readStream(injectableResource)); } }