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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
/********************************************************************************
* *
* V a r i a n t - M a p *
* *
*********************************************************************************
* Copyright (C) 1998,2022 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 3 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 Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/> *
********************************************************************************/
#include "xincs.h"
#include "fxver.h"
#include "fxdefs.h"
#include "fxmath.h"
#include "FXArray.h"
#include "FXString.h"
#include "FXElement.h"
#include "FXException.h"
#include "FXVariant.h"
#include "FXVariantMap.h"
/*
Notes:
- We store the hash key, so that 99.999% of the time we can compare hash numbers;
only when hash numbers match do we need to compare keys. With a pretty decent hash
function, the number of calls to strcmp() should be roughly the same as the number
of successful lookups.
- When entry is removed, its key and data are cleared, but its hash value remains the
same; in other words, voided slots have empty key but non-zero hash value, and free slots
have empty key AND zero hash value.
- Invariants:
1 Always at least one table entry marked as "free" i.e. key==empty and hash==0.
2 Table grows when number of free slots becomes less than or equal to 1+N/4.
3 Table shrinks when used number of slots becomes less than or equal to N/4.
- Minimum table size is 1 (one free slot). Thus, for a table to have one element its
size must be at least 2.
- Empty table is represented by magic EMPTY table value. This is compile-time constant
data and will never change.
- NULL keys or empty-string keys are not allowed.
- Similar to FXDictionary; reimplemented to support FXVariant as payload.
- A capability to copy the keys from another map, but not the values, may be
very useful...
*/
#define EMPTY (const_cast<Entry*>((const Entry*)(__variantmap__empty__+3)))
#define BSHIFT 5
using namespace FX;
/*******************************************************************************/
namespace FX {
// Empty dictionary table value
extern const FXint __string__empty__[];
extern const FXival __variantmap__empty__[];
const FXival __variantmap__empty__[12]={1,0,1,(FXival)(__string__empty__+1),0,0,0,0,0,0,0,0};
// Adjust the size of the table
FXbool FXVariantMap::no(FXival n){
FXival m=no();
if(__likely(m!=n)){
Entry* elbat;
void* p;
// Release old table
if(1<m){
destructElms(table,m);
::free(((FXival*)table)-3);
table=EMPTY;
}
// Allocate new table
if(1<n){
if(__unlikely((p=::calloc(sizeof(FXival)*3+sizeof(Entry)*n,1))==nullptr)) return false;
elbat=(Entry*)(((FXival*)p)+3);
((FXival*)elbat)[-3]=n;
((FXival*)elbat)[-2]=0;
((FXival*)elbat)[-1]=n;
constructElms(elbat,n);
table=elbat;
}
}
return true;
}
// Resize the table to the given size, keeping contents
FXbool FXVariantMap::resize(FXival n){
FXVariantMap elbat;
FXASSERT((n&(n-1))==0); // Power of 2
FXASSERT((n-used())>0); // At least one free slot
if(elbat.no(n)){
if(1<elbat.no() && 1<no()){
FXuval p,b,h,x; FXival i;
for(i=0; i<no(); ++i){ // Hash existing entries into new table
if(!table[i].key.empty()){
p=b=h=table[i].hash;
while(elbat.table[x=p&(n-1)].hash){ // Locate slot
p=(p<<2)+p+b+1;
b>>=BSHIFT;
}
elbat.table[x].key.adopt(table[i].key); // Steal string from old table
elbat.table[x].data.adopt(table[i].data); // Steal data from old table
elbat.table[x].hash=(FXuint)h; // And copy the hash value
}
}
elbat.free(n-used()); // All non-empty slots now free
elbat.used(used()); // Used slots not changed
}
adopt(elbat);
return true;
}
return false;
}
// Construct empty map
FXVariantMap::FXVariantMap():table(EMPTY){
FXASSERT(sizeof(FXVariantMap)==sizeof(FXptr));
FXASSERT(sizeof(Entry)<=sizeof(FXival)*8);
}
// Construct from another map
FXVariantMap::FXVariantMap(const FXVariantMap& other):table(EMPTY){
FXASSERT(sizeof(FXVariantMap)==sizeof(FXptr));
FXASSERT(sizeof(Entry)<=sizeof(FXival)*8);
if(1<other.no()){
if(__unlikely(!no(other.no()))){ throw FXMemoryException("FXVariantMap::FXVariantMap: out of memory\n"); }
copyElms(table,other.table,no());
free(other.free());
used(other.used());
}
}
// Assignment operator
FXVariantMap& FXVariantMap::operator=(const FXVariantMap& other){
if(__likely(table!=other.table)){
if(1<other.no()){
if(__unlikely(!no(other.no()))){ throw FXMemoryException("FXVariantMap::operator=: out of memory\n"); }
copyElms(table,other.table,no());
free(other.free());
used(other.used());
}
else{
no(1);
}
}
return *this;
}
// Adopt array from another
FXVariantMap& FXVariantMap::adopt(FXVariantMap& other){
if(__likely(table!=other.table)){
swap(table,other.table);
other.clear();
}
return *this;
}
// Find slot index for key; return -1 if not found
FXival FXVariantMap::find(const FXchar* ky) const {
if(__unlikely(!ky || !*ky)){ throw FXRangeException("FXVariantMap::find: null or empty key\n"); }
if(__likely(!empty())){
FXuval p,b,x,h;
p=b=h=FXString::hash(ky);
FXASSERT(h);
while(table[x=p&(no()-1)].hash){
if(table[x].hash==h && table[x].key==ky) return x;
p=(p<<2)+p+b+1;
b>>=BSHIFT;
}
}
return -1;
}
// Return reference to variant assocated with key
FXVariant& FXVariantMap::at(const FXchar* ky){
FXuval p,b,h,x;
if(__unlikely(!ky || !*ky)){ throw FXRangeException("FXVariantMap::at: null or empty key\n"); }
p=b=h=FXString::hash(ky);
FXASSERT(h);
while(table[x=p&(no()-1)].hash){
if(table[x].hash==h && table[x].key==ky) goto x; // Return existing slot
p=(p<<2)+p+b+1;
b>>=BSHIFT;
}
if(__unlikely(free()<=1+(no()>>2)) && __unlikely(!resize(no()<<1))){ throw FXMemoryException("FXVariantMap::at: out of memory\n"); }
p=b=h;
while(table[x=p&(no()-1)].hash){
if(table[x].key.empty()) goto y; // Return voided slot
p=(p<<2)+p+b+1;
b>>=BSHIFT;
}
free(free()-1); // Put into empty slot
y:used(used()+1);
table[x].key=ky;
table[x].hash=(FXuint)h;
x:return table[x].data;
}
// Return constant reference to variant assocated with key
const FXVariant& FXVariantMap::at(const FXchar* ky) const {
if(__unlikely(!ky || !*ky)){ throw FXRangeException("FXVariantMap::at: null or empty key\n"); }
if(__likely(!empty())){
FXuval p,b,x,h;
p=b=h=FXString::hash(ky);
FXASSERT(h);
while(table[x=p&(no()-1)].hash){
if(table[x].hash==h && table[x].key==ky) return table[x].data;
p=(p<<2)+p+b+1;
b>>=BSHIFT;
}
}
return EMPTY[0].data;
}
// Remove entry from table
FXbool FXVariantMap::remove(const FXchar* ky){
if(__unlikely(!ky || !*ky)){ throw FXRangeException("FXVariantMap::remove: null or empty key\n"); }
if(__likely(!empty())){
FXuval p,b,h,x;
p=b=h=FXString::hash(ky);
FXASSERT(h);
while(table[x=p&(no()-1)].hash!=h || table[x].key!=ky){
if(!table[x].hash) return false;
p=(p<<2)+p+b+1;
b>>=BSHIFT;
}
table[x].key.clear(); // Void the slot (not empty!)
table[x].data.clear(); // Clear the variant
used(used()-1);
if(__unlikely(used()<=(no()>>2))) resize(no()>>1);
return true;
}
return false;
}
// Erase entry at pos in the table
FXbool FXVariantMap::erase(FXival pos){
if(__unlikely(pos<0 || no()<=pos)){ throw FXRangeException("FXVariantMap::erase: argument out of range\n"); }
if(!table[pos].key.empty()){
table[pos].key.clear(); // Void the slot (not empty!)
table[pos].data.clear(); // Clear the variant
used(used()-1);
if(__unlikely(used()<=(no()>>2))) resize(no()>>1);
return true;
}
return false;
}
// Clear the table
FXbool FXVariantMap::clear(){
return no(1);
}
// Destroy table
FXVariantMap::~FXVariantMap(){
clear();
}
}
|