001/* 002 * Licensed to the Apache Software Foundation (ASF) under one or more 003 * contributor license agreements. See the NOTICE file distributed with 004 * this work for additional information regarding copyright ownership. 005 * The ASF licenses this file to You under the Apache License, Version 2.0 006 * (the "License"); you may not use this file except in compliance with 007 * the License. You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017package org.apache.commons.configuration2.builder; 018 019import java.util.Map; 020 021import org.apache.commons.configuration2.FileBasedConfiguration; 022import org.apache.commons.configuration2.ex.ConfigurationException; 023import org.apache.commons.configuration2.io.FileHandler; 024import org.apache.commons.configuration2.reloading.ReloadingController; 025import org.apache.commons.configuration2.reloading.ReloadingControllerSupport; 026import org.apache.commons.configuration2.reloading.ReloadingDetector; 027 028/** 029 * <p> 030 * A specialized {@code ConfigurationBuilder} implementation which can handle configurations read from a 031 * {@link FileHandler} and supports reloading. 032 * </p> 033 * <p> 034 * This builder class exposes a {@link ReloadingController} object controlling reload operations on the file-based 035 * configuration produced as result object. For the {@code FileHandler} defining the location of the configuration a 036 * configurable {@link ReloadingDetector} is created and associated with the controller. So changes on the source file 037 * can be detected. When ever such a change occurs, the result object of this builder is reset. This means that the next 038 * time {@code getConfiguration()} is called a new {@code Configuration} object is created which is loaded from the 039 * modified file. 040 * </p> 041 * <p> 042 * Client code interested in notifications can register a listener at this builder to receive reset events. When such an 043 * event is received the new result object can be requested. This way client applications can be sure to work with an 044 * up-to-date configuration. It is also possible to register a listener directly at the {@code ReloadingController}. 045 * </p> 046 * <p> 047 * This builder does not actively trigger the {@code ReloadingController} to perform a reload check. This has to be done 048 * by an external component, e.g. a timer. 049 * </p> 050 * 051 * @since 2.0 052 * @param <T> the concrete type of {@code Configuration} objects created by this builder 053 */ 054public class ReloadingFileBasedConfigurationBuilder<T extends FileBasedConfiguration> extends FileBasedConfigurationBuilder<T> 055 implements ReloadingControllerSupport { 056 /** The default factory for creating reloading detector objects. */ 057 private static final ReloadingDetectorFactory DEFAULT_DETECTOR_FACTORY = new DefaultReloadingDetectorFactory(); 058 059 /** 060 * Returns a {@code ReloadingDetectorFactory} either from the passed in parameters or a default factory. 061 * 062 * @param params the current parameters object 063 * @return the {@code ReloadingDetectorFactory} to be used 064 */ 065 private static ReloadingDetectorFactory fetchDetectorFactory(final FileBasedBuilderParametersImpl params) { 066 final ReloadingDetectorFactory factory = params.getReloadingDetectorFactory(); 067 return factory != null ? factory : DEFAULT_DETECTOR_FACTORY; 068 } 069 070 /** The reloading controller associated with this object. */ 071 private final ReloadingController reloadingController; 072 073 /** 074 * The reloading detector which does the actual reload check for the current result object. A new instance is created 075 * whenever a new result object (and thus a new current file handler) becomes available. The field must be volatile 076 * because it is accessed by the reloading controller probably from within another thread. 077 */ 078 private volatile ReloadingDetector resultReloadingDetector; 079 080 /** 081 * Creates a new instance of {@code ReloadingFileBasedConfigurationBuilder} which produces result objects of the 082 * specified class. 083 * 084 * @param resCls the result class (must not be <b>null</b> 085 * @throws IllegalArgumentException if the result class is <b>null</b> 086 */ 087 public ReloadingFileBasedConfigurationBuilder(final Class<? extends T> resCls) { 088 super(resCls); 089 reloadingController = createReloadingController(); 090 } 091 092 /** 093 * Creates a new instance of {@code ReloadingFileBasedConfigurationBuilder} which produces result objects of the 094 * specified class and sets initialization parameters. 095 * 096 * @param resCls the result class (must not be <b>null</b> 097 * @param params a map with initialization parameters 098 * @throws IllegalArgumentException if the result class is <b>null</b> 099 */ 100 public ReloadingFileBasedConfigurationBuilder(final Class<? extends T> resCls, final Map<String, Object> params) { 101 super(resCls, params); 102 reloadingController = createReloadingController(); 103 } 104 105 /** 106 * Creates a new instance of {@code ReloadingFileBasedConfigurationBuilder} which produces result objects of the 107 * specified class and sets initialization parameters and the <em>allowFailOnInit</em> flag. 108 * 109 * @param resCls the result class (must not be <b>null</b> 110 * @param params a map with initialization parameters 111 * @param allowFailOnInit the <em>allowFailOnInit</em> flag 112 * @throws IllegalArgumentException if the result class is <b>null</b> 113 */ 114 public ReloadingFileBasedConfigurationBuilder(final Class<? extends T> resCls, final Map<String, Object> params, final boolean allowFailOnInit) { 115 super(resCls, params, allowFailOnInit); 116 reloadingController = createReloadingController(); 117 } 118 119 /** 120 * {@inheritDoc} This method is overridden here to change the result type. 121 */ 122 @Override 123 public ReloadingFileBasedConfigurationBuilder<T> configure(final BuilderParameters... params) { 124 super.configure(params); 125 return this; 126 } 127 128 /** 129 * Creates the {@code ReloadingController} associated with this object. The controller is assigned a specialized 130 * reloading detector which delegates to the detector for the current result object. ( 131 * {@code FileHandlerReloadingDetector} does not support changing the file handler, and {@code ReloadingController} does 132 * not support changing the reloading detector; therefore, this level of indirection is needed to change the monitored 133 * file dynamically.) 134 * 135 * @return the new {@code ReloadingController} 136 */ 137 private ReloadingController createReloadingController() { 138 final ReloadingDetector ctrlDetector = createReloadingDetectorForController(); 139 final ReloadingController ctrl = new ReloadingController(ctrlDetector); 140 connectToReloadingController(ctrl); 141 return ctrl; 142 } 143 144 /** 145 * Creates a {@code ReloadingDetector} which monitors the passed in {@code FileHandler}. This method is called each time 146 * a new result object is created with the current {@code FileHandler}. This implementation checks whether a 147 * {@code ReloadingDetectorFactory} is specified in the current parameters. If this is the case, it is invoked. 148 * Otherwise, a default factory is used to create a {@code FileHandlerReloadingDetector} object. Note: This method is 149 * called from a synchronized block. 150 * 151 * @param handler the current {@code FileHandler} 152 * @param fbparams the object with parameters related to file-based builders 153 * @return a {@code ReloadingDetector} for this {@code FileHandler} 154 * @throws ConfigurationException if an error occurs 155 */ 156 protected ReloadingDetector createReloadingDetector(final FileHandler handler, final FileBasedBuilderParametersImpl fbparams) 157 throws ConfigurationException { 158 return fetchDetectorFactory(fbparams).createReloadingDetector(handler, fbparams); 159 } 160 161 /** 162 * Creates a {@code ReloadingDetector} wrapper to be passed to the associated {@code ReloadingController}. This detector 163 * wrapper simply delegates to the current {@code ReloadingDetector} if it is available. 164 * 165 * @return the wrapper {@code ReloadingDetector} 166 */ 167 private ReloadingDetector createReloadingDetectorForController() { 168 return new ReloadingDetector() { 169 @Override 170 public boolean isReloadingRequired() { 171 final ReloadingDetector detector = resultReloadingDetector; 172 return detector != null && detector.isReloadingRequired(); 173 } 174 175 @Override 176 public void reloadingPerformed() { 177 final ReloadingDetector detector = resultReloadingDetector; 178 if (detector != null) { 179 detector.reloadingPerformed(); 180 } 181 } 182 }; 183 } 184 185 /** 186 * Gets the {@code ReloadingController} associated with this builder. This controller is directly created. However, 187 * it becomes active (i.e. associated with a meaningful reloading detector) not before a result object was created. 188 * 189 * @return the {@code ReloadingController} 190 */ 191 @Override 192 public ReloadingController getReloadingController() { 193 return reloadingController; 194 } 195 196 /** 197 * {@inheritDoc} This implementation also takes care that a new {@code ReloadingDetector} for the new current 198 * {@code FileHandler} is created. Also, the reloading controller's reloading state has to be reset; after the creation 199 * of a new result object changes in the underlying configuration source have to be monitored again. 200 */ 201 @Override 202 protected void initFileHandler(final FileHandler handler) throws ConfigurationException { 203 super.initFileHandler(handler); 204 205 resultReloadingDetector = createReloadingDetector(handler, FileBasedBuilderParametersImpl.fromParameters(getParameters(), true)); 206 } 207}