]>
git.saurik.com Git - wxWidgets.git/blob - src/common/config.cpp
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: implementation of wxConfigBase class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1997 Karsten Ballüder Ballueder@usa.net
9 // Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
10 // Licence: wxWindows license
11 ///////////////////////////////////////////////////////////////////////////////
13 // ----------------------------------------------------------------------------
15 // ----------------------------------------------------------------------------
17 #pragma implementation "confbase.h"
20 #include "wx/wxprec.h"
26 #if wxUSE_CONFIG && ((wxUSE_FILE && wxUSE_TEXTFILE) || defined(wxCONFIG_WIN32_NATIVE))
31 #include "wx/textfile.h"
37 #include "wx/config.h"
41 #include <ctype.h> // for isalnum()
43 // ----------------------------------------------------------------------------
44 // global and class static variables
45 // ----------------------------------------------------------------------------
47 wxConfigBase
*wxConfigBase::ms_pConfig
= NULL
;
48 bool wxConfigBase::ms_bAutoCreate
= TRUE
;
50 // ============================================================================
52 // ============================================================================
54 // ----------------------------------------------------------------------------
56 // ----------------------------------------------------------------------------
58 // Not all args will always be used by derived classes, but
59 // including them all in each class ensures compatibility.
60 wxConfigBase::wxConfigBase(const wxString
& appName
, const wxString
& vendorName
,
61 const wxString
& WXUNUSED(localFilename
), const wxString
& WXUNUSED(globalFilename
), long style
):
62 m_appName(appName
), m_vendorName(vendorName
), m_style(style
)
64 m_bExpandEnvVars
= TRUE
; m_bRecordDefaults
= FALSE
;
67 wxConfigBase
*wxConfigBase::Set(wxConfigBase
*pConfig
)
69 wxConfigBase
*pOld
= ms_pConfig
;
74 wxConfigBase
*wxConfigBase::Create()
76 if ( ms_bAutoCreate
&& ms_pConfig
== NULL
) {
78 #if defined(__WXMSW__) && defined(wxCONFIG_WIN32_NATIVE)
80 new wxRegConfig(wxTheApp
->GetAppName(), wxTheApp
->GetVendorName());
82 new wxIniConfig(wxTheApp
->GetAppName(), wxTheApp
->GetVendorName());
84 #else // either we're under Unix or wish to use files even under Windows
85 new wxFileConfig(wxTheApp
->GetAppName());
92 wxString
wxConfigBase::Read(const wxString
& key
, const wxString
& defVal
) const
95 Read(key
, &s
, defVal
);
99 bool wxConfigBase::Read(const wxString
& key
, wxString
*str
, const wxString
& defVal
) const
103 *str
= ExpandEnvVars(defVal
);
110 bool wxConfigBase::Read(const wxString
& key
, long *pl
, long defVal
) const
121 bool wxConfigBase::Read(const wxString
& key
, double* val
) const
124 if (Read(key
, & str
))
133 bool wxConfigBase::Read(const wxString
& key
, double* val
, double defVal
) const
144 bool wxConfigBase::Read(const wxString
& key
, bool* val
) const
156 bool wxConfigBase::Read(const wxString
& key
, bool* val
, bool defVal
) const
167 // Convenience functions
169 bool wxConfigBase::Read(const wxString
& key
, int *pi
) const
172 bool ret
= Read(key
, &l
);
178 bool wxConfigBase::Read(const wxString
& key
, int *pi
, int defVal
) const
181 bool ret
= Read(key
, &l
, (long) defVal
);
186 bool wxConfigBase::Write(const wxString
& key
, double val
)
189 str
.Printf(wxT("%f"), val
);
190 return Write(key
, str
);
193 bool wxConfigBase::Write(const wxString
& key
, bool value
)
195 long l
= (value
? 1 : 0);
196 return Write(key
, l
);
199 bool wxConfigBase::Write( const wxString
&key
, const wxChar
*text
)
201 wxString
str( text
) ;
202 return Write( key
, str
) ;
204 wxString
wxConfigBase::ExpandEnvVars(const wxString
& str
) const
206 wxString tmp
; // Required for BC++
207 if (IsExpandingEnvVars())
208 tmp
= wxExpandEnvVars(str
);
214 // ----------------------------------------------------------------------------
215 // wxConfigPathChanger
216 // ----------------------------------------------------------------------------
218 wxConfigPathChanger::wxConfigPathChanger(const wxConfigBase
*pContainer
,
219 const wxString
& strEntry
)
221 m_pContainer
= (wxConfigBase
*)pContainer
;
223 // the path is everything which precedes the last slash
224 wxString strPath
= strEntry
.BeforeLast(wxCONFIG_PATH_SEPARATOR
);
226 // except in the special case of "/keyname" when there is nothing before "/"
227 if ( strPath
.IsEmpty() &&
228 ((!strEntry
.IsEmpty()) && strEntry
[0] == wxCONFIG_PATH_SEPARATOR
) )
230 strPath
= wxCONFIG_PATH_SEPARATOR
;
233 if ( !strPath
.IsEmpty() ) {
234 // do change the path
236 m_strName
= strEntry
.AfterLast(wxCONFIG_PATH_SEPARATOR
);
237 m_strOldPath
= m_pContainer
->GetPath();
238 m_strOldPath
+= wxCONFIG_PATH_SEPARATOR
;
239 m_pContainer
->SetPath(strPath
);
242 // it's a name only, without path - nothing to do
244 m_strName
= strEntry
;
248 wxConfigPathChanger::~wxConfigPathChanger()
250 // only restore path if it was changed
252 m_pContainer
->SetPath(m_strOldPath
);
256 // ----------------------------------------------------------------------------
257 // static & global functions
258 // ----------------------------------------------------------------------------
260 // understands both Unix and Windows (but only under Windows) environment
261 // variables expansion: i.e. $var, $(var) and ${var} are always understood
262 // and in addition under Windows %var% is also.
263 wxString
wxExpandEnvVars(const wxString
& str
)
266 strResult
.Alloc(str
.Len());
268 // don't change the values the enum elements: they must be equal
269 // to the matching [closing] delimiter.
273 Bracket_Normal
= ')',
276 ,Bracket_Windows
= '%' // yeah, Windows people are a bit strange ;-)
281 for ( size_t n
= 0; n
< str
.Len(); n
++ ) {
291 bracket
= Bracket_Windows
;
294 if ( n
== str
.Len() - 1 ) {
295 bracket
= Bracket_None
;
298 switch ( str
[n
+ 1] ) {
300 bracket
= Bracket_Normal
;
301 n
++; // skip the bracket
305 bracket
= Bracket_Curly
;
306 n
++; // skip the bracket
310 bracket
= Bracket_None
;
316 while ( m
< str
.Len() && (isalnum(str
[m
]) || str
[m
] == '_') )
319 wxString
strVarName(str
.c_str() + n
+ 1, m
- n
- 1);
321 const wxChar
*pszValue
= wxGetenv(strVarName
);
322 if ( pszValue
!= NULL
) {
323 strResult
+= pszValue
;
326 // variable doesn't exist => don't change anything
328 if ( bracket
!= Bracket_Windows
)
330 if ( bracket
!= Bracket_None
)
331 strResult
<< str
[n
- 1];
332 strResult
<< str
[n
] << strVarName
;
335 // check the closing bracket
336 if ( bracket
!= Bracket_None
) {
337 if ( m
== str
.Len() || str
[m
] != (char)bracket
) {
338 wxLogWarning(_("Environment variables expansion failed: "
339 "missing '%c' at position %d in '%s'."),
340 (char)bracket
, m
+ 1, str
.c_str());
343 // skip closing bracket unless the variables wasn't expanded
344 if ( pszValue
== NULL
)
345 strResult
<< (char)bracket
;
350 n
= m
- 1; // skip variable name
355 // backslash can be used to suppress special meaning of % and $
356 if ( n
!= str
.Len() && (str
[n
+ 1] == '%' || str
[n
+ 1] == '$') ) {
357 strResult
+= str
[++n
];
371 // this function is used to properly interpret '..' in path
372 void wxSplitPath(wxArrayString
& aParts
, const wxChar
*sz
)
377 const wxChar
*pc
= sz
;
379 if ( *pc
== wxT('\0') || *pc
== wxCONFIG_PATH_SEPARATOR
) {
380 if ( strCurrent
== wxT(".") ) {
383 else if ( strCurrent
== wxT("..") ) {
385 if ( aParts
.IsEmpty() )
386 wxLogWarning(_("'%s' has extra '..', ignored."), sz
);
388 aParts
.Remove(aParts
.Count() - 1);
392 else if ( !strCurrent
.IsEmpty() ) {
393 aParts
.Add(strCurrent
);
397 // could log an error here, but we prefer to ignore extra '/'
399 if ( *pc
== wxT('\0') )
409 #endif // wxUSE_CONFIG