/* This file is part of the db4o object database http://www.db4o.com Copyright (C) 2004 - 2011 Versant Corporation http://www.versant.com db4o is free software; you can redistribute it and/or modify it under the terms of version 3 of the GNU General Public License as published by the Free Software Foundation. db4o 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 this program. If not, see http://www.gnu.org/licenses/. */ package com.db4o.config.annotations.reflect; import java.lang.annotation.*; import java.lang.reflect.*; import java.util.*; import com.db4o.config.*; import com.db4o.config.annotations.*; import com.db4o.internal.*; /** * sets db4o configurations accordingly annotations * * @exclude * @sharpen.ignore */ @decaf.Ignore(unlessCompatible=decaf.Platform.JDK15) public class ConfigurationIntrospector { Map<Class<? extends Annotation>, Db4oConfiguratorFactory> _configurators; Config4Class _classConfig; Class _clazz; Configuration _config; public ConfigurationIntrospector(Class clazz, Configuration config, Config4Class classConfig) throws Exception { this._classConfig = classConfig; this._clazz = clazz; this._config = config; initMap(); } private void initMap() throws NoSuchMethodException { _configurators = new HashMap<Class<? extends Annotation>, Db4oConfiguratorFactory>(); _configurators.put(UpdatedDepth.class, new UpdatedDepthFactory()); _configurators.put(Indexed.class, new NoArgsFieldConfiguratorFactory( IndexedConfigurator.class)); _configurators.put(CalledConstructor.class, new CalledConstructorFactory()); _configurators.put(GeneratedUUIDs.class, new GeneratedUUIDsFactory()); _configurators.put(StoredTransientFields.class, new StoredTransientFieldsFactory()); _configurators.put(PersistedStaticFieldValues.class, new PersistedStaticFieldValuesFactory()); } /** * the start method to reflect user class and fields <br> * in order to set appropriate configurations * * @param clazz * Java class to reflect * @return classConfig configurations of class */ public Config4Class apply() { try { reflectClass(); reflectFields(); } catch (SecurityException e) { e.printStackTrace(); } return _classConfig; } private void reflectClass() { Annotation[] annotations = _clazz.getAnnotations(); for (Annotation a : annotations) { applyAnnotation(_clazz, a); } } private void reflectFields() { Field[] declaredFields; try { declaredFields = _clazz.getDeclaredFields(); for (Field f : declaredFields) { for (Annotation a : f.getAnnotations()) { applyAnnotation(f, a); } } } catch (SecurityException e) { e.printStackTrace(); } catch (NoClassDefFoundError e) { } } private void applyAnnotation(AnnotatedElement element, Annotation a) { if (_configurators.containsKey(a.annotationType())) { Db4oConfigurator configurator = _configurators.get( a.annotationType()).configuratorFor(element, a); _classConfig = (Config4Class) configurator.configure(_config); } } }