Newer
Older
#ifndef MANTID_KERNEL_CONFIGSERVICE_H_
#define MANTID_KERNEL_CONFIGSERVICE_H_
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
Gigg, Martyn Anthony
committed
#include "MantidKernel/DllConfig.h"
#include "MantidKernel/SingletonHolder.h"
#include "MantidKernel/ProxyInfo.h"
#include <vector>
#include <map>
#include <set>
Michael Whitty
committed
#include <Poco/Notification.h>
#include <Poco/NotificationCenter.h>
#include <Poco/AutoPtr.h>
//----------------------------------------------------------------------
// Forward declarations
//----------------------------------------------------------------------
/// @cond Exclude from doxygen documentation
namespace Util {
class PropertyFileConfiguration;
class SystemConfiguration;
}
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
namespace Mantid {
/// Returns the welcome message for Mantid.
MANTID_KERNEL_DLL std::string welcomeMessage();
namespace Kernel {
//----------------------------------------------------------------------
// More forward declarations
//----------------------------------------------------------------------
class Logger;
class FacilityInfo;
class InstrumentInfo;
/** The ConfigService class provides a simple facade to access the Configuration
functionality of the Mantid Framework.
The class gathers information from config files and the system variables.
This information is available to all the objects within the framework as
well as being used to configure the logging framework.
This class currently uses the Logging functionality provided through the
POCO (portable components library).
@author Nicholas Draper, Tessella Support Services plc
@date 15/10/2007
Copyright © 2007-2010 ISIS Rutherford Appleton Laboratory, NScD Oak
Ridge National Laboratory & European Spallation Source
This file is part of Mantid.
Mantid 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.
Mantid 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/>.
File change history is stored at: <https://github.com/mantidproject/mantid>.
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
class MANTID_KERNEL_DLL ConfigServiceImpl final {
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
public:
/**
* This is the base class for POCO Notifications sent out from the Config
* Service.
* It does nothing.
*/
class ConfigServiceNotification : public Poco::Notification {
public:
/// Empty constructor for ConfigServiceNotification Base Class
ConfigServiceNotification() : Poco::Notification() {}
};
/**
* This is the class for the notification that is to be sent when a value has
* been changed in
* config service.
*/
class ValueChanged : public ConfigServiceNotification {
public:
/** Creates the Notification object with the required values
* @param name :: property that has been changed
* @param newvalue :: new value of property
* @param prevvalue :: previous value of property
*/
ValueChanged(const std::string &name, const std::string &newvalue,
const std::string &prevvalue)
: ConfigServiceNotification(), m_name(name), m_value(newvalue),
m_prev(prevvalue) {}
/// The name of the user property that has changed, as it appears in the
/// user.properties file
const std::string &key() const {
return this->m_name;
} ///< @return The name of the changed the property
/// The new value for the property
const std::string &curValue() const {
return this->m_value;
} ///< @return The new value for the property
/// The previous value for the property
const std::string &preValue() const {
return this->m_prev;
} ///< @return The previous value for the property
private:
std::string m_name; ///< The name of the changed the property
std::string m_value; ///< The new value for the property
std::string m_prev; ///< The previous value for the property
};
/// Reset to "factory" settings. Removes current user properties
void reset();
/// Wipe out the current configuration and load a new one
void updateConfig(const std::string &filename, const bool append = false,
const bool update_caches = true);
/// Save the configuration to the user file
void saveConfig(const std::string &filename) const;
/// Searches for a configuration property
std::string getString(const std::string &keyName,
bool use_cache = true) const;
/// Searches for a key in the configuration property
std::vector<std::string> getKeys(const std::string &keyName) const;
/// Returns a list of all full keys in the config
/// Removes the value from a selected keyName
void remove(const std::string &rootName) const;
/// Checks to see whether a key has a value assigned to it
bool hasProperty(const std::string &rootName) const;
/// Checks to see whether the target passed is an executable file
bool isExecutable(const std::string &target) const;
/// Launches a process i.e opening a program
void launchProcess(const std::string &programFilePath,
const std::vector<std::string> &programArguments) const;
/// Sets a configuration property
Lamar Moore
committed
void setString(const std::string &key, const std::string &value);
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
// Searches for a configuration property and returns its value
template <typename T> int getValue(const std::string &keyName, T &out);
/// Return the local properties filename.
std::string getLocalFilename() const;
/// Return the user properties filename
std::string getUserFilename() const;
/** @name Host information */
//@{
/// Searches for the given environment variable and returns it as a string
std::string getEnvironment(const std::string &keyName);
/// Returns the OS name
std::string getOSName();
/// Returns the computer name
std::string getComputerName();
/// Returns the architecture
std::string getOSArchitecture();
/// Returns the OS version
std::string getOSVersion();
/// Returns a human readable version of the OS version
std::string getOSVersionReadable();
/// Returns the username
std::string getUsername();
/// Returns the current directory
std::string getCurrentDir();
/// Returns the current directory
std::string getCurrentDir() const;
/// Returns the system's temp directory
std::string getTempDir();
/// Returns the system's appdata directory
std::string getAppDataDir();
// Return the executable path
std::string getDirectoryOfExecutable() const;
// Return the full path to the executable
std::string getPathToExecutable() const;
// Check if the path is on a network drive
bool isNetworkDrive(const std::string &path);
//@}
/// Returns the directory where the Mantid.properties file is found.
std::string getPropertiesDir() const;
/// Returns a directory to use to write out Mantid information. Needs to be
/// writable
std::string getUserPropertiesDir() const;
/** @name Search paths handling */
//@{
/// Get the list of search paths
const std::vector<std::string> &getDataSearchDirs() const;
/// Set a list of search paths via a vector
void setDataSearchDirs(const std::vector<std::string> &searchDirs);
/// Set a list of search paths via a string
void setDataSearchDirs(const std::string &searchDirs);
/// Adds the passed path to the end of the list of data search paths
void appendDataSearchDir(const std::string &path);
/// Get the list of user search paths
const std::vector<std::string> &getUserSearchDirs() const;
/// Get instrument search directory
const std::vector<std::string> &getInstrumentDirectories() const;
/// Get instrument search directory
const std::string getInstrumentDirectory() const;
//@}
/// Load facility information from instrumentDir/Facilities.xml file
Lamar Moore
committed
void updateFacilities(const std::string &fName = "");
/// Get the list of facilities
const std::vector<FacilityInfo *> getFacilities() const;
/// Get the list of facility names
const std::vector<std::string> getFacilityNames() const;
/// Get the default facility
const FacilityInfo &getFacility() const;
/// Get a facility
const FacilityInfo &getFacility(const std::string &facilityName) const;
/// Set the default facility
void setFacility(const std::string &facilityName);
/// registers additional logging filter channels
void registerLoggingFilterChannel(const std::string &filterChannelName,
Poco::Channel *pChannel);
/// Sets the log level priority for the File log channel
void setFileLogLevel(int logLevel);
/// Sets the log level priority for the Console log channel
void setConsoleLogLevel(int logLevel);
/// Sets the log level priority for the selected Filter log channel
void setFilterChannelLogLevel(const std::string &filterChannelName,
int logLevel);
const InstrumentInfo &
getInstrument(const std::string &instrumentName = "") const;
/// Add an observer for a notification
void addObserver(const Poco::AbstractObserver &observer) const;
/// Remove an observer
void removeObserver(const Poco::AbstractObserver &observer) const;
// Starts up the logging
void configureLogging();
/// Return true if ParaView plugins are available
bool pvPluginsAvailable() const;
/// Return the path to the pv plugins
const std::string getPVPluginsPath() const;
/// Gets the proxy for the system
Kernel::ProxyInfo &getProxy(const std::string &url);
private:
friend struct Mantid::Kernel::CreateUsingNew<ConfigServiceImpl>;
/// Handles distribution of Poco signals.
mutable Poco::NotificationCenter m_notificationCenter;
// Private constructors and destructor for singleton class
ConfigServiceImpl();
/// Private copy constructor. Prevents singleton being copied.
ConfigServiceImpl(const ConfigServiceImpl &);
virtual ~ConfigServiceImpl();
/// Loads a config file
void loadConfig(const std::string &filename, const bool append = false);
/// Read a file and place its contents into the given string
bool readFile(const std::string &filename, std::string &contents) const;
/// Provides a string of a default configuration
std::string defaultConfig() const;
/// Writes out a fresh user properties file
void createUserPropertiesFile() const;
/// Convert any relative paths to absolute ones and store them locally so that
/// if the working directory is altered the paths will not be affected
void convertRelativeToAbsolute();
/// Make a relative path or a list of relative paths into an absolute one.
std::string makeAbsolute(const std::string &dir,
const std::string &key) const;
/// Create the storage of the data search directories
void cacheDataSearchPaths();
/// Create the storage of the user search directories
void cacheUserSearchPaths();
/// Create the storage of the instrument directories
void cacheInstrumentPaths();
/// Returns true if the path is in the data search list
bool isInDataSearchList(const std::string &path) const;
/// Empty the list of facilities, deleting the FacilityInfo objects in the
/// process
void clearFacilities();
/// Verifies the directory exists and add it to the back of the directory list
/// if valid
bool addDirectoryifExists(const std::string &directoryName,
std::vector<std::string> &directoryList);
/// Returns a list of all keys under a given root key
void getKeysRecursive(const std::string &root,
std::vector<std::string> &allKeys) const;
/// Finds the lowest registered logging filter level
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
// Forward declaration of inner class
template <class T> class WrappedObject;
/// the POCO file config object
WrappedObject<Poco::Util::PropertyFileConfiguration> *m_pConf;
/// the POCO system Config Object
WrappedObject<Poco::Util::SystemConfiguration> *m_pSysConfig;
/// A set of property keys that have been changed
mutable std::set<std::string> m_changed_keys;
/// A map storing string/key pairs where the string denotes a path
/// that could be relative in the user properties file
/// The boolean indicates whether the path needs to exist or not
std::map<std::string, bool> m_ConfigPaths;
/// Local storage for the relative path key/values that have been changed
std::map<std::string, std::string> m_AbsolutePaths;
/// The directory that is considered to be the base directory
std::string m_strBaseDir;
/// The configuration properties in string format
std::string m_PropertyString;
/// The filename of the Mantid properties file
const std::string m_properties_file_name;
/// The filename of the Mantid user properties file
const std::string m_user_properties_file_name;
/// The filename where the log ends up
std::string m_logFilePath;
/// Store a list of data search paths
std::vector<std::string> m_DataSearchDirs;
/// Store a list of user search paths
std::vector<std::string> m_UserSearchDirs;
/// Store a list of instrument directory paths
std::vector<std::string> m_InstrumentDirs;
/// A map of facilities to instruments
std::map<std::string, std::vector<std::string>> m_instr_prefixes;
/// The list of available facilities
std::vector<FacilityInfo *> m_facilities;
/// local cache of proxy details
Kernel::ProxyInfo m_proxyInfo;
/// store a list of logging FilterChannels
std::vector<std::string> m_filterChannels;
};
/// Forward declaration of a specialisation of SingletonHolder for
/// AlgorithmFactoryImpl (needed for dllexport/dllimport) and a typedef for it.
#if defined(__APPLE__) && defined(__INTEL_COMPILER)
Mantid::Kernel::SingletonHolder<ConfigServiceImpl>;
typedef MANTID_KERNEL_DLL Mantid::Kernel::SingletonHolder<ConfigServiceImpl>
typedef Mantid::Kernel::ConfigServiceImpl::ValueChanged
typedef const Poco::AutoPtr<Mantid::Kernel::ConfigServiceImpl::ValueChanged> &
ConfigValChangeNotification_ptr;
Michael Whitty
committed
} // namespace Mantid
#endif /*MANTID_KERNEL_CONFIGSERVICE_H_*/