1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
/*
Copyright (C) 2001 by Martin Geisse <mgeisse@gmx.net>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "cssysdef.h"
#include "csutil/prfxcfg.h"
#include "csutil/util.h"
csPrefixConfig::csPrefixConfig(const char *fName, iVFS *vfs, const char *prf,
const char *AliasName)
{
long len = strlen(prf);
Prefix = new char[len + 2];
memcpy(Prefix, prf, len);
Prefix[len] = '.';
Prefix[len + 1] = 0;
PrefixLength = len + 1;
if (AliasName) Alias = csStrNew (AliasName);
else Alias = NULL;
Load(fName, vfs);
}
csPrefixConfig::~csPrefixConfig()
{
delete[] Prefix;
if (Alias) delete[] Alias;
}
bool csPrefixConfig::LoadNow(const char *Filename, iVFS *vfs, bool overwrite)
{
csConfigFile cfg;
// load the raw configuration
if (!cfg.Load(Filename, vfs))
return false;
// copy all options for the current user
iConfigIterator *it = cfg.Enumerate(Prefix);
while (it->Next())
if (overwrite || !KeyExists(it->GetKey(true)))
SetStr(it->GetKey(true), it->GetStr());
it->DecRef();
// copy the EOF comment
SetEOFComment(cfg.GetEOFComment());
return true;
}
bool csPrefixConfig::SaveNow(const char *Filename, iVFS *vfs) const
{
iConfigIterator *it;
csConfigFile cfg;
// first load the existing config file to preserve the user
// configuration of other applications
cfg.Load(Filename, vfs);
// Delete all keys for this application. In fact we only have to delete
// those keys that exist in 'cfg' but not in this object, but I don't
// know a fast way to test for this. Anyway, with this approach the
// keys in the prefix config file are always grouped by application,
// which isn't too bad after all.
it = cfg.Enumerate(Prefix);
while (it->Next())
cfg.DeleteKey(it->GetKey());
it->DecRef();
// copy all options for the current user
it = ((iConfigFile*)this)->Enumerate();
while (it->Next()) {
char tmp[1024];
memcpy(tmp, Prefix, PrefixLength);
strcpy(tmp + PrefixLength, it->GetKey());
cfg.SetStr(tmp, it->GetStr());
}
it->DecRef();
// copy EOF comment
cfg.SetEOFComment(GetEOFComment());
// write config file
return cfg.Save();
}
const char *csPrefixConfig::GetFileName () const
{
return Alias ? Alias : csConfigFile::GetFileName ();
}
|