/usr/include/OS/table2.h is in ivtools-dev 1.2.11a1-2.
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 | /*
* Copyright (c) 1987, 1988, 1989, 1990, 1991 Stanford University
* Copyright (c) 1991 Silicon Graphics, Inc.
*
* Permission to use, copy, modify, distribute, and sell this software and
* its documentation for any purpose is hereby granted without fee, provided
* that (i) the above copyright notices and this permission notice appear in
* all copies of the software and related documentation, and (ii) the names of
* Stanford and Silicon Graphics may not be used in any advertising or
* publicity relating to the software without the specific, prior written
* permission of Stanford and Silicon Graphics.
*
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
*
* IN NO EVENT SHALL STANFORD OR SILICON GRAPHICS BE LIABLE FOR
* ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
* WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
* LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THIS SOFTWARE.
*/
/*
* Object association table with 2 keys.
*/
#ifndef os_table2_h
#define os_table2_h
#include <OS/enter-scope.h>
#if defined(__STDC__) || defined(__ANSI_CPP__)
#define __Table2Entry(Table2) Table2##_Entry
#define Table2Entry(Table2) __Table2Entry(Table2)
#define __Table2Iterator(Table2) Table2##_Iterator
#define Table2Iterator(Table2) __Table2Iterator(Table2)
#else
#define __Table2Entry(Table2) Table2/**/_Entry
#define Table2Entry(Table2) __Table2Entry(Table2)
#define __Table2Iterator(Table2) Table2/**/_Iterator
#define Table2Iterator(Table2) __Table2Iterator(Table2)
#endif
#define declareTable2(Table2,Key1,Key2,Value) \
struct Table2Entry(Table2); \
\
class Table2 { \
public: \
Table2(int); \
~Table2(); \
\
void insert(Key1, Key2, Value); \
boolean find(Value&, Key1, Key2); \
void remove(Key1, Key2); \
protected: \
friend class Table2Iterator(Table2); \
\
int size_; \
Table2Entry(Table2)** first_; \
Table2Entry(Table2)** last_; \
\
Table2Entry(Table2)*& probe(Key1, Key2); \
}; \
\
struct Table2Entry(Table2) { \
public: \
\
Key1 key1_; \
Key2 key2_; \
Value value_; \
Table2Entry(Table2)* chain_; \
}; \
\
class Table2Iterator(Table2) { \
public: \
Table2Iterator(Table2)(Table2&); \
\
Key1& cur_key1(); \
Key2& cur_key2(); \
Value& cur_value(); \
boolean more(); \
boolean next(); \
protected: \
Table2Entry(Table2)* cur_; \
Table2Entry(Table2)** entry_; \
Table2Entry(Table2)** last_; \
}; \
\
inline Key1& Table2Iterator(Table2)::cur_key1() { return cur_->key1_; } \
inline Key2& Table2Iterator(Table2)::cur_key2() { return cur_->key2_; } \
inline Value& Table2Iterator(Table2)::cur_value() { return cur_->value_; } \
inline boolean Table2Iterator(Table2)::more() { return entry_ <= last_; }
/*
* Predefined hash functions
*/
#ifndef os_table_h
inline unsigned long key_to_hash(long k) { return (unsigned long)k; }
inline unsigned long key_to_hash(const void* k) { return (unsigned long)k; }
#endif
/*
* Table2 implementation
*/
#define implementTable2(Table2,Key1,Key2,Value) \
Table2::Table2(int n) { \
for (size_ = 32; size_ < n; size_ <<= 1); \
first_ = new Table2Entry(Table2)*[size_]; \
--size_; \
last_ = &first_[size_]; \
for (register Table2Entry(Table2)** e = first_; e <= last_; e++) { \
*e = nil; \
} \
} \
\
Table2::~Table2() { \
delete first_; \
} \
\
inline Table2Entry(Table2)*& Table2::probe(Key1 k1, Key2 k2) { \
return first_[(key_to_hash(k1) ^ key_to_hash(k2)) & size_]; \
} \
\
void Table2::insert(Key1 k1, Key2 k2, Value v) { \
register Table2Entry(Table2)* e = new Table2Entry(Table2); \
e->key1_ = k1; \
e->key2_ = k2; \
e->value_ = v; \
register Table2Entry(Table2)** a = &probe(k1, k2); \
e->chain_ = *a; \
*a = e; \
} \
\
boolean Table2::find(Value& v, Key1 k1, Key2 k2) { \
for ( \
register Table2Entry(Table2)* e = probe(k1, k2); \
e != nil; \
e = e->chain_ \
) { \
if (e->key1_ == k1 && e->key2_ == k2) { \
v = e->value_; \
return true; \
} \
} \
return false; \
} \
\
void Table2::remove(Key1 k1, Key2 k2) { \
Table2Entry(Table2)** a = &probe(k1, k2); \
register Table2Entry(Table2)* e = *a; \
if (e != nil) { \
if (e->key1_ == k1 && e->key2_ == k2) { \
*a = e->chain_; \
delete e; \
} else { \
register Table2Entry(Table2)* prev; \
do { \
prev = e; \
e = e->chain_; \
} while (e != nil && (e->key1_ != k1 || e->key2_ != k2)); \
if (e != nil) { \
prev->chain_ = e->chain_; \
delete e; \
} \
} \
} \
} \
\
Table2Iterator(Table2)::Table2Iterator(Table2)(Table2& t) { \
last_ = t.last_; \
for (entry_ = t.first_; entry_ <= last_; entry_++) { \
cur_ = *entry_; \
if (cur_ != nil) { \
break; \
} \
} \
} \
\
boolean Table2Iterator(Table2)::next() { \
cur_ = cur_->chain_; \
if (cur_ != nil) { \
return true; \
} \
for (++entry_; entry_ <= last_; entry_++) { \
cur_ = *entry_; \
if (cur_ != nil) { \
return true; \
} \
} \
return false; \
}
#endif
|