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 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
|
/* Collection.cpp
*
* Copyright (C) 1992-2011 Paul Boersma
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "Collection.h"
/********** class Collection **********/
void structCollection :: v_destroy () {
if (item != NULL) {
if (! _dontOwnItems) {
for (long i = 1; i <= size; i ++) {
forget (((Thing *) item) [i]);
}
}
item ++; // base 1
Melder_free (item);
}
Collection_Parent :: v_destroy ();
}
void structCollection :: v_info ()
{
MelderInfo_writeLine2 (Melder_integer (size), L" items");
}
void structCollection :: v_copy (thou) {
thouart (Collection);
thy item = NULL; // kill shallow copy of item // BUG
Collection_Parent :: v_copy (thee); therror
thy itemClass = itemClass;
thy _capacity = _capacity;
thy size = size;
thy item = Melder_calloc (void *, _capacity); // filled with NULL
thy item --; // immediately turn from base-0 into base-1 // BUG use NUMvector
for (long i = 1; i <= size; i ++) {
Thing itempie = (Thing) item [i];
if (_dontOwnItems) {
thy item [i] = itempie; // reference copy: if me doesn't own the items, then thee shouldn't either // NOTE: the items don't have to be Data
} else {
if (! Thing_member (itempie, classData))
Melder_throw ("Cannot copy item of class ", Thing_className (itempie), ".");
thy item [i] = Data_copy ((Data) itempie);
}
}
}
bool structCollection :: v_equal (thou) {
thouart (Collection);
if (! Collection_Parent :: v_equal (thee)) return false;
if (size != thy size) return false;
for (long i = 1; i <= size; i ++) {
if (! Thing_member ((Thing) item [i], classData))
Melder_throw ("Collection::equal: "
"cannot compare items of class ", Thing_className ((Thing) item [i]), ".");
if (! Thing_member ((Thing) thy item [i], classData))
Melder_throw ("Collection::equal: "
"cannot compare items of class ", Thing_className ((Thing) thy item [i]), ".");
bool equal = Data_equal ((Data) item [i], (Data) thy item [i]);
//Melder_casual ("classCollection_equal: %d, items %ld, types %ls and %ls",
// equal, i, Thing_className (my item [i]), Thing_className (thy item [i]));
if (! equal) return false;
}
return true;
}
bool structCollection :: v_canWriteAsEncoding (int encoding) {
for (long i = 1; i <= size; i ++) {
Data data = (Data) item [i];
if (data -> name != NULL && ! Melder_isEncodable (data -> name, encoding)) return false;
if (! Data_canWriteAsEncoding (data, encoding)) return false;
}
return true;
}
void structCollection :: v_writeText (MelderFile file) {
texputi4 (file, size, L"size", 0,0,0,0,0);
texputintro (file, L"item []: ", size ? NULL : L"(empty)", 0,0,0,0);
for (long i = 1; i <= size; i ++) {
Thing thing = (Thing) item [i];
ClassInfo classInfo = thing -> classInfo;
texputintro (file, L"item [", Melder_integer (i), L"]:", 0,0,0);
if (! Thing_member (thing, classData) || ! Data_canWriteText ((Data) thing))
Melder_throw ("Objects of class ", classInfo -> className, " cannot be written.");
texputw2 (file,
classInfo -> version > 0 ?
Melder_wcscat (classInfo -> className, L" ", Melder_integer (classInfo -> version)) :
classInfo -> className,
L"class", 0,0,0,0,0);
texputw2 (file, thing -> name, L"name", 0,0,0,0,0);
Data_writeText ((Data) thing, file);
texexdent (file);
}
texexdent (file);
}
void structCollection :: v_readText (MelderReadText text) {
if (Thing_version < 0) {
long l_size;
wchar_t *line = MelderReadText_readLine (text);
if (line == NULL || ! swscanf (line, L"%ld", & l_size) || l_size < 0)
Melder_throw ("Collection::readText: cannot read size.");
Collection_init (this, NULL, l_size);
for (long i = 1; i <= l_size; i ++) {
long itemNumberRead;
int n = 0, length, stringsRead;
char klas [200], nameTag [2000];
do { line = MelderReadText_readLine (text); if (line == NULL) Melder_throw ("Missing object line."); }
while (wcsncmp (line, L"Object ", 7));
stringsRead = swscanf (line, L"Object %ld: class %s %s%n", & itemNumberRead, klas, nameTag, & n);
if (stringsRead < 2)
Melder_throw ("Collection::readText: cannot read header of object ", i, ".");
if (itemNumberRead != i)
Melder_throw ("Collection::readText: read item number ", itemNumberRead,
" while expecting ", i, ".");
if (stringsRead == 3 && ! strequ (nameTag, "name"))
Melder_throw ("Collection::readText: wrong header at object ", i, ".");
this -> item [i] = Thing_newFromClassNameA (klas); therror
Thing_version = -1; /* Override. */
this -> size ++;
if (! Thing_member ((Thing) item [i], classData) || ! Data_canReadText ((Data) item [i]))
Melder_throw ("Cannot read item of class ", Thing_className ((Thing) item [i]), " in collection.");
Data_readText ((Data) item [i], text); therror
if (stringsRead == 3) {
if (line [n] == ' ') n ++; // skip space character
length = wcslen (line+n);
if (length > 0 && (line+n) [length - 1] == '\n') (line+n) [length - 1] = '\0';
Thing_setName ((Thing) item [i], line+n);
}
}
} else {
long l_size = texgeti4 (text);
Collection_init (this, NULL, l_size);
for (long i = 1; i <= l_size; i ++) {
long saveVersion = Thing_version; /* The version of the Collection... */
autostring8 className = texgets2 (text);
this -> item [i] = Thing_newFromClassNameA (className.peek()); therror
this -> size ++;
if (! Thing_member ((Thing) item [i], classData) || ! Data_canReadText ((Data) item [i]))
Melder_throw ("Cannot read item of class ", Thing_className ((Thing) item [i]), " in collection.");
autostring objectName = texgetw2 (text);
Thing_setName ((Thing) item [i], objectName.peek()); therror
Data_readText ((Data) item [i], text); therror
Thing_version = saveVersion;
}
}
}
void structCollection :: v_writeBinary (FILE *f) {
binputi4 (size, f);
for (long i = 1; i <= size; i ++) {
Thing thing = (Thing) item [i];
ClassInfo classInfo = thing -> classInfo;
if (! Thing_member (thing, classData) || ! Data_canWriteBinary ((Data) thing))
Melder_throw ("Objects of class ", classInfo -> className, L" cannot be written.");
binputw1 (classInfo -> version > 0 ?
Melder_wcscat (classInfo -> className, L" ", Melder_integer (classInfo -> version)) : classInfo -> className, f);
binputw2 (thing -> name, f);
Data_writeBinary ((Data) thing, f);
}
}
void structCollection :: v_readBinary (FILE *f) {
if (Thing_version < 0) {
long l_size = bingeti4 (f); therror
if (l_size < 0)
Melder_throw ("Empty collection.");
Collection_init (this, NULL, l_size); therror
for (long i = 1; i <= l_size; i ++) {
char klas [200], name [2000];
if (fscanf (f, "%s%s", klas, name) < 2)
Melder_throw ("Cannot read class and name.");
item [i] = Thing_newFromClassNameA (klas); therror
Thing_version = -1; /* Override. */
this -> size ++;
if (! Thing_member ((Thing) item [i], classData))
Melder_throw ("Cannot read item of class ", Thing_className ((Thing) item [i]), ".");
if (fgetc (f) != ' ')
Melder_throw ("Cannot read space.");
Data_readBinary ((Data) item [i], f); therror
if (strcmp (name, "?")) Thing_setName ((Thing) item [i], Melder_peekUtf8ToWcs (name));
}
} else {
long l_size = bingeti4 (f); therror
Collection_init (this, NULL, l_size); therror
for (long i = 1; i <= l_size; i ++) {
long saveVersion = Thing_version; // the version of the Collection...
autostring8 klas = bingets1 (f);
item [i] = Thing_newFromClassNameA (klas.peek()); therror
this -> size ++;
if (! Thing_member ((Thing) item [i], classData) || ! Data_canReadBinary ((Data) item [i]))
Melder_throw ("Objects of class ", Thing_className ((Thing) item [i]), " cannot be read.");
autostring name = bingetw2 (f);
Thing_setName ((Thing) item [i], name.peek()); therror
Data_readBinary ((Data) item [i], f); therror
Thing_version = saveVersion;
}
}
}
static struct structData_Description theCollection_description [] = {
{ L"size", longwa, Melder_offsetof (Collection, size), sizeof (long) },
{ L"item", objectwa, Melder_offsetof (Collection, item), sizeof (Data), L"Data", & theClassInfo_Data, 1, 0, L"size" },
{ 0 }
};
Data_Description structCollection :: s_description = & theCollection_description [0];
Thing_implement (Collection, Data, 0);
void Collection_init (Collection me, ClassInfo itemClass_, long initialCapacity) {
my itemClass = itemClass_;
my _capacity = initialCapacity >= 1 ? initialCapacity : 1;
my size = 0;
my item = Melder_calloc (void *, my _capacity);
my item --; // base 1
}
Collection Collection_create (ClassInfo itemClass, long initialCapacity) {
autoCollection me = Thing_new (Collection);
Collection_init (me.peek(), itemClass, initialCapacity);
return me.transfer();
}
void Collection_dontOwnItems (Collection me) {
Melder_assert (my size == 0);
my _dontOwnItems = true;
}
void _Collection_insertItem (Collection me, Thing data, long pos) {
if (my size >= my _capacity) {
/*
* Check without change.
*/
Any *dum = (Any *) Melder_realloc (my item + 1, 2 * my _capacity * sizeof (Any));
/*
* From here: change without error.
*/
my item = dum - 1;
my _capacity *= 2;
}
my size ++;
for (long i = my size; i > pos; i --) my item [i] = my item [i - 1];
my item [pos] = data;
}
void Collection_addItem (Collection me, Thing data) {
try {
Melder_assert (data != NULL);
long index = my v_position (data);
if (index != 0) {
_Collection_insertItem (me, data, index);
} else {
if (! my _dontOwnItems)
forget (data); // could not insert; I am the owner, so I must dispose of the data
}
} catch (MelderError) {
Melder_throw (me, ": item not added.");
}
}
void Collection_removeItem (Collection me, long pos) {
Melder_assert (pos >= 1 && pos <= my size);
if (! my _dontOwnItems) forget (((Thing *) my item) [pos]);
for (long i = pos; i < my size; i ++) my item [i] = my item [i + 1];
my size --;
}
void Collection_undangleItem (Collection me, Thing item) {
for (long i = my size; i > 0; i --) if (my item [i] == item) {
for (long j = i; j < my size; j ++) my item [j] = my item [j + 1];
my size --;
}
}
Any Collection_subtractItem (Collection me, long pos) {
Melder_assert (pos >= 1 && pos <= my size);
Any result = my item [pos];
for (long i = pos; i < my size; i ++) my item [i] = my item [i + 1];
my size --;
return result;
}
void Collection_removeAllItems (Collection me) {
if (! my _dontOwnItems)
for (long i = 1; i <= my size; i ++)
forget (((Thing *) my item) [i]);
my size = 0;
}
void Collection_shrinkToFit (Collection me) {
my _capacity = my size ? my size : 1;
my item = (Any *) Melder_realloc (my item + 1, my _capacity * sizeof (Any)) - 1;
}
Any Collections_merge (Collection me, Collection thee) {
try {
if (my classInfo != thy classInfo)
Melder_throw ("Objects are of different class.");
if (my _dontOwnItems != thy _dontOwnItems)
Melder_throw ("Cannot mix data and references.");
autoCollection him = Data_copy (me);
for (long i = 1; i <= thy size; i ++) {
Thing item = (Thing) thy item [i];
if (my _dontOwnItems) {
Collection_addItem (him.peek(), item);
} else {
if (! Thing_member (item, classData))
Melder_throw ("Cannot copy item of class ", Thing_className (item), ".");
Collection_addItem (him.peek(), Data_copy ((Data) item));
}
}
return him.transfer();
} catch (MelderError) {
Melder_throw (me, " and ", thee, " not merged." );
}
}
/********** class Ordered **********/
Thing_implement (Ordered, Collection, 0);
void Ordered_init (Ordered me, ClassInfo itemClass, long initialMaximumLength) {
Collection_init (me, itemClass, initialMaximumLength);
}
Ordered Ordered_create (void) {
autoOrdered me = Thing_new (Ordered);
Ordered_init (me.peek(), NULL, 10);
return me.transfer();
}
void Ordered_addItemPos (Ordered me, Thing data, long position) {
Melder_assert (data);
if (position < 1 || position > my size)
position = my size + 1;
_Collection_insertItem (me, data, position);
}
/********** class Sorted **********/
Thing_implement (Sorted, Collection, 0);
long structSorted :: v_position (Any data) {
Data_CompareFunction compare = v_getCompareFunction ();
if (size == 0 || compare (data, item [size]) >= 0) return size + 1;
if (compare (data, item [1]) < 0) return 1;
/* Binary search. */
long left = 1, right = size;
while (left < right - 1) {
long mid = (left + right) / 2;
if (compare (data, item [mid]) >= 0) left = mid; else right = mid;
}
Melder_assert (right == left + 1);
return right;
}
int structSorted :: s_compare (Any data1, Any data2) {
(void) data1;
(void) data2;
return 0; // in the base class, all are equal
}
void Sorted_init (Sorted me, ClassInfo itemClass, long initialCapacity) {
Collection_init (me, itemClass, initialCapacity);
}
void Sorted_addItem_unsorted (Sorted me, Thing data) {
_Collection_insertItem (me, data, my size + 1);
}
void Sorted_sort (Sorted me) {
NUMsort_p (my size, my item, (int (*) (const void *, const void *)) my v_getCompareFunction ());
}
/********** class SortedSet **********/
long structSortedSet :: v_position (Any data) {
Data_CompareFunction compare = v_getCompareFunction ();
if (size == 0) return 1; // empty set? then 'data' is going to be the first item
int where = compare (data, item [size]); // compare with last item
if (where > 0) return size + 1; // insert at end
if (where == 0) return 0;
if (compare (data, item [1]) < 0) return 1; // compare with first item
long left = 1, right =size;
while (left < right - 1) {
long mid = (left + right) / 2;
if (compare (data, item [mid]) >= 0)
left = mid;
else
right = mid;
}
Melder_assert (right == left + 1);
if (! compare (data, item [left]) || ! compare (data, item [right]))
return 0;
return right;
}
Thing_implement (SortedSet, Sorted, 0);
void SortedSet_init (SortedSet me, ClassInfo itemClass, long initialCapacity) {
Sorted_init (me, itemClass, initialCapacity);
}
/********** class SortedSetOfInt **********/
Thing_implement (SortedSetOfInt, SortedSet, 0);
int structSortedSetOfInt :: s_compare (I, thou) {
iam (SimpleInt); thouart (SimpleInt);
if (my number < thy number) return -1;
if (my number > thy number) return +1;
return 0;
}
void SortedSetOfInt_init (SortedSetOfInt me) {
SortedSet_init (me, classSimpleInt, 10);
}
SortedSetOfInt SortedSetOfInt_create (void) {
autoSortedSetOfInt me = Thing_new (SortedSetOfInt);
SortedSetOfInt_init (me.peek());
return me.transfer();
}
/********** class SortedSetOfLong **********/
Thing_implement (SortedSetOfLong, SortedSet, 0);
int structSortedSetOfLong :: s_compare (I, thou) {
iam (SimpleLong); thouart (SimpleLong);
if (my number < thy number) return -1;
if (my number > thy number) return +1;
return 0;
}
void SortedSetOfLong_init (SortedSetOfLong me) {
SortedSet_init (me, classSimpleLong, 10);
}
SortedSetOfLong SortedSetOfLong_create (void) {
autoSortedSetOfLong me = Thing_new (SortedSetOfLong);
SortedSetOfLong_init (me.peek());
return me.transfer();
}
/********** class SortedSetOfDouble **********/
int structSortedSetOfDouble :: s_compare (I, thou) {
iam (SimpleDouble); thouart (SimpleDouble);
if (my number < thy number) return -1;
if (my number > thy number) return +1;
return 0;
}
Thing_implement (SortedSetOfDouble, SortedSet, 0);
void SortedSetOfDouble_init (SortedSetOfDouble me) {
SortedSet_init (me, classSimpleDouble, 10);
}
SortedSetOfDouble SortedSetOfDouble_create (void) {
autoSortedSetOfDouble me = Thing_new (SortedSetOfDouble);
SortedSetOfDouble_init (me.peek());
return me.transfer();
}
/********** class SortedSetOfString **********/
Thing_implement (SortedSetOfString, SortedSet, 0);
int structSortedSetOfString :: s_compare (I, thou) {
iam (SimpleString); thouart (SimpleString);
return wcscmp (my string, thy string);
}
void SortedSetOfString_init (SortedSetOfString me) {
SortedSet_init (me, classSimpleString, 10);
}
SortedSetOfString SortedSetOfString_create (void) {
autoSortedSetOfString me = Thing_new (SortedSetOfString);
SortedSetOfString_init (me.peek());
return me.transfer();
}
long SortedSetOfString_lookUp (SortedSetOfString me, const wchar_t *string) {
SimpleString *items = (SimpleString *) my item;
long numberOfItems = my size;
long left = 1, right = numberOfItems;
int atStart, atEnd;
if (numberOfItems == 0) return 0;
atEnd = wcscmp (string, items [numberOfItems] -> string);
if (atEnd > 0) return 0;
if (atEnd == 0) return numberOfItems;
atStart = wcscmp (string, items [1] -> string);
if (atStart < 0) return 0;
if (atStart == 0) return 1;
while (left < right - 1) {
long mid = (left + right) / 2;
int here = wcscmp (string, items [mid] -> string);
if (here == 0) return mid;
if (here > 0) left = mid; else right = mid;
}
Melder_assert (right == left + 1);
return 0;
}
void structSortedSetOfString :: addString (const wchar *string) {
static SimpleString simp;
if (simp == NULL) {
simp = SimpleString_create (L"");
Melder_free (simp -> string);
}
simp -> string = (wchar *) string; // reference copy
long index = v_position (simp);
if (index == 0) return; // OK: already there: do not add
autoSimpleString newSimp = SimpleString_create (string);
_Collection_insertItem (this, newSimp.transfer(), index);
}
/********** class Cyclic **********/
Thing_implement (Cyclic, Collection, 0);
int structCyclic :: s_compare (I, thou) {
(void) void_me;
(void) void_thee;
Melder_fatal ("Cyclic::compare: subclass responsibility.");
return 0;
}
void structCyclic :: cycleLeft () {
if (size == 0) return; // for size == 1 no motion will take place either, but in that case the algorithm determines that automatically
Data help = (Data) item [1];
for (long i = 1; i < size; i ++) item [i] = item [i + 1];
item [size] = help;
}
void structCyclic :: unicize () {
Data_CompareFunction compare = v_getCompareFunction ();
if (size <= 1) return;
long lowest = 1;
for (long i = 1; i <= size; i ++)
if (compare (item [i], item [lowest]) < 0) lowest = i;
for (long i = 1; i < lowest; i ++)
cycleLeft ();
}
void Cyclic_init (Cyclic me, ClassInfo itemClass, long initialCapacity) {
Collection_init (me, itemClass, initialCapacity);
}
/* End of file Collection.cpp */
|