1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: declaration of the base class of all config implementations
4 // (see also: fileconf.h and msw/regconf.h and iniconf.h)
5 // Author: Karsten Ballüder & Vadim Zeitlin
7 // Created: 07.04.98 (adapted from appconf.h)
9 // Copyright: (c) 1997 Karsten Ballüder Ballueder@usa.net
10 // Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
11 // Licence: wxWindows licence
12 ///////////////////////////////////////////////////////////////////////////////
14 #ifndef _WX_CONFBASE_H_
15 #define _WX_CONFBASE_H_
17 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
18 #pragma interface "confbase.h"
22 #include "wx/string.h"
24 class WXDLLIMPEXP_BASE wxArrayString
;
26 // ----------------------------------------------------------------------------
28 // ----------------------------------------------------------------------------
30 /// shall we be case sensitive in parsing variable names?
31 #ifndef wxCONFIG_CASE_SENSITIVE
32 #define wxCONFIG_CASE_SENSITIVE 0
35 /// separates group and entry names (probably shouldn't be changed)
36 #ifndef wxCONFIG_PATH_SEPARATOR
37 #define wxCONFIG_PATH_SEPARATOR _T('/')
40 /// introduces immutable entries
41 // (i.e. the ones which can't be changed from the local config file)
42 #ifndef wxCONFIG_IMMUTABLE_PREFIX
43 #define wxCONFIG_IMMUTABLE_PREFIX _T('!')
48 #include "wx/string.h"
50 /// should we use registry instead of configuration files under Windows?
51 // (i.e. whether wxConfigBase::Create() will create a wxFileConfig (if it's
52 // FALSE) or wxRegConfig (if it's true and we're under Win32) or wxIniConfig
54 #ifndef wxUSE_CONFIG_NATIVE
55 #define wxUSE_CONFIG_NATIVE 1
58 // Style flags for constructor style parameter
61 wxCONFIG_USE_LOCAL_FILE
= 1,
62 wxCONFIG_USE_GLOBAL_FILE
= 2,
63 wxCONFIG_USE_RELATIVE_PATH
= 4,
64 wxCONFIG_USE_NO_ESCAPE_CHARACTERS
= 8
67 // ----------------------------------------------------------------------------
68 // abstract base class wxConfigBase which defines the interface for derived
71 // wxConfig organizes the items in a tree-like structure (modeled after the
72 // Unix/Dos filesystem). There are groups (directories) and keys (files).
73 // There is always one current group given by the current path.
75 // Keys are pairs "key_name = value" where value may be of string or integer
76 // (long) type (TODO doubles and other types such as wxDate coming soon).
77 // ----------------------------------------------------------------------------
79 class WXDLLIMPEXP_BASE wxConfigBase
83 // the type of an entry
89 Type_Integer
, // use Read(long *)
90 Type_Float
// use Read(double *)
94 // sets the config object, returns the previous pointer
95 static wxConfigBase
*Set(wxConfigBase
*pConfig
);
96 // get the config object, creates it on demand unless DontCreateOnDemand
98 static wxConfigBase
*Get(bool createOnDemand
= TRUE
)
99 { if ( createOnDemand
&& (!ms_pConfig
) ) Create(); return ms_pConfig
; }
100 // create a new config object: this function will create the "best"
101 // implementation of wxConfig available for the current platform, see
102 // comments near definition wxUSE_CONFIG_NATIVE for details. It returns
103 // the created object and also sets it as ms_pConfig.
104 static wxConfigBase
*Create();
105 // should Get() try to create a new log object if the current one is NULL?
106 static void DontCreateOnDemand() { ms_bAutoCreate
= FALSE
; }
108 // ctor & virtual dtor
109 // ctor (can be used as default ctor too)
111 // Not all args will always be used by derived classes, but including
112 // them all in each class ensures compatibility. If appName is empty,
114 wxConfigBase(const wxString
& appName
= wxEmptyString
,
115 const wxString
& vendorName
= wxEmptyString
,
116 const wxString
& localFilename
= wxEmptyString
,
117 const wxString
& globalFilename
= wxEmptyString
,
120 // empty but ensures that dtor of all derived classes is virtual
121 virtual ~wxConfigBase();
124 // set current path: if the first character is '/', it's the absolute path,
125 // otherwise it's a relative path. '..' is supported. If the strPath
126 // doesn't exist it is created.
127 virtual void SetPath(const wxString
& strPath
) = 0;
128 // retrieve the current path (always as absolute path)
129 virtual const wxString
& GetPath() const = 0;
131 // enumeration: all functions here return false when there are no more items.
132 // you must pass the same lIndex to GetNext and GetFirst (don't modify it)
133 // enumerate subgroups
134 virtual bool GetFirstGroup(wxString
& str
, long& lIndex
) const = 0;
135 virtual bool GetNextGroup (wxString
& str
, long& lIndex
) const = 0;
137 virtual bool GetFirstEntry(wxString
& str
, long& lIndex
) const = 0;
138 virtual bool GetNextEntry (wxString
& str
, long& lIndex
) const = 0;
139 // get number of entries/subgroups in the current group, with or without
141 virtual size_t GetNumberOfEntries(bool bRecursive
= FALSE
) const = 0;
142 virtual size_t GetNumberOfGroups(bool bRecursive
= FALSE
) const = 0;
144 // tests of existence
145 // returns TRUE if the group by this name exists
146 virtual bool HasGroup(const wxString
& strName
) const = 0;
147 // same as above, but for an entry
148 virtual bool HasEntry(const wxString
& strName
) const = 0;
149 // returns TRUE if either a group or an entry with a given name exist
150 bool Exists(const wxString
& strName
) const
151 { return HasGroup(strName
) || HasEntry(strName
); }
153 // get the entry type
154 virtual EntryType
GetEntryType(const wxString
& name
) const
156 // by default all entries are strings
157 return HasEntry(name
) ? Type_String
: Type_Unknown
;
160 // key access: returns TRUE if value was really read, FALSE if default used
161 // (and if the key is not found the default value is returned.)
163 // read a string from the key
164 bool Read(const wxString
& key
, wxString
*pStr
) const;
165 bool Read(const wxString
& key
, wxString
*pStr
, const wxString
& defVal
) const;
167 // read a number (long)
168 bool Read(const wxString
& key
, long *pl
) const;
169 bool Read(const wxString
& key
, long *pl
, long defVal
) const;
172 bool Read(const wxString
& key
, int *pi
) const;
173 bool Read(const wxString
& key
, int *pi
, int defVal
) const;
176 bool Read(const wxString
& key
, double* val
) const;
177 bool Read(const wxString
& key
, double* val
, double defVal
) const;
180 bool Read(const wxString
& key
, bool* val
) const;
181 bool Read(const wxString
& key
, bool* val
, bool defVal
) const;
183 // convenience functions returning directly the value (we don't have them for
184 // int/double/bool as there would be ambiguities with the long one then)
185 wxString
Read(const wxString
& key
,
186 const wxString
& defVal
= wxEmptyString
) const
187 { wxString s
; (void)Read(key
, &s
, defVal
); return s
; }
189 long Read(const wxString
& key
, long defVal
) const
190 { long l
; (void)Read(key
, &l
, defVal
); return l
; }
192 // write the value (return true on success)
193 bool Write(const wxString
& key
, const wxString
& value
)
194 { return DoWriteString(key
, value
); }
196 bool Write(const wxString
& key
, long value
)
197 { return DoWriteLong(key
, value
); }
199 bool Write(const wxString
& key
, int value
)
200 { return DoWriteInt(key
, value
); }
202 bool Write(const wxString
& key
, double value
)
203 { return DoWriteDouble(key
, value
); }
205 bool Write(const wxString
& key
, bool value
)
206 { return DoWriteBool(key
, value
); }
208 // we have to provide a separate version for C strings as otherwise they
209 // would be converted to bool and not to wxString as expected!
210 bool Write(const wxString
& key
, const wxChar
*value
)
211 { return Write(key
, wxString(value
)); }
213 // permanently writes all changes
214 virtual bool Flush(bool bCurrentOnly
= FALSE
) = 0;
216 // renaming, all functions return FALSE on failure (probably because the new
217 // name is already taken by an existing entry)
219 virtual bool RenameEntry(const wxString
& oldName
,
220 const wxString
& newName
) = 0;
222 virtual bool RenameGroup(const wxString
& oldName
,
223 const wxString
& newName
) = 0;
225 // delete entries/groups
226 // deletes the specified entry and the group it belongs to if
227 // it was the last key in it and the second parameter is true
228 virtual bool DeleteEntry(const wxString
& key
,
229 bool bDeleteGroupIfEmpty
= TRUE
) = 0;
230 // delete the group (with all subgroups)
231 virtual bool DeleteGroup(const wxString
& key
) = 0;
232 // delete the whole underlying object (disk file, registry key, ...)
233 // primarly for use by desinstallation routine.
234 virtual bool DeleteAll() = 0;
237 // we can automatically expand environment variables in the config entries
238 // (this option is on by default, you can turn it on/off at any time)
239 bool IsExpandingEnvVars() const { return m_bExpandEnvVars
; }
240 void SetExpandEnvVars(bool bDoIt
= TRUE
) { m_bExpandEnvVars
= bDoIt
; }
241 // recording of default values
242 void SetRecordDefaults(bool bDoIt
= TRUE
) { m_bRecordDefaults
= bDoIt
; }
243 bool IsRecordingDefaults() const { return m_bRecordDefaults
; }
244 // does expansion only if needed
245 wxString
ExpandEnvVars(const wxString
& str
) const;
248 wxString
GetAppName() const { return m_appName
; }
249 wxString
GetVendorName() const { return m_vendorName
; }
251 // Used wxIniConfig to set members in constructor
252 void SetAppName(const wxString
& appName
) { m_appName
= appName
; }
253 void SetVendorName(const wxString
& vendorName
) { m_vendorName
= vendorName
; }
255 void SetStyle(long style
) { m_style
= style
; }
256 long GetStyle() const { return m_style
; }
259 static bool IsImmutable(const wxString
& key
)
260 { return !key
.IsEmpty() && key
[0] == wxCONFIG_IMMUTABLE_PREFIX
; }
262 // do read/write the values of different types
263 virtual bool DoReadString(const wxString
& key
, wxString
*pStr
) const = 0;
264 virtual bool DoReadLong(const wxString
& key
, long *pl
) const = 0;
265 virtual bool DoReadInt(const wxString
& key
, int *pi
) const;
266 virtual bool DoReadDouble(const wxString
& key
, double* val
) const;
267 virtual bool DoReadBool(const wxString
& key
, bool* val
) const;
269 virtual bool DoWriteString(const wxString
& key
, const wxString
& value
) = 0;
270 virtual bool DoWriteLong(const wxString
& key
, long value
) = 0;
271 virtual bool DoWriteInt(const wxString
& key
, int value
);
272 virtual bool DoWriteDouble(const wxString
& key
, double value
);
273 virtual bool DoWriteBool(const wxString
& key
, bool value
);
276 // are we doing automatic environment variable expansion?
277 bool m_bExpandEnvVars
;
278 // do we record default values?
279 bool m_bRecordDefaults
;
282 static wxConfigBase
*ms_pConfig
;
283 static bool ms_bAutoCreate
;
285 // Application name and organisation name
287 wxString m_vendorName
;
293 // a handy little class which changes current path to the path of given entry
294 // and restores it in dtor: so if you declare a local variable of this type,
295 // you work in the entry directory and the path is automatically restored
296 // when the function returns
297 // Taken out of wxConfig since not all compilers can cope with nested classes.
298 class WXDLLIMPEXP_BASE wxConfigPathChanger
301 // ctor/dtor do path changing/restorin
302 wxConfigPathChanger(const wxConfigBase
*pContainer
, const wxString
& strEntry
);
303 ~wxConfigPathChanger();
306 const wxString
& Name() const { return m_strName
; }
309 wxConfigBase
*m_pContainer
; // object we live in
310 wxString m_strName
, // name of entry (i.e. name only)
311 m_strOldPath
; // saved path
312 bool m_bChanged
; // was the path changed?
314 DECLARE_NO_COPY_CLASS(wxConfigPathChanger
)
318 // ----------------------------------------------------------------------------
319 // the native wxConfigBase implementation
320 // ----------------------------------------------------------------------------
322 // under Windows we prefer to use the native implementation
323 #if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
325 #define wxConfig wxRegConfig
327 #define wxConfig wxIniConfig
329 #else // either we're under Unix or wish to use files even under Windows
330 #define wxConfig wxFileConfig
333 #endif // wxUSE_CONFIG
336 Replace environment variables ($SOMETHING) with their values. The format is
337 $VARNAME or ${VARNAME} where VARNAME contains alphanumeric characters and
338 '_' only. '$' must be escaped ('\$') in order to be taken literally.
341 WXDLLIMPEXP_BASE wxString
wxExpandEnvVars(const wxString
&sz
);
344 Split path into parts removing '..' in progress
346 WXDLLIMPEXP_BASE
void wxSplitPath(wxArrayString
& aParts
, const wxChar
*sz
);