|
NAMEcritcl::iassoc - CriTcl Utilities: Tcl Interp AssociationsSYNOPSISpackage require Tcl 8.4package require critcl ?3.1? package require critcl::iassoc ?1.1? ::critcl::iassoc::def name arguments struct constructor destructor DESCRIPTIONC Runtime In Tcl, or CriTcl , is a system for compiling C code embedded in Tcl on the fly and either loading the resulting objects into Tcl for immediate use or packaging them for distribution. Use CriTcl to improve performance by rewriting in C those routines that are performance bottlenecks.This document is the reference manpage for the critcl::iassoc package. This package provides convenience commands for advanced functionality built on top of the critcl core. With it a user wishing to associate some data with a Tcl interpreter via Tcl's Tcl_(Get|Set)AssocData() APIs can now concentrate on the data itself, while all the necessary boilerplate around it is managed by this package. Its intended audience are mainly developers wishing to write Tcl packages with embedded C code. This package resides in the Core Package Layer of CriTcl. +----------------+ |Applications | | critcl | | critcl::app | +----------------+ *================* |Core Packages | | critcl | | critcl::util | *================* +----------------+ |Support Packages| | stubs::* | | md5, platform | | ... | +----------------+ API
EXAMPLEThe example shown below is the specification of a simple interpreter-associated counter. The full example, with meta data and other incidentals, can be found in the directory "examples/queue" of the critcl source distribution/repository.package require Tcl 8.4 package require critcl 3.1 critcl::buildrequirement { package require critcl::iassoc } critcl::iassoc::def icounter {} { int counter; /* The counter variable */ } { data->counter = 0; } { /* Nothing to release */ } critcl::ccode { ... function (...) { /* Access to the data ... */ icounter_data D = icounter (interp /* ... any declared arguments, here, none */); ... D->counter ... } } # or, of course, 'cproc's, 'ccommand's etc. package provide icounter 1 AUTHORSAndreas KupriesBUGS, IDEAS, FEEDBACKThis document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such at https://github.com/andreas-kupries/critcl. Please also report any ideas for enhancements you may have for either package and/or documentation.KEYWORDSC code, Embedded C Code, Tcl Interp Association, code generator, compile & run, compiler, dynamic code generation, dynamic compilation, generate package, linker, on demand compilation, on-the-fly compilation, singletonCATEGORYGlueing/Embedded C codeCOPYRIGHTCopyright (c) 2011-2018 Andreas Kupries
Visit the GSP FreeBSD Man Page Interface. |