1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: implementation of wxFileConfig derivation of wxConfig
4 // Author: Vadim Zeitlin
6 // Created: 07.04.98 (adapted from appconf.cpp)
8 // Copyright: (c) 1997 Karsten Ballüder & Vadim Zeitlin
9 // Ballueder@usa.net <zeitlin@dptmaths.ens-cachan.fr>
10 // Licence: wxWindows license
11 ///////////////////////////////////////////////////////////////////////////////
14 #pragma implementation "fileconf.h"
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
21 #include "wx/wxprec.h"
30 #include "wx/string.h"
35 #include "wx/dynarray.h"
38 #include "wx/textfile.h"
39 #include "wx/memtext.h"
40 #include "wx/config.h"
41 #include "wx/fileconf.h"
44 #include "wx/stream.h"
45 #endif // wxUSE_STREAMS
47 #include "wx/utils.h" // for wxGetHomeDir
49 #if defined(__WXMAC__)
50 #include "wx/mac/private.h" // includes mac headers
53 #if defined(__WXMSW__)
54 #include "wx/msw/private.h"
64 // headers needed for umask()
66 #include <sys/types.h>
70 // ----------------------------------------------------------------------------
72 // ----------------------------------------------------------------------------
73 #define CONST_CAST ((wxFileConfig *)this)->
75 // ----------------------------------------------------------------------------
77 // ----------------------------------------------------------------------------
83 // ----------------------------------------------------------------------------
84 // global functions declarations
85 // ----------------------------------------------------------------------------
87 // compare functions for sorting the arrays
88 static int LINKAGEMODE
CompareEntries(wxFileConfigEntry
*p1
, wxFileConfigEntry
*p2
);
89 static int LINKAGEMODE
CompareGroups(wxFileConfigGroup
*p1
, wxFileConfigGroup
*p2
);
92 static wxString
FilterInValue(const wxString
& str
);
93 static wxString
FilterOutValue(const wxString
& str
);
95 static wxString
FilterInEntryName(const wxString
& str
);
96 static wxString
FilterOutEntryName(const wxString
& str
);
98 // get the name to use in wxFileConfig ctor
99 static wxString
GetAppName(const wxString
& appname
);
101 // ============================================================================
103 // ============================================================================
105 // ----------------------------------------------------------------------------
106 // "template" array types
107 // ----------------------------------------------------------------------------
109 WX_DEFINE_SORTED_EXPORTED_ARRAY(wxFileConfigEntry
*, ArrayEntries
);
110 WX_DEFINE_SORTED_EXPORTED_ARRAY(wxFileConfigGroup
*, ArrayGroups
);
112 // ----------------------------------------------------------------------------
113 // wxFileConfigLineList
114 // ----------------------------------------------------------------------------
116 // we store all lines of the local config file as a linked list in memory
117 class wxFileConfigLineList
120 void SetNext(wxFileConfigLineList
*pNext
) { m_pNext
= pNext
; }
121 void SetPrev(wxFileConfigLineList
*pPrev
) { m_pPrev
= pPrev
; }
124 wxFileConfigLineList(const wxString
& str
,
125 wxFileConfigLineList
*pNext
= NULL
) : m_strLine(str
)
126 { SetNext(pNext
); SetPrev(NULL
); }
128 // next/prev nodes in the linked list
129 wxFileConfigLineList
*Next() const { return m_pNext
; }
130 wxFileConfigLineList
*Prev() const { return m_pPrev
; }
132 // get/change lines text
133 void SetText(const wxString
& str
) { m_strLine
= str
; }
134 const wxString
& Text() const { return m_strLine
; }
137 wxString m_strLine
; // line contents
138 wxFileConfigLineList
*m_pNext
, // next node
139 *m_pPrev
; // previous one
142 // ----------------------------------------------------------------------------
143 // wxFileConfigEntry: a name/value pair
144 // ----------------------------------------------------------------------------
146 class wxFileConfigEntry
149 wxFileConfigGroup
*m_pParent
; // group that contains us
151 wxString m_strName
, // entry name
153 bool m_bDirty
:1, // changed since last read?
154 m_bImmutable
:1, // can be overriden locally?
155 m_bHasValue
:1; // set after first call to SetValue()
157 int m_nLine
; // used if m_pLine == NULL only
159 // pointer to our line in the linked list or NULL if it was found in global
160 // file (which we don't modify)
161 wxFileConfigLineList
*m_pLine
;
164 wxFileConfigEntry(wxFileConfigGroup
*pParent
,
165 const wxString
& strName
, int nLine
);
168 const wxString
& Name() const { return m_strName
; }
169 const wxString
& Value() const { return m_strValue
; }
170 wxFileConfigGroup
*Group() const { return m_pParent
; }
171 bool IsDirty() const { return m_bDirty
; }
172 bool IsImmutable() const { return m_bImmutable
; }
173 bool IsLocal() const { return m_pLine
!= 0; }
174 int Line() const { return m_nLine
; }
175 wxFileConfigLineList
*
176 GetLine() const { return m_pLine
; }
178 // modify entry attributes
179 void SetValue(const wxString
& strValue
, bool bUser
= TRUE
);
181 void SetLine(wxFileConfigLineList
*pLine
);
184 // ----------------------------------------------------------------------------
185 // wxFileConfigGroup: container of entries and other groups
186 // ----------------------------------------------------------------------------
188 class wxFileConfigGroup
191 wxFileConfig
*m_pConfig
; // config object we belong to
192 wxFileConfigGroup
*m_pParent
; // parent group (NULL for root group)
193 ArrayEntries m_aEntries
; // entries in this group
194 ArrayGroups m_aSubgroups
; // subgroups
195 wxString m_strName
; // group's name
196 bool m_bDirty
; // if FALSE => all subgroups are not dirty
197 wxFileConfigLineList
*m_pLine
; // pointer to our line in the linked list
198 wxFileConfigEntry
*m_pLastEntry
; // last entry/subgroup of this group in the
199 wxFileConfigGroup
*m_pLastGroup
; // local file (we insert new ones after it)
201 // DeleteSubgroupByName helper
202 bool DeleteSubgroup(wxFileConfigGroup
*pGroup
);
206 wxFileConfigGroup(wxFileConfigGroup
*pParent
, const wxString
& strName
, wxFileConfig
*);
208 // dtor deletes all entries and subgroups also
209 ~wxFileConfigGroup();
212 const wxString
& Name() const { return m_strName
; }
213 wxFileConfigGroup
*Parent() const { return m_pParent
; }
214 wxFileConfig
*Config() const { return m_pConfig
; }
215 bool IsDirty() const { return m_bDirty
; }
217 const ArrayEntries
& Entries() const { return m_aEntries
; }
218 const ArrayGroups
& Groups() const { return m_aSubgroups
; }
219 bool IsEmpty() const { return Entries().IsEmpty() && Groups().IsEmpty(); }
221 // find entry/subgroup (NULL if not found)
222 wxFileConfigGroup
*FindSubgroup(const wxChar
*szName
) const;
223 wxFileConfigEntry
*FindEntry (const wxChar
*szName
) const;
225 // delete entry/subgroup, return FALSE if doesn't exist
226 bool DeleteSubgroupByName(const wxChar
*szName
);
227 bool DeleteEntry(const wxChar
*szName
);
229 // create new entry/subgroup returning pointer to newly created element
230 wxFileConfigGroup
*AddSubgroup(const wxString
& strName
);
231 wxFileConfigEntry
*AddEntry (const wxString
& strName
, int nLine
= wxNOT_FOUND
);
233 // will also recursively set parent's dirty flag
235 void SetLine(wxFileConfigLineList
*pLine
);
237 // rename: no checks are done to ensure that the name is unique!
238 void Rename(const wxString
& newName
);
241 wxString
GetFullName() const;
243 // get the last line belonging to an entry/subgroup of this group
244 wxFileConfigLineList
*GetGroupLine(); // line which contains [group]
245 wxFileConfigLineList
*GetLastEntryLine(); // after which our subgroups start
246 wxFileConfigLineList
*GetLastGroupLine(); // after which the next group starts
248 // called by entries/subgroups when they're created/deleted
249 void SetLastEntry(wxFileConfigEntry
*pEntry
) { m_pLastEntry
= pEntry
; }
250 void SetLastGroup(wxFileConfigGroup
*pGroup
) { m_pLastGroup
= pGroup
; }
253 // ============================================================================
255 // ============================================================================
257 // ----------------------------------------------------------------------------
259 // ----------------------------------------------------------------------------
260 wxString
wxFileConfig::GetGlobalDir()
264 #ifdef __VMS__ // Note if __VMS is defined __UNIX is also defined
265 strDir
= wxT("sys$manager:");
266 #elif defined(__WXMAC__)
267 strDir
= wxMacFindFolder( (short) kOnSystemDisk
, kPreferencesFolderType
, kDontCreateFolder
) ;
268 #elif defined( __UNIX__ )
269 strDir
= wxT("/etc/");
270 #elif defined(__WXPM__)
271 ULONG aulSysInfo
[QSV_MAX
] = {0};
275 rc
= DosQuerySysInfo( 1L, QSV_MAX
, (PVOID
)aulSysInfo
, sizeof(ULONG
)*QSV_MAX
);
278 drive
= aulSysInfo
[QSV_BOOT_DRIVE
- 1];
279 strDir
.Printf(wxT("%c:\\OS2\\"), 'A'+drive
-1);
281 #elif defined(__WXSTUBS__)
282 wxASSERT_MSG( FALSE
, wxT("TODO") ) ;
283 #elif defined(__DOS__)
284 // There's no such thing as global cfg dir in MS-DOS, let's return
285 // current directory (FIXME_MGL?)
288 wxChar szWinDir
[MAX_PATH
];
289 ::GetWindowsDirectory(szWinDir
, MAX_PATH
);
293 #endif // Unix/Windows
298 wxString
wxFileConfig::GetLocalDir()
302 #if defined(__WXMAC__) || defined(__DOS__)
303 // no local dir concept on Mac OS 9 or MS-DOS
304 return GetGlobalDir() ;
306 wxGetHomeDir(&strDir
);
310 if (strDir
.Last() != wxT(']'))
312 if (strDir
.Last() != wxT('/')) strDir
<< wxT('/');
314 if (strDir
.Last() != wxT('\\')) strDir
<< wxT('\\');
321 wxString
wxFileConfig::GetGlobalFileName(const wxChar
*szFile
)
323 wxString str
= GetGlobalDir();
326 if ( wxStrchr(szFile
, wxT('.')) == NULL
)
327 #if defined( __WXMAC__ )
328 str
<< " Preferences";
329 #elif defined( __UNIX__ )
338 wxString
wxFileConfig::GetLocalFileName(const wxChar
*szFile
)
340 #ifdef __VMS__ // On VMS I saw the problem that the home directory was appended
341 // twice for the configuration file. Does that also happen for other
343 wxString str
= wxT( '.' );
345 wxString str
= GetLocalDir();
348 #if defined( __UNIX__ ) && !defined( __VMS ) && !defined( __WXMAC__ )
354 #if defined(__WINDOWS__) || defined(__DOS__)
355 if ( wxStrchr(szFile
, wxT('.')) == NULL
)
360 str
<< " Preferences";
365 // ----------------------------------------------------------------------------
367 // ----------------------------------------------------------------------------
369 void wxFileConfig::Init()
372 m_pRootGroup
= new wxFileConfigGroup(NULL
, "", this);
377 // it's not an error if (one of the) file(s) doesn't exist
379 // parse the global file
380 if ( !m_strGlobalFile
.IsEmpty() && wxFile::Exists(m_strGlobalFile
) ) {
381 wxTextFile
fileGlobal(m_strGlobalFile
);
383 if ( fileGlobal
.Open() ) {
384 Parse(fileGlobal
, FALSE
/* global */);
388 wxLogWarning(_("can't open global configuration file '%s'."),
389 m_strGlobalFile
.c_str());
392 // parse the local file
393 if ( !m_strLocalFile
.IsEmpty() && wxFile::Exists(m_strLocalFile
) ) {
394 wxTextFile
fileLocal(m_strLocalFile
);
395 if ( fileLocal
.Open() ) {
396 Parse(fileLocal
, TRUE
/* local */);
400 wxLogWarning(_("can't open user configuration file '%s'."),
401 m_strLocalFile
.c_str());
405 // constructor supports creation of wxFileConfig objects of any type
406 wxFileConfig::wxFileConfig(const wxString
& appName
, const wxString
& vendorName
,
407 const wxString
& strLocal
, const wxString
& strGlobal
,
409 : wxConfigBase(::GetAppName(appName
), vendorName
,
412 m_strLocalFile(strLocal
), m_strGlobalFile(strGlobal
)
414 // Make up names for files if empty
415 if ( m_strLocalFile
.IsEmpty() && (style
& wxCONFIG_USE_LOCAL_FILE
) )
417 m_strLocalFile
= GetLocalFileName(GetAppName());
420 if ( m_strGlobalFile
.IsEmpty() && (style
& wxCONFIG_USE_GLOBAL_FILE
) )
422 m_strGlobalFile
= GetGlobalFileName(GetAppName());
425 // Check if styles are not supplied, but filenames are, in which case
426 // add the correct styles.
427 if ( !m_strLocalFile
.IsEmpty() )
428 SetStyle(GetStyle() | wxCONFIG_USE_LOCAL_FILE
);
430 if ( !m_strGlobalFile
.IsEmpty() )
431 SetStyle(GetStyle() | wxCONFIG_USE_GLOBAL_FILE
);
433 // if the path is not absolute, prepend the standard directory to it
434 // UNLESS wxCONFIG_USE_RELATIVE_PATH style is set
435 if ( !(style
& wxCONFIG_USE_RELATIVE_PATH
) )
437 if ( !m_strLocalFile
.IsEmpty() && !wxIsAbsolutePath(m_strLocalFile
) )
439 wxString strLocal
= m_strLocalFile
;
440 m_strLocalFile
= GetLocalDir();
441 m_strLocalFile
<< strLocal
;
444 if ( !m_strGlobalFile
.IsEmpty() && !wxIsAbsolutePath(m_strGlobalFile
) )
446 wxString strGlobal
= m_strGlobalFile
;
447 m_strGlobalFile
= GetGlobalDir();
448 m_strGlobalFile
<< strGlobal
;
459 wxFileConfig::wxFileConfig(wxInputStream
&inStream
)
461 // always local_file when this constructor is called (?)
462 SetStyle(GetStyle() | wxCONFIG_USE_LOCAL_FILE
);
465 m_pRootGroup
= new wxFileConfigGroup(NULL
, "", this);
470 // translate everything to the current (platform-dependent) line
471 // termination character
477 while ( !inStream
.Read(buf
, WXSIZEOF(buf
)).Eof() )
478 strTmp
.append(wxConvertMB2WX(buf
), inStream
.LastRead());
480 strTmp
.append(wxConvertMB2WX(buf
), inStream
.LastRead());
482 strTrans
= wxTextBuffer::Translate(strTmp
);
485 wxMemoryText memText
;
487 // Now we can add the text to the memory text. To do this we extract line
488 // by line from the translated string, until we've reached the end.
490 // VZ: all this is horribly inefficient, we should do the translation on
491 // the fly in one pass saving both memory and time (TODO)
493 const wxChar
*pEOL
= wxTextBuffer::GetEOL(wxTextBuffer::typeDefault
);
494 const size_t EOLLen
= wxStrlen(pEOL
);
496 int posLineStart
= strTrans
.Find(pEOL
);
497 while ( posLineStart
!= -1 )
499 wxString
line(strTrans
.Left(posLineStart
));
501 memText
.AddLine(line
);
503 strTrans
= strTrans
.Mid(posLineStart
+ EOLLen
);
505 posLineStart
= strTrans
.Find(pEOL
);
508 // also add whatever we have left in the translated string.
509 memText
.AddLine(strTrans
);
511 // Finally we can parse it all.
512 Parse(memText
, TRUE
/* local */);
517 #endif // wxUSE_STREAMS
519 void wxFileConfig::CleanUp()
523 wxFileConfigLineList
*pCur
= m_linesHead
;
524 while ( pCur
!= NULL
) {
525 wxFileConfigLineList
*pNext
= pCur
->Next();
531 wxFileConfig::~wxFileConfig()
538 // ----------------------------------------------------------------------------
539 // parse a config file
540 // ----------------------------------------------------------------------------
542 void wxFileConfig::Parse(wxTextBuffer
& buffer
, bool bLocal
)
544 const wxChar
*pStart
;
548 size_t nLineCount
= buffer
.GetLineCount();
549 for ( size_t n
= 0; n
< nLineCount
; n
++ ) {
552 // add the line to linked list
554 LineListAppend(strLine
);
556 // skip leading spaces
557 for ( pStart
= strLine
; wxIsspace(*pStart
); pStart
++ )
560 // skip blank/comment lines
561 if ( *pStart
== wxT('\0')|| *pStart
== wxT(';') || *pStart
== wxT('#') )
564 if ( *pStart
== wxT('[') ) { // a new group
567 while ( *++pEnd
!= wxT(']') ) {
568 if ( *pEnd
== wxT('\\') ) {
569 // the next char is escaped, so skip it even if it is ']'
573 if ( *pEnd
== wxT('\n') || *pEnd
== wxT('\0') ) {
574 // we reached the end of line, break out of the loop
579 if ( *pEnd
!= wxT(']') ) {
580 wxLogError(_("file '%s': unexpected character %c at line %d."),
581 buffer
.GetName(), *pEnd
, n
+ 1);
582 continue; // skip this line
585 // group name here is always considered as abs path
588 strGroup
<< wxCONFIG_PATH_SEPARATOR
589 << FilterInEntryName(wxString(pStart
, pEnd
- pStart
));
591 // will create it if doesn't yet exist
595 m_pCurrentGroup
->SetLine(m_linesTail
);
597 // check that there is nothing except comments left on this line
599 while ( *++pEnd
!= wxT('\0') && bCont
) {
608 // ignore whitespace ('\n' impossible here)
612 wxLogWarning(_("file '%s', line %d: '%s' ignored after group header."),
613 buffer
.GetName(), n
+ 1, pEnd
);
619 const wxChar
*pEnd
= pStart
;
620 while ( *pEnd
&& *pEnd
!= wxT('=') && !wxIsspace(*pEnd
) ) {
621 if ( *pEnd
== wxT('\\') ) {
622 // next character may be space or not - still take it because it's
623 // quoted (unless there is nothing)
626 // the error message will be given below anyhow
634 wxString
strKey(FilterInEntryName(wxString(pStart
, pEnd
)));
637 while ( wxIsspace(*pEnd
) )
640 if ( *pEnd
++ != wxT('=') ) {
641 wxLogError(_("file '%s', line %d: '=' expected."),
642 buffer
.GetName(), n
+ 1);
645 wxFileConfigEntry
*pEntry
= m_pCurrentGroup
->FindEntry(strKey
);
647 if ( pEntry
== NULL
) {
649 pEntry
= m_pCurrentGroup
->AddEntry(strKey
, n
);
652 pEntry
->SetLine(m_linesTail
);
655 if ( bLocal
&& pEntry
->IsImmutable() ) {
656 // immutable keys can't be changed by user
657 wxLogWarning(_("file '%s', line %d: value for immutable key '%s' ignored."),
658 buffer
.GetName(), n
+ 1, strKey
.c_str());
661 // the condition below catches the cases (a) and (b) but not (c):
662 // (a) global key found second time in global file
663 // (b) key found second (or more) time in local file
664 // (c) key from global file now found in local one
665 // which is exactly what we want.
666 else if ( !bLocal
|| pEntry
->IsLocal() ) {
667 wxLogWarning(_("file '%s', line %d: key '%s' was first found at line %d."),
668 buffer
.GetName(), n
+ 1, strKey
.c_str(), pEntry
->Line());
671 pEntry
->SetLine(m_linesTail
);
676 while ( wxIsspace(*pEnd
) )
679 wxString value
= pEnd
;
680 if ( !(GetStyle() & wxCONFIG_USE_NO_ESCAPE_CHARACTERS
) )
681 value
= FilterInValue(value
);
683 pEntry
->SetValue(value
, FALSE
);
689 // ----------------------------------------------------------------------------
691 // ----------------------------------------------------------------------------
693 void wxFileConfig::SetRootPath()
696 m_pCurrentGroup
= m_pRootGroup
;
699 void wxFileConfig::SetPath(const wxString
& strPath
)
701 wxArrayString aParts
;
703 if ( strPath
.IsEmpty() ) {
708 if ( strPath
[0] == wxCONFIG_PATH_SEPARATOR
) {
710 wxSplitPath(aParts
, strPath
);
713 // relative path, combine with current one
714 wxString strFullPath
= m_strPath
;
715 strFullPath
<< wxCONFIG_PATH_SEPARATOR
<< strPath
;
716 wxSplitPath(aParts
, strFullPath
);
719 // change current group
721 m_pCurrentGroup
= m_pRootGroup
;
722 for ( n
= 0; n
< aParts
.Count(); n
++ ) {
723 wxFileConfigGroup
*pNextGroup
= m_pCurrentGroup
->FindSubgroup(aParts
[n
]);
724 if ( pNextGroup
== NULL
)
725 pNextGroup
= m_pCurrentGroup
->AddSubgroup(aParts
[n
]);
726 m_pCurrentGroup
= pNextGroup
;
729 // recombine path parts in one variable
731 for ( n
= 0; n
< aParts
.Count(); n
++ ) {
732 m_strPath
<< wxCONFIG_PATH_SEPARATOR
<< aParts
[n
];
736 // ----------------------------------------------------------------------------
738 // ----------------------------------------------------------------------------
740 bool wxFileConfig::GetFirstGroup(wxString
& str
, long& lIndex
) const
743 return GetNextGroup(str
, lIndex
);
746 bool wxFileConfig::GetNextGroup (wxString
& str
, long& lIndex
) const
748 if ( size_t(lIndex
) < m_pCurrentGroup
->Groups().Count() ) {
749 str
= m_pCurrentGroup
->Groups()[(size_t)lIndex
++]->Name();
756 bool wxFileConfig::GetFirstEntry(wxString
& str
, long& lIndex
) const
759 return GetNextEntry(str
, lIndex
);
762 bool wxFileConfig::GetNextEntry (wxString
& str
, long& lIndex
) const
764 if ( size_t(lIndex
) < m_pCurrentGroup
->Entries().Count() ) {
765 str
= m_pCurrentGroup
->Entries()[(size_t)lIndex
++]->Name();
772 size_t wxFileConfig::GetNumberOfEntries(bool bRecursive
) const
774 size_t n
= m_pCurrentGroup
->Entries().Count();
776 wxFileConfigGroup
*pOldCurrentGroup
= m_pCurrentGroup
;
777 size_t nSubgroups
= m_pCurrentGroup
->Groups().Count();
778 for ( size_t nGroup
= 0; nGroup
< nSubgroups
; nGroup
++ ) {
779 CONST_CAST m_pCurrentGroup
= m_pCurrentGroup
->Groups()[nGroup
];
780 n
+= GetNumberOfEntries(TRUE
);
781 CONST_CAST m_pCurrentGroup
= pOldCurrentGroup
;
788 size_t wxFileConfig::GetNumberOfGroups(bool bRecursive
) const
790 size_t n
= m_pCurrentGroup
->Groups().Count();
792 wxFileConfigGroup
*pOldCurrentGroup
= m_pCurrentGroup
;
793 size_t nSubgroups
= m_pCurrentGroup
->Groups().Count();
794 for ( size_t nGroup
= 0; nGroup
< nSubgroups
; nGroup
++ ) {
795 CONST_CAST m_pCurrentGroup
= m_pCurrentGroup
->Groups()[nGroup
];
796 n
+= GetNumberOfGroups(TRUE
);
797 CONST_CAST m_pCurrentGroup
= pOldCurrentGroup
;
804 // ----------------------------------------------------------------------------
805 // tests for existence
806 // ----------------------------------------------------------------------------
808 bool wxFileConfig::HasGroup(const wxString
& strName
) const
810 wxConfigPathChanger
path(this, strName
);
812 wxFileConfigGroup
*pGroup
= m_pCurrentGroup
->FindSubgroup(path
.Name());
813 return pGroup
!= NULL
;
816 bool wxFileConfig::HasEntry(const wxString
& strName
) const
818 wxConfigPathChanger
path(this, strName
);
820 wxFileConfigEntry
*pEntry
= m_pCurrentGroup
->FindEntry(path
.Name());
821 return pEntry
!= NULL
;
824 // ----------------------------------------------------------------------------
826 // ----------------------------------------------------------------------------
828 bool wxFileConfig::DoReadString(const wxString
& key
, wxString
* pStr
) const
830 wxConfigPathChanger
path(this, key
);
832 wxFileConfigEntry
*pEntry
= m_pCurrentGroup
->FindEntry(path
.Name());
833 if (pEntry
== NULL
) {
837 *pStr
= pEntry
->Value();
842 bool wxFileConfig::DoReadLong(const wxString
& key
, long *pl
) const
845 if ( !Read(key
, & str
) )
849 return str
.ToLong(pl
) ;
852 bool wxFileConfig::DoWriteString(const wxString
& key
, const wxString
& szValue
)
854 wxConfigPathChanger
path(this, key
);
856 wxString strName
= path
.Name();
857 if ( strName
.IsEmpty() ) {
858 // setting the value of a group is an error
859 wxASSERT_MSG( wxIsEmpty(szValue
), wxT("can't set value of a group!") );
861 // ... except if it's empty in which case it's a way to force it's creation
862 m_pCurrentGroup
->SetDirty();
864 // this will add a line for this group if it didn't have it before
865 (void)m_pCurrentGroup
->GetGroupLine();
870 // check that the name is reasonable
871 if ( strName
[0u] == wxCONFIG_IMMUTABLE_PREFIX
) {
872 wxLogError(_("Config entry name cannot start with '%c'."),
873 wxCONFIG_IMMUTABLE_PREFIX
);
877 wxFileConfigEntry
*pEntry
= m_pCurrentGroup
->FindEntry(strName
);
878 if ( pEntry
== NULL
)
879 pEntry
= m_pCurrentGroup
->AddEntry(strName
);
881 pEntry
->SetValue(szValue
);
887 bool wxFileConfig::DoWriteLong(const wxString
& key
, long lValue
)
889 return Write(key
, wxString::Format(_T("%ld"), lValue
));
892 bool wxFileConfig::Flush(bool /* bCurrentOnly */)
894 if ( LineListIsEmpty() || !m_pRootGroup
->IsDirty() || !m_strLocalFile
)
898 // set the umask if needed
902 umaskOld
= umask((mode_t
)m_umask
);
906 wxTempFile
file(m_strLocalFile
);
908 if ( !file
.IsOpened() )
910 wxLogError(_("can't open user configuration file."));
914 // write all strings to file
915 for ( wxFileConfigLineList
*p
= m_linesHead
; p
!= NULL
; p
= p
->Next() )
917 wxString line
= p
->Text();
918 line
+= wxTextFile::GetEOL();
920 wxCharBuffer buf
= wxConvLocal
.cWX2MB( line
);
921 if ( !file
.Write( (const char*)buf
, strlen( (const char*) buf
) ) )
923 if ( !file
.Write( line
.c_str(), line
.Len() ) )
926 wxLogError(_("can't write user configuration file."));
931 bool ret
= file
.Commit();
933 #if defined(__WXMAC__)
938 wxMacFilename2FSSpec( m_strLocalFile
, &spec
) ;
940 if ( FSpGetFInfo( &spec
, &finfo
) == noErr
)
942 finfo
.fdType
= 'TEXT' ;
943 finfo
.fdCreator
= 'ttxt' ;
944 FSpSetFInfo( &spec
, &finfo
) ;
950 // restore the old umask if we changed it
953 (void)umask(umaskOld
);
960 // ----------------------------------------------------------------------------
961 // renaming groups/entries
962 // ----------------------------------------------------------------------------
964 bool wxFileConfig::RenameEntry(const wxString
& oldName
,
965 const wxString
& newName
)
967 // check that the entry exists
968 wxFileConfigEntry
*oldEntry
= m_pCurrentGroup
->FindEntry(oldName
);
972 // check that the new entry doesn't already exist
973 if ( m_pCurrentGroup
->FindEntry(newName
) )
976 // delete the old entry, create the new one
977 wxString value
= oldEntry
->Value();
978 if ( !m_pCurrentGroup
->DeleteEntry(oldName
) )
981 wxFileConfigEntry
*newEntry
= m_pCurrentGroup
->AddEntry(newName
);
982 newEntry
->SetValue(value
);
987 bool wxFileConfig::RenameGroup(const wxString
& oldName
,
988 const wxString
& newName
)
990 // check that the group exists
991 wxFileConfigGroup
*group
= m_pCurrentGroup
->FindSubgroup(oldName
);
995 // check that the new group doesn't already exist
996 if ( m_pCurrentGroup
->FindSubgroup(newName
) )
999 group
->Rename(newName
);
1004 // ----------------------------------------------------------------------------
1005 // delete groups/entries
1006 // ----------------------------------------------------------------------------
1008 bool wxFileConfig::DeleteEntry(const wxString
& key
, bool bGroupIfEmptyAlso
)
1010 wxConfigPathChanger
path(this, key
);
1012 if ( !m_pCurrentGroup
->DeleteEntry(path
.Name()) )
1015 if ( bGroupIfEmptyAlso
&& m_pCurrentGroup
->IsEmpty() ) {
1016 if ( m_pCurrentGroup
!= m_pRootGroup
) {
1017 wxFileConfigGroup
*pGroup
= m_pCurrentGroup
;
1018 SetPath(wxT("..")); // changes m_pCurrentGroup!
1019 m_pCurrentGroup
->DeleteSubgroupByName(pGroup
->Name());
1021 //else: never delete the root group
1027 bool wxFileConfig::DeleteGroup(const wxString
& key
)
1029 wxConfigPathChanger
path(this, key
);
1031 return m_pCurrentGroup
->DeleteSubgroupByName(path
.Name());
1034 bool wxFileConfig::DeleteAll()
1038 if ( wxRemove(m_strLocalFile
) == -1 )
1039 wxLogSysError(_("can't delete user configuration file '%s'"), m_strLocalFile
.c_str());
1041 m_strLocalFile
= m_strGlobalFile
= wxT("");
1047 // ----------------------------------------------------------------------------
1048 // linked list functions
1049 // ----------------------------------------------------------------------------
1051 // append a new line to the end of the list
1052 wxFileConfigLineList
*wxFileConfig::LineListAppend(const wxString
& str
)
1054 wxFileConfigLineList
*pLine
= new wxFileConfigLineList(str
);
1056 if ( m_linesTail
== NULL
) {
1058 m_linesHead
= pLine
;
1062 m_linesTail
->SetNext(pLine
);
1063 pLine
->SetPrev(m_linesTail
);
1066 m_linesTail
= pLine
;
1070 // insert a new line after the given one or in the very beginning if !pLine
1071 wxFileConfigLineList
*wxFileConfig::LineListInsert(const wxString
& str
,
1072 wxFileConfigLineList
*pLine
)
1074 if ( pLine
== m_linesTail
)
1075 return LineListAppend(str
);
1077 wxFileConfigLineList
*pNewLine
= new wxFileConfigLineList(str
);
1078 if ( pLine
== NULL
) {
1079 // prepend to the list
1080 pNewLine
->SetNext(m_linesHead
);
1081 m_linesHead
->SetPrev(pNewLine
);
1082 m_linesHead
= pNewLine
;
1085 // insert before pLine
1086 wxFileConfigLineList
*pNext
= pLine
->Next();
1087 pNewLine
->SetNext(pNext
);
1088 pNewLine
->SetPrev(pLine
);
1089 pNext
->SetPrev(pNewLine
);
1090 pLine
->SetNext(pNewLine
);
1096 void wxFileConfig::LineListRemove(wxFileConfigLineList
*pLine
)
1098 wxFileConfigLineList
*pPrev
= pLine
->Prev(),
1099 *pNext
= pLine
->Next();
1102 if ( pPrev
== NULL
)
1103 m_linesHead
= pNext
;
1105 pPrev
->SetNext(pNext
);
1108 if ( pNext
== NULL
)
1109 m_linesTail
= pPrev
;
1111 pNext
->SetPrev(pPrev
);
1116 bool wxFileConfig::LineListIsEmpty()
1118 return m_linesHead
== NULL
;
1121 // ============================================================================
1122 // wxFileConfig::wxFileConfigGroup
1123 // ============================================================================
1125 // ----------------------------------------------------------------------------
1127 // ----------------------------------------------------------------------------
1130 wxFileConfigGroup::wxFileConfigGroup(wxFileConfigGroup
*pParent
,
1131 const wxString
& strName
,
1132 wxFileConfig
*pConfig
)
1133 : m_aEntries(CompareEntries
),
1134 m_aSubgroups(CompareGroups
),
1137 m_pConfig
= pConfig
;
1138 m_pParent
= pParent
;
1142 m_pLastEntry
= NULL
;
1143 m_pLastGroup
= NULL
;
1146 // dtor deletes all children
1147 wxFileConfigGroup::~wxFileConfigGroup()
1150 size_t n
, nCount
= m_aEntries
.Count();
1151 for ( n
= 0; n
< nCount
; n
++ )
1152 delete m_aEntries
[n
];
1155 nCount
= m_aSubgroups
.Count();
1156 for ( n
= 0; n
< nCount
; n
++ )
1157 delete m_aSubgroups
[n
];
1160 // ----------------------------------------------------------------------------
1162 // ----------------------------------------------------------------------------
1164 void wxFileConfigGroup::SetLine(wxFileConfigLineList
*pLine
)
1166 wxASSERT( m_pLine
== NULL
); // shouldn't be called twice
1172 This is a bit complicated, so let me explain it in details. All lines that
1173 were read from the local file (the only one we will ever modify) are stored
1174 in a (doubly) linked list. Our problem is to know at which position in this
1175 list should we insert the new entries/subgroups. To solve it we keep three
1176 variables for each group: m_pLine, m_pLastEntry and m_pLastGroup.
1178 m_pLine points to the line containing "[group_name]"
1179 m_pLastEntry points to the last entry of this group in the local file.
1180 m_pLastGroup subgroup
1182 Initially, they're NULL all three. When the group (an entry/subgroup) is read
1183 from the local file, the corresponding variable is set. However, if the group
1184 was read from the global file and then modified or created by the application
1185 these variables are still NULL and we need to create the corresponding lines.
1186 See the following functions (and comments preceding them) for the details of
1189 Also, when our last entry/group are deleted we need to find the new last
1190 element - the code in DeleteEntry/Subgroup does this by backtracking the list
1191 of lines until it either founds an entry/subgroup (and this is the new last
1192 element) or the m_pLine of the group, in which case there are no more entries
1193 (or subgroups) left and m_pLast<element> becomes NULL.
1195 NB: This last problem could be avoided for entries if we added new entries
1196 immediately after m_pLine, but in this case the entries would appear
1197 backwards in the config file (OTOH, it's not that important) and as we
1198 would still need to do it for the subgroups the code wouldn't have been
1199 significantly less complicated.
1202 // Return the line which contains "[our name]". If we're still not in the list,
1203 // add our line to it immediately after the last line of our parent group if we
1204 // have it or in the very beginning if we're the root group.
1205 wxFileConfigLineList
*wxFileConfigGroup::GetGroupLine()
1207 if ( m_pLine
== NULL
) {
1208 wxFileConfigGroup
*pParent
= Parent();
1210 // this group wasn't present in local config file, add it now
1211 if ( pParent
!= NULL
) {
1212 wxString strFullName
;
1213 strFullName
<< wxT("[")
1215 << FilterOutEntryName(GetFullName().c_str() + 1)
1217 m_pLine
= m_pConfig
->LineListInsert(strFullName
,
1218 pParent
->GetLastGroupLine());
1219 pParent
->SetLastGroup(this); // we're surely after all the others
1222 // we return NULL, so that LineListInsert() will insert us in the
1230 // Return the last line belonging to the subgroups of this group (after which
1231 // we can add a new subgroup), if we don't have any subgroups or entries our
1232 // last line is the group line (m_pLine) itself.
1233 wxFileConfigLineList
*wxFileConfigGroup::GetLastGroupLine()
1235 // if we have any subgroups, our last line is the last line of the last
1237 if ( m_pLastGroup
!= NULL
) {
1238 wxFileConfigLineList
*pLine
= m_pLastGroup
->GetLastGroupLine();
1240 wxASSERT( pLine
!= NULL
); // last group must have !NULL associated line
1244 // no subgroups, so the last line is the line of thelast entry (if any)
1245 return GetLastEntryLine();
1248 // return the last line belonging to the entries of this group (after which
1249 // we can add a new entry), if we don't have any entries we will add the new
1250 // one immediately after the group line itself.
1251 wxFileConfigLineList
*wxFileConfigGroup::GetLastEntryLine()
1253 if ( m_pLastEntry
!= NULL
) {
1254 wxFileConfigLineList
*pLine
= m_pLastEntry
->GetLine();
1256 wxASSERT( pLine
!= NULL
); // last entry must have !NULL associated line
1260 // no entries: insert after the group header
1261 return GetGroupLine();
1264 // ----------------------------------------------------------------------------
1266 // ----------------------------------------------------------------------------
1268 void wxFileConfigGroup::Rename(const wxString
& newName
)
1270 m_strName
= newName
;
1272 wxFileConfigLineList
*line
= GetGroupLine();
1273 wxString strFullName
;
1274 strFullName
<< wxT("[") << (GetFullName().c_str() + 1) << wxT("]"); // +1: no '/'
1275 line
->SetText(strFullName
);
1280 wxString
wxFileConfigGroup::GetFullName() const
1283 return Parent()->GetFullName() + wxCONFIG_PATH_SEPARATOR
+ Name();
1288 // ----------------------------------------------------------------------------
1290 // ----------------------------------------------------------------------------
1292 // use binary search because the array is sorted
1294 wxFileConfigGroup::FindEntry(const wxChar
*szName
) const
1298 hi
= m_aEntries
.Count();
1300 wxFileConfigEntry
*pEntry
;
1304 pEntry
= m_aEntries
[i
];
1306 #if wxCONFIG_CASE_SENSITIVE
1307 res
= wxStrcmp(pEntry
->Name(), szName
);
1309 res
= wxStricmp(pEntry
->Name(), szName
);
1324 wxFileConfigGroup::FindSubgroup(const wxChar
*szName
) const
1328 hi
= m_aSubgroups
.Count();
1330 wxFileConfigGroup
*pGroup
;
1334 pGroup
= m_aSubgroups
[i
];
1336 #if wxCONFIG_CASE_SENSITIVE
1337 res
= wxStrcmp(pGroup
->Name(), szName
);
1339 res
= wxStricmp(pGroup
->Name(), szName
);
1353 // ----------------------------------------------------------------------------
1354 // create a new item
1355 // ----------------------------------------------------------------------------
1357 // create a new entry and add it to the current group
1359 wxFileConfigGroup::AddEntry(const wxString
& strName
, int nLine
)
1361 wxASSERT( FindEntry(strName
) == NULL
);
1363 wxFileConfigEntry
*pEntry
= new wxFileConfigEntry(this, strName
, nLine
);
1364 m_aEntries
.Add(pEntry
);
1369 // create a new group and add it to the current group
1371 wxFileConfigGroup::AddSubgroup(const wxString
& strName
)
1373 wxASSERT( FindSubgroup(strName
) == NULL
);
1375 wxFileConfigGroup
*pGroup
= new wxFileConfigGroup(this, strName
, m_pConfig
);
1376 m_aSubgroups
.Add(pGroup
);
1381 // ----------------------------------------------------------------------------
1383 // ----------------------------------------------------------------------------
1386 The delete operations are _very_ slow if we delete the last item of this
1387 group (see comments before GetXXXLineXXX functions for more details),
1388 so it's much better to start with the first entry/group if we want to
1389 delete several of them.
1392 bool wxFileConfigGroup::DeleteSubgroupByName(const wxChar
*szName
)
1394 return DeleteSubgroup(FindSubgroup(szName
));
1397 // doesn't delete the subgroup itself, but does remove references to it from
1398 // all other data structures (and normally the returned pointer should be
1399 // deleted a.s.a.p. because there is nothing much to be done with it anyhow)
1400 bool wxFileConfigGroup::DeleteSubgroup(wxFileConfigGroup
*pGroup
)
1402 wxCHECK( pGroup
!= NULL
, FALSE
); // deleting non existing group?
1404 // delete all entries
1405 size_t nCount
= pGroup
->m_aEntries
.Count();
1406 for ( size_t nEntry
= 0; nEntry
< nCount
; nEntry
++ ) {
1407 wxFileConfigLineList
*pLine
= pGroup
->m_aEntries
[nEntry
]->GetLine();
1408 if ( pLine
!= NULL
)
1409 m_pConfig
->LineListRemove(pLine
);
1412 // and subgroups of this sungroup
1413 nCount
= pGroup
->m_aSubgroups
.Count();
1414 for ( size_t nGroup
= 0; nGroup
< nCount
; nGroup
++ ) {
1415 pGroup
->DeleteSubgroup(pGroup
->m_aSubgroups
[0]);
1418 wxFileConfigLineList
*pLine
= pGroup
->m_pLine
;
1419 if ( pLine
!= NULL
) {
1420 // notice that we may do this test inside the previous "if" because the
1421 // last entry's line is surely !NULL
1422 if ( pGroup
== m_pLastGroup
) {
1423 // our last entry is being deleted - find the last one which stays
1424 wxASSERT( m_pLine
!= NULL
); // we have a subgroup with !NULL pLine...
1426 // go back until we find a subgroup or reach the group's line
1427 wxFileConfigGroup
*pNewLast
= NULL
;
1428 size_t n
, nSubgroups
= m_aSubgroups
.Count();
1429 wxFileConfigLineList
*pl
;
1430 for ( pl
= pLine
->Prev(); pl
!= m_pLine
; pl
= pl
->Prev() ) {
1431 // is it our subgroup?
1432 for ( n
= 0; (pNewLast
== NULL
) && (n
< nSubgroups
); n
++ ) {
1433 // do _not_ call GetGroupLine! we don't want to add it to the local
1434 // file if it's not already there
1435 if ( m_aSubgroups
[n
]->m_pLine
== m_pLine
)
1436 pNewLast
= m_aSubgroups
[n
];
1439 if ( pNewLast
!= NULL
) // found?
1443 if ( pl
== m_pLine
) {
1444 wxASSERT( !pNewLast
); // how comes it has the same line as we?
1446 // we've reached the group line without finding any subgroups
1447 m_pLastGroup
= NULL
;
1450 m_pLastGroup
= pNewLast
;
1453 m_pConfig
->LineListRemove(pLine
);
1458 m_aSubgroups
.Remove(pGroup
);
1464 bool wxFileConfigGroup::DeleteEntry(const wxChar
*szName
)
1466 wxFileConfigEntry
*pEntry
= FindEntry(szName
);
1467 wxCHECK( pEntry
!= NULL
, FALSE
); // deleting non existing item?
1469 wxFileConfigLineList
*pLine
= pEntry
->GetLine();
1470 if ( pLine
!= NULL
) {
1471 // notice that we may do this test inside the previous "if" because the
1472 // last entry's line is surely !NULL
1473 if ( pEntry
== m_pLastEntry
) {
1474 // our last entry is being deleted - find the last one which stays
1475 wxASSERT( m_pLine
!= NULL
); // if we have an entry with !NULL pLine...
1477 // go back until we find another entry or reach the group's line
1478 wxFileConfigEntry
*pNewLast
= NULL
;
1479 size_t n
, nEntries
= m_aEntries
.Count();
1480 wxFileConfigLineList
*pl
;
1481 for ( pl
= pLine
->Prev(); pl
!= m_pLine
; pl
= pl
->Prev() ) {
1482 // is it our subgroup?
1483 for ( n
= 0; (pNewLast
== NULL
) && (n
< nEntries
); n
++ ) {
1484 if ( m_aEntries
[n
]->GetLine() == m_pLine
)
1485 pNewLast
= m_aEntries
[n
];
1488 if ( pNewLast
!= NULL
) // found?
1492 if ( pl
== m_pLine
) {
1493 wxASSERT( !pNewLast
); // how comes it has the same line as we?
1495 // we've reached the group line without finding any subgroups
1496 m_pLastEntry
= NULL
;
1499 m_pLastEntry
= pNewLast
;
1502 m_pConfig
->LineListRemove(pLine
);
1505 // we must be written back for the changes to be saved
1508 m_aEntries
.Remove(pEntry
);
1514 // ----------------------------------------------------------------------------
1516 // ----------------------------------------------------------------------------
1517 void wxFileConfigGroup::SetDirty()
1520 if ( Parent() != NULL
) // propagate upwards
1521 Parent()->SetDirty();
1524 // ============================================================================
1525 // wxFileConfig::wxFileConfigEntry
1526 // ============================================================================
1528 // ----------------------------------------------------------------------------
1530 // ----------------------------------------------------------------------------
1531 wxFileConfigEntry::wxFileConfigEntry(wxFileConfigGroup
*pParent
,
1532 const wxString
& strName
,
1534 : m_strName(strName
)
1536 wxASSERT( !strName
.IsEmpty() );
1538 m_pParent
= pParent
;
1543 m_bHasValue
= FALSE
;
1545 m_bImmutable
= strName
[0] == wxCONFIG_IMMUTABLE_PREFIX
;
1547 m_strName
.erase(0, 1); // remove first character
1550 // ----------------------------------------------------------------------------
1552 // ----------------------------------------------------------------------------
1554 void wxFileConfigEntry::SetLine(wxFileConfigLineList
*pLine
)
1556 if ( m_pLine
!= NULL
) {
1557 wxLogWarning(_("entry '%s' appears more than once in group '%s'"),
1558 Name().c_str(), m_pParent
->GetFullName().c_str());
1562 Group()->SetLastEntry(this);
1565 // second parameter is FALSE if we read the value from file and prevents the
1566 // entry from being marked as 'dirty'
1567 void wxFileConfigEntry::SetValue(const wxString
& strValue
, bool bUser
)
1569 if ( bUser
&& IsImmutable() ) {
1570 wxLogWarning(_("attempt to change immutable key '%s' ignored."),
1575 // do nothing if it's the same value: but don't test for it if m_bHasValue
1576 // hadn't been set yet or we'd never write empty values to the file
1577 if ( m_bHasValue
&& strValue
== m_strValue
)
1581 m_strValue
= strValue
;
1584 wxString strValFiltered
;
1585 if ( Group()->Config()->GetStyle() & wxCONFIG_USE_NO_ESCAPE_CHARACTERS
) {
1586 strValFiltered
= strValue
;
1589 strValFiltered
= FilterOutValue(strValue
);
1593 strLine
<< FilterOutEntryName(m_strName
) << wxT('=') << strValFiltered
;
1595 if ( m_pLine
!= NULL
) {
1596 // entry was read from the local config file, just modify the line
1597 m_pLine
->SetText(strLine
);
1600 // add a new line to the file
1601 wxASSERT( m_nLine
== wxNOT_FOUND
); // consistency check
1603 m_pLine
= Group()->Config()->LineListInsert(strLine
,
1604 Group()->GetLastEntryLine());
1605 Group()->SetLastEntry(this);
1612 void wxFileConfigEntry::SetDirty()
1615 Group()->SetDirty();
1618 // ============================================================================
1620 // ============================================================================
1622 // ----------------------------------------------------------------------------
1623 // compare functions for array sorting
1624 // ----------------------------------------------------------------------------
1626 int CompareEntries(wxFileConfigEntry
*p1
, wxFileConfigEntry
*p2
)
1628 #if wxCONFIG_CASE_SENSITIVE
1629 return wxStrcmp(p1
->Name(), p2
->Name());
1631 return wxStricmp(p1
->Name(), p2
->Name());
1635 int CompareGroups(wxFileConfigGroup
*p1
, wxFileConfigGroup
*p2
)
1637 #if wxCONFIG_CASE_SENSITIVE
1638 return wxStrcmp(p1
->Name(), p2
->Name());
1640 return wxStricmp(p1
->Name(), p2
->Name());
1644 // ----------------------------------------------------------------------------
1646 // ----------------------------------------------------------------------------
1648 // undo FilterOutValue
1649 static wxString
FilterInValue(const wxString
& str
)
1652 strResult
.Alloc(str
.Len());
1654 bool bQuoted
= !str
.IsEmpty() && str
[0] == '"';
1656 for ( size_t n
= bQuoted
? 1 : 0; n
< str
.Len(); n
++ ) {
1657 if ( str
[n
] == wxT('\\') ) {
1658 switch ( str
[++n
] ) {
1660 strResult
+= wxT('\n');
1664 strResult
+= wxT('\r');
1668 strResult
+= wxT('\t');
1672 strResult
+= wxT('\\');
1676 strResult
+= wxT('"');
1681 if ( str
[n
] != wxT('"') || !bQuoted
)
1682 strResult
+= str
[n
];
1683 else if ( n
!= str
.Len() - 1 ) {
1684 wxLogWarning(_("unexpected \" at position %d in '%s'."),
1687 //else: it's the last quote of a quoted string, ok
1694 // quote the string before writing it to file
1695 static wxString
FilterOutValue(const wxString
& str
)
1701 strResult
.Alloc(str
.Len());
1703 // quoting is necessary to preserve spaces in the beginning of the string
1704 bool bQuote
= wxIsspace(str
[0]) || str
[0] == wxT('"');
1707 strResult
+= wxT('"');
1710 for ( size_t n
= 0; n
< str
.Len(); n
++ ) {
1733 //else: fall through
1736 strResult
+= str
[n
];
1737 continue; // nothing special to do
1740 // we get here only for special characters
1741 strResult
<< wxT('\\') << c
;
1745 strResult
+= wxT('"');
1750 // undo FilterOutEntryName
1751 static wxString
FilterInEntryName(const wxString
& str
)
1754 strResult
.Alloc(str
.Len());
1756 for ( const wxChar
*pc
= str
.c_str(); *pc
!= '\0'; pc
++ ) {
1757 if ( *pc
== wxT('\\') )
1766 // sanitize entry or group name: insert '\\' before any special characters
1767 static wxString
FilterOutEntryName(const wxString
& str
)
1770 strResult
.Alloc(str
.Len());
1772 for ( const wxChar
*pc
= str
.c_str(); *pc
!= wxT('\0'); pc
++ ) {
1775 // we explicitly allow some of "safe" chars and 8bit ASCII characters
1776 // which will probably never have special meaning
1777 // NB: note that wxCONFIG_IMMUTABLE_PREFIX and wxCONFIG_PATH_SEPARATOR
1778 // should *not* be quoted
1779 if ( !wxIsalnum(c
) && !wxStrchr(wxT("@_/-!.*%"), c
) && ((c
& 0x80) == 0) )
1780 strResult
+= wxT('\\');
1788 // we can't put ?: in the ctor initializer list because it confuses some
1789 // broken compilers (Borland C++)
1790 static wxString
GetAppName(const wxString
& appName
)
1792 if ( !appName
&& wxTheApp
)
1793 return wxTheApp
->GetAppName();
1798 #endif // wxUSE_CONFIG