Platform hardening for common bundle
[appc.git] / appc-common / src / main / java / org / onap / appc / configuration / ConfigurationFactory.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.configuration;
26
27 import java.io.BufferedInputStream;
28 import java.io.File;
29 import java.io.FileInputStream;
30 import java.io.IOException;
31 import java.io.InputStream;
32 import java.text.DateFormat;
33 import java.util.Date;
34 import java.util.HashMap;
35 import java.util.Properties;
36 import java.util.concurrent.locks.ReentrantReadWriteLock;
37 import java.util.concurrent.locks.ReentrantReadWriteLock.ReadLock;
38 import java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock;
39 import org.onap.appc.i18n.Msg;
40 import com.att.eelf.configuration.EELFLogger;
41 import com.att.eelf.configuration.EELFManager;
42 import com.att.eelf.i18n.EELFResourceManager;
43
44 /**
45  * The configuration factory is used to obtain access to an already created and initialized
46  * singleton configuration object as well as to create and initialize the singleton if not already
47  * set up.
48  * <p>
49  * This class is responsible for the creation of the configuration object used to manage the
50  * configuration of the application. The configuration object implementation must implement the
51  * <code>Configuration</code> interface. This allows for the factory to create different
52  * specializations in the future if needed and not break any application code.
53  * </p>
54  * <p>
55  * The configuration object is basically a wrapper around a properties object. The configuration is
56  * therefore specified as a set of properties that are loaded and processed from different sources
57  * with different precedences. It is important that the configuration object always be able to
58  * supply default values for any configuration properties that must be supplied, and not rely on the
59  * user always supplying these values. This also relieves the application itself from having to
60  * interpret missing or invalid properties and applying defaults. By having all of the defaults in
61  * one place, the application code can be simpler (not having to worry about defaults or invalid
62  * properties), and the defaults can be changed much easier (they are all in one place and not
63  * distributed throughout the codebase).
64  * </p>
65  * <p>
66  * Since the configuration is managed as a property object, we can use a characteristic of the
67  * <code>Properties</code> class to our advantage. Namely, if we put a property into a
68  * <code>Properties</code> object that already exists, the <code>Properties</code> object replaces
69  * it with the new value. This does not affect any other properties that may already be defined in
70  * the properties object. This gives us the ability to initialize the properties with default values
71  * for all of the application settings, then override just those that we need to override, possibly
72  * from multiple sources and in increasing order of precedence.
73  * </p>
74  * <p>
75  * This means that properties are in effect "merged" together from multiple sources in a prescribed
76  * precedence order. In fact, the precedence order that this factory implements is defined as:
77  * </p>
78  * <ol>
79  * <li>Default values from a system resource file.</li>
80  * <li>User-supplied properties file, if any.</li>
81  * <li>Application-supplied properties, if any.</li>
82  * <li>Command-line properties (if any)</li>
83  * </ol>
84  * <p>
85  * The name and location of the properties file that is loaded can also be set, either in the
86  * defaults, overridden by the system command line via -D, or as a system environment variable.
87  * There are two properties that can be specified to define the name and path. These are:
88  * </p>
89  * <dl>
90  * <dt>org.onap.appc.bootstrap.file</dt>
91  * <dd>This property defines the name of the file that will be loaded. If not specified, the default
92  * value is "appc.properties". This can be specified in either (or both) the default properties or
93  * the command line. The command line specification will always override.</dd>
94  * <dt>org.onap.appc.bootstrap.path</dt>
95  * <dd>This is a comma-delimited (,) path of directories to be searched to locate the specified
96  * file. The first occurrence of the file is the one loaded, and no additional searching is
97  * performed. The path can be specified in either, or both, the default values and the command line
98  * specification. If specified on the command line, the value overrides the default values. If
99  * omitted, the default path is <code>$/opt/onap/appc/data/properties,${user.home},.</code></dd>
100  * </dl>
101  *
102  * @since Mar 18, 2014
103  * @version $Id$
104  */
105 public final class ConfigurationFactory {
106
107     private static final EELFLogger logger = EELFManager.getInstance().getApplicationLogger();
108
109     /**
110      * This is a string constant for the comma character. It's intended to be used a common string
111      * delimiter.
112      */
113     private static final String COMMA = ",";
114
115     /**
116      * The default Configuration object that implements the <code>Configuration</code> interface and
117      * represents our system configuration settings.
118      */
119     private static DefaultConfiguration config = null;
120
121     /**
122      * The default properties resource to be loaded
123      */
124     private static final String DEFAULT_PROPERTIES = "org/onap/appc/default.properties";
125
126     /**
127      * This collection allows for special configurations to be created and maintained, organized by
128      * some identification (such as an object reference to the StackBuilder to which they apply),
129      * and then obtained from the configuration factory when needed.
130      */
131     private static HashMap<Object, Configuration> localConfigs = new HashMap<>();
132
133     /**
134      * The reentrant shared lock used to serialize access to the properties.
135      */
136     private static ReentrantReadWriteLock lock = new ReentrantReadWriteLock();
137
138     /**
139      * This is a constant array of special property names that will be copied from the configuration
140      * back to the System properties object if they are defined in the configuration AND they do not
141      * already exist in the System properties object. These are intended as a convenience for
142      * setting the AFT properties for the Discovery client where it may be difficult or impossible
143      * to set VM arguments for the container.
144      */
145     private static final String[] specialProperties =
146             {"AFT_LATITUDE", "AFT_LONGITUDE", "AFT_ENVIRONMENT", "SCLD_PLATFORM"};
147
148     private ConfigurationFactory() {}
149
150     /**
151      * This method is used to obtain the common configuration object (as well as set it up if not
152      * already).
153      *
154      * @return The configuration object implementation
155      */
156     public static Configuration getConfiguration() {
157
158         /*
159          * First, attempt to access the properties as a read lock holder
160          */
161         ReadLock readLock = lock.readLock();
162         readLock.lock();
163         try {
164
165             /*
166              * If the properties don't exist, release the read lock and acquire the write lock. Once
167              * we get the write lock, we need to re-check to see that the configuration needs to be
168              * set up (because another thread may have beat us to it). After we get a configuration
169              * set up, release the write lock and re-obtain the read lock to access the properties.
170              */
171             if (config == null) {
172                 readLock.unlock();
173                 WriteLock writeLock = lock.writeLock();
174                 writeLock.lock();
175                 try {
176                     if (config == null) {
177                         config = new DefaultConfiguration();
178                         initialize(null);
179                     }
180                 } catch (Exception t) {
181                     logger.error("getConfiguration", t);
182                 } finally {
183                     writeLock.unlock();
184                 }
185                 readLock.lock();
186             }
187             return config;
188         } finally {
189             readLock.unlock();
190         }
191     }
192
193     /**
194      * This method will obtain the local configuration for the specified object if it exists, or
195      * will create it from the current global configuration. This allows the configuration to be
196      * tailored for a specific process or operation, and uniquely identified by some value (such as
197      * the object that represents the special use of the configuration).
198      *
199      * @param owner The owner or identification of the owner of the special configuration
200      * @return The special configuration object, or a clone of the global configuration so that it
201      *         can be altered if needed.
202      */
203     public static Configuration getConfiguration(final Object owner) {
204         ReadLock readLock = lock.readLock();
205         readLock.lock();
206         try {
207             DefaultConfiguration local = (DefaultConfiguration) localConfigs.get(owner);
208             if (local == null) {
209                 readLock.unlock();
210                 WriteLock writeLock = lock.writeLock();
211                 writeLock.lock();
212                 try {
213                     local = (DefaultConfiguration) localConfigs.get(owner);
214                     if (local == null) {
215                         DefaultConfiguration global = (DefaultConfiguration) getConfiguration();
216                         try {
217                             local = (DefaultConfiguration) global.clone();
218                         } catch (CloneNotSupportedException e) {
219                             logger.error("getConfiguration", e);
220                         }
221                         localConfigs.put(owner, local);
222                     }
223                 } finally {
224                     writeLock.unlock();
225                 }
226                 readLock.lock();
227             }
228             return local;
229         } finally {
230             readLock.unlock();
231         }
232     }
233
234     /**
235      * This method allows the caller to alter the configuration, supplying the specified
236      * configuration properties which override the application default values.
237      * <p>
238      * The configuration is re-constructed (if already constructed) or created new (if not already
239      * created) and the default properties are loaded into the configuration.
240      * </p>
241      * <p>
242      * The primary purpose of this method is to allow the application configuration properties to be
243      * reset or refreshed after the application has already been initialized. This method will lock
244      * the configuration for the duration while it is being re-built, and should not be called on a
245      * regular basis.
246      * </p>
247      *
248      * @param props The properties used to configure the application.
249      * @return Access to the configuration implementation
250      */
251     public static Configuration getConfiguration(final Properties props) {
252         WriteLock writeLock = lock.writeLock();
253         writeLock.lock();
254         try {
255             config = new DefaultConfiguration();
256             initialize(props);
257             return config;
258         } finally {
259             writeLock.unlock();
260         }
261     }
262
263     /**
264      * This method will clear the current configuration and then re-initialize it with the default
265      * values, application-specific configuration file, user-supplied properties (if any), and then
266      * command-line settings.
267      * <p>
268      * This method <strong><em>MUST</em></strong> be called holding the configuration lock!
269      * </p>
270      * <p>
271      * This method is a little special in that logging messages generated during the method must be
272      * cached and delayed until after the logging framework has been initialized. After that, the
273      * delayed logging buffer can be dumped to the log file and cleared.
274      * </p>
275      *
276      * @param props Application-supplied configuration values, if any
277      */
278     private static void initialize(final Properties props) {
279         DateFormat format = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG);
280         Date now = new Date();
281         logger.info(
282                 "------------------------------------------------------------------------------");
283
284         logger.info(Msg.CONFIGURATION_STARTED, format.format(now));
285
286         /*
287          * Clear any existing properties
288          */
289         config.clear();
290         logger.info(Msg.CONFIGURATION_CLEARED);
291
292         /*
293          * Load the defaults (if any are present)
294          */
295         InputStream in = Thread.currentThread().getContextClassLoader()
296                 .getResourceAsStream(DEFAULT_PROPERTIES);
297         if (in != null) {
298             logger.info(Msg.LOADING_DEFAULTS, DEFAULT_PROPERTIES);
299             try {
300                 config.setProperties(in);
301             } finally {
302                 try {
303                     in.close();
304                 } catch (IOException e) {
305                     // not much we can do since logger may not be configured yet
306                     e.printStackTrace(System.out);
307                 }
308             }
309             for (String key : config.getProperties().stringPropertyNames()) {
310                 logger.info(Msg.PROPERTY_VALUE, key, config.getProperty(key));
311             }
312         } else {
313             logger.info(Msg.NO_DEFAULTS_FOUND, DEFAULT_PROPERTIES);
314         }
315
316         /*
317          * Look for application configuration property file. By default, we will look for the file
318          * "cdp.properties" on the user home path, then on "./etc" (relative to current path), then
319          * on "../etc" (relative to current path). If we do not find any property file, then we
320          * continue. Otherwise, we load the first property file we find and then continue. In order
321          * to allow default values for the filename and paths to be searched, we first attempt to
322          * obtain these from our configuration object (which should be primed with default values
323          * and/or overridden with application-specified values). We then use the values obtained
324          * from that to get any user supplied values on the command line.
325          */
326         String filename = config.getProperty(Configuration.PROPERTY_BOOTSTRAP_FILE_NAME,
327                 Configuration.DEFAULT_BOOTSTRAP_FILE_NAME);
328         filename = System.getProperty(Configuration.PROPERTY_BOOTSTRAP_FILE_NAME, filename);
329         String env = System.getenv(Configuration.PROPERTY_BOOTSTRAP_FILE_NAME);
330         if (env != null && env.trim().length() > 0) {
331             filename = env;
332         }
333
334         String path = config.getProperty(Configuration.PROPERTY_BOOTSTRAP_FILE_PATH,
335                 Configuration.DEFAULT_BOOTSTRAP_FILE_PATH);
336         path = System.getProperty(Configuration.PROPERTY_BOOTSTRAP_FILE_PATH, path);
337         env = System.getenv(Configuration.PROPERTY_BOOTSTRAP_FILE_PATH);
338         if (env != null && env.trim().length() > 0) {
339             path = env;
340         }
341
342         logger.info(Msg.SEARCHING_CONFIGURATION_OVERRIDES, path, filename);
343
344         String[] pathElements = path.split(COMMA);
345         boolean found = false;
346         for (String pathElement : pathElements) {
347             File file = new File(pathElement, filename);
348             if (file.exists() && file.canRead() && !file.isDirectory()) {
349
350                 logger.info(Msg.LOADING_CONFIGURATION_OVERRIDES, file.getAbsolutePath());
351                 Properties fileProperties = new Properties();
352                 BufferedInputStream stream = null;
353                 try {
354                     stream = new BufferedInputStream(new FileInputStream(file));
355                     fileProperties.load(stream);
356                     for (String key : fileProperties.stringPropertyNames()) {
357                         logger.debug(Msg.PROPERTY_VALUE, key, fileProperties.getProperty(key));
358                         config.setProperty(key, fileProperties.getProperty(key));
359                     }
360                     found = true;
361                     break;
362                 } catch (IOException e) {
363                     logger.error(EELFResourceManager.format(e));
364                 } finally {
365                     try {
366                         if (stream != null) {
367                             stream.close();
368                         }
369                     } catch (IOException e) {
370                         // not much we can do since logger may not be configured
371                         // yet
372                         e.printStackTrace(System.out);
373                     }
374                 }
375             }
376         }
377
378         if (!found) {
379             logger.warn(Msg.NO_OVERRIDE_PROPERTY_FILE_LOADED, filename, path);
380         }
381
382         /*
383          * Apply any application-specified properties
384          */
385         if (props != null) {
386             logger.info(Msg.LOADING_APPLICATION_OVERRIDES);
387             for (String key : props.stringPropertyNames()) {
388                 logger.debug(Msg.PROPERTY_VALUE, key, props.getProperty(key));
389                 config.setProperty(key, props.getProperty(key));
390             }
391         } else {
392             logger.info(Msg.NO_APPLICATION_OVERRIDES);
393         }
394
395         /*
396          * Merge in the System.properties to pick-up any command line arguments (-Dkeyword=value)
397          */
398         logger.info(Msg.MERGING_SYSTEM_PROPERTIES);
399         config.setProperties(System.getProperties());
400
401         /*
402          * As a convenience, copy the "specialProperties" that are not defined in System.properties
403          * from the configuration back to the system properties object.
404          */
405         for (String key : config.getProperties().stringPropertyNames()) {
406             for (String specialProperty : specialProperties) {
407                 if (key.equals(specialProperty) && !System.getProperties().containsKey(key)) {
408                     System.setProperty(key, config.getProperty(key));
409                     logger.info(Msg.SETTING_SPECIAL_PROPERTY, key, config.getProperty(key));
410                 }
411             }
412         }
413
414         /*
415          * Initialize the resource manager by loading the requested bundles, if any are defined.
416          * Resource bundles may be specified as a comma-delimited list of names. These resource
417          * names are base names of resource bundles, do not include the language or country code, or
418          * the ".properties" extension. The actual loading of the resource bundles is done lazily
419          * when requested the first time. If the bundle does not exist, or cannot be loaded, it is
420          * ignored.
421          */
422         String resourcesList = config.getProperty(Configuration.PROPERTY_RESOURCE_BUNDLES,
423                 Configuration.DEFAULT_RESOURCE_BUNDLES);
424         String[] resources = resourcesList.split(",");
425         for (String resource : resources) {
426             logger.info(Msg.LOADING_RESOURCE_BUNDLE, resource.trim());
427             EELFResourceManager.loadMessageBundle(resource.trim());
428         }
429     }
430 }