1 /* Jim - A small embeddable Tcl interpreter
3 * Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
4 * Copyright 2005 Clemens Hintze <c.hintze@gmx.net>
5 * Copyright 2005 patthoyts - Pat Thoyts <patthoyts@users.sf.net>
6 * Copyright 2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com
7 * Copyright 2008 Andrew Lunn <andrew@lunn.ch>
8 * Copyright 2008 Duane Ellis <openocd@duaneellis.com>
9 * Copyright 2008 Uwe Klein <uklein@klein-messgeraete.de>
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer in the documentation and/or other materials
20 * provided with the distribution.
22 * THIS SOFTWARE IS PROVIDED BY THE JIM TCL PROJECT ``AS IS'' AND ANY
23 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
24 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
25 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26 * JIM TCL PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
27 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
28 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
31 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
33 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 * The views and conclusions contained in the software and documentation
36 * are those of the authors and should not be interpreted as representing
37 * official policies, either expressed or implied, of the Jim Tcl Project.
39 *--- Inline Header File Documentation ---
40 * [By Duane Ellis, openocd@duaneellis.com, 8/18/8]
42 * Belief is "Jim" would greatly benefit if Jim Internals where
43 * documented in some way - form whatever, and perhaps - the package:
44 * 'doxygen' is the correct approach to do that.
46 * Details, see: http://www.stack.nl/~dimitri/doxygen/
48 * To that end please follow these guide lines:
50 * (A) Document the PUBLIC api in the .H file.
52 * (B) Document JIM Internals, in the .C file.
54 * (C) Remember JIM is embedded in other packages, to that end do
55 * not assume that your way of documenting is the right way, Jim's
56 * public documentation should be agnostic, such that it is some
57 * what agreeable with the "package" that is embedding JIM inside
58 * of it's own doxygen documentation.
60 * (D) Use minimal Doxygen tags.
62 * This will be an "ongoing work in progress" for some time.
74 #include <stdio.h> /* for the FILE typedef definition */
75 #include <stdlib.h> /* In order to export the Jim_Free() macro */
76 #include <stdarg.h> /* In order to get type va_list */
78 /* -----------------------------------------------------------------------------
79 * System configuration
80 * autoconf (configure) will set these
81 * ---------------------------------------------------------------------------*/
82 #include <jim-win32compat.h>
84 #ifndef HAVE_NO_AUTOCONF
85 #include <jim-config.h>
88 /* -----------------------------------------------------------------------------
89 * Compiler specific fixes.
90 * ---------------------------------------------------------------------------*/
92 /* Long Long type and related issues */
94 # ifdef HAVE_LONG_LONG
95 # define jim_wide long long
97 # define LLONG_MAX 9223372036854775807LL
100 # define LLONG_MIN (-LLONG_MAX - 1LL)
102 # define JIM_WIDE_MIN LLONG_MIN
103 # define JIM_WIDE_MAX LLONG_MAX
105 # define jim_wide long
106 # define JIM_WIDE_MIN LONG_MIN
107 # define JIM_WIDE_MAX LONG_MAX
110 /* -----------------------------------------------------------------------------
111 * LIBC specific fixes
112 * ---------------------------------------------------------------------------*/
114 # ifdef HAVE_LONG_LONG
115 # define JIM_WIDE_MODIFIER "lld"
117 # define JIM_WIDE_MODIFIER "ld"
118 # define strtoull strtoul
122 #define UCHAR(c) ((unsigned char)(c))
124 /* -----------------------------------------------------------------------------
126 * ---------------------------------------------------------------------------*/
132 #define JIM_CONTINUE 4
135 /* The following are internal codes and should never been seen/used */
138 #define JIM_MAX_CALLFRAME_DEPTH 1000 /* default max nesting depth for procs */
139 #define JIM_MAX_EVAL_DEPTH 2000 /* default max nesting depth for eval */
141 /* Some function get an integer argument with flags to change
144 /* Starting from 1 << 20 flags are reserved for private uses of
145 * different calls. This way the same 'flags' argument may be used
146 * to pass both global flags and private flags. */
147 #define JIM_PRIV_FLAG_SHIFT 20
149 #define JIM_NONE 0 /* no flags set */
150 #define JIM_ERRMSG 1 /* set an error message in the interpreter. */
151 #define JIM_ENUM_ABBREV 2 /* Jim_GetEnum() - Allow unambiguous abbreviation */
152 #define JIM_UNSHARED 4 /* Jim_GetVariable() - return unshared object */
153 #define JIM_MUSTEXIST 8 /* Jim_SetDictKeysVector() - fail if non-existent */
155 /* Flags for Jim_SubstObj() */
156 #define JIM_SUBST_NOVAR 1 /* don't perform variables substitutions */
157 #define JIM_SUBST_NOCMD 2 /* don't perform command substitutions */
158 #define JIM_SUBST_NOESC 4 /* don't perform escapes substitutions */
159 #define JIM_SUBST_FLAG 128 /* flag to indicate that this is a real substitution object */
161 /* Flags used by API calls getting a 'nocase' argument. */
162 #define JIM_CASESENS 0 /* case sensitive */
163 #define JIM_NOCASE 1 /* no case */
165 /* Filesystem related */
166 #define JIM_PATH_LEN 1024
168 /* Unused arguments generate annoying warnings... */
169 #define JIM_NOTUSED(V) ((void) V)
171 #define JIM_LIBPATH "auto_path"
172 #define JIM_INTERACTIVE "tcl_interactive"
174 /* -----------------------------------------------------------------------------
176 * ---------------------------------------------------------------------------*/
178 typedef struct Jim_Stack
{
184 /* -----------------------------------------------------------------------------
186 * ---------------------------------------------------------------------------*/
188 typedef struct Jim_HashEntry
{
194 struct Jim_HashEntry
*next
;
197 typedef struct Jim_HashTableType
{
198 unsigned int (*hashFunction
)(const void *key
);
199 void *(*keyDup
)(void *privdata
, const void *key
);
200 void *(*valDup
)(void *privdata
, const void *obj
);
201 int (*keyCompare
)(void *privdata
, const void *key1
, const void *key2
);
202 void (*keyDestructor
)(void *privdata
, void *key
);
203 void (*valDestructor
)(void *privdata
, void *obj
);
206 typedef struct Jim_HashTable
{
207 Jim_HashEntry
**table
;
208 const Jim_HashTableType
*type
;
211 unsigned int sizemask
;
213 unsigned int collisions
;
217 typedef struct Jim_HashTableIterator
{
219 Jim_HashEntry
*entry
, *nextEntry
;
221 } Jim_HashTableIterator
;
223 /* This is the initial size of every hash table */
224 #define JIM_HT_INITIAL_SIZE 16
226 /* ------------------------------- Macros ------------------------------------*/
227 #define Jim_FreeEntryVal(ht, entry) \
228 if ((ht)->type->valDestructor) \
229 (ht)->type->valDestructor((ht)->privdata, (entry)->u.val)
231 #define Jim_SetHashVal(ht, entry, _val_) do { \
232 if ((ht)->type->valDup) \
233 (entry)->u.val = (ht)->type->valDup((ht)->privdata, (_val_)); \
235 (entry)->u.val = (_val_); \
238 #define Jim_FreeEntryKey(ht, entry) \
239 if ((ht)->type->keyDestructor) \
240 (ht)->type->keyDestructor((ht)->privdata, (entry)->key)
242 #define Jim_SetHashKey(ht, entry, _key_) do { \
243 if ((ht)->type->keyDup) \
244 (entry)->key = (ht)->type->keyDup((ht)->privdata, (_key_)); \
246 (entry)->key = (void *)(_key_); \
249 #define Jim_CompareHashKeys(ht, key1, key2) \
250 (((ht)->type->keyCompare) ? \
251 (ht)->type->keyCompare((ht)->privdata, (key1), (key2)) : \
254 #define Jim_HashKey(ht, key) ((ht)->type->hashFunction(key) + (ht)->uniq)
256 #define Jim_GetHashEntryKey(he) ((he)->key)
257 #define Jim_GetHashEntryVal(he) ((he)->u.val)
258 #define Jim_GetHashTableCollisions(ht) ((ht)->collisions)
259 #define Jim_GetHashTableSize(ht) ((ht)->size)
260 #define Jim_GetHashTableUsed(ht) ((ht)->used)
262 /* -----------------------------------------------------------------------------
264 * ---------------------------------------------------------------------------*/
266 /* -----------------------------------------------------------------------------
267 * Jim object. This is mostly the same as Tcl_Obj itself,
268 * with the addition of the 'prev' and 'next' pointers.
269 * In Jim all the objects are stored into a linked list for GC purposes,
270 * so that it's possible to access every object living in a given interpreter
271 * sequentially. When an object is freed, it's moved into a different
272 * linked list, used as object pool.
274 * The refcount of a freed object is always -1.
275 * ---------------------------------------------------------------------------*/
276 typedef struct Jim_Obj
{
277 char *bytes
; /* string representation buffer. NULL = no string repr. */
278 const struct Jim_ObjType
*typePtr
; /* object type. */
279 int refCount
; /* reference count */
280 int length
; /* number of bytes in 'bytes', not including the null term. */
281 /* Internal representation union */
283 /* integer number type */
285 /* generic integer value (e.g. index, return code) */
287 /* double number type */
289 /* Generic pointer */
291 /* Generic two pointers value */
296 /* Variable object */
298 struct Jim_Var
*varPtr
;
299 unsigned long callFrameId
; /* for caching */
300 int global
; /* If the variable name is globally scoped with :: */
304 struct Jim_Obj
*nsObj
;
305 struct Jim_Cmd
*cmdPtr
;
306 unsigned long procEpoch
; /* for caching */
310 struct Jim_Obj
**ele
; /* Elements vector */
311 int len
; /* Length */
312 int maxLen
; /* Allocated 'ele' length */
317 int charLength
; /* utf-8 char length. -1 if unknown */
322 struct Jim_Reference
*refPtr
;
326 struct Jim_Obj
*fileNameObj
;
329 /* Dict substitution type */
331 struct Jim_Obj
*varNameObjPtr
;
332 struct Jim_Obj
*indexObjPtr
;
334 /* Regular expression pattern */
336 void *compre
; /* really an allocated (regex_t *) */
344 /* These fields add 8 or 16 bytes more for every object
345 * but this is required for efficient garbage collection
346 * of Jim references. */
347 struct Jim_Obj
*prevObjPtr
; /* pointer to the prev object. */
348 struct Jim_Obj
*nextObjPtr
; /* pointer to the next object. */
351 /* Jim_Obj related macros */
352 #define Jim_IncrRefCount(objPtr) \
354 #define Jim_DecrRefCount(interp, objPtr) \
355 if (--(objPtr)->refCount <= 0) Jim_FreeObj(interp, objPtr)
356 #define Jim_IsShared(objPtr) \
357 ((objPtr)->refCount > 1)
359 /* This macro is used when we allocate a new object using
360 * Jim_New...Obj(), but for some error we need to destroy it.
361 * Instead to use Jim_IncrRefCount() + Jim_DecrRefCount() we
362 * can just call Jim_FreeNewObj. To call Jim_Free directly
363 * seems too raw, the object handling may change and we want
364 * that Jim_FreeNewObj() can be called only against objects
365 * that are believed to have refcount == 0. */
366 #define Jim_FreeNewObj Jim_FreeObj
368 /* Free the internal representation of the object. */
369 #define Jim_FreeIntRep(i,o) \
370 if ((o)->typePtr && (o)->typePtr->freeIntRepProc) \
371 (o)->typePtr->freeIntRepProc(i, o)
373 /* Get the internal representation pointer */
374 #define Jim_GetIntRepPtr(o) (o)->internalRep.ptr
376 /* Set the internal representation pointer */
377 #define Jim_SetIntRepPtr(o, p) \
378 (o)->internalRep.ptr = (p)
380 /* The object type structure.
381 * There are three methods.
383 * - freeIntRepProc is used to free the internal representation of the object.
384 * Can be NULL if there is nothing to free.
386 * - dupIntRepProc is used to duplicate the internal representation of the object.
387 * If NULL, when an object is duplicated, the internalRep union is
388 * directly copied from an object to another.
389 * Note that it's up to the caller to free the old internal repr of the
390 * object before to call the Dup method.
392 * - updateStringProc is used to create the string from the internal repr.
397 typedef void (Jim_FreeInternalRepProc
)(struct Jim_Interp
*interp
,
398 struct Jim_Obj
*objPtr
);
399 typedef void (Jim_DupInternalRepProc
)(struct Jim_Interp
*interp
,
400 struct Jim_Obj
*srcPtr
, Jim_Obj
*dupPtr
);
401 typedef void (Jim_UpdateStringProc
)(struct Jim_Obj
*objPtr
);
403 typedef struct Jim_ObjType
{
404 const char *name
; /* The name of the type. */
405 Jim_FreeInternalRepProc
*freeIntRepProc
;
406 Jim_DupInternalRepProc
*dupIntRepProc
;
407 Jim_UpdateStringProc
*updateStringProc
;
411 /* Jim_ObjType flags */
412 #define JIM_TYPE_NONE 0 /* No flags */
413 #define JIM_TYPE_REFERENCES 1 /* The object may contain references. */
415 /* -----------------------------------------------------------------------------
416 * Call frame, vars, commands structures
417 * ---------------------------------------------------------------------------*/
420 typedef struct Jim_CallFrame
{
421 unsigned long id
; /* Call Frame ID. Used for caching. */
422 int level
; /* Level of this call frame. 0 = global */
423 struct Jim_HashTable vars
; /* Where local vars are stored */
424 struct Jim_HashTable
*staticVars
; /* pointer to procedure static vars */
425 struct Jim_CallFrame
*parent
; /* The parent callframe */
426 Jim_Obj
*const *argv
; /* object vector of the current procedure call. */
427 int argc
; /* number of args of the current procedure call. */
428 Jim_Obj
*procArgsObjPtr
; /* arglist object of the running procedure */
429 Jim_Obj
*procBodyObjPtr
; /* body object of the running procedure */
430 struct Jim_CallFrame
*next
; /* Callframes are in a linked list */
431 Jim_Obj
*nsObj
; /* Namespace for this proc call frame */
432 Jim_Obj
*fileNameObj
; /* file and line of caller of this proc (if available) */
434 Jim_Stack
*localCommands
; /* commands to be destroyed when the call frame is destroyed */
435 struct Jim_Obj
*tailcallObj
; /* Pending tailcall invocation */
436 struct Jim_Cmd
*tailcallCmd
; /* Resolved command for pending tailcall invocation */
439 /* The var structure. It just holds the pointer of the referenced
440 * object. If linkFramePtr is not NULL the variable is a link
441 * to a variable of name stored in objPtr living in the given callframe
442 * (this happens when the [global] or [upvar] command is used).
443 * The interp in order to always know how to free the Jim_Obj associated
444 * with a given variable because in Jim objects memory management is
445 * bound to interpreters. */
446 typedef struct Jim_Var
{
448 struct Jim_CallFrame
*linkFramePtr
;
451 /* The cmd structure. */
452 typedef int Jim_CmdProc(struct Jim_Interp
*interp
, int argc
,
453 Jim_Obj
*const *argv
);
454 typedef void Jim_DelCmdProc(struct Jim_Interp
*interp
, void *privData
);
458 /* A command is implemented in C if isproc is 0, otherwise
459 * it is a Tcl procedure with the arglist and body represented by the
460 * two objects referenced by arglistObjPtr and bodyObjPtr. */
461 typedef struct Jim_Cmd
{
462 int inUse
; /* Reference count */
463 int isproc
; /* Is this a procedure? */
464 struct Jim_Cmd
*prevCmd
; /* Previous command defn if cmd created 'local' */
467 /* native (C) command */
468 Jim_CmdProc
*cmdProc
; /* The command implementation */
469 Jim_DelCmdProc
*delProc
; /* Called when the command is deleted if != NULL */
470 void *privData
; /* command-private data available via Jim_CmdPrivData() */
474 Jim_Obj
*argListObjPtr
;
476 Jim_HashTable
*staticVars
; /* Static vars hash table. NULL if no statics. */
477 int argListLen
; /* Length of argListObjPtr */
478 int reqArity
; /* Number of required parameters */
479 int optArity
; /* Number of optional parameters */
480 int argsPos
; /* Position of 'args', if specified, or -1 */
481 int upcall
; /* True if proc is currently in upcall */
483 Jim_Obj
*nameObjPtr
; /* Name of this arg */
484 Jim_Obj
*defaultObjPtr
; /* Default value, (or rename for $args) */
486 Jim_Obj
*nsObj
; /* Namespace for this proc */
491 /* Pseudo Random Number Generator State structure */
492 typedef struct Jim_PrngState
{
493 unsigned char sbox
[256];
497 /* -----------------------------------------------------------------------------
498 * Jim interpreter structure.
499 * Fields similar to the real Tcl interpreter structure have the same names.
500 * ---------------------------------------------------------------------------*/
501 typedef struct Jim_Interp
{
502 Jim_Obj
*result
; /* object returned by the last command called. */
503 int errorLine
; /* Error line where an error occurred. */
504 Jim_Obj
*errorFileNameObj
; /* Error file where an error occurred. */
505 int addStackTrace
; /* > 0 if a level should be added to the stack trace */
506 int maxCallFrameDepth
; /* Used for infinite loop detection. */
507 int maxEvalDepth
; /* Used for infinite loop detection. */
508 int evalDepth
; /* Current eval depth */
509 int returnCode
; /* Completion code to return on JIM_RETURN. */
510 int returnLevel
; /* Current level of 'return -level' */
511 int exitCode
; /* Code to return to the OS on JIM_EXIT. */
512 long id
; /* Hold unique id for various purposes */
513 int signal_level
; /* A nesting level of catch -signal */
514 jim_wide sigmask
; /* Bit mask of caught signals, or 0 if none */
515 int (*signal_set_result
)(struct Jim_Interp
*interp
, jim_wide sigmask
); /* Set a result for the sigmask */
516 Jim_CallFrame
*framePtr
; /* Pointer to the current call frame */
517 Jim_CallFrame
*topFramePtr
; /* toplevel/global frame pointer. */
518 struct Jim_HashTable commands
; /* Commands hash table */
519 unsigned long procEpoch
; /* Incremented every time the result
520 of procedures names lookup caching
521 may no longer be valid. */
522 unsigned long callFrameEpoch
; /* Incremented every time a new
523 callframe is created. This id is used for the
524 'ID' field contained in the Jim_CallFrame
526 int local
; /* If 'local' is in effect, newly defined procs keep a reference to the old defn */
527 Jim_Obj
*liveList
; /* Linked list of all the live objects. */
528 Jim_Obj
*freeList
; /* Linked list of all the unused objects. */
529 Jim_Obj
*currentScriptObj
; /* Script currently in execution. */
530 Jim_Obj
*nullScriptObj
; /* script representation of an empty string */
531 Jim_Obj
*emptyObj
; /* Shared empty string object. */
532 Jim_Obj
*trueObj
; /* Shared true int object. */
533 Jim_Obj
*falseObj
; /* Shared false int object. */
534 unsigned long referenceNextId
; /* Next id for reference. */
535 struct Jim_HashTable references
; /* References hash table. */
536 unsigned long lastCollectId
; /* reference max Id of the last GC
537 execution. It's set to -1 while the collection
538 is running as sentinel to avoid to recursive
539 calls via the [collect] command inside
541 time_t lastCollectTime
; /* unix time of the last GC execution */
542 Jim_Obj
*stackTrace
; /* Stack trace object. */
543 Jim_Obj
*errorProc
; /* Name of last procedure which returned an error */
544 Jim_Obj
*unknown
; /* Unknown command cache */
545 int unknown_called
; /* The unknown command has been invoked */
546 int errorFlag
; /* Set if an error occurred during execution. */
547 void *cmdPrivData
; /* Used to pass the private data pointer to
548 a command. It is set to what the user specified
549 via Jim_CreateCommand(). */
551 struct Jim_CallFrame
*freeFramesList
; /* list of CallFrame structures. */
552 struct Jim_HashTable assocData
; /* per-interp storage for use by packages */
553 Jim_PrngState
*prngState
; /* per interpreter Random Number Gen. state. */
554 struct Jim_HashTable packages
; /* Provided packages hash table */
555 Jim_Stack
*loadHandles
; /* handles of loaded modules [load] */
558 /* Currently provided as macro that performs the increment.
559 * At some point may be a real function doing more work.
560 * The proc epoch is used in order to know when a command lookup
561 * cached can no longer considered valid. */
562 #define Jim_InterpIncrProcEpoch(i) (i)->procEpoch++
563 #define Jim_SetResultString(i,s,l) Jim_SetResult(i, Jim_NewStringObj(i,s,l))
564 #define Jim_SetResultInt(i,intval) Jim_SetResult(i, Jim_NewIntObj(i,intval))
565 /* Note: Using trueObj and falseObj here makes some things slower...*/
566 #define Jim_SetResultBool(i,b) Jim_SetResultInt(i, b)
567 #define Jim_SetEmptyResult(i) Jim_SetResult(i, (i)->emptyObj)
568 #define Jim_GetResult(i) ((i)->result)
569 #define Jim_CmdPrivData(i) ((i)->cmdPrivData)
571 /* Note that 'o' is expanded only one time inside this macro,
572 * so it's safe to use side effects. */
573 #define Jim_SetResult(i,o) do { \
574 Jim_Obj *_resultObjPtr_ = (o); \
575 Jim_IncrRefCount(_resultObjPtr_); \
576 Jim_DecrRefCount(i,(i)->result); \
577 (i)->result = _resultObjPtr_; \
580 /* Use this for filehandles, etc. which need a unique id */
581 #define Jim_GetId(i) (++(i)->id)
583 /* Reference structure. The interpreter pointer is held within privdata member in HashTable */
584 #define JIM_REFERENCE_TAGLEN 7 /* The tag is fixed-length, because the reference
585 string representation must be fixed length. */
586 typedef struct Jim_Reference
{
588 Jim_Obj
*finalizerCmdNamePtr
;
589 char tag
[JIM_REFERENCE_TAGLEN
+1];
592 /* -----------------------------------------------------------------------------
593 * Exported API prototypes.
594 * ---------------------------------------------------------------------------*/
596 #define Jim_NewEmptyStringObj(i) Jim_NewStringObj(i, "", 0)
597 #define Jim_FreeHashTableIterator(iter) Jim_Free(iter)
601 /* Memory allocation */
602 JIM_EXPORT
void *Jim_Alloc (int size
);
603 JIM_EXPORT
void *Jim_Realloc(void *ptr
, int size
);
604 JIM_EXPORT
void Jim_Free (void *ptr
);
605 JIM_EXPORT
char * Jim_StrDup (const char *s
);
606 JIM_EXPORT
char *Jim_StrDupLen(const char *s
, int l
);
609 JIM_EXPORT
char **Jim_GetEnviron(void);
610 JIM_EXPORT
void Jim_SetEnviron(char **env
);
611 JIM_EXPORT
int Jim_MakeTempFile(Jim_Interp
*interp
, const char *template);
614 JIM_EXPORT
int Jim_Eval(Jim_Interp
*interp
, const char *script
);
615 /* in C code, you can do this and get better error messages */
616 /* Jim_EvalSource( interp, __FILE__, __LINE__ , "some tcl commands"); */
617 JIM_EXPORT
int Jim_EvalSource(Jim_Interp
*interp
, const char *filename
, int lineno
, const char *script
);
618 /* Backwards compatibility */
619 #define Jim_Eval_Named(I, S, F, L) Jim_EvalSource((I), (F), (L), (S))
621 JIM_EXPORT
int Jim_EvalGlobal(Jim_Interp
*interp
, const char *script
);
622 JIM_EXPORT
int Jim_EvalFile(Jim_Interp
*interp
, const char *filename
);
623 JIM_EXPORT
int Jim_EvalFileGlobal(Jim_Interp
*interp
, const char *filename
);
624 JIM_EXPORT
int Jim_EvalObj (Jim_Interp
*interp
, Jim_Obj
*scriptObjPtr
);
625 JIM_EXPORT
int Jim_EvalObjVector (Jim_Interp
*interp
, int objc
,
626 Jim_Obj
*const *objv
);
627 JIM_EXPORT
int Jim_EvalObjList(Jim_Interp
*interp
, Jim_Obj
*listObj
);
628 JIM_EXPORT
int Jim_EvalObjPrefix(Jim_Interp
*interp
, Jim_Obj
*prefix
,
629 int objc
, Jim_Obj
*const *objv
);
630 #define Jim_EvalPrefix(i, p, oc, ov) Jim_EvalObjPrefix((i), Jim_NewStringObj((i), (p), -1), (oc), (ov))
631 JIM_EXPORT
int Jim_EvalNamespace(Jim_Interp
*interp
, Jim_Obj
*scriptObj
, Jim_Obj
*nsObj
);
632 JIM_EXPORT
int Jim_SubstObj (Jim_Interp
*interp
, Jim_Obj
*substObjPtr
,
633 Jim_Obj
**resObjPtrPtr
, int flags
);
636 JIM_EXPORT
void Jim_InitStack(Jim_Stack
*stack
);
637 JIM_EXPORT
void Jim_FreeStack(Jim_Stack
*stack
);
638 JIM_EXPORT
int Jim_StackLen(Jim_Stack
*stack
);
639 JIM_EXPORT
void Jim_StackPush(Jim_Stack
*stack
, void *element
);
640 JIM_EXPORT
void * Jim_StackPop(Jim_Stack
*stack
);
641 JIM_EXPORT
void * Jim_StackPeek(Jim_Stack
*stack
);
642 JIM_EXPORT
void Jim_FreeStackElements(Jim_Stack
*stack
, void (*freeFunc
)(void *ptr
));
645 JIM_EXPORT
int Jim_InitHashTable (Jim_HashTable
*ht
,
646 const Jim_HashTableType
*type
, void *privdata
);
647 JIM_EXPORT
void Jim_ExpandHashTable (Jim_HashTable
*ht
,
649 JIM_EXPORT
int Jim_AddHashEntry (Jim_HashTable
*ht
, const void *key
,
651 JIM_EXPORT
int Jim_ReplaceHashEntry (Jim_HashTable
*ht
,
652 const void *key
, void *val
);
653 JIM_EXPORT
int Jim_DeleteHashEntry (Jim_HashTable
*ht
,
655 JIM_EXPORT
int Jim_FreeHashTable (Jim_HashTable
*ht
);
656 JIM_EXPORT Jim_HashEntry
* Jim_FindHashEntry (Jim_HashTable
*ht
,
658 JIM_EXPORT
void Jim_ResizeHashTable (Jim_HashTable
*ht
);
659 JIM_EXPORT Jim_HashTableIterator
*Jim_GetHashTableIterator
661 JIM_EXPORT Jim_HashEntry
* Jim_NextHashEntry
662 (Jim_HashTableIterator
*iter
);
665 JIM_EXPORT Jim_Obj
* Jim_NewObj (Jim_Interp
*interp
);
666 JIM_EXPORT
void Jim_FreeObj (Jim_Interp
*interp
, Jim_Obj
*objPtr
);
667 JIM_EXPORT
void Jim_InvalidateStringRep (Jim_Obj
*objPtr
);
668 JIM_EXPORT Jim_Obj
* Jim_DuplicateObj (Jim_Interp
*interp
,
670 JIM_EXPORT
const char * Jim_GetString(Jim_Obj
*objPtr
,
672 JIM_EXPORT
const char *Jim_String(Jim_Obj
*objPtr
);
673 JIM_EXPORT
int Jim_Length(Jim_Obj
*objPtr
);
676 JIM_EXPORT Jim_Obj
* Jim_NewStringObj (Jim_Interp
*interp
,
677 const char *s
, int len
);
678 JIM_EXPORT Jim_Obj
*Jim_NewStringObjUtf8(Jim_Interp
*interp
,
679 const char *s
, int charlen
);
680 JIM_EXPORT Jim_Obj
* Jim_NewStringObjNoAlloc (Jim_Interp
*interp
,
682 JIM_EXPORT
void Jim_AppendString (Jim_Interp
*interp
, Jim_Obj
*objPtr
,
683 const char *str
, int len
);
684 JIM_EXPORT
void Jim_AppendObj (Jim_Interp
*interp
, Jim_Obj
*objPtr
,
685 Jim_Obj
*appendObjPtr
);
686 JIM_EXPORT
void Jim_AppendStrings (Jim_Interp
*interp
,
687 Jim_Obj
*objPtr
, ...);
688 JIM_EXPORT
int Jim_StringEqObj(Jim_Obj
*aObjPtr
, Jim_Obj
*bObjPtr
);
689 JIM_EXPORT
int Jim_StringMatchObj (Jim_Interp
*interp
, Jim_Obj
*patternObjPtr
,
690 Jim_Obj
*objPtr
, int nocase
);
691 JIM_EXPORT Jim_Obj
* Jim_StringRangeObj (Jim_Interp
*interp
,
692 Jim_Obj
*strObjPtr
, Jim_Obj
*firstObjPtr
,
693 Jim_Obj
*lastObjPtr
);
694 JIM_EXPORT Jim_Obj
* Jim_FormatString (Jim_Interp
*interp
,
695 Jim_Obj
*fmtObjPtr
, int objc
, Jim_Obj
*const *objv
);
696 JIM_EXPORT Jim_Obj
* Jim_ScanString (Jim_Interp
*interp
, Jim_Obj
*strObjPtr
,
697 Jim_Obj
*fmtObjPtr
, int flags
);
698 JIM_EXPORT
int Jim_CompareStringImmediate (Jim_Interp
*interp
,
699 Jim_Obj
*objPtr
, const char *str
);
700 JIM_EXPORT
int Jim_StringCompareObj(Jim_Interp
*interp
, Jim_Obj
*firstObjPtr
,
701 Jim_Obj
*secondObjPtr
, int nocase
);
702 JIM_EXPORT
int Jim_StringCompareLenObj(Jim_Interp
*interp
, Jim_Obj
*firstObjPtr
,
703 Jim_Obj
*secondObjPtr
, int nocase
);
704 JIM_EXPORT
int Jim_Utf8Length(Jim_Interp
*interp
, Jim_Obj
*objPtr
);
706 /* reference object */
707 JIM_EXPORT Jim_Obj
* Jim_NewReference (Jim_Interp
*interp
,
708 Jim_Obj
*objPtr
, Jim_Obj
*tagPtr
, Jim_Obj
*cmdNamePtr
);
709 JIM_EXPORT Jim_Reference
* Jim_GetReference (Jim_Interp
*interp
,
711 JIM_EXPORT
int Jim_SetFinalizer (Jim_Interp
*interp
, Jim_Obj
*objPtr
, Jim_Obj
*cmdNamePtr
);
712 JIM_EXPORT
int Jim_GetFinalizer (Jim_Interp
*interp
, Jim_Obj
*objPtr
, Jim_Obj
**cmdNamePtrPtr
);
715 JIM_EXPORT Jim_Interp
* Jim_CreateInterp (void);
716 JIM_EXPORT
void Jim_FreeInterp (Jim_Interp
*i
);
717 JIM_EXPORT
int Jim_GetExitCode (Jim_Interp
*interp
);
718 JIM_EXPORT
const char *Jim_ReturnCode(int code
);
719 JIM_EXPORT
void Jim_SetResultFormatted(Jim_Interp
*interp
, const char *format
, ...);
722 JIM_EXPORT
void Jim_RegisterCoreCommands (Jim_Interp
*interp
);
723 JIM_EXPORT
int Jim_CreateCommand (Jim_Interp
*interp
,
724 const char *cmdName
, Jim_CmdProc
*cmdProc
, void *privData
,
725 Jim_DelCmdProc
*delProc
);
726 JIM_EXPORT
int Jim_DeleteCommand (Jim_Interp
*interp
,
727 const char *cmdName
);
728 JIM_EXPORT
int Jim_RenameCommand (Jim_Interp
*interp
,
729 const char *oldName
, const char *newName
);
730 JIM_EXPORT Jim_Cmd
* Jim_GetCommand (Jim_Interp
*interp
,
731 Jim_Obj
*objPtr
, int flags
);
732 JIM_EXPORT
int Jim_SetVariable (Jim_Interp
*interp
,
733 Jim_Obj
*nameObjPtr
, Jim_Obj
*valObjPtr
);
734 JIM_EXPORT
int Jim_SetVariableStr (Jim_Interp
*interp
,
735 const char *name
, Jim_Obj
*objPtr
);
736 JIM_EXPORT
int Jim_SetGlobalVariableStr (Jim_Interp
*interp
,
737 const char *name
, Jim_Obj
*objPtr
);
738 JIM_EXPORT
int Jim_SetVariableStrWithStr (Jim_Interp
*interp
,
739 const char *name
, const char *val
);
740 JIM_EXPORT
int Jim_SetVariableLink (Jim_Interp
*interp
,
741 Jim_Obj
*nameObjPtr
, Jim_Obj
*targetNameObjPtr
,
742 Jim_CallFrame
*targetCallFrame
);
743 JIM_EXPORT Jim_Obj
* Jim_MakeGlobalNamespaceName(Jim_Interp
*interp
,
744 Jim_Obj
*nameObjPtr
);
745 JIM_EXPORT Jim_Obj
* Jim_GetVariable (Jim_Interp
*interp
,
746 Jim_Obj
*nameObjPtr
, int flags
);
747 JIM_EXPORT Jim_Obj
* Jim_GetGlobalVariable (Jim_Interp
*interp
,
748 Jim_Obj
*nameObjPtr
, int flags
);
749 JIM_EXPORT Jim_Obj
* Jim_GetVariableStr (Jim_Interp
*interp
,
750 const char *name
, int flags
);
751 JIM_EXPORT Jim_Obj
* Jim_GetGlobalVariableStr (Jim_Interp
*interp
,
752 const char *name
, int flags
);
753 JIM_EXPORT
int Jim_UnsetVariable (Jim_Interp
*interp
,
754 Jim_Obj
*nameObjPtr
, int flags
);
757 JIM_EXPORT Jim_CallFrame
*Jim_GetCallFrameByLevel(Jim_Interp
*interp
,
758 Jim_Obj
*levelObjPtr
);
760 /* garbage collection */
761 JIM_EXPORT
int Jim_Collect (Jim_Interp
*interp
);
762 JIM_EXPORT
void Jim_CollectIfNeeded (Jim_Interp
*interp
);
765 JIM_EXPORT
int Jim_GetIndex (Jim_Interp
*interp
, Jim_Obj
*objPtr
,
769 JIM_EXPORT Jim_Obj
* Jim_NewListObj (Jim_Interp
*interp
,
770 Jim_Obj
*const *elements
, int len
);
771 JIM_EXPORT
void Jim_ListInsertElements (Jim_Interp
*interp
,
772 Jim_Obj
*listPtr
, int listindex
, int objc
, Jim_Obj
*const *objVec
);
773 JIM_EXPORT
void Jim_ListAppendElement (Jim_Interp
*interp
,
774 Jim_Obj
*listPtr
, Jim_Obj
*objPtr
);
775 JIM_EXPORT
void Jim_ListAppendList (Jim_Interp
*interp
,
776 Jim_Obj
*listPtr
, Jim_Obj
*appendListPtr
);
777 JIM_EXPORT
int Jim_ListLength (Jim_Interp
*interp
, Jim_Obj
*objPtr
);
778 JIM_EXPORT
int Jim_ListIndex (Jim_Interp
*interp
, Jim_Obj
*listPrt
,
779 int listindex
, Jim_Obj
**objPtrPtr
, int seterr
);
780 JIM_EXPORT Jim_Obj
*Jim_ListGetIndex(Jim_Interp
*interp
, Jim_Obj
*listPtr
, int idx
);
781 JIM_EXPORT
int Jim_SetListIndex (Jim_Interp
*interp
,
782 Jim_Obj
*varNamePtr
, Jim_Obj
*const *indexv
, int indexc
,
784 JIM_EXPORT Jim_Obj
* Jim_ConcatObj (Jim_Interp
*interp
, int objc
,
785 Jim_Obj
*const *objv
);
786 JIM_EXPORT Jim_Obj
*Jim_ListJoin(Jim_Interp
*interp
,
787 Jim_Obj
*listObjPtr
, const char *joinStr
, int joinStrLen
);
790 JIM_EXPORT Jim_Obj
* Jim_NewDictObj (Jim_Interp
*interp
,
791 Jim_Obj
*const *elements
, int len
);
792 JIM_EXPORT
int Jim_DictKey (Jim_Interp
*interp
, Jim_Obj
*dictPtr
,
793 Jim_Obj
*keyPtr
, Jim_Obj
**objPtrPtr
, int flags
);
794 JIM_EXPORT
int Jim_DictKeysVector (Jim_Interp
*interp
,
795 Jim_Obj
*dictPtr
, Jim_Obj
*const *keyv
, int keyc
,
796 Jim_Obj
**objPtrPtr
, int flags
);
797 JIM_EXPORT
int Jim_SetDictKeysVector (Jim_Interp
*interp
,
798 Jim_Obj
*varNamePtr
, Jim_Obj
*const *keyv
, int keyc
,
799 Jim_Obj
*newObjPtr
, int flags
);
800 JIM_EXPORT
int Jim_DictPairs(Jim_Interp
*interp
,
801 Jim_Obj
*dictPtr
, Jim_Obj
***objPtrPtr
, int *len
);
802 JIM_EXPORT
int Jim_DictAddElement(Jim_Interp
*interp
, Jim_Obj
*objPtr
,
803 Jim_Obj
*keyObjPtr
, Jim_Obj
*valueObjPtr
);
804 JIM_EXPORT
int Jim_DictKeys(Jim_Interp
*interp
, Jim_Obj
*objPtr
, Jim_Obj
*patternObj
);
805 JIM_EXPORT
int Jim_DictValues(Jim_Interp
*interp
, Jim_Obj
*dictObjPtr
, Jim_Obj
*patternObjPtr
);
806 JIM_EXPORT
int Jim_DictSize(Jim_Interp
*interp
, Jim_Obj
*objPtr
);
807 JIM_EXPORT
int Jim_DictInfo(Jim_Interp
*interp
, Jim_Obj
*objPtr
);
809 /* return code object */
810 JIM_EXPORT
int Jim_GetReturnCode (Jim_Interp
*interp
, Jim_Obj
*objPtr
,
813 /* expression object */
814 JIM_EXPORT
int Jim_EvalExpression (Jim_Interp
*interp
,
815 Jim_Obj
*exprObjPtr
, Jim_Obj
**exprResultPtrPtr
);
816 JIM_EXPORT
int Jim_GetBoolFromExpr (Jim_Interp
*interp
,
817 Jim_Obj
*exprObjPtr
, int *boolPtr
);
820 JIM_EXPORT
int Jim_GetBoolean(Jim_Interp
*interp
, Jim_Obj
*objPtr
,
824 JIM_EXPORT
int Jim_GetWide (Jim_Interp
*interp
, Jim_Obj
*objPtr
,
826 JIM_EXPORT
int Jim_GetLong (Jim_Interp
*interp
, Jim_Obj
*objPtr
,
828 #define Jim_NewWideObj Jim_NewIntObj
829 JIM_EXPORT Jim_Obj
* Jim_NewIntObj (Jim_Interp
*interp
,
833 JIM_EXPORT
int Jim_GetDouble(Jim_Interp
*interp
, Jim_Obj
*objPtr
,
835 JIM_EXPORT
void Jim_SetDouble(Jim_Interp
*interp
, Jim_Obj
*objPtr
,
837 JIM_EXPORT Jim_Obj
* Jim_NewDoubleObj(Jim_Interp
*interp
, double doubleValue
);
839 /* commands utilities */
840 JIM_EXPORT
void Jim_WrongNumArgs (Jim_Interp
*interp
, int argc
,
841 Jim_Obj
*const *argv
, const char *msg
);
842 JIM_EXPORT
int Jim_GetEnum (Jim_Interp
*interp
, Jim_Obj
*objPtr
,
843 const char * const *tablePtr
, int *indexPtr
, const char *name
, int flags
);
844 JIM_EXPORT
int Jim_ScriptIsComplete(Jim_Interp
*interp
,
845 Jim_Obj
*scriptObj
, char *stateCharPtr
);
848 * Find a matching name in the array of the given length.
850 * NULL entries are ignored.
852 * Returns the matching index if found, or -1 if not.
854 JIM_EXPORT
int Jim_FindByName(const char *name
, const char * const array
[], size_t len
);
856 /* package utilities */
857 typedef void (Jim_InterpDeleteProc
)(Jim_Interp
*interp
, void *data
);
858 JIM_EXPORT
void * Jim_GetAssocData(Jim_Interp
*interp
, const char *key
);
859 JIM_EXPORT
int Jim_SetAssocData(Jim_Interp
*interp
, const char *key
,
860 Jim_InterpDeleteProc
*delProc
, void *data
);
861 JIM_EXPORT
int Jim_DeleteAssocData(Jim_Interp
*interp
, const char *key
);
865 JIM_EXPORT
int Jim_PackageProvide (Jim_Interp
*interp
,
866 const char *name
, const char *ver
, int flags
);
867 JIM_EXPORT
int Jim_PackageRequire (Jim_Interp
*interp
,
868 const char *name
, int flags
);
871 JIM_EXPORT
void Jim_MakeErrorMessage (Jim_Interp
*interp
);
873 /* interactive mode */
874 JIM_EXPORT
int Jim_InteractivePrompt (Jim_Interp
*interp
);
875 JIM_EXPORT
void Jim_HistoryLoad(const char *filename
);
876 JIM_EXPORT
void Jim_HistorySave(const char *filename
);
877 JIM_EXPORT
char *Jim_HistoryGetline(const char *prompt
);
878 JIM_EXPORT
void Jim_HistoryAdd(const char *line
);
879 JIM_EXPORT
void Jim_HistoryShow(void);
882 JIM_EXPORT
int Jim_InitStaticExtensions(Jim_Interp
*interp
);
883 JIM_EXPORT
int Jim_StringToWide(const char *str
, jim_wide
*widePtr
, int base
);
884 JIM_EXPORT
int Jim_IsBigEndian(void);
887 * Returns 1 if a signal has been received while
888 * in a catch -signal {} clause.
890 #define Jim_CheckSignal(i) ((i)->signal_level && (i)->sigmask)
893 JIM_EXPORT
int Jim_LoadLibrary(Jim_Interp
*interp
, const char *pathName
);
894 JIM_EXPORT
void Jim_FreeLoadHandles(Jim_Interp
*interp
);
897 JIM_EXPORT
FILE *Jim_AioFilehandle(Jim_Interp
*interp
, Jim_Obj
*command
);
899 /* type inspection - avoid where possible */
900 JIM_EXPORT
int Jim_IsDict(Jim_Obj
*objPtr
);
901 JIM_EXPORT
int Jim_IsList(Jim_Obj
*objPtr
);
907 #endif /* __JIM__H */
910 * Local Variables: ***
911 * c-basic-offset: 4 ***