/usr/include/OS/list.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 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 | /*
* 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.
*/
/*
* Generic list implemented as dynamic array
*/
#ifndef os_list_h
#define os_list_h
#include <OS/enter-scope.h>
extern void ListImpl_range_error(long index);
extern long ListImpl_best_new_count(long count, unsigned size);
#if defined(__STDC__) || defined(__ANSI_CPP__)
#define __ListItr(List) List##_Iterator
#define ListItr(List) __ListItr(List)
#define __ListUpdater(List) List##_Updater
#define ListUpdater(List) __ListUpdater(List)
#else
#define __ListItr(List) List/**/_Iterator
#define ListItr(List) __ListItr(List)
#define __ListUpdater(List) List/**/_Updater
#define ListUpdater(List) __ListUpdater(List)
#endif
#define declareList(List,T) \
class List { \
public: \
List(long size = 0); \
~List(); \
\
long count() const; \
T item(long index) const; \
T& item_ref(long index) const; \
\
void prepend(const T&); \
void append(const T&); \
void insert(long index, const T&); \
void remove(long index); \
void remove_all(); \
private: \
T* items_; \
long size_; \
long count_; \
long free_; \
}; \
\
inline long List::count() const { return count_; } \
\
inline T List::item(long index) const { \
if (index < 0 || index >= count_) { \
ListImpl_range_error(index); \
} \
long i = index < free_ ? index : index + size_ - count_; \
return items_[i]; \
} \
inline T& List::item_ref(long index) const { \
if (index < 0 || index >= count_) { \
ListImpl_range_error(index); \
} \
long i = index < free_ ? index : index + size_ - count_; \
return items_[i]; \
} \
\
inline void List::append(const T& item) { insert(count_, item); } \
inline void List::prepend(const T& item) { insert(0, item); } \
\
class ListItr(List) { \
public: \
ListItr(List)(const List&); \
\
boolean more() const; \
T cur() const; \
T& cur_ref() const; \
void next(); \
private: \
const List* list_; \
long cur_; \
}; \
\
inline boolean ListItr(List)::more() const { return cur_ < list_->count(); } \
inline T ListItr(List)::cur() const { return list_->item(cur_); } \
inline T& ListItr(List)::cur_ref() const { \
return list_->item_ref(cur_); \
} \
inline void ListItr(List)::next() { ++cur_; } \
\
class ListUpdater(List) { \
public: \
ListUpdater(List)(List&); \
\
boolean more() const; \
T cur() const; \
T& cur_ref() const; \
void remove_cur(); \
void next(); \
private: \
List* list_; \
long cur_; \
}; \
\
inline boolean ListUpdater(List)::more() const { \
return cur_ < list_->count(); \
} \
inline T ListUpdater(List)::cur() const { return list_->item(cur_); } \
inline T& ListUpdater(List)::cur_ref() const { \
return list_->item_ref(cur_); \
} \
inline void ListUpdater(List)::remove_cur() { list_->remove(cur_); } \
inline void ListUpdater(List)::next() { ++cur_; }
/*
* Lists of pointers
*
* Don't ask me to explain the AnyPtr nonsense. C++ compilers
* have a hard time deciding between (const void*)& and const (void*&).
* Typedefs help, though still keep me guessing.
*/
typedef void* __AnyPtr;
declareList(__AnyPtrList,__AnyPtr)
#define declarePtrList(PtrList,T) \
class PtrList { \
public: \
PtrList(long size = 0); \
\
long count() const; \
T* item(long index) const; \
\
void prepend(T*); \
void append(T*); \
void insert(long index, T*); \
void remove(long index); \
void remove_all(); \
private: \
__AnyPtrList impl_; \
}; \
\
inline PtrList::PtrList(long size) : impl_(size) { } \
inline long PtrList::count() const { return impl_.count(); } \
inline T* PtrList::item(long index) const { return (T*)impl_.item(index); } \
inline void PtrList::append(T* item) { insert(impl_.count(), item); } \
inline void PtrList::prepend(T* item) { insert(0, item); } \
inline void PtrList::remove(long index) { impl_.remove(index); } \
inline void PtrList::remove_all() { impl_.remove_all(); } \
\
class ListItr(PtrList) { \
public: \
ListItr(PtrList)(const PtrList&); \
\
boolean more() const; \
T* cur() const; \
void next(); \
private: \
const PtrList* list_; \
long cur_; \
}; \
\
inline boolean ListItr(PtrList)::more() const { \
return cur_ < list_->count(); \
} \
inline T* ListItr(PtrList)::cur() const { return list_->item(cur_); } \
inline void ListItr(PtrList)::next() { ++cur_; } \
\
class ListUpdater(PtrList) { \
public: \
ListUpdater(PtrList)(PtrList&); \
\
boolean more() const; \
T* cur() const; \
void remove_cur(); \
void next(); \
private: \
PtrList* list_; \
long cur_; \
}; \
\
inline boolean ListUpdater(PtrList)::more() const { \
return cur_ < list_->count(); \
} \
inline T* ListUpdater(PtrList)::cur() const { return list_->item(cur_); } \
inline void ListUpdater(PtrList)::remove_cur() { list_->remove(cur_); } \
inline void ListUpdater(PtrList)::next() { ++cur_; }
/*
* List implementation
*/
#define implementList(List,T) \
List::List(long size) { \
if (size > 0) { \
size_ = ListImpl_best_new_count(size, sizeof(T)); \
items_ = new T[size_]; \
} else { \
size_ = 0; \
items_ = 0; \
} \
count_ = 0; \
free_ = 0; \
} \
\
List::~List() { \
delete [] items_; \
} \
\
void List::insert(long index, const T& item) { \
if (count_ == size_) { \
long size = ListImpl_best_new_count(size_ + 1, sizeof(T)); \
T* items = new T[size]; \
if (items_ != 0) { \
register long i; \
for (i = 0; i < free_; ++i) { \
items[i] = items_[i]; \
} \
for (i = 0; i < count_ - free_; ++i) { \
items[free_ + size - count_ + i] = \
items_[free_ + size_ - count_ + i]; \
} \
delete [] items_; \
} \
items_ = items; \
size_ = size; \
} \
if (index >= 0 && index <= count_) { \
if (index < free_) { \
for (register long i = free_ - index - 1; i >= 0; --i) { \
items_[index + size_ - count_ + i] = items_[index + i]; \
} \
} else if (index > free_) { \
for (register long i = 0; i < index - free_; ++i) { \
items_[free_ + i] = items_[free_ + size_ - count_ + i]; \
} \
} \
free_ = index + 1; \
count_ += 1; \
items_[index] = item; \
} \
} \
\
void List::remove(long index) { \
if (index >= 0 && index <= count_) { \
if (index < free_) { \
for (register long i = free_ - index - 2; i >= 0; --i) { \
items_[size_ - count_ + index + 1 + i] = \
items_[index + 1 + i]; \
} \
} else if (index > free_) { \
for (register long i = 0; i < index - free_; ++i) { \
items_[free_ + i] = items_[free_ + size_ - count_ + i]; \
} \
} \
free_ = index; \
count_ -= 1; \
} \
} \
\
void List::remove_all() { \
count_ = 0; \
free_ = 0; \
} \
\
ListItr(List)::ListItr(List)(const List& list) { \
list_ = &list; \
cur_ = 0; \
} \
\
ListUpdater(List)::ListUpdater(List)(List& list) { \
list_ = &list; \
cur_ = 0; \
}
#define implementPtrList(PtrList,T) \
void PtrList::insert(long index, T* item) { \
const __AnyPtr p = item; \
impl_.insert(index, p); \
} \
ListItr(PtrList)::ListItr(PtrList)(const PtrList& list) { \
list_ = &list; \
cur_ = 0; \
} \
\
ListUpdater(PtrList)::ListUpdater(PtrList)(PtrList& list) { \
list_ = &list; \
cur_ = 0; \
}
#endif
|