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
|
/* Part of SWI-Prolog
Author: Jan Wielemaker and Peter Ludemann
E-mail: J.Wielemaker@vu.nl
WWW: http://www.swi-prolog.org
Copyright (c) 2000-2023, University of Amsterdam
VU University Amsterdam
SWI-Prolog Solutions b.v.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _SWI_CPP2_ATOMMAP_H
#define _SWI_CPP2_ATOMMAP_H
#include <map>
#include <mutex>
#include <shared_mutex>
#include "SWI-cpp2.h"
// The AtomMap class is a wrapper around a std::map, mapping alias
// names to blobs. The blobs are of type PlAtom or PlTerm, so this is
// actually an atom->atom or atom->term map.
// The entries are protected by a mutex, so the operations are thread-safe.
// The operations do appropriate calls to register and unregister the atoms/blobs.
//
// When defining an AtomMap, you specify the value type and how it is stored.
// The supported values are:
// PlAtom,PlAtom
// PlTerm,PlRecord
// The API automatically converts between the value and stored value types.
//
// The operations are:
// PlAtom find(PlAtom name) - look up, returning PlAtom::null if not found
// void insert(PlAtom name, PlAtom symbol) - insert, throwing a
// PlPermissionError if it's already there
// void erase(PlAtom name) - remove the entry (no error if it's already been removed)
template <typename ValueType, typename StoredValueType>
class AtomMap
{
public:
explicit AtomMap() = delete;
// On error, the message is something like
// No permission to <insert_op> <insert_type> `<key>'
// using PlPermissionError(insert_op_, insert_type_, key)
explicit AtomMap(const std::string& insert_op, const std::string& insert_type)
: insert_op_(insert_op), insert_type_(insert_type)
{ }
AtomMap(const AtomMap&) = delete;
AtomMap(const AtomMap&&) = delete;
AtomMap& operator =(const AtomMap&) = delete;
AtomMap& operator =(const AtomMap&&) = delete;
~AtomMap()
{ std::scoped_lock lock__(lock_);
auto lookup = entries_.begin();
while ( lookup != entries_.end() )
lookup = erase_inside_lock(lookup);
}
void
insert(PlAtom key, ValueType value)
{ std::scoped_lock lock__(lock_);
insert_inside_lock(key, value);
}
[[nodiscard]]
ValueType
find(PlAtom key)
{ std::shared_lock lock__(lock_);
return find_inside_lock(key);
}
void
erase(PlAtom key)
{ std::scoped_lock lock__(lock_);
erase_inside_lock(key);
}
size_t
size()
{ std::shared_lock lock__(lock_);
return size_inside_lock();
}
private:
typedef std::map<atom_t, StoredValueType> map_t;
[[nodiscard]]
ValueType
find_inside_lock(PlAtom key)
{ const auto lookup = entries_.find(key.unwrap());
if ( lookup == entries_.end() )
return ValueType(ValueType::null);
else
return ValueType(lookup->second);
}
void
insert_inside_lock(PlAtom key, ValueType value)
{ const auto lookup = find_inside_lock(key);
if ( lookup.is_null() )
{ StoredValueType stored_value(StoredValueType::null);
register_value(value, &stored_value);
key.register_ref();
entries_.insert(std::make_pair(key.unwrap(), stored_value));
} else if ( lookup != value )
{ throw PlPermissionError(insert_op_, insert_type_, PlTerm_atom(key));
}
}
void
erase_inside_lock(PlAtom key)
{ auto lookup = entries_.find(key.unwrap());
if ( lookup == entries_.end() )
return;
// TODO: As an alternative to removing the entry, leave it in place
// (with db==nullptr showing that it's been closed; or with
// the value as PlAtom::null), so that rocks_close/1 can
// distinguish an alias lookup that should throw a
// PlExistenceError because it's never been opened.
erase_inside_lock(lookup);
}
auto erase_inside_lock(typename map_t::iterator lookup)
{ PlAtom(lookup->first).unregister_ref();
unregister_stored_value(&lookup->second);
return entries_.erase(lookup);
}
size_t
size_inside_lock() const
{ return entries_.size();
}
// Implementation for map<PlAtom,PlAtom>
static void
register_value(const PlAtom &value, PlAtom *stored_value)
{ *stored_value = value;
stored_value->register_ref();
}
static void
unregister_stored_value(PlAtom *stored_value)
{ stored_value->unregister_ref();
}
// Implementation for map<PlAtom,PlRecord> (external: PlAtom,PlTerm>)
static void
register_value(const PlTerm &value, PlRecord *stored_value)
{ *stored_value = value.record();
}
static void
unregister_stored_value(PlRecord *stored_value)
{ stored_value->erase();
}
// Data: mutex + map
std::shared_mutex lock_;
// TODO: Define the necessary operators for PlAtom, so that it can be
// the key instead of atom_t.
map_t entries_;
std::string insert_op_; // for PlPermissionError
std::string insert_type_; // for PlPermissionError
};
#endif /*_SWI_CPP2_ATOMMAP_H*/
|