1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-05 23:22:47 +00:00

Removes ProxyConfigurationService in favor of XMLConfigurationService

This commit is contained in:
2011-12-19 00:35:02 -02:00
parent 8bc59491a9
commit 3581a432b6
16 changed files with 3 additions and 519 deletions

View File

@@ -22,17 +22,13 @@ import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import com.l2jserver.service.configuration.ProxyConfigurationService.ConfigurationName;
/**
* Configuration interface
* <p>
* Each service desiring to use the configuration system must extend the
* interface and define methods for getters and setters. Each method must be
* annotated either with {@link ConfigurationPropertyGetter} or
* {@link ConfigurationPropertySetter}
* <p>
* Each interface may optionally be annotated with {@link ConfigurationName}.
* {@link ConfigurationPropertySetter}.
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/

View File

@@ -1,355 +0,0 @@
/*
* This file is part of l2jserver2 <l2jserver2.com>.
*
* l2jserver2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* l2jserver2 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with l2jserver2. If not, see <http://www.gnu.org/licenses/>.
*/
package com.l2jserver.service.configuration;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.lang.annotation.Annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.util.Map;
import java.util.Properties;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.common.base.Preconditions;
import com.l2jserver.service.AbstractService;
import com.l2jserver.service.AbstractService.Depends;
import com.l2jserver.service.ServiceStartException;
import com.l2jserver.service.cache.CacheService;
import com.l2jserver.service.configuration.Configuration.ConfigurationPropertyGetter;
import com.l2jserver.service.configuration.Configuration.ConfigurationPropertySetter;
import com.l2jserver.service.core.LoggingService;
import com.l2jserver.util.factory.CollectionFactory;
import com.l2jserver.util.transformer.Transformer;
import com.l2jserver.util.transformer.TransformerFactory;
/**
* Creates {@link Configuration} object through Java {@link Proxy}. Uses the
* annotations in the interface to retrieve and store values.
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
@Depends({ LoggingService.class, CacheService.class })
public class ProxyConfigurationService extends AbstractService implements
ConfigurationService {
/**
* The directory in which configuration files are stored
*/
private final File directory = new File("./config/properties");
/**
* The logger
*/
private final Logger log = LoggerFactory.getLogger(this.getClass());
/**
* The cache of configuration objects
*/
private Map<Class<?>, Object> cache = CollectionFactory.newWeakMap();
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Target(value = ElementType.METHOD)
public @interface ConfigurationPropertyKey {
String value();
}
/**
* Each configuration can define the name of its configuration. This will be
* used by implementations to look for the configuration.
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Target(value = ElementType.TYPE)
public @interface ConfigurationName {
/**
* @return the configuration name
*/
String value();
}
@Override
protected void doStart() throws ServiceStartException {
if (!directory.exists())
if (!directory.mkdirs())
throw new ServiceStartException("Failed to create directories");
}
@Override
@SuppressWarnings("unchecked")
public <C extends Configuration> C get(Class<C> config) {
Preconditions.checkNotNull(config, "config");
if (cache.containsKey(config))
return (C) cache.get(config);
log.debug("Trying to create {} proxy", config);
Properties properties;
try {
properties = findProperties(config);
} catch (IOException e) {
properties = new Properties();
log.warn(
"Configuration file for {} not found, falling back to default values",
config);
}
C proxy = (C) Proxy.newProxyInstance(this.getClass().getClassLoader(),
new Class<?>[] { config }, new ConfigInvocationHandler(
properties));
cache.put(config, proxy);
return proxy;
}
/**
* The invocation handler for configuration interfaces
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
private class ConfigInvocationHandler implements InvocationHandler {
/**
* The invocation handler properties
*/
private final Properties properties;
/**
* The invocation cache
*/
private Map<String, Object> cache = CollectionFactory.newWeakMap();
/**
* @param properties
* the properties
*/
public ConfigInvocationHandler(Properties properties) {
this.properties = properties;
}
@Override
public Object invoke(Object proxy, Method method, Object[] args)
throws Throwable {
log.debug("Configuration service, method invoked: {}",
method.getName());
if (args == null || args.length == 0) {
final ConfigurationPropertyGetter getter = method
.getAnnotation(ConfigurationPropertyGetter.class);
final ConfigurationPropertyKey propertiesKey = method
.getAnnotation(ConfigurationPropertyKey.class);
if (getter == null)
return null;
if (propertiesKey == null)
return null;
return get(getter, propertiesKey, method.getReturnType());
} else if (args.length == 1) {
final ConfigurationPropertySetter setter = method
.getAnnotation(ConfigurationPropertySetter.class);
final ConfigurationPropertyKey propertiesKey = method
.getAnnotation(ConfigurationPropertyKey.class);
if (setter == null)
return null;
if (propertiesKey == null)
return null;
set(propertiesKey, args[0], method.getParameterTypes()[0]);
}
return null;
}
/**
* Get the untransformed value of an property
*
* @param getter
* the getter annotation
* @param propertiesKey
* if properties key annotation
* @param type
* the transformed type
* @return the untransformed property
*/
private Object get(ConfigurationPropertyGetter getter,
ConfigurationPropertyKey propertiesKey, Class<?> type) {
if (cache.containsKey(propertiesKey.value()))
return cache.get(propertiesKey.value());
Object o = untransform(
getRaw(propertiesKey.value(), getter.defaultValue()), type);
cache.put(propertiesKey.value(), o);
return o;
}
/**
* Set the transformed value of an property
*
* @param setter
* the setter annotation
* @param value
* the untransformed value
* @param type
* the transformed type
*/
private void set(ConfigurationPropertyKey setter, Object value,
Class<?> type) {
if (value != null) {
properties.setProperty(setter.value(),
transform(value.toString(), type));
cache.remove(setter.value());
} else {
properties.remove(setter.value());
cache.remove(setter.value());
}
}
/**
* Untransforms an value
*
* @param value
* the raw value
* @param type
* the output type
* @return the untransformed value
*/
private Object untransform(String value, Class<?> type) {
if (value == null)
return null;
if (type == String.class)
return value;
final Transformer<?> transformer = TransformerFactory
.getTransfromer(type);
if (transformer == null)
return null;
return transformer.untransform(value);
}
/**
* Transforms an value
*
* @param value
* the raw typed value
* @param type
* the input type
* @return the string representing <tt>value</tt>
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
private String transform(Object value, Class<?> type) {
if (value == null)
return null;
if (value instanceof String)
return (String) value;
final Transformer transformer = TransformerFactory
.getTransfromer(type);
if (transformer == null)
return null;
return transformer.transform(value);
}
/**
* Retrieve the raw value from the property file
*
* @param key
* the key
* @param defaultValue
* the default value
* @return the value found or default value
*/
private String getRaw(String key, String defaultValue) {
if (properties == null)
return defaultValue;
if (properties.containsKey(key)) {
return (String) properties.get(key);
}
return defaultValue;
}
}
/**
* Tries to locate an .properties file
*
* @param clazz
* configuration interface class
* @return the found property
* @throws IOException
* if any i/o error occur
*/
private Properties findProperties(Class<?> clazz) throws IOException {
Preconditions.checkNotNull(clazz, "clazz");
ConfigurationName config = findAnnotation(ConfigurationName.class,
clazz);
Properties prop;
if (config == null) {
for (final Class<?> parent : clazz.getInterfaces()) {
prop = findProperties(parent);
if (prop != null)
return prop;
}
return null;
}
prop = new Properties();
final File file = new File(directory, config.value() + ".properties");
final InputStream in = new FileInputStream(file);
try {
prop.load(in);
} finally {
in.close();
}
return prop;
}
/**
* Tries to find an annotation in the class or any parent-class.
*
* @param <T>
* the annotation type
* @param annotationClass
* the annotation class
* @param clazz
* the class to look for annotations
* @return the annotation found
*/
private <T extends Annotation> T findAnnotation(Class<T> annotationClass,
Class<?> clazz) {
Preconditions.checkNotNull(annotationClass, "annotationClass");
Preconditions.checkNotNull(clazz, "clazz");
T ann = clazz.getAnnotation(annotationClass);
if (ann != null)
return ann;
for (Class<?> clazz2 : annotationClass.getInterfaces()) {
if (clazz2 == clazz)
continue;
ann = findAnnotation(annotationClass, clazz2);
if (ann != null)
return ann;
}
return null;
}
/**
* @return the configuration store directory
*/
public File getDirectory() {
return directory;
}
}

