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 licence
11 ///////////////////////////////////////////////////////////////////////////////
13 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
14 #pragma implementation "fileconf.h"
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
21 #include "wx/wxprec.h"
27 #if wxUSE_CONFIG && wxUSE_FILECONFIG
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"
42 #include "wx/filefn.h"
45 #include "wx/stream.h"
46 #endif // wxUSE_STREAMS
48 #include "wx/utils.h" // for wxGetHomeDir
50 #if defined(__WXMAC__)
51 #include "wx/mac/private.h" // includes mac headers
52 #include "wx/filename.h" // for MacSetTypeAndCreator
55 #if defined(__WXMSW__)
56 #include "wx/msw/private.h"
66 // ----------------------------------------------------------------------------
68 // ----------------------------------------------------------------------------
69 #define CONST_CAST ((wxFileConfig *)this)->
71 // ----------------------------------------------------------------------------
73 // ----------------------------------------------------------------------------
79 #define FILECONF_TRACE_MASK _T("fileconf")
81 // ----------------------------------------------------------------------------
82 // global functions declarations
83 // ----------------------------------------------------------------------------
85 // compare functions for sorting the arrays
86 static int LINKAGEMODE
CompareEntries(wxFileConfigEntry
*p1
, wxFileConfigEntry
*p2
);
87 static int LINKAGEMODE
CompareGroups(wxFileConfigGroup
*p1
, wxFileConfigGroup
*p2
);
90 static wxString
FilterInValue(const wxString
& str
);
91 static wxString
FilterOutValue(const wxString
& str
);
93 static wxString
FilterInEntryName(const wxString
& str
);
94 static wxString
FilterOutEntryName(const wxString
& str
);
96 // get the name to use in wxFileConfig ctor
97 static wxString
GetAppName(const wxString
& appname
);
99 // ============================================================================
101 // ============================================================================
103 // ----------------------------------------------------------------------------
104 // "template" array types
105 // ----------------------------------------------------------------------------
107 #ifdef WXMAKINGDLL_BASE
108 WX_DEFINE_SORTED_USER_EXPORTED_ARRAY(wxFileConfigEntry
*, ArrayEntries
,
110 WX_DEFINE_SORTED_USER_EXPORTED_ARRAY(wxFileConfigGroup
*, ArrayGroups
,
113 WX_DEFINE_SORTED_ARRAY(wxFileConfigEntry
*, ArrayEntries
);
114 WX_DEFINE_SORTED_ARRAY(wxFileConfigGroup
*, ArrayGroups
);
117 // ----------------------------------------------------------------------------
118 // wxFileConfigLineList
119 // ----------------------------------------------------------------------------
121 // we store all lines of the local config file as a linked list in memory
122 class wxFileConfigLineList
125 void SetNext(wxFileConfigLineList
*pNext
) { m_pNext
= pNext
; }
126 void SetPrev(wxFileConfigLineList
*pPrev
) { m_pPrev
= pPrev
; }
129 wxFileConfigLineList(const wxString
& str
,
130 wxFileConfigLineList
*pNext
= NULL
) : m_strLine(str
)
131 { SetNext(pNext
); SetPrev(NULL
); }
133 // next/prev nodes in the linked list
134 wxFileConfigLineList
*Next() const { return m_pNext
; }
135 wxFileConfigLineList
*Prev() const { return m_pPrev
; }
137 // get/change lines text
138 void SetText(const wxString
& str
) { m_strLine
= str
; }
139 const wxString
& Text() const { return m_strLine
; }
142 wxString m_strLine
; // line contents
143 wxFileConfigLineList
*m_pNext
, // next node
144 *m_pPrev
; // previous one
146 DECLARE_NO_COPY_CLASS(wxFileConfigLineList
)
149 // ----------------------------------------------------------------------------
150 // wxFileConfigEntry: a name/value pair
151 // ----------------------------------------------------------------------------
153 class wxFileConfigEntry
156 wxFileConfigGroup
*m_pParent
; // group that contains us
158 wxString m_strName
, // entry name
160 bool m_bImmutable
:1, // can be overriden locally?
161 m_bHasValue
:1; // set after first call to SetValue()
163 int m_nLine
; // used if m_pLine == NULL only
165 // pointer to our line in the linked list or NULL if it was found in global
166 // file (which we don't modify)
167 wxFileConfigLineList
*m_pLine
;
170 wxFileConfigEntry(wxFileConfigGroup
*pParent
,
171 const wxString
& strName
, int nLine
);
174 const wxString
& Name() const { return m_strName
; }
175 const wxString
& Value() const { return m_strValue
; }
176 wxFileConfigGroup
*Group() const { return m_pParent
; }
177 bool IsImmutable() const { return m_bImmutable
; }
178 bool IsLocal() const { return m_pLine
!= 0; }
179 int Line() const { return m_nLine
; }
180 wxFileConfigLineList
*
181 GetLine() const { return m_pLine
; }
183 // modify entry attributes
184 void SetValue(const wxString
& strValue
, bool bUser
= true);
185 void SetLine(wxFileConfigLineList
*pLine
);
187 DECLARE_NO_COPY_CLASS(wxFileConfigEntry
)
190 // ----------------------------------------------------------------------------
191 // wxFileConfigGroup: container of entries and other groups
192 // ----------------------------------------------------------------------------
194 class wxFileConfigGroup
197 wxFileConfig
*m_pConfig
; // config object we belong to
198 wxFileConfigGroup
*m_pParent
; // parent group (NULL for root group)
199 ArrayEntries m_aEntries
; // entries in this group
200 ArrayGroups m_aSubgroups
; // subgroups
201 wxString m_strName
; // group's name
202 wxFileConfigLineList
*m_pLine
; // pointer to our line in the linked list
203 wxFileConfigEntry
*m_pLastEntry
; // last entry/subgroup of this group in the
204 wxFileConfigGroup
*m_pLastGroup
; // local file (we insert new ones after it)
206 // DeleteSubgroupByName helper
207 bool DeleteSubgroup(wxFileConfigGroup
*pGroup
);
210 void UpdateGroupAndSubgroupsLines();
214 wxFileConfigGroup(wxFileConfigGroup
*pParent
, const wxString
& strName
, wxFileConfig
*);
216 // dtor deletes all entries and subgroups also
217 ~wxFileConfigGroup();
220 const wxString
& Name() const { return m_strName
; }
221 wxFileConfigGroup
*Parent() const { return m_pParent
; }
222 wxFileConfig
*Config() const { return m_pConfig
; }
224 const ArrayEntries
& Entries() const { return m_aEntries
; }
225 const ArrayGroups
& Groups() const { return m_aSubgroups
; }
226 bool IsEmpty() const { return Entries().IsEmpty() && Groups().IsEmpty(); }
228 // find entry/subgroup (NULL if not found)
229 wxFileConfigGroup
*FindSubgroup(const wxChar
*szName
) const;
230 wxFileConfigEntry
*FindEntry (const wxChar
*szName
) const;
232 // delete entry/subgroup, return false if doesn't exist
233 bool DeleteSubgroupByName(const wxChar
*szName
);
234 bool DeleteEntry(const wxChar
*szName
);
236 // create new entry/subgroup returning pointer to newly created element
237 wxFileConfigGroup
*AddSubgroup(const wxString
& strName
);
238 wxFileConfigEntry
*AddEntry (const wxString
& strName
, int nLine
= wxNOT_FOUND
);
240 void SetLine(wxFileConfigLineList
*pLine
);
242 // rename: no checks are done to ensure that the name is unique!
243 void Rename(const wxString
& newName
);
246 wxString
GetFullName() const;
248 // get the last line belonging to an entry/subgroup of this group
249 wxFileConfigLineList
*GetGroupLine(); // line which contains [group]
250 wxFileConfigLineList
*GetLastEntryLine(); // after which our subgroups start
251 wxFileConfigLineList
*GetLastGroupLine(); // after which the next group starts
253 // called by entries/subgroups when they're created/deleted
254 void SetLastEntry(wxFileConfigEntry
*pEntry
);
255 void SetLastGroup(wxFileConfigGroup
*pGroup
)
256 { m_pLastGroup
= pGroup
; }
258 DECLARE_NO_COPY_CLASS(wxFileConfigGroup
)
261 // ============================================================================
263 // ============================================================================
265 // ----------------------------------------------------------------------------
267 // ----------------------------------------------------------------------------
268 wxString
wxFileConfig::GetGlobalDir()
272 #ifdef __VMS__ // Note if __VMS is defined __UNIX is also defined
273 strDir
= wxT("sys$manager:");
274 #elif defined(__WXMAC__)
275 strDir
= wxMacFindFolder( (short) kOnSystemDisk
, kPreferencesFolderType
, kDontCreateFolder
) ;
276 #elif defined( __UNIX__ )
277 strDir
= wxT("/etc/");
278 #elif defined(__WXPM__)
279 ULONG aulSysInfo
[QSV_MAX
] = {0};
283 rc
= DosQuerySysInfo( 1L, QSV_MAX
, (PVOID
)aulSysInfo
, sizeof(ULONG
)*QSV_MAX
);
286 drive
= aulSysInfo
[QSV_BOOT_DRIVE
- 1];
287 strDir
.Printf(wxT("%c:\\OS2\\"), 'A'+drive
-1);
289 #elif defined(__WXSTUBS__)
290 wxASSERT_MSG( false, wxT("TODO") ) ;
291 #elif defined(__DOS__)
292 // There's no such thing as global cfg dir in MS-DOS, let's return
293 // current directory (FIXME_MGL?)
295 #elif defined(__WXWINCE__)
296 strDir
= wxT("\\Windows\\");
299 wxChar szWinDir
[MAX_PATH
];
300 ::GetWindowsDirectory(szWinDir
, MAX_PATH
);
304 #endif // Unix/Windows
309 wxString
wxFileConfig::GetLocalDir()
313 #if defined(__WXMAC__) || defined(__DOS__)
314 // no local dir concept on Mac OS 9 or MS-DOS
315 return GetGlobalDir() ;
317 wxGetHomeDir(&strDir
);
321 if (strDir
.Last() != wxT(']'))
323 if (strDir
.Last() != wxT('/')) strDir
<< wxT('/');
325 if (strDir
.Last() != wxT('\\')) strDir
<< wxT('\\');
332 wxString
wxFileConfig::GetGlobalFileName(const wxChar
*szFile
)
334 wxString str
= GetGlobalDir();
337 if ( wxStrchr(szFile
, wxT('.')) == NULL
)
338 #if defined( __WXMAC__ )
339 str
<< wxT(" Preferences") ;
340 #elif defined( __UNIX__ )
349 wxString
wxFileConfig::GetLocalFileName(const wxChar
*szFile
)
352 // On VMS I saw the problem that the home directory was appended
353 // twice for the configuration file. Does that also happen for
355 wxString str
= wxT( '.' );
357 wxString str
= GetLocalDir();
360 #if defined( __UNIX__ ) && !defined( __VMS ) && !defined( __WXMAC__ )
366 #if defined(__WINDOWS__) || defined(__DOS__)
367 if ( wxStrchr(szFile
, wxT('.')) == NULL
)
372 str
<< wxT(" Preferences") ;
378 // ----------------------------------------------------------------------------
380 // ----------------------------------------------------------------------------
382 void wxFileConfig::Init()
385 m_pRootGroup
= new wxFileConfigGroup(NULL
, wxEmptyString
, this);
390 // It's not an error if (one of the) file(s) doesn't exist.
392 // parse the global file
393 if ( !m_strGlobalFile
.empty() && wxFile::Exists(m_strGlobalFile
) )
395 wxTextFile
fileGlobal(m_strGlobalFile
);
397 if ( fileGlobal
.Open(m_conv
/*ignored in ANSI build*/) )
399 Parse(fileGlobal
, false /* global */);
404 wxLogWarning(_("can't open global configuration file '%s'."), m_strGlobalFile
.c_str());
408 // parse the local file
409 if ( !m_strLocalFile
.empty() && wxFile::Exists(m_strLocalFile
) )
411 wxTextFile
fileLocal(m_strLocalFile
);
412 if ( fileLocal
.Open(m_conv
/*ignored in ANSI build*/) )
414 Parse(fileLocal
, true /* local */);
419 wxLogWarning(_("can't open user configuration file '%s'."), m_strLocalFile
.c_str() );
426 // constructor supports creation of wxFileConfig objects of any type
427 wxFileConfig::wxFileConfig(const wxString
& appName
, const wxString
& vendorName
,
428 const wxString
& strLocal
, const wxString
& strGlobal
,
429 long style
, wxMBConv
& conv
)
430 : wxConfigBase(::GetAppName(appName
), vendorName
,
433 m_strLocalFile(strLocal
), m_strGlobalFile(strGlobal
),
436 // Make up names for files if empty
437 if ( m_strLocalFile
.empty() && (style
& wxCONFIG_USE_LOCAL_FILE
) )
438 m_strLocalFile
= GetLocalFileName(GetAppName());
440 if ( m_strGlobalFile
.empty() && (style
& wxCONFIG_USE_GLOBAL_FILE
) )
441 m_strGlobalFile
= GetGlobalFileName(GetAppName());
443 // Check if styles are not supplied, but filenames are, in which case
444 // add the correct styles.
445 if ( !m_strLocalFile
.empty() )
446 SetStyle(GetStyle() | wxCONFIG_USE_LOCAL_FILE
);
448 if ( !m_strGlobalFile
.empty() )
449 SetStyle(GetStyle() | wxCONFIG_USE_GLOBAL_FILE
);
451 // if the path is not absolute, prepend the standard directory to it
452 // UNLESS wxCONFIG_USE_RELATIVE_PATH style is set
453 if ( !(style
& wxCONFIG_USE_RELATIVE_PATH
) )
455 if ( !m_strLocalFile
.empty() && !wxIsAbsolutePath(m_strLocalFile
) )
457 wxString strLocal
= m_strLocalFile
;
458 m_strLocalFile
= GetLocalDir();
459 m_strLocalFile
<< strLocal
;
462 if ( !m_strGlobalFile
.empty() && !wxIsAbsolutePath(m_strGlobalFile
) )
464 wxString strGlobal
= m_strGlobalFile
;
465 m_strGlobalFile
= GetGlobalDir();
466 m_strGlobalFile
<< strGlobal
;
477 wxFileConfig::wxFileConfig(wxInputStream
&inStream
, wxMBConv
& conv
)
480 // always local_file when this constructor is called (?)
481 SetStyle(GetStyle() | wxCONFIG_USE_LOCAL_FILE
);
484 m_pRootGroup
= new wxFileConfigGroup(NULL
, wxEmptyString
, this);
489 // translate everything to the current (platform-dependent) line
490 // termination character
498 inStream
.Read(buf
, WXSIZEOF(buf
));
500 const wxStreamError err
= inStream
.GetLastError();
502 if ( err
!= wxSTREAM_NO_ERROR
&& err
!= wxSTREAM_EOF
)
504 wxLogError(_("Error reading config options."));
508 // FIXME: this is broken because if we have part of multibyte
509 // character in the buffer (and another part hasn't been
510 // read yet) we're going to lose data because of conversion
512 buf
[inStream
.LastRead()] = '\0';
513 strTmp
+= conv
.cMB2WX(buf
);
515 while ( !inStream
.Eof() );
517 strTrans
= wxTextBuffer::Translate(strTmp
);
520 wxMemoryText memText
;
522 // Now we can add the text to the memory text. To do this we extract line
523 // by line from the translated string, until we've reached the end.
525 // VZ: all this is horribly inefficient, we should do the translation on
526 // the fly in one pass saving both memory and time (TODO)
528 const wxChar
*pEOL
= wxTextBuffer::GetEOL(wxTextBuffer::typeDefault
);
529 const size_t EOLLen
= wxStrlen(pEOL
);
531 int posLineStart
= strTrans
.Find(pEOL
);
532 while ( posLineStart
!= -1 )
534 wxString
line(strTrans
.Left(posLineStart
));
536 memText
.AddLine(line
);
538 strTrans
= strTrans
.Mid(posLineStart
+ EOLLen
);
540 posLineStart
= strTrans
.Find(pEOL
);
543 // also add whatever we have left in the translated string.
544 if ( !strTrans
.empty() )
545 memText
.AddLine(strTrans
);
547 // Finally we can parse it all.
548 Parse(memText
, true /* local */);
554 #endif // wxUSE_STREAMS
556 void wxFileConfig::CleanUp()
560 wxFileConfigLineList
*pCur
= m_linesHead
;
561 while ( pCur
!= NULL
) {
562 wxFileConfigLineList
*pNext
= pCur
->Next();
568 wxFileConfig::~wxFileConfig()
575 // ----------------------------------------------------------------------------
576 // parse a config file
577 // ----------------------------------------------------------------------------
579 void wxFileConfig::Parse(wxTextBuffer
& buffer
, bool bLocal
)
581 const wxChar
*pStart
;
585 size_t nLineCount
= buffer
.GetLineCount();
587 for ( size_t n
= 0; n
< nLineCount
; n
++ )
591 // add the line to linked list
594 LineListAppend(strLine
);
596 // let the root group have its start line as well
599 m_pCurrentGroup
->SetLine(m_linesTail
);
604 // skip leading spaces
605 for ( pStart
= strLine
; wxIsspace(*pStart
); pStart
++ )
608 // skip blank/comment lines
609 if ( *pStart
== wxT('\0')|| *pStart
== wxT(';') || *pStart
== wxT('#') )
612 if ( *pStart
== wxT('[') ) { // a new group
615 while ( *++pEnd
!= wxT(']') ) {
616 if ( *pEnd
== wxT('\\') ) {
617 // the next char is escaped, so skip it even if it is ']'
621 if ( *pEnd
== wxT('\n') || *pEnd
== wxT('\0') ) {
622 // we reached the end of line, break out of the loop
627 if ( *pEnd
!= wxT(']') ) {
628 wxLogError(_("file '%s': unexpected character %c at line %d."),
629 buffer
.GetName(), *pEnd
, n
+ 1);
630 continue; // skip this line
633 // group name here is always considered as abs path
636 strGroup
<< wxCONFIG_PATH_SEPARATOR
637 << FilterInEntryName(wxString(pStart
, pEnd
- pStart
));
639 // will create it if doesn't yet exist
644 if ( m_pCurrentGroup
->Parent() )
645 m_pCurrentGroup
->Parent()->SetLastGroup(m_pCurrentGroup
);
646 m_pCurrentGroup
->SetLine(m_linesTail
);
649 // check that there is nothing except comments left on this line
651 while ( *++pEnd
!= wxT('\0') && bCont
) {
660 // ignore whitespace ('\n' impossible here)
664 wxLogWarning(_("file '%s', line %d: '%s' ignored after group header."),
665 buffer
.GetName(), n
+ 1, pEnd
);
671 const wxChar
*pEnd
= pStart
;
672 while ( *pEnd
&& *pEnd
!= wxT('=') /* && !wxIsspace(*pEnd)*/ ) {
673 if ( *pEnd
== wxT('\\') ) {
674 // next character may be space or not - still take it because it's
675 // quoted (unless there is nothing)
678 // the error message will be given below anyhow
686 wxString
strKey(FilterInEntryName(wxString(pStart
, pEnd
).Trim()));
689 while ( wxIsspace(*pEnd
) )
692 if ( *pEnd
++ != wxT('=') ) {
693 wxLogError(_("file '%s', line %d: '=' expected."),
694 buffer
.GetName(), n
+ 1);
697 wxFileConfigEntry
*pEntry
= m_pCurrentGroup
->FindEntry(strKey
);
699 if ( pEntry
== NULL
) {
701 pEntry
= m_pCurrentGroup
->AddEntry(strKey
, n
);
704 if ( bLocal
&& pEntry
->IsImmutable() ) {
705 // immutable keys can't be changed by user
706 wxLogWarning(_("file '%s', line %d: value for immutable key '%s' ignored."),
707 buffer
.GetName(), n
+ 1, strKey
.c_str());
710 // the condition below catches the cases (a) and (b) but not (c):
711 // (a) global key found second time in global file
712 // (b) key found second (or more) time in local file
713 // (c) key from global file now found in local one
714 // which is exactly what we want.
715 else if ( !bLocal
|| pEntry
->IsLocal() ) {
716 wxLogWarning(_("file '%s', line %d: key '%s' was first found at line %d."),
717 buffer
.GetName(), n
+ 1, strKey
.c_str(), pEntry
->Line());
723 pEntry
->SetLine(m_linesTail
);
726 while ( wxIsspace(*pEnd
) )
729 wxString value
= pEnd
;
730 if ( !(GetStyle() & wxCONFIG_USE_NO_ESCAPE_CHARACTERS
) )
731 value
= FilterInValue(value
);
733 pEntry
->SetValue(value
, false);
739 // ----------------------------------------------------------------------------
741 // ----------------------------------------------------------------------------
743 void wxFileConfig::SetRootPath()
746 m_pCurrentGroup
= m_pRootGroup
;
749 void wxFileConfig::SetPath(const wxString
& strPath
)
751 wxArrayString aParts
;
753 if ( strPath
.empty() ) {
758 if ( strPath
[0] == wxCONFIG_PATH_SEPARATOR
) {
760 wxSplitPath(aParts
, strPath
);
763 // relative path, combine with current one
764 wxString strFullPath
= m_strPath
;
765 strFullPath
<< wxCONFIG_PATH_SEPARATOR
<< strPath
;
766 wxSplitPath(aParts
, strFullPath
);
769 // change current group
771 m_pCurrentGroup
= m_pRootGroup
;
772 for ( n
= 0; n
< aParts
.Count(); n
++ ) {
773 wxFileConfigGroup
*pNextGroup
= m_pCurrentGroup
->FindSubgroup(aParts
[n
]);
774 if ( pNextGroup
== NULL
)
775 pNextGroup
= m_pCurrentGroup
->AddSubgroup(aParts
[n
]);
776 m_pCurrentGroup
= pNextGroup
;
779 // recombine path parts in one variable
781 for ( n
= 0; n
< aParts
.Count(); n
++ ) {
782 m_strPath
<< wxCONFIG_PATH_SEPARATOR
<< aParts
[n
];
786 // ----------------------------------------------------------------------------
788 // ----------------------------------------------------------------------------
790 bool wxFileConfig::GetFirstGroup(wxString
& str
, long& lIndex
) const
793 return GetNextGroup(str
, lIndex
);
796 bool wxFileConfig::GetNextGroup (wxString
& str
, long& lIndex
) const
798 if ( size_t(lIndex
) < m_pCurrentGroup
->Groups().Count() ) {
799 str
= m_pCurrentGroup
->Groups()[(size_t)lIndex
++]->Name();
806 bool wxFileConfig::GetFirstEntry(wxString
& str
, long& lIndex
) const
809 return GetNextEntry(str
, lIndex
);
812 bool wxFileConfig::GetNextEntry (wxString
& str
, long& lIndex
) const
814 if ( size_t(lIndex
) < m_pCurrentGroup
->Entries().Count() ) {
815 str
= m_pCurrentGroup
->Entries()[(size_t)lIndex
++]->Name();
822 size_t wxFileConfig::GetNumberOfEntries(bool bRecursive
) const
824 size_t n
= m_pCurrentGroup
->Entries().Count();
826 wxFileConfigGroup
*pOldCurrentGroup
= m_pCurrentGroup
;
827 size_t nSubgroups
= m_pCurrentGroup
->Groups().Count();
828 for ( size_t nGroup
= 0; nGroup
< nSubgroups
; nGroup
++ ) {
829 CONST_CAST m_pCurrentGroup
= m_pCurrentGroup
->Groups()[nGroup
];
830 n
+= GetNumberOfEntries(true);
831 CONST_CAST m_pCurrentGroup
= pOldCurrentGroup
;
838 size_t wxFileConfig::GetNumberOfGroups(bool bRecursive
) const
840 size_t n
= m_pCurrentGroup
->Groups().Count();
842 wxFileConfigGroup
*pOldCurrentGroup
= m_pCurrentGroup
;
843 size_t nSubgroups
= m_pCurrentGroup
->Groups().Count();
844 for ( size_t nGroup
= 0; nGroup
< nSubgroups
; nGroup
++ ) {
845 CONST_CAST m_pCurrentGroup
= m_pCurrentGroup
->Groups()[nGroup
];
846 n
+= GetNumberOfGroups(true);
847 CONST_CAST m_pCurrentGroup
= pOldCurrentGroup
;
854 // ----------------------------------------------------------------------------
855 // tests for existence
856 // ----------------------------------------------------------------------------
858 bool wxFileConfig::HasGroup(const wxString
& strName
) const
860 wxConfigPathChanger
path(this, strName
);
862 wxFileConfigGroup
*pGroup
= m_pCurrentGroup
->FindSubgroup(path
.Name());
863 return pGroup
!= NULL
;
866 bool wxFileConfig::HasEntry(const wxString
& strName
) const
868 wxConfigPathChanger
path(this, strName
);
870 wxFileConfigEntry
*pEntry
= m_pCurrentGroup
->FindEntry(path
.Name());
871 return pEntry
!= NULL
;
874 // ----------------------------------------------------------------------------
876 // ----------------------------------------------------------------------------
878 bool wxFileConfig::DoReadString(const wxString
& key
, wxString
* pStr
) const
880 wxConfigPathChanger
path(this, key
);
882 wxFileConfigEntry
*pEntry
= m_pCurrentGroup
->FindEntry(path
.Name());
883 if (pEntry
== NULL
) {
887 *pStr
= pEntry
->Value();
892 bool wxFileConfig::DoReadLong(const wxString
& key
, long *pl
) const
895 if ( !Read(key
, &str
) )
898 // extra spaces shouldn't prevent us from reading numeric values
901 return str
.ToLong(pl
);
904 bool wxFileConfig::DoWriteString(const wxString
& key
, const wxString
& szValue
)
906 wxConfigPathChanger
path(this, key
);
907 wxString strName
= path
.Name();
909 wxLogTrace( FILECONF_TRACE_MASK
,
910 _T(" Writing String '%s' = '%s' to Group '%s'"),
915 if ( strName
.empty() )
917 // setting the value of a group is an error
919 wxASSERT_MSG( szValue
.empty(), wxT("can't set value of a group!") );
921 // ... except if it's empty in which case it's a way to force it's creation
923 wxLogTrace( FILECONF_TRACE_MASK
,
924 _T(" Creating group %s"),
925 m_pCurrentGroup
->Name().c_str() );
929 // this will add a line for this group if it didn't have it before
931 (void)m_pCurrentGroup
->GetGroupLine();
935 // writing an entry check that the name is reasonable
936 if ( strName
[0u] == wxCONFIG_IMMUTABLE_PREFIX
)
938 wxLogError( _("Config entry name cannot start with '%c'."),
939 wxCONFIG_IMMUTABLE_PREFIX
);
943 wxFileConfigEntry
*pEntry
= m_pCurrentGroup
->FindEntry(strName
);
947 wxLogTrace( FILECONF_TRACE_MASK
,
948 _T(" Adding Entry %s"),
950 pEntry
= m_pCurrentGroup
->AddEntry(strName
);
953 wxLogTrace( FILECONF_TRACE_MASK
,
954 _T(" Setting value %s"),
956 pEntry
->SetValue(szValue
);
964 bool wxFileConfig::DoWriteLong(const wxString
& key
, long lValue
)
966 return Write(key
, wxString::Format(_T("%ld"), lValue
));
969 bool wxFileConfig::Flush(bool /* bCurrentOnly */)
971 if ( !IsDirty() || !m_strLocalFile
)
974 // set the umask if needed
975 wxCHANGE_UMASK(m_umask
);
977 wxTempFile
file(m_strLocalFile
);
979 if ( !file
.IsOpened() )
981 wxLogError(_("can't open user configuration file."));
985 // write all strings to file
986 for ( wxFileConfigLineList
*p
= m_linesHead
; p
!= NULL
; p
= p
->Next() )
988 wxString line
= p
->Text();
989 line
+= wxTextFile::GetEOL();
990 if ( !file
.Write(line
, m_conv
) )
992 wxLogError(_("can't write user configuration file."));
997 if ( !file
.Commit() )
999 wxLogError(_("Failed to update user configuration file."));
1006 #if defined(__WXMAC__)
1007 wxFileName(m_strLocalFile
).MacSetTypeAndCreator('TEXT', 'ttxt');
1015 bool wxFileConfig::Save(wxOutputStream
& os
, wxMBConv
& conv
)
1017 // save unconditionally, even if not dirty
1018 for ( wxFileConfigLineList
*p
= m_linesHead
; p
!= NULL
; p
= p
->Next() )
1020 wxString line
= p
->Text();
1021 line
+= wxTextFile::GetEOL();
1023 wxCharBuffer
buf(line
.mb_str(conv
));
1024 if ( !os
.Write(buf
, strlen(buf
)) )
1026 wxLogError(_("Error saving user configuration data."));
1037 #endif // wxUSE_STREAMS
1039 // ----------------------------------------------------------------------------
1040 // renaming groups/entries
1041 // ----------------------------------------------------------------------------
1043 bool wxFileConfig::RenameEntry(const wxString
& oldName
,
1044 const wxString
& newName
)
1046 wxASSERT_MSG( !wxStrchr(oldName
, wxCONFIG_PATH_SEPARATOR
),
1047 _T("RenameEntry(): paths are not supported") );
1049 // check that the entry exists
1050 wxFileConfigEntry
*oldEntry
= m_pCurrentGroup
->FindEntry(oldName
);
1054 // check that the new entry doesn't already exist
1055 if ( m_pCurrentGroup
->FindEntry(newName
) )
1058 // delete the old entry, create the new one
1059 wxString value
= oldEntry
->Value();
1060 if ( !m_pCurrentGroup
->DeleteEntry(oldName
) )
1065 wxFileConfigEntry
*newEntry
= m_pCurrentGroup
->AddEntry(newName
);
1066 newEntry
->SetValue(value
);
1071 bool wxFileConfig::RenameGroup(const wxString
& oldName
,
1072 const wxString
& newName
)
1074 // check that the group exists
1075 wxFileConfigGroup
*group
= m_pCurrentGroup
->FindSubgroup(oldName
);
1079 // check that the new group doesn't already exist
1080 if ( m_pCurrentGroup
->FindSubgroup(newName
) )
1083 group
->Rename(newName
);
1090 // ----------------------------------------------------------------------------
1091 // delete groups/entries
1092 // ----------------------------------------------------------------------------
1094 bool wxFileConfig::DeleteEntry(const wxString
& key
, bool bGroupIfEmptyAlso
)
1096 wxConfigPathChanger
path(this, key
);
1098 if ( !m_pCurrentGroup
->DeleteEntry(path
.Name()) )
1101 if ( bGroupIfEmptyAlso
&& m_pCurrentGroup
->IsEmpty() ) {
1102 if ( m_pCurrentGroup
!= m_pRootGroup
) {
1103 wxFileConfigGroup
*pGroup
= m_pCurrentGroup
;
1104 SetPath(wxT("..")); // changes m_pCurrentGroup!
1105 if ( m_pCurrentGroup
->DeleteSubgroupByName(pGroup
->Name()) )
1108 //else: never delete the root group
1114 bool wxFileConfig::DeleteGroup(const wxString
& key
)
1116 wxConfigPathChanger
path(this, key
);
1118 if ( !m_pCurrentGroup
->DeleteSubgroupByName(path
.Name()) )
1126 bool wxFileConfig::DeleteAll()
1130 if ( !m_strLocalFile
.empty() )
1132 if ( wxFile::Exists(m_strLocalFile
) && wxRemove(m_strLocalFile
) == -1 )
1134 wxLogSysError(_("can't delete user configuration file '%s'"),
1135 m_strLocalFile
.c_str());
1140 m_strGlobalFile
= wxEmptyString
;
1148 // ----------------------------------------------------------------------------
1149 // linked list functions
1150 // ----------------------------------------------------------------------------
1152 // append a new line to the end of the list
1154 wxFileConfigLineList
*wxFileConfig::LineListAppend(const wxString
& str
)
1156 wxLogTrace( FILECONF_TRACE_MASK
,
1157 _T(" ** Adding Line '%s'"),
1159 wxLogTrace( FILECONF_TRACE_MASK
,
1161 ((m_linesHead
) ? m_linesHead
->Text().c_str() : wxEmptyString
) );
1162 wxLogTrace( FILECONF_TRACE_MASK
,
1164 ((m_linesTail
) ? m_linesTail
->Text().c_str() : wxEmptyString
) );
1166 wxFileConfigLineList
*pLine
= new wxFileConfigLineList(str
);
1168 if ( m_linesTail
== NULL
)
1171 m_linesHead
= pLine
;
1176 m_linesTail
->SetNext(pLine
);
1177 pLine
->SetPrev(m_linesTail
);
1180 m_linesTail
= pLine
;
1182 wxLogTrace( FILECONF_TRACE_MASK
,
1184 ((m_linesHead
) ? m_linesHead
->Text().c_str() : wxEmptyString
) );
1185 wxLogTrace( FILECONF_TRACE_MASK
,
1187 ((m_linesTail
) ? m_linesTail
->Text().c_str() : wxEmptyString
) );
1192 // insert a new line after the given one or in the very beginning if !pLine
1193 wxFileConfigLineList
*wxFileConfig::LineListInsert(const wxString
& str
,
1194 wxFileConfigLineList
*pLine
)
1196 wxLogTrace( FILECONF_TRACE_MASK
,
1197 _T(" ** Inserting Line '%s' after '%s'"),
1199 ((pLine
) ? pLine
->Text().c_str() : wxEmptyString
) );
1200 wxLogTrace( FILECONF_TRACE_MASK
,
1202 ((m_linesHead
) ? m_linesHead
->Text().c_str() : wxEmptyString
) );
1203 wxLogTrace( FILECONF_TRACE_MASK
,
1205 ((m_linesTail
) ? m_linesTail
->Text().c_str() : wxEmptyString
) );
1207 if ( pLine
== m_linesTail
)
1208 return LineListAppend(str
);
1210 wxFileConfigLineList
*pNewLine
= new wxFileConfigLineList(str
);
1211 if ( pLine
== NULL
)
1213 // prepend to the list
1214 pNewLine
->SetNext(m_linesHead
);
1215 m_linesHead
->SetPrev(pNewLine
);
1216 m_linesHead
= pNewLine
;
1220 // insert before pLine
1221 wxFileConfigLineList
*pNext
= pLine
->Next();
1222 pNewLine
->SetNext(pNext
);
1223 pNewLine
->SetPrev(pLine
);
1224 pNext
->SetPrev(pNewLine
);
1225 pLine
->SetNext(pNewLine
);
1228 wxLogTrace( FILECONF_TRACE_MASK
,
1230 ((m_linesHead
) ? m_linesHead
->Text().c_str() : wxEmptyString
) );
1231 wxLogTrace( FILECONF_TRACE_MASK
,
1233 ((m_linesTail
) ? m_linesTail
->Text().c_str() : wxEmptyString
) );
1238 void wxFileConfig::LineListRemove(wxFileConfigLineList
*pLine
)
1240 wxLogTrace( FILECONF_TRACE_MASK
,
1241 _T(" ** Removing Line '%s'"),
1242 pLine
->Text().c_str() );
1243 wxLogTrace( FILECONF_TRACE_MASK
,
1245 ((m_linesHead
) ? m_linesHead
->Text().c_str() : wxEmptyString
) );
1246 wxLogTrace( FILECONF_TRACE_MASK
,
1248 ((m_linesTail
) ? m_linesTail
->Text().c_str() : wxEmptyString
) );
1250 wxFileConfigLineList
*pPrev
= pLine
->Prev(),
1251 *pNext
= pLine
->Next();
1255 if ( pPrev
== NULL
)
1256 m_linesHead
= pNext
;
1258 pPrev
->SetNext(pNext
);
1262 if ( pNext
== NULL
)
1263 m_linesTail
= pPrev
;
1265 pNext
->SetPrev(pPrev
);
1267 if ( m_pRootGroup
->GetGroupLine() == pLine
)
1268 m_pRootGroup
->SetLine(m_linesHead
);
1270 wxLogTrace( FILECONF_TRACE_MASK
,
1272 ((m_linesHead
) ? m_linesHead
->Text().c_str() : wxEmptyString
) );
1273 wxLogTrace( FILECONF_TRACE_MASK
,
1275 ((m_linesTail
) ? m_linesTail
->Text().c_str() : wxEmptyString
) );
1280 bool wxFileConfig::LineListIsEmpty()
1282 return m_linesHead
== NULL
;
1285 // ============================================================================
1286 // wxFileConfig::wxFileConfigGroup
1287 // ============================================================================
1289 // ----------------------------------------------------------------------------
1291 // ----------------------------------------------------------------------------
1294 wxFileConfigGroup::wxFileConfigGroup(wxFileConfigGroup
*pParent
,
1295 const wxString
& strName
,
1296 wxFileConfig
*pConfig
)
1297 : m_aEntries(CompareEntries
),
1298 m_aSubgroups(CompareGroups
),
1301 m_pConfig
= pConfig
;
1302 m_pParent
= pParent
;
1305 m_pLastEntry
= NULL
;
1306 m_pLastGroup
= NULL
;
1309 // dtor deletes all children
1310 wxFileConfigGroup::~wxFileConfigGroup()
1313 size_t n
, nCount
= m_aEntries
.Count();
1314 for ( n
= 0; n
< nCount
; n
++ )
1315 delete m_aEntries
[n
];
1318 nCount
= m_aSubgroups
.Count();
1319 for ( n
= 0; n
< nCount
; n
++ )
1320 delete m_aSubgroups
[n
];
1323 // ----------------------------------------------------------------------------
1325 // ----------------------------------------------------------------------------
1327 void wxFileConfigGroup::SetLine(wxFileConfigLineList
*pLine
)
1329 // shouldn't be called twice unless we are resetting the line
1330 wxASSERT( m_pLine
== 0 || pLine
== 0 );
1335 This is a bit complicated, so let me explain it in details. All lines that
1336 were read from the local file (the only one we will ever modify) are stored
1337 in a (doubly) linked list. Our problem is to know at which position in this
1338 list should we insert the new entries/subgroups. To solve it we keep three
1339 variables for each group: m_pLine, m_pLastEntry and m_pLastGroup.
1341 m_pLine points to the line containing "[group_name]"
1342 m_pLastEntry points to the last entry of this group in the local file.
1343 m_pLastGroup subgroup
1345 Initially, they're NULL all three. When the group (an entry/subgroup) is read
1346 from the local file, the corresponding variable is set. However, if the group
1347 was read from the global file and then modified or created by the application
1348 these variables are still NULL and we need to create the corresponding lines.
1349 See the following functions (and comments preceding them) for the details of
1352 Also, when our last entry/group are deleted we need to find the new last
1353 element - the code in DeleteEntry/Subgroup does this by backtracking the list
1354 of lines until it either founds an entry/subgroup (and this is the new last
1355 element) or the m_pLine of the group, in which case there are no more entries
1356 (or subgroups) left and m_pLast<element> becomes NULL.
1358 NB: This last problem could be avoided for entries if we added new entries
1359 immediately after m_pLine, but in this case the entries would appear
1360 backwards in the config file (OTOH, it's not that important) and as we
1361 would still need to do it for the subgroups the code wouldn't have been
1362 significantly less complicated.
1365 // Return the line which contains "[our name]". If we're still not in the list,
1366 // add our line to it immediately after the last line of our parent group if we
1367 // have it or in the very beginning if we're the root group.
1368 wxFileConfigLineList
*wxFileConfigGroup::GetGroupLine()
1370 wxLogTrace( FILECONF_TRACE_MASK
,
1371 _T(" GetGroupLine() for Group '%s'"),
1376 wxLogTrace( FILECONF_TRACE_MASK
,
1377 _T(" Getting Line item pointer") );
1379 wxFileConfigGroup
*pParent
= Parent();
1381 // this group wasn't present in local config file, add it now
1384 wxLogTrace( FILECONF_TRACE_MASK
,
1385 _T(" checking parent '%s'"),
1386 pParent
->Name().c_str() );
1388 wxString strFullName
;
1390 // add 1 to the name because we don't want to start with '/'
1391 strFullName
<< wxT("[")
1392 << FilterOutEntryName(GetFullName().c_str() + 1)
1394 m_pLine
= m_pConfig
->LineListInsert(strFullName
,
1395 pParent
->GetLastGroupLine());
1396 pParent
->SetLastGroup(this); // we're surely after all the others
1398 //else: this is the root group and so we return NULL because we don't
1399 // have any group line
1405 // Return the last line belonging to the subgroups of this group (after which
1406 // we can add a new subgroup), if we don't have any subgroups or entries our
1407 // last line is the group line (m_pLine) itself.
1408 wxFileConfigLineList
*wxFileConfigGroup::GetLastGroupLine()
1410 // if we have any subgroups, our last line is the last line of the last
1414 wxFileConfigLineList
*pLine
= m_pLastGroup
->GetLastGroupLine();
1416 wxASSERT_MSG( pLine
, _T("last group must have !NULL associated line") );
1421 // no subgroups, so the last line is the line of thelast entry (if any)
1422 return GetLastEntryLine();
1425 // return the last line belonging to the entries of this group (after which
1426 // we can add a new entry), if we don't have any entries we will add the new
1427 // one immediately after the group line itself.
1428 wxFileConfigLineList
*wxFileConfigGroup::GetLastEntryLine()
1430 wxLogTrace( FILECONF_TRACE_MASK
,
1431 _T(" GetLastEntryLine() for Group '%s'"),
1436 wxFileConfigLineList
*pLine
= m_pLastEntry
->GetLine();
1438 wxASSERT_MSG( pLine
, _T("last entry must have !NULL associated line") );
1443 // no entries: insert after the group header, if any
1444 return GetGroupLine();
1447 void wxFileConfigGroup::SetLastEntry(wxFileConfigEntry
*pEntry
)
1449 m_pLastEntry
= pEntry
;
1453 // the only situation in which a group without its own line can have
1454 // an entry is when the first entry is added to the initially empty
1455 // root pseudo-group
1456 wxASSERT_MSG( !m_pParent
, _T("unexpected for non root group") );
1458 // let the group know that it does have a line in the file now
1459 m_pLine
= pEntry
->GetLine();
1463 // ----------------------------------------------------------------------------
1465 // ----------------------------------------------------------------------------
1467 void wxFileConfigGroup::UpdateGroupAndSubgroupsLines()
1469 // update the line of this group
1470 wxFileConfigLineList
*line
= GetGroupLine();
1471 wxCHECK_RET( line
, _T("a non root group must have a corresponding line!") );
1473 // +1: skip the leading '/'
1474 line
->SetText(wxString::Format(_T("[%s]"), GetFullName().c_str() + 1));
1477 // also update all subgroups as they have this groups name in their lines
1478 const size_t nCount
= m_aSubgroups
.Count();
1479 for ( size_t n
= 0; n
< nCount
; n
++ )
1481 m_aSubgroups
[n
]->UpdateGroupAndSubgroupsLines();
1485 void wxFileConfigGroup::Rename(const wxString
& newName
)
1487 wxCHECK_RET( m_pParent
, _T("the root group can't be renamed") );
1489 m_strName
= newName
;
1491 // update the group lines recursively
1492 UpdateGroupAndSubgroupsLines();
1495 wxString
wxFileConfigGroup::GetFullName() const
1499 fullname
= Parent()->GetFullName() + wxCONFIG_PATH_SEPARATOR
+ Name();
1504 // ----------------------------------------------------------------------------
1506 // ----------------------------------------------------------------------------
1508 // use binary search because the array is sorted
1510 wxFileConfigGroup::FindEntry(const wxChar
*szName
) const
1514 hi
= m_aEntries
.Count();
1516 wxFileConfigEntry
*pEntry
;
1520 pEntry
= m_aEntries
[i
];
1522 #if wxCONFIG_CASE_SENSITIVE
1523 res
= wxStrcmp(pEntry
->Name(), szName
);
1525 res
= wxStricmp(pEntry
->Name(), szName
);
1540 wxFileConfigGroup::FindSubgroup(const wxChar
*szName
) const
1544 hi
= m_aSubgroups
.Count();
1546 wxFileConfigGroup
*pGroup
;
1550 pGroup
= m_aSubgroups
[i
];
1552 #if wxCONFIG_CASE_SENSITIVE
1553 res
= wxStrcmp(pGroup
->Name(), szName
);
1555 res
= wxStricmp(pGroup
->Name(), szName
);
1569 // ----------------------------------------------------------------------------
1570 // create a new item
1571 // ----------------------------------------------------------------------------
1573 // create a new entry and add it to the current group
1574 wxFileConfigEntry
*wxFileConfigGroup::AddEntry(const wxString
& strName
, int nLine
)
1576 wxASSERT( FindEntry(strName
) == 0 );
1578 wxFileConfigEntry
*pEntry
= new wxFileConfigEntry(this, strName
, nLine
);
1580 m_aEntries
.Add(pEntry
);
1584 // create a new group and add it to the current group
1585 wxFileConfigGroup
*wxFileConfigGroup::AddSubgroup(const wxString
& strName
)
1587 wxASSERT( FindSubgroup(strName
) == 0 );
1589 wxFileConfigGroup
*pGroup
= new wxFileConfigGroup(this, strName
, m_pConfig
);
1591 m_aSubgroups
.Add(pGroup
);
1595 // ----------------------------------------------------------------------------
1597 // ----------------------------------------------------------------------------
1600 The delete operations are _very_ slow if we delete the last item of this
1601 group (see comments before GetXXXLineXXX functions for more details),
1602 so it's much better to start with the first entry/group if we want to
1603 delete several of them.
1606 bool wxFileConfigGroup::DeleteSubgroupByName(const wxChar
*szName
)
1608 wxFileConfigGroup
* const pGroup
= FindSubgroup(szName
);
1610 return pGroup
? DeleteSubgroup(pGroup
) : false;
1613 // Delete the subgroup and remove all references to it from
1614 // other data structures.
1615 bool wxFileConfigGroup::DeleteSubgroup(wxFileConfigGroup
*pGroup
)
1617 wxCHECK_MSG( pGroup
, false, _T("deleting non existing group?") );
1619 wxLogTrace( FILECONF_TRACE_MASK
,
1620 _T("Deleting group '%s' from '%s'"),
1621 pGroup
->Name().c_str(),
1624 wxLogTrace( FILECONF_TRACE_MASK
,
1625 _T(" (m_pLine) = prev: %p, this %p, next %p"),
1626 ((m_pLine
) ? m_pLine
->Prev() : 0),
1628 ((m_pLine
) ? m_pLine
->Next() : 0) );
1629 wxLogTrace( FILECONF_TRACE_MASK
,
1631 ((m_pLine
) ? m_pLine
->Text().c_str() : wxEmptyString
) );
1633 // delete all entries...
1634 size_t nCount
= pGroup
->m_aEntries
.Count();
1636 wxLogTrace(FILECONF_TRACE_MASK
,
1637 _T("Removing %lu entries"), (unsigned long)nCount
);
1639 for ( size_t nEntry
= 0; nEntry
< nCount
; nEntry
++ )
1641 wxFileConfigLineList
*pLine
= pGroup
->m_aEntries
[nEntry
]->GetLine();
1645 wxLogTrace( FILECONF_TRACE_MASK
,
1647 pLine
->Text().c_str() );
1648 m_pConfig
->LineListRemove(pLine
);
1652 // ...and subgroups of this subgroup
1653 nCount
= pGroup
->m_aSubgroups
.Count();
1655 wxLogTrace( FILECONF_TRACE_MASK
,
1656 _T("Removing %lu subgroups"), (unsigned long)nCount
);
1658 for ( size_t nGroup
= 0; nGroup
< nCount
; nGroup
++ )
1660 pGroup
->DeleteSubgroup(pGroup
->m_aSubgroups
[0]);
1663 // and then finally the group itself
1664 wxFileConfigLineList
*pLine
= pGroup
->m_pLine
;
1667 wxLogTrace( FILECONF_TRACE_MASK
,
1668 _T(" Removing line for group '%s' : '%s'"),
1669 pGroup
->Name().c_str(),
1670 pLine
->Text().c_str() );
1671 wxLogTrace( FILECONF_TRACE_MASK
,
1672 _T(" Removing from group '%s' : '%s'"),
1674 ((m_pLine
) ? m_pLine
->Text().c_str() : wxEmptyString
) );
1676 // notice that we may do this test inside the previous "if"
1677 // because the last entry's line is surely !NULL
1678 if ( pGroup
== m_pLastGroup
)
1680 wxLogTrace( FILECONF_TRACE_MASK
,
1681 _T(" Removing last group") );
1683 // our last entry is being deleted, so find the last one which
1684 // stays by going back until we find a subgroup or reach the
1686 const size_t nSubgroups
= m_aSubgroups
.Count();
1688 m_pLastGroup
= NULL
;
1689 for ( wxFileConfigLineList
*pl
= pLine
->Prev();
1690 pl
&& pl
!= m_pLine
&& !m_pLastGroup
;
1693 // does this line belong to our subgroup?
1694 for ( size_t n
= 0; n
< nSubgroups
; n
++ )
1696 // do _not_ call GetGroupLine! we don't want to add it to
1697 // the local file if it's not already there
1698 if ( m_aSubgroups
[n
]->m_pLine
== pl
)
1700 m_pLastGroup
= m_aSubgroups
[n
];
1707 m_pConfig
->LineListRemove(pLine
);
1711 wxLogTrace( FILECONF_TRACE_MASK
,
1712 _T(" No line entry for Group '%s'?"),
1713 pGroup
->Name().c_str() );
1716 m_aSubgroups
.Remove(pGroup
);
1722 bool wxFileConfigGroup::DeleteEntry(const wxChar
*szName
)
1724 wxFileConfigEntry
*pEntry
= FindEntry(szName
);
1727 // entry doesn't exist, nothing to do
1731 wxFileConfigLineList
*pLine
= pEntry
->GetLine();
1732 if ( pLine
!= NULL
) {
1733 // notice that we may do this test inside the previous "if" because the
1734 // last entry's line is surely !NULL
1735 if ( pEntry
== m_pLastEntry
) {
1736 // our last entry is being deleted - find the last one which stays
1737 wxASSERT( m_pLine
!= NULL
); // if we have an entry with !NULL pLine...
1739 // go back until we find another entry or reach the group's line
1740 wxFileConfigEntry
*pNewLast
= NULL
;
1741 size_t n
, nEntries
= m_aEntries
.Count();
1742 wxFileConfigLineList
*pl
;
1743 for ( pl
= pLine
->Prev(); pl
!= m_pLine
; pl
= pl
->Prev() ) {
1744 // is it our subgroup?
1745 for ( n
= 0; (pNewLast
== NULL
) && (n
< nEntries
); n
++ ) {
1746 if ( m_aEntries
[n
]->GetLine() == m_pLine
)
1747 pNewLast
= m_aEntries
[n
];
1750 if ( pNewLast
!= NULL
) // found?
1754 if ( pl
== m_pLine
) {
1755 wxASSERT( !pNewLast
); // how comes it has the same line as we?
1757 // we've reached the group line without finding any subgroups
1758 m_pLastEntry
= NULL
;
1761 m_pLastEntry
= pNewLast
;
1764 m_pConfig
->LineListRemove(pLine
);
1767 m_aEntries
.Remove(pEntry
);
1773 // ============================================================================
1774 // wxFileConfig::wxFileConfigEntry
1775 // ============================================================================
1777 // ----------------------------------------------------------------------------
1779 // ----------------------------------------------------------------------------
1780 wxFileConfigEntry::wxFileConfigEntry(wxFileConfigGroup
*pParent
,
1781 const wxString
& strName
,
1783 : m_strName(strName
)
1785 wxASSERT( !strName
.empty() );
1787 m_pParent
= pParent
;
1791 m_bHasValue
= false;
1793 m_bImmutable
= strName
[0] == wxCONFIG_IMMUTABLE_PREFIX
;
1795 m_strName
.erase(0, 1); // remove first character
1798 // ----------------------------------------------------------------------------
1800 // ----------------------------------------------------------------------------
1802 void wxFileConfigEntry::SetLine(wxFileConfigLineList
*pLine
)
1804 if ( m_pLine
!= NULL
) {
1805 wxLogWarning(_("entry '%s' appears more than once in group '%s'"),
1806 Name().c_str(), m_pParent
->GetFullName().c_str());
1810 Group()->SetLastEntry(this);
1813 // second parameter is false if we read the value from file and prevents the
1814 // entry from being marked as 'dirty'
1815 void wxFileConfigEntry::SetValue(const wxString
& strValue
, bool bUser
)
1817 if ( bUser
&& IsImmutable() )
1819 wxLogWarning( _("attempt to change immutable key '%s' ignored."),
1824 // do nothing if it's the same value: but don't test for it if m_bHasValue
1825 // hadn't been set yet or we'd never write empty values to the file
1826 if ( m_bHasValue
&& strValue
== m_strValue
)
1830 m_strValue
= strValue
;
1834 wxString strValFiltered
;
1836 if ( Group()->Config()->GetStyle() & wxCONFIG_USE_NO_ESCAPE_CHARACTERS
)
1838 strValFiltered
= strValue
;
1841 strValFiltered
= FilterOutValue(strValue
);
1845 strLine
<< FilterOutEntryName(m_strName
) << wxT('=') << strValFiltered
;
1849 // entry was read from the local config file, just modify the line
1850 m_pLine
->SetText(strLine
);
1852 else // this entry didn't exist in the local file
1854 // add a new line to the file: note the hack for the root group
1855 // which is special in that it doesn't have its own group line
1856 // (something like "[/]") and so the line we get for it may be not
1857 // its line at all if it doesn't have any entries
1859 // this is definitely not the right place to fix it but changing
1860 // the root group to have NULL m_pLine will probably break too
1861 // much stuff elsewhere so I don't dare to do it...
1862 wxFileConfigLineList
*line
= Group()->GetLastEntryLine();
1863 if ( !Group()->Parent() && line
== Group()->GetGroupLine() )
1865 // prepend the first root group entry to the head of the list
1868 m_pLine
= Group()->Config()->LineListInsert(strLine
, line
);
1870 Group()->SetLastEntry(this);
1875 // ============================================================================
1877 // ============================================================================
1879 // ----------------------------------------------------------------------------
1880 // compare functions for array sorting
1881 // ----------------------------------------------------------------------------
1883 int CompareEntries(wxFileConfigEntry
*p1
, wxFileConfigEntry
*p2
)
1885 #if wxCONFIG_CASE_SENSITIVE
1886 return wxStrcmp(p1
->Name(), p2
->Name());
1888 return wxStricmp(p1
->Name(), p2
->Name());
1892 int CompareGroups(wxFileConfigGroup
*p1
, wxFileConfigGroup
*p2
)
1894 #if wxCONFIG_CASE_SENSITIVE
1895 return wxStrcmp(p1
->Name(), p2
->Name());
1897 return wxStricmp(p1
->Name(), p2
->Name());
1901 // ----------------------------------------------------------------------------
1903 // ----------------------------------------------------------------------------
1905 // undo FilterOutValue
1906 static wxString
FilterInValue(const wxString
& str
)
1909 strResult
.Alloc(str
.Len());
1911 bool bQuoted
= !str
.empty() && str
[0] == '"';
1913 for ( size_t n
= bQuoted
? 1 : 0; n
< str
.Len(); n
++ ) {
1914 if ( str
[n
] == wxT('\\') ) {
1915 switch ( str
[++n
] ) {
1917 strResult
+= wxT('\n');
1921 strResult
+= wxT('\r');
1925 strResult
+= wxT('\t');
1929 strResult
+= wxT('\\');
1933 strResult
+= wxT('"');
1938 if ( str
[n
] != wxT('"') || !bQuoted
)
1939 strResult
+= str
[n
];
1940 else if ( n
!= str
.Len() - 1 ) {
1941 wxLogWarning(_("unexpected \" at position %d in '%s'."),
1944 //else: it's the last quote of a quoted string, ok
1951 // quote the string before writing it to file
1952 static wxString
FilterOutValue(const wxString
& str
)
1958 strResult
.Alloc(str
.Len());
1960 // quoting is necessary to preserve spaces in the beginning of the string
1961 bool bQuote
= wxIsspace(str
[0]) || str
[0] == wxT('"');
1964 strResult
+= wxT('"');
1967 for ( size_t n
= 0; n
< str
.Len(); n
++ ) {
1990 //else: fall through
1993 strResult
+= str
[n
];
1994 continue; // nothing special to do
1997 // we get here only for special characters
1998 strResult
<< wxT('\\') << c
;
2002 strResult
+= wxT('"');
2007 // undo FilterOutEntryName
2008 static wxString
FilterInEntryName(const wxString
& str
)
2011 strResult
.Alloc(str
.Len());
2013 for ( const wxChar
*pc
= str
.c_str(); *pc
!= '\0'; pc
++ ) {
2014 if ( *pc
== wxT('\\') )
2023 // sanitize entry or group name: insert '\\' before any special characters
2024 static wxString
FilterOutEntryName(const wxString
& str
)
2027 strResult
.Alloc(str
.Len());
2029 for ( const wxChar
*pc
= str
.c_str(); *pc
!= wxT('\0'); pc
++ ) {
2030 const wxChar c
= *pc
;
2032 // we explicitly allow some of "safe" chars and 8bit ASCII characters
2033 // which will probably never have special meaning and with which we can't
2034 // use isalnum() anyhow (in ASCII built, in Unicode it's just fine)
2036 // NB: note that wxCONFIG_IMMUTABLE_PREFIX and wxCONFIG_PATH_SEPARATOR
2037 // should *not* be quoted
2040 ((unsigned char)c
< 127) &&
2042 !wxIsalnum(c
) && !wxStrchr(wxT("@_/-!.*%"), c
) )
2044 strResult
+= wxT('\\');
2053 // we can't put ?: in the ctor initializer list because it confuses some
2054 // broken compilers (Borland C++)
2055 static wxString
GetAppName(const wxString
& appName
)
2057 if ( !appName
&& wxTheApp
)
2058 return wxTheApp
->GetAppName();
2063 #endif // wxUSE_CONFIG