/usr/include/CLucene/util/VoidMap.h is in libclucene-dev 2.3.3.4-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 | /*------------------------------------------------------------------------------
* Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team
*
* Distributable under the terms of either the Apache License (Version 2.0) or
* the GNU Lesser General Public License, as specified in the COPYING file.
------------------------------------------------------------------------------*/
#ifndef _lucene_util_VoidMap_
#define _lucene_util_VoidMap_
#include "Equators.h"
#include "CLucene/LuceneThreads.h"
#if defined(_CL_HAVE_TR1_UNORDERED_MAP) && defined(_CL_HAVE_TR1_UNORDERED_SET)
#include <tr1/unordered_map>
#include <tr1/unordered_set>
#elif defined(_CL_HAVE_HASH_MAP) && defined(_CL_HAVE_HASH_SET)
//hashing is all or nothing!
#include <hash_map>
#include <hash_set>
#elif defined(_CL_HAVE_EXT_HASH_MAP) && defined(_CL_HAVE_EXT_HASH_SET)
#include <ext/hash_map>
#include <ext/hash_set>
#elif !defined(LUCENE_DISABLE_HASHING)
#define LUCENE_DISABLE_HASHING
#endif
CL_NS_DEF(util)
/**
* A template to encapsulate various map type classes
* @internal
*/
template<typename _kt, typename _vt,
typename _base,
typename _KeyDeletor=CL_NS(util)::Deletor::Dummy,
typename _ValueDeletor=CL_NS(util)::Deletor::Dummy>
class CLUCENE_INLINE_EXPORT __CLMap:public _base,LUCENE_BASE {
protected:
bool dk;
bool dv;
typedef _base base;
public:
typedef typename _base::iterator iterator;
typedef typename _base::const_iterator const_iterator;
typedef CL_NS_STD(pair)<_kt, _vt> _pair;
///Default constructor for the __CLMap
__CLMap ():
dk(true),
dv(true)
{
}
///Deconstructor for the __CLMap
~__CLMap (){
clear();
}
void setDeleteKey(bool val){ dk = val; }
void setDeleteValue(bool val){ dv = val; }
///Construct the VoidMap and set the deleteTypes to the specified values
///\param deleteKey if true then the key variable is deleted when an object is deleted
///\param keyDelType delete the key variable using the specified type
///\param deleteValue if true then the value variable is deleted when an object is deleted
///\param valueDelType delete the value variable using the specified type
/*__CLMap ( const bool deleteKey, const bool deleteValue ):
dk(deleteKey),
dv(deleteValue)
{
}*/
///checks to see if the specified key exists
///\param k the key to check for
///\returns true if the key exists
bool exists(_kt k)const{
const_iterator itr = base::find(k);
bool ret = itr!=base::end();
return ret;
}
///using a non-const key, get a non-const value
_vt get( _kt k) const {
const_iterator itr = base::find(k);
if ( itr==base::end() )
return (_vt)NULL;
else
return itr->second;
}
/*
///using a non-const key, get the actual key
_kt getKey( _kt k) const {
const_iterator itr = base::find(k);
if ( itr==base::end() )
return NULL;
else
return itr->first;
}*/
void removeitr (iterator itr, const bool dontDeleteKey = false, const bool dontDeleteValue = false){
if ( itr == base::end() ) return;
//delete key&val first. This prevents potential loops (deleting object removes itself)
_kt key = itr->first;
_vt val = itr->second;
base::erase(itr);
//keys & vals need to be deleted after erase, because the hashvalue is still needed
if ( dk && !dontDeleteKey )
_KeyDeletor::doDelete(key);
if ( dv && !dontDeleteValue )
_ValueDeletor::doDelete(val);
}
///delete and optionally delete the specified key and associated value
void remove(_kt key, const bool dontDeleteKey = false, const bool dontDeleteValue = false){
iterator itr = base::find(key);
if ( itr!=base::end() )
removeitr(itr,dontDeleteKey,dontDeleteValue);
}
///clear all keys and values in the map
void clear(){
if ( dk || dv ){
iterator itr = base::begin();
while ( itr!=base::end() ){
#ifdef _CL_HAVE_EXT_HASH_MAP
removeitr(itr);
itr = base::begin();
#else
if ( dk )
_KeyDeletor::doDelete(itr->first);
if ( dv )
_ValueDeletor::doDelete(itr->second);
++itr;
#endif
}
}
base::clear();
}
};
// makes no guarantees as to the order of the map
// cannot contain duplicate keys; each key can map to at most one value
#define CLHashtable CLHashMap
#if defined(LUCENE_DISABLE_HASHING)
//a CLSet with CLHashMap traits
template<typename _kt, typename _vt,
typename _Compare,
typename _EqualDummy,
typename _KeyDeletor=CL_NS(util)::Deletor::Dummy,
typename _ValueDeletor=CL_NS(util)::Deletor::Dummy>
class CLUCENE_INLINE_EXPORT CLHashMap:public __CLMap<_kt,_vt,
CL_NS_STD(map)<_kt,_vt, _Compare>,
_KeyDeletor,_ValueDeletor>
{
typedef typename CL_NS_STD(map)<_kt,_vt,_Compare> _base;
typedef __CLMap<_kt, _vt, CL_NS_STD(map)<_kt,_vt, _Compare>,
_KeyDeletor,_ValueDeletor> _this;
public:
CLHashMap ( const bool deleteKey=false, const bool deleteValue=false )
{
_this::setDeleteKey(deleteKey);
_this::setDeleteValue(deleteValue);
}
///put the specified pair into the map. remove any old items first
///\param k the key
///\param v the value
virtual void put(_kt k,_vt v){
//todo: check if this is always right!
//must should look through code, for
//cases where map is not unique!!!
if ( _this::dk || _this::dv )
_this::remove(k);
(*this)[k] = v;;
}
};
#elif defined(_CL_HAVE_EXT_HASH_MAP)
//ext/hash_map syntax
//HashMap class is roughly equivalent to Hashtable, except that it is unsynchronized
template<typename _kt, typename _vt,
typename _Hasher,
typename _Equals,
typename _KeyDeletor=CL_NS(util)::Deletor::Dummy,
typename _ValueDeletor=CL_NS(util)::Deletor::Dummy>
class CLUCENE_INLINE_EXPORT CLHashMap:public __CLMap<_kt,_vt,
CL_NS_HASHING(_CL_HASH_MAP)<_kt,_vt, _Hasher,_Equals>,
_KeyDeletor,_ValueDeletor>
{
typedef __CLMap<_kt,_vt, CL_NS_HASHING(_CL_HASH_MAP)<_kt,_vt, _Hasher,_Equals>,
_KeyDeletor,_ValueDeletor> _this;
public:
CLHashMap ( const bool deleteKey=false, const bool deleteValue=false )
{
_this::setDeleteKey(deleteKey);
_this::setDeleteValue(deleteValue);
}
///put the specified pair into the map. remove any old items first
///\param k the key
///\param v the value
virtual void put(_kt k,_vt v){
//todo: check if this is always right!
//must should look through code, for
//cases where map is not unique!!!
if ( _this::dk || _this::dv )
_this::remove(k);
(*this)[k] = v;;
}
};
#elif defined(_CL_HAVE_HASH_MAP)
//HashMap class is roughly equivalent to Hashtable, except that it is unsynchronized
template<typename _kt, typename _vt,
typename _Hasher,
typename _Equals,
typename _KeyDeletor=CL_NS(util)::Deletor::Dummy,
typename _ValueDeletor=CL_NS(util)::Deletor::Dummy>
class CLUCENE_INLINE_EXPORT CLHashMap:public __CLMap<_kt,_vt,
CL_NS_HASHING(_CL_HASH_MAP)<_kt,_vt, _Hasher>,
_KeyDeletor,_ValueDeletor>
{
typedef __CLMap<_kt,_vt, CL_NS_HASHING(_CL_HASH_MAP)<_kt,_vt, _Hasher>,
_KeyDeletor,_ValueDeletor> _this;
public:
CLHashMap ( const bool deleteKey=false, const bool deleteValue=false )
{
_this::setDeleteKey(deleteKey);
_this::setDeleteValue(deleteValue);
}
///put the specified pair into the map. remove any old items first
///\param k the key
///\param v the value
virtual void put(_kt k,_vt v){
//todo: check if this is always right!
//must should look through code, for
//cases where map is not unique!!!
if ( _this::dk || _this::dv )
_this::remove(k);
(*this)[k] = v;;
}
};
#endif
//A collection that contains no duplicates
//does not guarantee that the order will remain constant over time
template<typename _kt, typename _vt,
typename _Compare,
typename _KeyDeletor=CL_NS(util)::Deletor::Dummy,
typename _ValueDeletor=CL_NS(util)::Deletor::Dummy>
class CLUCENE_INLINE_EXPORT CLSet:public __CLMap<_kt,_vt,
CL_NS_STD(map)<_kt,_vt, _Compare>,
_KeyDeletor,_ValueDeletor>
{
typedef typename CL_NS_STD(map)<_kt,_vt,_Compare> _base;
typedef __CLMap<_kt, _vt, CL_NS_STD(map)<_kt,_vt, _Compare>,
_KeyDeletor,_ValueDeletor> _this;
public:
CLSet ( const bool deleteKey=false, const bool deleteValue=false )
{
_this::setDeleteKey(deleteKey);
_this::setDeleteValue(deleteValue);
}
///put the specified pair into the map. remove any old items first
///\param k the key
///\param v the value
virtual void put(_kt k,_vt v){
//todo: check if this is always right!
//must should look through code, for
//cases where map is not unique!!!
if ( _this::dk || _this::dv )
_this::remove(k);
(*this)[k] = v;;
}
};
//A collection that can contains duplicates
template<typename _kt, typename _vt,
typename _Compare,
typename _KeyDeletor=CL_NS(util)::Deletor::Dummy,
typename _ValueDeletor=CL_NS(util)::Deletor::Dummy>
class CLUCENE_INLINE_EXPORT CLMultiMap:public __CLMap<_kt,_vt,
CL_NS_STD(multimap)<_kt,_vt>,
_KeyDeletor,_ValueDeletor>
{
typedef typename CL_NS_STD(multimap)<_kt,_vt> _base;
typedef __CLMap<_kt, _vt, CL_NS_STD(multimap)<_kt,_vt>,
_KeyDeletor,_ValueDeletor> _this;
public:
CLMultiMap ( const bool deleteKey=false, const bool deleteValue=false )
{
_this::setDeleteKey(deleteKey);
_this::setDeleteValue(deleteValue);
}
///put the specified pair into the map. remove any old items first
///\param k the key
///\param v the value
void put(_kt k,_vt v){
//todo: check if this is always right!
//must should look through code, for
//cases where map is not unique!!!
if ( _this::dk || _this::dv )
_this::remove(k);
}
};
//*** need to create a class that allows duplicates - use <set>
//#define CLSet __CLMap
CL_NS_END
#endif
|