View File

@@ -22,8 +22,6 @@ import java.nio.file.Path;
import com.l2jserver.service.Service;
import com.l2jserver.service.ServiceConfiguration;
import com.l2jserver.service.configuration.Configuration;
import com.l2jserver.service.configuration.ProxyConfigurationService.ConfigurationName;
import com.l2jserver.service.configuration.ProxyConfigurationService.ConfigurationPropertyKey;
import com.l2jserver.service.configuration.XMLConfigurationService.ConfigurationXPath;
/**
@@ -39,13 +37,11 @@ public interface VFSService extends Service {
* @author <a href="http://www.rogiel.com">Rogiel</a>
* @see Configuration
*/
@ConfigurationName("vfs")
public interface VFSConfiguration extends ServiceConfiguration {
/**
* @return the VFS root {@link URI}
*/
@ConfigurationPropertyGetter(defaultValue = "")
@ConfigurationPropertyKey("vfs.root")
@ConfigurationXPath("/configuration/services/vfs/root")
Path getRoot();
@@ -54,7 +50,6 @@ public interface VFSService extends Service {
* the new VFS root {@link URI}
*/
@ConfigurationPropertySetter
@ConfigurationPropertyKey("vfs.root")
@ConfigurationXPath("/configuration/services/vfs/root")
void setRoot(Path root);
}

View File

@@ -47,7 +47,6 @@ import com.l2jserver.service.ServiceStopException;
import com.l2jserver.service.cache.Cache;
import com.l2jserver.service.cache.CacheService;
import com.l2jserver.service.configuration.ConfigurationService;
import com.l2jserver.service.configuration.ProxyConfigurationService.ConfigurationPropertyKey;
import com.l2jserver.service.configuration.XMLConfigurationService.ConfigurationXPath;
import com.l2jserver.service.core.threading.AbstractTask;
import com.l2jserver.service.core.threading.AsyncFuture;
@@ -146,7 +145,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* @return the jdbc url
*/
@ConfigurationPropertyGetter(defaultValue = "jdbc:mysql://localhost/l2jserver2")
@ConfigurationPropertyKey("jdbc.url")
@ConfigurationXPath("/configuration/services/database/jdbc/url")
String getJdbcUrl();
@@ -155,7 +153,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* the new jdbc url
*/
@ConfigurationPropertySetter
@ConfigurationPropertyKey("jdbc.url")
@ConfigurationXPath("/configuration/services/database/jdbc/url")
void setJdbcUrl(String jdbcUrl);
@@ -163,7 +160,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* @return the jdbc driver class
*/
@ConfigurationPropertyGetter(defaultValue = "com.jdbc.jdbc.Driver")
@ConfigurationPropertyKey("jdbc.driver")
@ConfigurationXPath("/configuration/services/database/jdbc/driver")
String getDriver();
@@ -172,7 +168,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* the new jdbc driver
*/
@ConfigurationPropertySetter
@ConfigurationPropertyKey("jdbc.driver")
@ConfigurationXPath("/configuration/services/database/jdbc/driver")
void setDriver(Class<?> driver);
@@ -180,7 +175,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* @return the jdbc database username
*/
@ConfigurationPropertyGetter(defaultValue = "l2j")
@ConfigurationPropertyKey("jdbc.username")
@ConfigurationXPath("/configuration/services/database/jdbc/username")
String getUsername();
@@ -189,7 +183,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* the jdbc database username
*/
@ConfigurationPropertySetter
@ConfigurationPropertyKey("jdbc.username")
@ConfigurationXPath("/configuration/services/database/jdbc/username")
void setUsername(String username);
@@ -197,7 +190,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* @return the jdbc database password
*/
@ConfigurationPropertyGetter(defaultValue = "changeme")
@ConfigurationPropertyKey("jdbc.password")
@ConfigurationXPath("/configuration/services/database/jdbc/password")
String getPassword();
@@ -206,7 +198,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* the jdbc database password
*/
@ConfigurationPropertySetter
@ConfigurationPropertyKey("jdbc.password")
@ConfigurationXPath("/configuration/services/database/jdbc/password")
void setPassword(String password);
@@ -214,7 +205,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* @return the maximum number of active connections
*/
@ConfigurationPropertyGetter(defaultValue = "20")
@ConfigurationPropertyKey("jdbc.active.max")
@ConfigurationXPath("/configuration/services/database/connections/active-maximum")
int getMaxActiveConnections();
@@ -223,7 +213,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* the maximum number of active connections
*/
@ConfigurationPropertySetter
@ConfigurationPropertyKey("jdbc.active.max")
@ConfigurationXPath("/configuration/services/database/connections/active-maximum")
void setMaxActiveConnections(int password);
@@ -231,7 +220,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* @return the maximum number of idle connections
*/
@ConfigurationPropertyGetter(defaultValue = "20")
@ConfigurationPropertyKey("jdbc.idle.max")
@ConfigurationXPath("/configuration/services/database/connections/idle-maximum")
int getMaxIdleConnections();
@@ -240,7 +228,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* the maximum number of idle connections
*/
@ConfigurationPropertySetter
@ConfigurationPropertyKey("jdbc.idle.max")
@ConfigurationXPath("/configuration/services/database/connections/idle-maximum")
void setMaxIdleConnections(int password);
@@ -248,7 +235,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* @return the minimum number of idle connections
*/
@ConfigurationPropertyGetter(defaultValue = "5")
@ConfigurationPropertyKey("jdbc.idle.min")
@ConfigurationXPath("/configuration/services/database/connections/idle-minimum")
int getMinIdleConnections();
@@ -257,7 +243,6 @@ public abstract class AbstractJDBCDatabaseService extends AbstractService
* the minimum number of idle connections
*/
@ConfigurationPropertySetter
@ConfigurationPropertyKey("jdbc.idle.min")
@ConfigurationXPath("/configuration/services/database/connections/idle-minimum")
void setMinIdleConnections(int password);
}

