]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/iniconf.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/iniconf.cpp
3 // Purpose: implementation of wxIniConfig class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
19 #include "wx/wxprec.h"
26 #include <wx/string.h>
31 #include <wx/dynarray.h>
33 #include <wx/config.h>
35 #include <wx/msw/iniconf.h>
37 // _WINDOWS_ is defined when windows.h is included,
38 // __WXMSW__ is defined for MS Windows compilation
39 #if defined(__WXMSW__) && !defined(_WINDOWS_)
43 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
47 // we replace all path separators with this character
48 #define PATH_SEP_REPLACE '_'
50 // ============================================================================
52 // ============================================================================
54 // ----------------------------------------------------------------------------
56 // ----------------------------------------------------------------------------
58 wxIniConfig::wxIniConfig(const wxString
& strAppName
, const wxString
& strVendor
,
59 const wxString
& localFilename
, const wxString
& globalFilename
, long style
):
60 wxConfigBase(strAppName
, strVendor
, localFilename
, globalFilename
, style
)
62 if ( GetAppName().IsEmpty() )
66 app
= wxTheApp
->GetAppName();
67 wxASSERT( !app
.IsEmpty() );
71 // Vendor name is required in wxIniConfig.
72 // TODO: should it be required? Why isn't appName used instead? -- JACS
73 if ( GetVendorName().IsEmpty() )
77 vendor
= wxTheApp
->GetVendorName();
80 SetVendorName(vendor
);
83 m_strLocalFilename
= localFilename
;
84 if (m_strLocalFilename
.IsEmpty())
86 m_strLocalFilename
= GetAppName() + ".ini";
89 // append the extension if none given and it's not an absolute file name
90 // (otherwise we assume that they know what they're doing)
91 if ( !wxIsPathSeparator(m_strLocalFilename
[0u]) &&
92 m_strLocalFilename
.Find('.') == NOT_FOUND
)
94 m_strLocalFilename
<< ".ini";
101 wxIniConfig::~wxIniConfig()
105 // ----------------------------------------------------------------------------
107 // ----------------------------------------------------------------------------
109 void wxIniConfig::SetPath(const wxString
& strPath
)
111 wxArrayString aParts
;
113 if ( strPath
.IsEmpty() ) {
116 else if ( strPath
[0u] == wxCONFIG_PATH_SEPARATOR
) {
118 wxSplitPath(aParts
, strPath
);
121 // relative path, combine with current one
122 wxString strFullPath
= GetPath();
123 strFullPath
<< wxCONFIG_PATH_SEPARATOR
<< strPath
;
124 wxSplitPath(aParts
, strFullPath
);
127 size_t nPartsCount
= aParts
.Count();
129 if ( nPartsCount
== 0 ) {
131 m_strGroup
= PATH_SEP_REPLACE
;
135 m_strGroup
= aParts
[0u];
136 for ( size_t nPart
= 1; nPart
< nPartsCount
; nPart
++ ) {
138 m_strPath
<< PATH_SEP_REPLACE
;
139 m_strPath
<< aParts
[nPart
];
143 // other functions assume that all this is true, i.e. there are no trailing
144 // underscores at the end except if the group is the root one
145 wxASSERT( (m_strPath
.IsEmpty() || m_strPath
.Last() != PATH_SEP_REPLACE
) &&
146 (m_strGroup
== PATH_SEP_REPLACE
||
147 m_strGroup
.Last() != PATH_SEP_REPLACE
) );
150 const wxString
& wxIniConfig::GetPath() const
152 static wxString s_str
;
154 // always return abs path
155 s_str
= wxCONFIG_PATH_SEPARATOR
;
157 if ( m_strGroup
== PATH_SEP_REPLACE
) {
158 // we're at the root level, nothing to do
162 if ( !m_strPath
.IsEmpty() )
163 s_str
<< wxCONFIG_PATH_SEPARATOR
;
164 for ( const char *p
= m_strPath
; *p
!= '\0'; p
++ ) {
165 s_str
<< (*p
== PATH_SEP_REPLACE
? wxCONFIG_PATH_SEPARATOR
: *p
);
172 wxString
wxIniConfig::GetPrivateKeyName(const wxString
& szKey
) const
176 if ( !m_strPath
.IsEmpty() )
177 strKey
<< m_strPath
<< PATH_SEP_REPLACE
;
184 wxString
wxIniConfig::GetKeyName(const wxString
& szKey
) const
188 if ( m_strGroup
!= PATH_SEP_REPLACE
)
189 strKey
<< m_strGroup
<< PATH_SEP_REPLACE
;
190 if ( !m_strPath
.IsEmpty() )
191 strKey
<< m_strPath
<< PATH_SEP_REPLACE
;
198 // ----------------------------------------------------------------------------
200 // ----------------------------------------------------------------------------
203 bool wxIniConfig::GetFirstGroup(wxString
& str
, long& lIndex
) const
205 wxFAIL_MSG("not implemented");
210 bool wxIniConfig::GetNextGroup (wxString
& str
, long& lIndex
) const
212 wxFAIL_MSG("not implemented");
217 bool wxIniConfig::GetFirstEntry(wxString
& str
, long& lIndex
) const
219 wxFAIL_MSG("not implemented");
224 bool wxIniConfig::GetNextEntry (wxString
& str
, long& lIndex
) const
226 wxFAIL_MSG("not implemented");
231 // ----------------------------------------------------------------------------
233 // ----------------------------------------------------------------------------
236 size_t wxIniConfig::GetNumberOfEntries(bool bRecursive
) const
238 wxFAIL_MSG("not implemented");
243 size_t wxIniConfig::GetNumberOfGroups(bool bRecursive
) const
245 wxFAIL_MSG("not implemented");
250 bool wxIniConfig::HasGroup(const wxString
& strName
) const
252 wxFAIL_MSG("not implemented");
257 bool wxIniConfig::HasEntry(const wxString
& strName
) const
259 wxFAIL_MSG("not implemented");
264 // is current group empty?
265 bool wxIniConfig::IsEmpty() const
269 GetPrivateProfileString(m_strGroup
, NULL
, "",
270 szBuf
, WXSIZEOF(szBuf
), m_strLocalFilename
);
271 if ( !::IsEmpty(szBuf
) )
274 GetProfileString(m_strGroup
, NULL
, "", szBuf
, WXSIZEOF(szBuf
));
275 if ( !::IsEmpty(szBuf
) )
281 // ----------------------------------------------------------------------------
283 // ----------------------------------------------------------------------------
285 bool wxIniConfig::Read(const wxString
& szKey
, wxString
*pstr
) const
287 wxConfigPathChanger
path(this, szKey
);
288 wxString strKey
= GetPrivateKeyName(path
.Name());
290 char szBuf
[1024]; // @@ should dynamically allocate memory...
292 // first look in the private INI file
294 // NB: the lpDefault param to GetPrivateProfileString can't be NULL
295 GetPrivateProfileString(m_strGroup
, strKey
, "",
296 szBuf
, WXSIZEOF(szBuf
), m_strLocalFilename
);
297 if ( ::IsEmpty(szBuf
) ) {
298 // now look in win.ini
299 wxString strKey
= GetKeyName(path
.Name());
300 GetProfileString(m_strGroup
, strKey
, "", szBuf
, WXSIZEOF(szBuf
));
303 if ( ::IsEmpty(szBuf
) ) {
311 bool wxIniConfig::Read(const wxString
& szKey
, wxString
*pstr
,
312 const wxString
& szDefault
) const
314 wxConfigPathChanger
path(this, szKey
);
315 wxString strKey
= GetPrivateKeyName(path
.Name());
317 char szBuf
[1024]; // @@ should dynamically allocate memory...
319 // first look in the private INI file
321 // NB: the lpDefault param to GetPrivateProfileString can't be NULL
322 GetPrivateProfileString(m_strGroup
, strKey
, "",
323 szBuf
, WXSIZEOF(szBuf
), m_strLocalFilename
);
324 if ( ::IsEmpty(szBuf
) ) {
325 // now look in win.ini
326 wxString strKey
= GetKeyName(path
.Name());
327 GetProfileString(m_strGroup
, strKey
, "", szBuf
, WXSIZEOF(szBuf
));
330 if ( ::IsEmpty(szBuf
) ) {
339 bool wxIniConfig::Read(const wxString
& szKey
, long *pl
) const
341 wxConfigPathChanger
path(this, szKey
);
342 wxString strKey
= GetPrivateKeyName(path
.Name());
344 // hack: we have no mean to know if it really found the default value or
345 // didn't find anything, so we call it twice
347 static const int nMagic
= 17; // 17 is some "rare" number
348 static const int nMagic2
= 28; // arbitrary number != nMagic
349 long lVal
= GetPrivateProfileInt(m_strGroup
, strKey
, nMagic
, m_strLocalFilename
);
350 if ( lVal
!= nMagic
) {
351 // the value was read from the file
356 // is it really nMagic?
357 lVal
= GetPrivateProfileInt(m_strGroup
, strKey
, nMagic2
, m_strLocalFilename
);
358 if ( lVal
== nMagic
) {
359 // the nMagic it returned was indeed read from the file
364 // no, it was just returning the default value, so now look in win.ini
365 *pl
= GetProfileInt(GetVendorName(), GetKeyName(szKey
), *pl
);
370 bool wxIniConfig::Write(const wxString
& szKey
, const wxString
& szValue
)
372 wxConfigPathChanger
path(this, szKey
);
373 wxString strKey
= GetPrivateKeyName(path
.Name());
375 bool bOk
= WritePrivateProfileString(m_strGroup
, strKey
,
376 szValue
, m_strLocalFilename
) != 0;
379 wxLogLastError("WritePrivateProfileString");
384 bool wxIniConfig::Write(const wxString
& szKey
, long lValue
)
386 // ltoa() is not ANSI :-(
387 char szBuf
[40]; // should be good for sizeof(long) <= 16 (128 bits)
388 sprintf(szBuf
, "%ld", lValue
);
390 return Write(szKey
, szBuf
);
393 bool wxIniConfig::Flush(bool /* bCurrentOnly */)
395 // this is just the way it works
396 return WritePrivateProfileString(NULL
, NULL
, NULL
, m_strLocalFilename
) != 0;
399 // ----------------------------------------------------------------------------
401 // ----------------------------------------------------------------------------
403 bool wxIniConfig::DeleteEntry(const char *szKey
, bool bGroupIfEmptyAlso
)
405 // passing NULL as value to WritePrivateProfileString deletes the key
406 if ( !Write(szKey
, (const char *)NULL
) )
409 if ( !bGroupIfEmptyAlso
|| !IsEmpty() )
412 // delete the current group too
413 bool bOk
= WritePrivateProfileString(m_strGroup
, NULL
,
414 NULL
, m_strLocalFilename
) != 0;
417 wxLogLastError("WritePrivateProfileString");
422 bool wxIniConfig::DeleteGroup(const char *szKey
)
424 wxConfigPathChanger
path(this, szKey
);
426 // passing NULL as section name to WritePrivateProfileString deletes the
427 // whole section according to the docs
428 bool bOk
= WritePrivateProfileString(path
.Name(), NULL
,
429 NULL
, m_strLocalFilename
) != 0;
432 wxLogLastError("WritePrivateProfileString");
437 bool wxIniConfig::DeleteAll()
439 // first delete our group in win.ini
440 WriteProfileString(GetVendorName(), NULL
, NULL
);
442 // then delete our own ini file
443 char szBuf
[MAX_PATH
];
444 size_t nRc
= GetWindowsDirectory(szBuf
, WXSIZEOF(szBuf
));
446 wxLogLastError("GetWindowsDirectory");
447 else if ( nRc
> WXSIZEOF(szBuf
) )
448 wxFAIL_MSG("buffer is too small for Windows directory.");
450 wxString strFile
= szBuf
;
451 strFile
<< '\\' << m_strLocalFilename
;
453 if ( !DeleteFile(strFile
) ) {
454 wxLogSysError(_("Can't delete the INI file '%s'"), strFile
.c_str());