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
|
# queuec.tcl --
#
# Implementation of a queue data structure for Tcl.
# This code based on critcl v3.1, API compatible to the PTI [x].
# [x] Pure Tcl Implementation.
#
# Mainly demonstrates the utility package for the creation of classes
# and objects in C, with both classes and their instances represented
# as Tcl commands. In contrast to the stackc demo this does not use a
# separate data structure package, nor separately written method
# implementations.
#
# Copyright (c) 2012,2022 Andreas Kupries <andreas_kupries@users.sourceforge.net>
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
package require Tcl 8.6 9
package require critcl 3.2
critcl::buildrequirement {
package require critcl::class ; # DSL, easy spec of Tcl class/object commands.
}
# # ## ### ##### ######## ############# #####################
## Administrivia
critcl::license {Andreas Kupries} {BSD licensed}
critcl::summary {Queue objects for Tcl.}
critcl::description {
This package implements queue objects
for Tcl.
}
critcl::subject queue
critcl::subject {data structure}
critcl::subject structure
critcl::subject {abstract data structure}
critcl::subject {generic data structure}
# # ## ### ##### ######## ############# #####################
## Configuration and implementation.
critcl::cheaders util.h
critcl::class::define ::queuec {
include util.h
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 int 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]...
} {
int 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 {} int {
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.
*/
int queuec = 0;
Tcl_ListObjLength (NULL, instance->queue, &queuec);
instance->at --;
ASSERT_BOUNDS(instance->at,queuec);
Tcl_ListObjReplace (interp, instance->queue, instance->at, 1, 1, &item);
}
return TCL_OK;
}
# # ## ### ##### ######## ############# #####################
support {
static int
QueueSize (@instancetype@ q, int* u, int* r, int* a)
{
int ungetc = 0;
int queuec = 0;
int 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)
{
int queuec = 0;
int 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,
int objc,
Tcl_Obj* CONST* objv,
int get)
{
/* Syntax: queue peek|get ?n?
* [0] [1] [2]
*/
int listc = 0;
Tcl_Obj** listv;
Tcl_Obj* r;
int n = 1;
int ungetc;
int queuec;
int 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);
ASSERT_BOUNDS(instance->at,listc);
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.
*/
int i = 0, j;
Tcl_Obj** resv = NALLOC(n,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++) {
ASSERT_BOUNDS(i,n);
ASSERT_BOUNDS(j,listc);
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++) {
ASSERT_BOUNDS(i,n);
ASSERT_BOUNDS(j,listc);
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++) {
ASSERT_BOUNDS(i,n);
ASSERT_BOUNDS(j,listc);
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) {
ASSERT(get,"Impossible 2nd return pull without get");
QueueShift (instance);
Tcl_ListObjGetElements (interp, instance->queue, &listc, &listv);
for (j = instance->at;
j < listc && i < n;
j++, i++) {
ASSERT_BOUNDS(i,n);
ASSERT_BOUNDS(j,listc);
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;
}
}
}
# ### ### ### ######### ######### #########
## Ready
package provide queuec 1
|