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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
///////////////////////////////////////////////////////////////////////////////////////////////////
// File : AttrList.cpp
// Purpose : Class to keep set of key,value pairs
// Access methods to get/set using different data types.
// All information is stored as strings and converted as required. This will
// lead to slow execution for variables being acessed often. This class is
// intended for long term storage of attributes.
//
// Developer : David Knox (david.knox@colorado.edu) Jan 2011
// Copyright : Copyright (C) 2007-2011 David Knox
//
// Web site : http://parsinsert.sourceforge.net/
//
///////////////////////////////////////////////////////////////////////////////////////////////////
// This file is part of ParsInsert.
//
// ParsInsert is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// ParsInsert 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with ParsInsert. If not, see <http://www.gnu.org/licenses/>.
///////////////////////////////////////////////////////////////////////////////////////////////////
#include "AttrList.h"
///////////////////////////////////////////////////////////////////////////////////////////////////
// AttrList.cpp: implementation of the CAttrList class.
//
///////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
// Construction/Destruction
///////////////////////////////////////////////////////////////////////////////////////////////////
LPCSTR CAttrList :: operator[](LPCSTR key) const
{
CAttrDictIter iter;
iter = m.find(key);
if (iter == m.end())
return NULL;
return (*iter).second.c_str();
}
///////////////////////////////////////////////////////////////////////////////////////////////////
BOOL CAttrList :: Clear()
{
m.clear();
return TRUE;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
int CAttrList :: GetInt(LPCSTR key, int _default)
{
LPCSTR value = m[key].c_str();
if ((value == NULL) || (value == ""))
return _default;
return atoi(value);
}
///////////////////////////////////////////////////////////////////////////////////////////////////
DWORD CAttrList :: GetHex(LPCSTR key, DWORD _default)
{
LPCSTR value = m[key].c_str();
if ((value == NULL) || (value == ""))
return _default;
return strtol(value, NULL, 0);
}
///////////////////////////////////////////////////////////////////////////////////////////////////
int CAttrList :: GetBOOL(LPCSTR key, int _default)
{
LPCSTR value = m[key].c_str();
if ((value == NULL) || (value == ""))
return _default;
return (atoi(value) != 0);
}
///////////////////////////////////////////////////////////////////////////////////////////////////
double CAttrList :: GetDouble(LPCSTR key, double _default)
{
LPCSTR value = m[key].c_str();
if ((value == NULL) || (value == ""))
return _default;
return atof(value);
}
///////////////////////////////////////////////////////////////////////////////////////////////////
string CAttrList :: GetString(LPCSTR key, LPCSTR _default)
{
CAttrDictIter iter;
iter = m.find(key);
string value;
if (iter != m.end())
value = iter->second;
else if (_default != NULL)
value = _default;
return value;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
BOOL CAttrList :: Add(LPCSTR key, int value)
{
char buf[64];
sprintf(buf,"%d",value); // itoa(value, buf, 10);
m[key] = buf;
return TRUE;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
BOOL CAttrList :: Add(LPCSTR key, double value)
{
char buf[64];
sprintf(buf, "%f", value);
m[key] = buf;
return TRUE;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
BOOL CAttrList :: Add(LPCSTR key, LPCSTR value)
{
m[key] = value;
return TRUE;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
BOOL CAttrList :: Add(LPCSTR key, string& value)
{
m[key] = value;
return TRUE;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
BOOL CAttrList :: AddHex(LPCSTR key, DWORD value)
{
char buf[64];
sprintf(buf, "0x%08X", value);
m[key] = buf;
return TRUE;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
BOOL CAttrList :: Add(const CAttrList &attrs)
{
CAttrDictIter iter;
for (iter=attrs.m.begin() ; iter != attrs.m.end() ; ++iter)
{
m[(*iter).first] = (*iter).second;
}
return TRUE;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
|