chiark / gitweb /
initial import and build-faff, wip
[chiark-tcl.git] / base / chiark-tcl.h
1 /*
2  */
3
4 #ifndef CHIARK_TCL_H
5 #define CHIARK_TCL_H
6
7 #include <assert.h>
8 #include <stdlib.h>
9 #include <errno.h>
10 #include <unistd.h>
11 #include <fcntl.h>
12 #include <sys/socket.h>
13 #include <sys/uio.h>
14 #include <sys/un.h>
15 #include <arpa/inet.h>
16
17 #include <tcl8.3/tcl.h>
18
19 #include <adns.h>
20
21 typedef unsigned char Byte;
22
23 /* for assisting tcmdifgen and tcmdiflib.c */
24
25 typedef struct TopLevel_Command TopLevel_Command;
26
27 struct TopLevel_Command {
28   const char *name;
29   Tcl_ObjCmdProc *func;
30 };
31
32 void cht_setstringresult(Tcl_Interp*, const char*);
33 int cht_pat_enum(Tcl_Interp*, Tcl_Obj*, const void**,
34                  const void*, size_t, const char *what);
35
36 /* from scriptinv.c */
37
38 typedef struct { /* semi-opaque - read only, and then only where commented */
39   Tcl_Interp *ip; /* valid, non-0 and useable if set */
40   Tcl_Obj *obj; /* non-0 iff set (but only test for 0/non-0) */
41   Tcl_Obj *xargs;
42   int llength;
43 } ScriptToInvoke;
44
45 void cht_scriptinv_init(ScriptToInvoke *si);
46 int cht_scriptinv_set(ScriptToInvoke *si, Tcl_Interp *ip,
47                   Tcl_Obj *newscript, Tcl_Obj *xargs);
48 void cht_scriptinv_cancel(ScriptToInvoke *si); /* then don't invoke */
49   /* no separate free function - just cancel */
50
51 void cht_scriptinv_invoke(ScriptToInvoke *si, int argc, Tcl_Obj *const *argv);
52
53 /* from idtable.c */
54
55 typedef struct {
56   const char *valprefix, *assockey;
57   void (*destroyitem)(Tcl_Interp *ip, void *val);
58 } IdDataSpec;
59
60 /* The stored struct must start with a single int, conventionally
61  * named `ix'.  When the struct is returned for the first time ix must
62  * be -1; on subsequent occasions it must be >=0.  ix will be -1 iff
63  * the struct is registered by the iddatatable machinery. */
64
65 extern Tcl_ObjType cht_tabledataid_nearlytype;
66 int cht_tabledataid_parse(Tcl_Interp *ip, Tcl_Obj *o, const IdDataSpec *idds);
67 void cht_tabledataid_disposing(Tcl_Interp *ip, void *val, const IdDataSpec *idds);
68   /* call this when you destroy the struct, to remove its name;
69    * _disposing is idempotent */
70
71 /* from hook.c */
72
73 int cht_initextension(Tcl_Interp *ip, const TopLevel_Command *cmds,
74                       int *donep /* or 0, meaning no types follow */,
75                       ... /* types, terminated by 0 */);
76
77 int cht_staticerr(Tcl_Interp *ip, const char *m, const char *ec);
78 int cht_posixerr(Tcl_Interp *ip, int errnoval, const char *m);
79 int cht_newfdposixerr(Tcl_Interp *ip, int fd, const char *m);
80 void cht_objfreeir(Tcl_Obj *o);
81 int cht_get_urandom(Tcl_Interp *ip, Byte *buffer, int l);
82
83 void cht_obj_updatestr_array(Tcl_Obj *o, const Byte *array, int l);
84 void cht_obj_updatestr_array_prefix(Tcl_Obj *o, const Byte *byte,
85                                 int l, const char *prefix);
86
87 void cht_obj_updatestr_vstringls(Tcl_Obj *o, ...);
88   /* const char*, int, const char*, int, ..., (const char*)0 */
89 void cht_obj_updatestr_string_len(Tcl_Obj *o, const char *str, int l);
90 void cht_obj_updatestr_string(Tcl_Obj *o, const char *str);
91
92 /* from parse.c */
93
94 typedef struct {
95   Tcl_Obj *obj, *var;
96   int copied;
97 } Something_Var;
98
99 void cht_init_somethingv(Something_Var *sth);
100 void cht_fini_somethingv(Tcl_Interp *ip, int rc, Something_Var *sth);
101 int cht_pat_somethingv(Tcl_Interp *ip, Tcl_Obj *var,
102                    Something_Var *sth, Tcl_ObjType *type);
103
104 /* from enum.c */
105
106 extern Tcl_ObjType cht_enum_nearlytype;
107 extern Tcl_ObjType cht_enum1_nearlytype;
108
109 const void *cht_enum_lookup_cached_func(Tcl_Interp *ip, Tcl_Obj *o,
110                                     const void *firstentry, size_t entrysize,
111                                     const char *what);
112 #define enum_lookup_cached(ip,o,table,what)                     \
113     (cht_enum_lookup_cached_func((ip),(o),                              \
114                              &(table)[0],sizeof((table)[0]),    \
115                              (what)))
116   /* table should be a pointer to an array of structs of size
117    * entrysize, the first member of which should be a const char*.
118    * The table should finish with a null const char *.
119    * On error, 0 is returned and the ip->result will have been
120    * set to the error message.
121    */
122
123 int cht_enum1_lookup_cached_func(Tcl_Interp *ip, Tcl_Obj *o,
124                              const char *opts, const char *what);
125   /* -1 => error */
126
127 /* useful macros */
128
129 #define TALLOC(s) ((void*)Tcl_Alloc((s)))
130 #define TFREE(f) (Tcl_Free((void*)(f)))
131 #define TREALLOC(p,l) ((void*)Tcl_Realloc((void*)(p),(l)))
132
133 #endif /*CHIARK_TCL_H*/