View File

@@ -37,7 +37,6 @@ import com.l2jserver.service.ServiceStopException;
import com.l2jserver.service.cache.Cache;
import com.l2jserver.service.cache.CacheService;
import com.l2jserver.service.configuration.ConfigurationService;
import com.l2jserver.service.configuration.ProxyConfigurationService.ConfigurationPropertyKey;
import com.l2jserver.service.configuration.XMLConfigurationService.ConfigurationXPath;
import com.l2jserver.service.core.threading.AbstractTask;
import com.l2jserver.service.core.threading.AsyncFuture;
@@ -119,7 +118,6 @@ public abstract class AbstractOrientDatabaseService extends AbstractService
* @return the orientdb url
*/
@ConfigurationPropertyGetter(defaultValue = "file:data/database")
@ConfigurationPropertyKey("orientdb.url")
@ConfigurationXPath("/configuration/services/database/orientdb/url")
String getUrl();
@@ -128,7 +126,6 @@ public abstract class AbstractOrientDatabaseService extends AbstractService
* the new orientdb url
*/
@ConfigurationPropertySetter
@ConfigurationPropertyKey("orientdb.url")
@ConfigurationXPath("/configuration/services/database/orientdb/url")
void setUrl(String url);
@@ -136,7 +133,6 @@ public abstract class AbstractOrientDatabaseService extends AbstractService
* @return the orientdb database username
*/
@ConfigurationPropertyGetter(defaultValue = "l2j")
@ConfigurationPropertyKey("orientdb.username")
@ConfigurationXPath("/configuration/services/database/orientdb/username")
String getUsername();
@@ -145,7 +141,6 @@ public abstract class AbstractOrientDatabaseService extends AbstractService
* the orientdb database username
*/
@ConfigurationPropertySetter
@ConfigurationPropertyKey("orientdb.username")
@ConfigurationXPath("/configuration/services/database/orientdb/username")
void setUsername(String username);
@@ -153,7 +148,6 @@ public abstract class AbstractOrientDatabaseService extends AbstractService
* @return the orientdb database password
*/
@ConfigurationPropertyGetter(defaultValue = "changeme")
@ConfigurationPropertyKey("orientdb.password")
@ConfigurationXPath("/configuration/services/database/orientdb/password")
String getPassword();
@@ -162,7 +156,6 @@ public abstract class AbstractOrientDatabaseService extends AbstractService
* the jdbc database password
*/
@ConfigurationPropertySetter
@ConfigurationPropertyKey("jdbc.password")
@ConfigurationXPath("/configuration/services/database/jdbc/password")
void setPassword(String password);
}

View File

@@ -19,7 +19,6 @@ package com.l2jserver.service.database;
import com.l2jserver.service.Service;
import com.l2jserver.service.ServiceConfiguration;
import com.l2jserver.service.configuration.Configuration;
import com.l2jserver.service.configuration.ProxyConfigurationService.ConfigurationName;
import com.l2jserver.service.core.threading.AsyncFuture;
/**
@@ -44,7 +43,6 @@ public interface DatabaseService extends Service {
* @author <a href="http://www.rogiel.com">Rogiel</a>
* @see Configuration
*/
@ConfigurationName("database")
public interface DatabaseConfiguration extends ServiceConfiguration {
}