package org.red5.spring;
/*
* RED5 Open Source Flash Server - http://www.osflash.org/red5
*
* Copyright (c) 2006-2008 by respective authors (see below). All rights reserved.
*
* This library 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 2.1 of the License, or (at your option) any later
* version.
*
* This library 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 this library; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.Properties;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.core.io.Resource;
/**
* An extension of {@link PropertyPlaceholderConfigurer}. Provides runtime additions of properties and wildcard location lookups.
*
* Properties can be added at runtime by using the static {@link #addGlobalProperty} *before* the bean definition is instantiated
* in the ApplicationContext. A property added by {@link #addGlobalProperty} will get merged into properties specified by the
* bean definition, overriding keys that overlap.
*
* wildcard locations can be used instead of locations, if both are declared the last will override. Wildcard locations are
* handled by {@link #setWildcardLocations(String[])}, using {@link PathMatchingResourcePatternResolver} for matching locations.
* For wildcard locations that matches multiple Properties files, they are merged in by alphabetical filename order.
*
* @author Michael Guymon (michael.guymon@gmail.com)
*
*/
public class ExtendedPropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer {
private static Logger logger = LoggerFactory.getLogger( ExtendedPropertyPlaceholderConfigurer.class );
private static Properties globalPlaceholderProperties = new Properties();
private Properties mergedProperties;
@Override
protected void processProperties(
ConfigurableListableBeanFactory beanFactoryToProcess,
Properties props) throws BeansException {
props.putAll( copyOfGlobalProperties() );
logger.debug( "Placeholder props: {}", props.toString() );
this.mergedProperties = props;
super.processProperties( beanFactoryToProcess, props );
}
/**
* Merged {@link Properties} created by {@link #processProperties}
*
* @return {@link Properties}
*/
public Properties getMergedProperties() {
return mergedProperties;
}
/**
* String[] of wildcard locations of properties that are converted to Resource[] using
* using {@link PathMatchingResourcePatternResolver}
*
* @param locations String[]
* @throws IOException
*/
public void setWildcardLocations( String[] locations ) throws IOException {
List<Resource> resources = new ArrayList<Resource>();
PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver( this.getClass().getClassLoader() );
for( String location: locations ) {
logger.debug( "Loading location {}", location );
try {
// Get all Resources for a wildcard location
Resource[] configs = resolver.getResources(location);
if ( configs != null && configs.length > 0) {
List<Resource> resourceGroup = new ArrayList<Resource>();
for ( Resource resource: configs ) {
logger.debug( "Loading {} for location {}", resource.getFilename(), location );
resourceGroup.add( resource );
}
// Sort all Resources for a wildcard location by filename
Collections.sort( resourceGroup, new ResourceFilenameComparator() );
// Add to master List
resources.addAll( resourceGroup );
} else {
logger.info( "Wildcard location does not exist: {}", location );
}
} catch (IOException ioException) {
logger.error( "Failed to resolve location: {} - {}", location, ioException );
}
}
this.setLocations( ( Resource[] )resources.toArray( new Resource[resources.size()] ) );
}
/**
* Add a global property to be merged
*
* @param key String
* @param val String
*/
public static synchronized void addGlobalProperty( String key, String val ) {
globalPlaceholderProperties.setProperty( key, val );
}
/**
* Copy of the manual properties
*
* @return {@link Properties}
*/
private static synchronized Properties copyOfGlobalProperties() {
// return new Properties( runtimeProperties ); returns an empty prop ??
Properties prop = new Properties();
prop.putAll( globalPlaceholderProperties );
return prop;
}
public class ResourceFilenameComparator implements Comparator<Resource> {
@Override
public int compare( Resource resource1, Resource resource2 ) {
if ( resource1 != null ) {
if ( resource2 != null ) {
return resource1.getFilename().compareTo( resource2.getFilename() );
} else {
return 1;
}
} else if ( resource2 == null ) {
return 0;
} else {
return -1;
}
}
}
}