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
|
# -*- tcl -*-
# -------------------------------------------------------------------------
# class.test
# -------------------------------------------------------------------------
source [file join [file dirname [info script]] support testutilities.tcl]
testsNeedTcl 8.6 9
testsNeedTcltest 2
support {
useLocal lib/stubs_container/container.tcl stubs::container
useLocal lib/stubs_reader/reader.tcl stubs::reader
useLocal lib/stubs_genframe/genframe.tcl stubs::gen
useLocal lib/critcl/critcl.tcl critcl
useLocal lib/critcl-util/util.tcl critcl::util
#useLocal lib/critcl-iassoc/iassoc.tcl critcl::iassoc
#useLocal lib/critcl-literals/literals.tcl critcl::literals
localcache-setup
}
testing {
useLocal lib/critcl-class/class.tcl critcl::class
}
proc SETUP {} {
make-demo TL {
critcl::class::define ::queuec {
constructor {
if (objc > 0) {
Tcl_AppendResult (interp, "wrong#args for constructor, expected none", NULL);
goto error;
}
}
method_introspection
# # ## ### ##### ######## ############# #####################
insvariable Tcl_Obj* unget {
List object holding unget'ted elements.
} {
instance->unget = Tcl_NewListObj (0,NULL);
Tcl_IncrRefCount (instance->unget);
} {
Tcl_DecrRefCount (instance->unget);
}
# # ## ### ##### ######## ############# #####################
insvariable Tcl_Obj* queue {
List object holding the main queue.
} {
instance->queue = Tcl_NewListObj (0,NULL);
Tcl_IncrRefCount (instance->queue);
} {
Tcl_DecrRefCount (instance->queue);
}
# # ## ### ##### ######## ############# #####################
insvariable Tcl_Obj* append {
List object holding new elements
} {
instance->append = Tcl_NewListObj (0,NULL);
Tcl_IncrRefCount (instance->append);
} {
Tcl_DecrRefCount (instance->append);
}
# # ## ### ##### ######## ############# #####################
insvariable Tcl_Size at {
Index of next element to return from the main queue.
(variable: queue).
} {
instance->at = 0;
} ; # no need for a destructor
# # ## ### ##### ######## ############# #####################
method clear proc {} void {
/*
* Delete and recreate the queue memory. A combination of delete/new,
* except the main structure is left unchanged
*/
Tcl_DecrRefCount (instance->unget);
Tcl_DecrRefCount (instance->queue);
Tcl_DecrRefCount (instance->append);
instance->at = 0;
instance->unget = Tcl_NewListObj (0,NULL);
instance->queue = Tcl_NewListObj (0,NULL);
instance->append = Tcl_NewListObj (0,NULL);
Tcl_IncrRefCount (instance->unget);
Tcl_IncrRefCount (instance->queue);
Tcl_IncrRefCount (instance->append);
}
# # ## ### ##### ######## ############# #####################
method get as QueueRetrieve 1
method peek as QueueRetrieve 0
# # ## ### ##### ######## ############# #####################
method put command {
item... = objv[2]...
} {
Tcl_Size i;
if (objc < 3) {
Tcl_WrongNumArgs (interp, 2, objv, "item ?item ...?");
return TCL_ERROR;
}
for (i = 2; i < objc; i++) {
Tcl_ListObjAppendElement (interp, instance->append, objv[i]);
}
return TCL_OK;
}
# # ## ### ##### ######## ############# #####################
method size proc {} wideint {
return QueueSize (instance, NULL, NULL, NULL);
}
# # ## ### ##### ######## ############# #####################
method unget proc {Tcl_Obj* item} ok {
if (instance->at == 0) {
/* Need the unget stack */
Tcl_ListObjAppendElement (interp, instance->unget, item);
} else {
/*
* We have room in the return buffer, so splice directly instead of
* using the unget stack.
*/
Tcl_Size queuec = 0;
Tcl_ListObjLength (NULL, instance->queue, &queuec);
instance->at --;
Tcl_ListObjReplace (interp, instance->queue, instance->at, 1, 1, &item);
}
return TCL_OK;
}
# # ## ### ##### ######## ############# #####################
support {
static Tcl_Size
QueueSize (@instancetype@ q, Tcl_Size* u, Tcl_Size* r, Tcl_Size* a)
{
Tcl_Size ungetc = 0;
Tcl_Size queuec = 0;
Tcl_Size appendc = 0;
Tcl_ListObjLength (NULL, q->unget, &ungetc);
Tcl_ListObjLength (NULL, q->queue, &queuec);
Tcl_ListObjLength (NULL, q->append, &appendc);
if (u) *u = ungetc;
if (r) *r = queuec;
if (a) *a = appendc;
return ungetc + queuec + appendc - q->at;
}
static void
QueueShift (@instancetype@ q)
{
Tcl_Size queuec = 0;
Tcl_Size appendc = 0;
/* The queue is not done yet, no shift */
Tcl_ListObjLength (NULL, q->queue, &queuec);
if (q->at < queuec) return;
/* The queue is done, however there is nothing
* to shift into it, so we don't
*/
Tcl_ListObjLength (NULL, q->append, &appendc);
if (!appendc) return;
q->at = 0;
Tcl_DecrRefCount (q->queue);
q->queue = q->append;
q->append = Tcl_NewListObj (0,NULL);
Tcl_IncrRefCount (q->append);
}
static int
QueueRetrieve (@instancetype@ instance,
Tcl_Interp* interp,
Tcl_Size objc,
Tcl_Obj* CONST* objv,
int get)
{
/* Syntax: queue peek|get ?n?
* [0] [1] [2]
*/
Tcl_Size listc = 0, n = 1;
Tcl_Obj** listv;
Tcl_Obj* r;
Tcl_Size ungetc;
Tcl_Size queuec;
Tcl_Size appendc;
if ((objc != 2) && (objc != 3)) {
Tcl_WrongNumArgs (interp, 2, objv, "?n?");
return TCL_ERROR;
}
if (objc == 3) {
if (Tcl_GetIntFromObj(interp, objv[2], &n) != TCL_OK) {
return TCL_ERROR;
} else if (n < 1) {
Tcl_AppendResult (interp, "invalid item count ",
Tcl_GetString (objv[2]),
NULL);
return TCL_ERROR;
}
}
if (n > QueueSize(instance, &ungetc, &queuec, &appendc)) {
Tcl_AppendResult (interp,
"insufficient items in queue to fill request",
NULL);
return TCL_ERROR;
}
/* 1. We have item on the unget stack
* a. Enough to satisfy request.
* b. Not enough.
* 2. We have items in the return buffer.
* a. Enough to satisfy request.
* b. Not enough.
* 3. We have items in the append buffer.
* a. Enough to satisfy request.
* b. Not enough.
*
* Case 3. can assume 2b, because an empty return buffer will be filled
* from the append buffer before looking at either. Case 3. cannot happen
* for n==1, the return buffer will contain at least one element.
*
* We distinguish between single and multi-element requests.
*
* XXX AK optimizations - If we can return everything from a single
* buffer, be it queue, or append, just return the buffer object, do not
* create something new.
*/
if (n == 1) {
if (ungetc) {
/* Pull from unget stack */
Tcl_ListObjGetElements (interp, instance->unget, &listc, &listv);
r = listv [listc-1];
Tcl_SetObjResult (interp, r);
if (get) {
/* XXX AK : Should maintain max size info, and proper index, for discard. */
Tcl_ListObjReplace (interp, instance->unget, listc-1, 1, 0, NULL);
}
} else {
QueueShift (instance);
Tcl_ListObjGetElements (interp, instance->queue, &listc, &listv);
r = listv [instance->at];
Tcl_SetObjResult (interp, r);
/*
* Note: Doing the SetObj now is important. It increments the
* refcount of 'r', allowing it to survive if the 'QueueShift' below
* kills the internal list (instance->queue) holding it.
*/
if (get) {
instance->at ++;
QueueShift (instance);
}
}
} else {
/*
* Allocate buffer for result, then fill it using the various data
* sources.
*/
Tcl_Size i = 0, j;
Tcl_Obj** resv = (Tcl_Obj**) ckalloc (n * sizeof (Tcl_Obj*));
if (ungetc) {
Tcl_ListObjGetElements (interp, instance->unget, &listc, &listv);
/*
* Note how we are iterating backward in listv. unget is managed
* as a stack, avoiding mem-copy operations and both push and pop.
*/
for (j = listc-1;
j >= 0 && i < n;
j--, i++) {
resv[i] = listv[j];
Tcl_IncrRefCount (resv[i]);
}
if (get) {
/* XXX AK : Should maintain max size info, and proper index, for discard. */
Tcl_ListObjReplace (interp, instance->unget, j, i, 0, NULL);
/* XXX CHECK index calcs. */
}
}
if (i < n) {
QueueShift (instance);
Tcl_ListObjGetElements (interp, instance->queue, &listc, &listv);
for (j = instance->at;
j < listc && i < n;
j++, i++) {
resv[i] = listv[j];
Tcl_IncrRefCount (resv[i]);
}
if (get) {
instance->at = j;
QueueShift (instance);
} else if (i < n) {
/* XX */
Tcl_ListObjGetElements (interp, instance->append, &listc, &listv);
for (j = 0;
j < listc && i < n;
j++, i++) {
resv[i] = listv[j];
Tcl_IncrRefCount (resv[i]);
}
}
}
/*
* This can happen if and only if we have to pull data from append,
* and get is set. Without get XX would have run and filled the result
* to completion.
*/
if (i < n) {
QueueShift (instance);
Tcl_ListObjGetElements (interp, instance->queue, &listc, &listv);
for (j = instance->at;
j < listc && i < n;
j++, i++) {
resv[i] = listv[j];
Tcl_IncrRefCount (resv[i]);
}
instance->at = j;
QueueShift (instance);
}
r = Tcl_NewListObj (n, resv);
Tcl_SetObjResult (interp, r);
for (i=0;i<n;i++) {
Tcl_DecrRefCount (resv[i]);
}
ckfree((char*)resv);
}
return TCL_OK;
}
}
}
}
}
# -------------------------------------------------------------------------
##
test class-1.0 {critcl-class, basic, defaults} -setup {
SETUP
res!
} -body {
res+ [queuec create Q]
res+ [Q size]
res+ [Q clear]
res+ [Q put a b c]
res+ [Q peek 2]
res+ [Q get 2]
res+ [Q size]
res+ [Q clear]
res+ [Q size]
res+ [Q destroy]
res?
} -cleanup {
res!
} -result {::Q 0 {{}} {{}} {{a b}} {{a b}} 1 {{}} 0 {{}}}
# -------------------------------------------------------------------------
testsuiteCleanup
# Local variables:
# mode: tcl
# indent-tabs-mode: nil
# End:
|