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
|
# stackc.tcl --
#
# Implementation of a stack data structure for Tcl.
# This code based on critcl, API compatible to the PTI [x].
# [x] Pure Tcl Implementation.
#
# Copyright (c) 2008 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.
#
# RCS: @(#) $Id: stack_c.tcl,v 1.1 2008/06/19 23:03:35 andreas_kupries Exp $
package require critcl
# @sak notprovided struct_stackc
package provide struct_stackc 1.3.1
package require Tcl 8.5 9
namespace eval ::struct {
# Supporting code for the main command.
catch {
#critcl::cheaders -g
#critcl::debug memory symbols
}
critcl::cheaders stack/*.h
critcl::csources stack/*.c
critcl::ccode {
/* -*- c -*- */
#include <util.h>
#include <s.h>
#include <ms.h>
#include <m.h>
/* .................................................. */
/* Global stack management, per interp
*/
typedef struct SDg {
long int counter;
char buf [50];
} SDg;
static void
SDgrelease (ClientData cd, Tcl_Interp* interp)
{
ckfree((char*) cd);
}
static CONST char*
SDnewName (Tcl_Interp* interp)
{
#define KEY "tcllib/struct::stack/critcl"
Tcl_InterpDeleteProc* proc = SDgrelease;
SDg* sdg;
sdg = Tcl_GetAssocData (interp, KEY, &proc);
if (sdg == NULL) {
sdg = (SDg*) ckalloc (sizeof (SDg));
sdg->counter = 0;
Tcl_SetAssocData (interp, KEY, proc,
(ClientData) sdg);
}
sdg->counter ++;
sprintf (sdg->buf, "stack%ld", sdg->counter);
return sdg->buf;
#undef KEY
}
static void
SDdeleteCmd (ClientData clientData)
{
/* Release the whole stack. */
st_delete ((S*) clientData);
}
}
# Main command, stack creation.
critcl::ccommand stack_critcl {dummy interp objc objv} {
/* Syntax
* - epsilon |1
* - name |2
*/
CONST char* name;
S* sd;
Tcl_Obj* fqn;
Tcl_CmdInfo ci;
#define USAGE "?name?"
if ((objc != 2) && (objc != 1)) {
Tcl_WrongNumArgs (interp, 1, objv, USAGE); /* OK tcl9 */
return TCL_ERROR;
}
if (objc < 2) {
name = SDnewName (interp);
} else {
name = Tcl_GetString (objv [1]);
}
if (!Tcl_StringMatch (name, "::*")) {
/* Relative name. Prefix with current namespace */
Tcl_Eval (interp, "namespace current");
fqn = Tcl_GetObjResult (interp);
fqn = Tcl_DuplicateObj (fqn);
Tcl_IncrRefCount (fqn);
if (!Tcl_StringMatch (Tcl_GetString (fqn), "::")) {
Tcl_AppendToObj (fqn, "::", -1); /* OK tcl9 */
}
Tcl_AppendToObj (fqn, name, -1); /* OK tcl9 */
} else {
fqn = Tcl_NewStringObj (name, -1); /* OK tcl9 */
Tcl_IncrRefCount (fqn);
}
Tcl_ResetResult (interp);
if (Tcl_GetCommandInfo (interp,
Tcl_GetString (fqn),
&ci)) {
Tcl_Obj* err;
err = Tcl_NewObj ();
Tcl_AppendToObj (err, "command \"", -1); /* OK tcl9 */
Tcl_AppendObjToObj (err, fqn);
Tcl_AppendToObj (err, "\" already exists, unable to create stack", -1); /* OK tcl9 */
Tcl_DecrRefCount (fqn);
Tcl_SetObjResult (interp, err);
return TCL_ERROR;
}
sd = st_new();
sd->cmd = Tcl_CreateObjCommand2 (interp, Tcl_GetString (fqn),
stms_objcmd, (ClientData) sd,
SDdeleteCmd);
Tcl_SetObjResult (interp, fqn);
Tcl_DecrRefCount (fqn);
return TCL_OK;
}
}
# ### ### ### ######### ######### #########
## Ready
|