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 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
|
/* arrayqueue.vala
*
* Copyright (C) 2012-2014 Maciej Piechotka
*
* 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 2.1 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 library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author:
* Maciej Piechotka <uzytkownik2@gmail.com>
*/
/**
* Resizable array implementation of the {@link Deque} interface.
*
* The storage array grows automatically when needed.
*
* This implementation is pretty good for lookups at the end or random.
* Because they are stored in an array this structure does not fit for deleting
* arbitrary elements. For an alternative implementation see {@link LinkedList}.
*
* @see LinkedList
*/
public class Gee.ArrayQueue<G> : Gee.AbstractQueue<G>, Deque<G> {
/**
* Constructs a new, empty array queue.
*
* If not provided, the function parameter is requested to the
* {@link Functions} function factory methods.
*
* @param equal_func an optional element equality testing function
*/
public ArrayQueue (owned EqualDataFunc<G>? equal_func = null) {
if (equal_func == null) {
equal_func = Functions.get_equal_func_for (typeof (G));
}
_equal_func = (owned)equal_func;
this._items = new G[10];
}
[CCode (notify = false)]
public EqualDataFunc<G> equal_func {
private set {}
get { return _equal_func; }
}
private EqualDataFunc<G> _equal_func;
/**
* {@inheritDoc}
*/
public override int size { get { return _length; } }
public bool is_empty { get { return _length == 0; } }
/**
* {@inheritDoc}
*/
public override bool read_only { get { return false; } }
/**
* {@inheritDoc}
*/
public override int capacity { get {return Queue.UNBOUNDED_CAPACITY;} }
/**
* {@inheritDoc}
*/
public override int remaining_capacity { get {return Queue.UNBOUNDED_CAPACITY;} }
/**
* {@inheritDoc}
*/
public override bool is_full { get { return false; } }
/**
* {@inheritDoc}
*/
public override Gee.Iterator<G> iterator() {
return new Iterator<G> (this);
}
/**
* {@inheritDoc}
*/
public override bool add (G element) {
return offer_tail (element);
}
/**
* {@inheritDoc}
*/
public override bool contains (G item) {
return find_index(item) != -1;
}
/**
* {@inheritDoc}
*/
public override bool remove (G item) {
_stamp++;
int index = find_index (item);
if (index == -1) {
return false;
} else {
remove_at (index);
return true;
}
}
/**
* {@inheritDoc}
*/
public override void clear() {
_stamp++;
for (int i = 0; i < _length; i++) {
_items[(_start + i) % _items.length] = null;
}
_start = _length = 0;
}
/**
* {@inheritDoc}
*/
public override bool foreach (ForallFunc<G> f) {
for (int i = 0; i < _length; i++) {
if (!f (_items[(_start + i) % _items.length])) {
return false;
}
}
return true;
}
/**
* {@inheritDoc}
*/
public override G? peek () {
return peek_head ();
}
/**
* {@inheritDoc}
*/
public override G? poll () {
return poll_head ();
}
/**
* {@inheritDoc}
*/
public bool offer_head (G element) {
grow_if_needed ();
_start = (_items.length + _start - 1) % _items.length;
_length++;
_items[_start] = element;
_stamp++;
return true;
}
/**
* {@inheritDoc}
*/
public G? peek_head () {
return _items[_start];
}
/**
* {@inheritDoc}
*/
public G? poll_head () {
_stamp++;
if (_length == 0) {
_start = 0;
return null;
} else {
_length--;
G result = (owned)_items[_start];
_start = (_start + 1) % _items.length;
return (owned)result;
}
}
/**
* {@inheritDoc}
*/
public int drain_head (Collection<G> recipient, int amount = -1) {
return drain (recipient, amount);
}
/**
* {@inheritDoc}
*/
public bool offer_tail (G element) {
grow_if_needed();
_items[(_start + _length++) % _items.length] = element;
_stamp++;
return true;
}
/**
* {@inheritDoc}
*/
public G? peek_tail () {
return _items[(_items.length + _start + _length - 1) % _items.length];
}
/**
* {@inheritDoc}
*/
public G? poll_tail () {
_stamp++;
if (_length == 0) {
_start = 0;
return null;
} else {
return (owned)_items[(_items.length + _start + --_length) % _items.length];
}
}
/**
* {@inheritDoc}
*/
public int drain_tail (Collection<G> recipient, int amount = -1) {
G? item = null;
int drained = 0;
while((amount == -1 || --amount >= 0) && (item = poll_tail ()) != null) {
recipient.add(item);
drained++;
}
return drained;
}
/**
* {@inheritDoc}
*/
private void grow_if_needed () {
if (_items.length < _length +1 ) {
_items.resize (2 * _items.length);
#if 0
_items.move (0, _length, _start);
#else
// See bug #667452
for(int i = 0; i < _start; i++)
_items[_length + i] = (owned)_items[i];
#endif
}
}
private int find_index (G item) {
for (int i = _start; i < int.min(_items.length, _start + _length); i++) {
if (equal_func(item, _items[i])) {
return i;
}
}
for (int i = 0; i < _start + _length - _items.length; i++) {
if (equal_func(item, _items[i])) {
return i;
}
}
return -1;
}
private void remove_at (int index) {
int end = (_items.length + _start + _length - 1) % _items.length + 1;
if (index == _start) {
_items[_start++] = null;
_length--;
return;
} else if (index > _start && end <= _start) {
_items[index] = null;
_items.move (index + 1, index, _items.length - 1);
_items[_items.length - 1] = (owned)_items[0];
_items.move (1, 0, end - 1);
_length--;
} else {
_items[index] = null;
_items.move (index + 1, index, end - (index + 1));
_length--;
}
}
private class Iterator<G> : GLib.Object, Traversable<G>, Gee.Iterator<G> {
public Iterator (ArrayQueue<G> queue) {
_queue = queue;
_stamp = _queue._stamp;
}
public Iterator.from_iterator (Iterator<G> iter) {
_queue = iter._queue;
_stamp = iter._stamp;
_offset = iter._offset;
_removed = iter._removed;
}
public bool next () {
assert (_queue._stamp == _stamp);
if (has_next ()) {
_offset++;
_removed = false;
return true;
} else {
return false;
}
}
public bool has_next () {
assert (_queue._stamp == _stamp);
return _offset + 1 < _queue._length;
}
public new G get () {
assert (_queue._stamp == _stamp);
assert (_offset != -1);
assert (!_removed);
return _queue._items[(_queue._start + _offset) % _queue._items.length];
}
public void remove () {
assert (_queue._stamp++ == _stamp++);
_queue.remove_at((_queue._start + _offset) % _queue._items.length);
_offset--;
_removed = true;
}
public bool valid { get {return _offset != -1 && !_removed;} }
public bool read_only { get {return false;} }
public bool foreach (ForallFunc<G> f) {
assert (_queue._stamp == _stamp);
if (!valid) {
_offset++;
_removed = false;
}
for (int i = _offset; i < _queue._length; i++) {
if (!f (_queue._items[(_queue._start + i) % _queue._items.length])) {
_offset = i;
return false;
}
}
_offset = _queue._length - 1;
return true;
}
public Gee.Iterator<G>[] tee (uint forks) {
if (forks == 0) {
return new Gee.Iterator<G>[0];
} else {
Gee.Iterator<G>[] result = new Gee.Iterator<G>[forks];
result[0] = this;
for (uint i = 1; i < forks; i++) {
result[i] = new Iterator<G>.from_iterator (this);
}
return result;
}
}
protected ArrayQueue<G> _queue;
protected int _stamp;
protected int _offset = -1;
protected bool _removed = false;
}
private G[] _items;
private int _start = 0;
private int _length = 0;
private int _stamp = 0;
}
|