Some work on XDAEMON command.
3 * see AUTHORS for the list of contributors
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 package org.sonews.config;
21 import java.util.logging.Level;
22 import org.sonews.util.Log;
23 import org.sonews.storage.StorageBackendException;
24 import org.sonews.storage.StorageManager;
25 import org.sonews.util.TimeoutMap;
28 * Provides access to the program wide configuration that is stored within
29 * the server's database.
30 * @author Christian Lins
33 class BackendConfig extends AbstractConfig
36 private static BackendConfig instance = new BackendConfig();
38 public static BackendConfig getInstance()
42 private final TimeoutMap<String, String> values = new TimeoutMap<String, String>();
44 private BackendConfig()
50 * Returns the config value for the given key or the defaultValue if the
51 * key is not found in config.
57 public String get(String key, String defaultValue)
60 String configValue = values.get(key);
61 if (configValue == null) {
62 if (StorageManager.current() == null) {
63 Log.get().warning("BackendConfig not available, using default.");
67 configValue = StorageManager.current().getConfigValue(key);
68 if (configValue == null) {
71 values.put(key, configValue);
77 } catch (StorageBackendException ex) {
78 Log.get().log(Level.SEVERE, "Storage backend problem", ex);
84 * Sets the config value which is identified by the given key.
88 public void set(String key, String value)
90 values.put(key, value);
93 // Write values to database
94 StorageManager.current().setConfigValue(key, value);
95 } catch (StorageBackendException ex) {