some locale related experiments
[svn/Cll1h/.git] / cll1.h
1 /* .---------------------------------------------------------------------.
2 / C<<1 header file - C language style sheet - GNU C/ANSI C99 compliant
3 / Cumbersome Extraction and Report Language - http://cll1h.arachne.cz/
4 '---------------------------------------------------------------------- */
5 /*
6 Copyright (c) 2004-2008 Michael xChaos Polak - x(at)n.cz
7
8 The C<<1 header file is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or (at your option) any later version.
12
13 The C<<1 header file is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with C<<1 header file; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22 #ifndef _CLL1_H
23 #define _CLL1_H
24 #define CLL1H_VERSION "0.7.1"
25 /* .----------------------------------------------------------------------.
26 / 0. Library definitions not parsed by @CC, updated 2008-01-26 xCh.
27 '---------------------------------------------------------------------- */
28 /*
29 @define USE_LIBRARY_MYSQL -lmysqlclient
30 @define USE_LIBRARY_FASTCGI -lfcgi
31 @define USE_PREPROCESSOR cake *.html *.xml > _include.c
32 @define USE_POSTPROCESSOR strip @
33 */
34 /* .----------------------------------------------------------------------.
35 / 1. C<<1 header auto include, updated 2008-01-26 xCh.
36 '---------------------------------------------------------------------- */
37 #ifndef DISABLE_MODULE_AUTOINCLUDE
38 #include <string.h>
39 #include <strings.h>
40 #include <malloc.h>
41 #include <time.h>
42 #include <stdlib.h>
43 #include <stdarg.h>
44 #include <unistd.h>
45 #include <setjmp.h>
46 #include <locale.h>
47 #ifdef USE_LIBRARY_FASTCGI
48 #include <fcgi_stdio.h>
49 #else
50 #include <stdio.h>
51 #endif
52 #endif
53 #ifdef USE_LIBRARY_MYSQL
54 #include <mysql/mysql.h>
55 #endif
56 /* .----------------------------------------------------------------------.
57 / 0. C<<1 typedefs and public global variables, updated 2008-02-03 xCh.
58 '----------------------------------------------------------------------- */
59 typedef void * any;
60 typedef unsigned char * buf; /* this will be always 8-bit usigned char * */
61 typedef FILE * file;
62 typedef int bool;
63 #ifdef USE_WCHAR_T
64 typedef wchar_t * str;
65 #else
66 typedef char * str; /* Warning: full wchar_t support not yet implemented! */
67 #endif
68 extern str NIL, EOL, OFS, IFS, LANG, errstr; /* used for: perror(errstr) */
69 extern unsigned RANDOM_SEED;
70 #define _EXPORT_GLOBALS \
71 str NIL="(null)", EOL="\n", OFS=" ", IFS=" \t\n", LANG=NULL; \
72 str errstr="C<<1 0xdead"; \
73 unsigned RANDOM_SEED=0;
74 /* .----------------------------------------------------------------------.
75 / 1. C<<1 then buddhist section, updated 2008-02-04 xCh.
76 '----------------------------------------------------------------------- */
77 #ifndef DISABLE_MODULE_THEN_BUDDHISM
78 #define then
79 #define MAYBE (int)((long)(RANDOM_SEED?random():((RANDOM_SEED=(unsigned)time(NULL)),srandom(RANDOM_SEED),random()))%2)
80 #define WHOKNOWS (int)(srandom((unsigned)time(NULL)),random()%2)
81 #define for_samsara(MIND,SOUL) for(MIND=SOUL; MIND || ((MIND->__next=SOUL),0) ; MIND=MIND->__next)
82 #define samsara(MIND,SOUL) for(MIND=SOUL; MIND || ((MIND->__next=SOUL),0) ; MIND=MIND->__next)
83 //#define atob(EXPR) (word_in_stri(YES,(EXPR))?1:0)
84 //#define _EXPORT_YES str YES="TRUE\nYES\nJA\nOUI\nDA\nANO\nY\n1";
85 //#else
86 #define atob(EXPR) (eqi((EXPR),YES)?TRUE:FALSE)
87 #define _EXPORT_YES str YES="TRUE";
88 #endif
89 /* .----------------------------------------------------------------------.
90 / 2. C<<1 almost then buddhist section, updated 2008-02-02 xCh.
91 '----------------------------------------------------------------------- */
92 #define not !
93 #define and &&
94 #define or ||
95 #define TRUE 1
96 #define FALSE 0
97 #define PI 3.141592654
98 #define WEIRDINT (1<<(sizeof(int)*8-1))
99 #define btoa(EXPR) ((EXPR)?"TRUE":"FALSE")
100 #define coalesce(VAR,EXPR) (VAR?VAR:(VAR=0,(EXPR)))
101 #define coalesce_str(VAR,EXPR) (VAR && *VAR?VAR:((VAR=NULL),(EXPR)))
102 /* .----------------------------------------------------------------------.
103 / 4. C<<1 data declaration and allocation, updated 2008-01-31 xCh.
104 '----------------------------------------------------------------------- */
105 #define def_type(TYPE) typedef struct _##TYPE##_struct * TYPE
106 #define def_mem(TYPE) def_type(TYPE); struct _##TYPE##_struct
107 #define get_mem(TYPE) _GET_MEM(TYPE)
108 #define get_buf(SIZE) (buf)malloc(SIZE) /* temporary solution */
109 #define size_of_mem(TYPE) sizeof(struct _##TYPE##_struct)
110 #define copy_of_mem(TYPE,SRC) _cll1_mem_cpy(sizeof(struct _##TYPE##_struct),SRC)
111 #define list(TYPE) TYPE __next
112 #define tree(TYPE) TYPE __next; TYPE __seek
113 #define dict(TYPE) tree(TYPE); str __key
114 #define array(TYPE) tree(TYPE); int __key
115 /* ---- variable declarators -------------------------------------------- */
116 #define Get_mem(ID,TYPE) TYPE ID=get_mem(TYPE)
117 #define Get_buf(ID,SIZE) buf ID=get_buf(SIZE)
118 /* .----------------------------------------------------------------------.
119 / 5. C<<1 string manipulation, updated 2008-01-26 xCh.
120 '----------------------------------------------------------------------- */
121 #define get_str(...) _cll1_get_str(__VA_ARGS__,NIL)
122 #define eq(A,B) (!_cll1_str_cmp(A,B))
123 #define eqi(A,B) (!_cll1_str_cmpi(A,B))
124 #define str_order(A,B) _cll1_str_coll(A,B)
125 #define str_ascii(A,B) _cll1_str_cmp(A,B)
126 #define chars_in_str(...) _cll1_strlen(__VA_ARGS__,NIL)
127 #define size_of_str(A) mbstowcs(NULL,A,0)
128 #define str_in(A,B) _cll1_str_str(A,B)
129 #define word_in(A,B) _cll1_wordinstr(A,B,0)
130 #define print(...) _cll1_print(__VA_ARGS__,NIL)
131 #define fprint(...) _cll1_fprint(__VA_ARGS__,NIL)
132 #define file_print(...) _cll1_fprint(_F,__VA_ARGS__,NIL)
133 #define echo(...) _cll1_echo(__VA_ARGS__,NIL)
134 #define fecho(...) _cll1_fecho(__VA_ARGS__,NIL)
135 #define file_echo(...) _cll1_fecho(_F,__VA_ARGS__,NIL)
136 #define suffix(A,B,C) (((A=strrchr(B,C))&&!(*(A++)=0))||(A=B))
137 #define prefix(A,B,C) ((A=B),((B=strchr(B,C))&&!(*(B++)=0)||(B=A)))
138 #define tr(STR,B,C) _NEW(S,STR) while(S && *_S) { if(*_S==B)*_S=C; /* <-' */ _S++; }
139 /* ---- variable declarators -------------------------------------------- */
140 #define Get_str(ID,...) str ID=get_str(__VA_ARGS__)
141 /* .----------------------------------------------------------------------.
142 / 6. C<<1 data container manipulation, updated 2008-01-26 xCh.
143 '----------------------------------------------------------------------- */
144 #define push(NODE,HEAD) ( NODE ? ((NODE->__next=HEAD),(HEAD=NODE)) : NULL )
145 #define pop(NODE,HEAD) ( HEAD ? ((NODE=HEAD->__next),free(HEAD),(HEAD=NODE)) : (NODE=NULL) )
146 #define append(NODE,HEAD) { void *_PTR=NODE; if(NODE) NODE->__next=NULL; if(HEAD) { for_search(NODE,HEAD,!NODE->__next) { NODE->__next=_PTR; break; } } else HEAD=NODE; }
147 #define remove(NODE,HEAD,EXPR) { void **_D=NULL; /* <-' */ for_search(NODE,HEAD,EXPR) { if(_D)*_D=NODE->__next; else HEAD=NODE->__next; free(NODE); } else _D=(void *)&(NODE->__next); }
148 #define drop(NODE,HEAD) for( NODE=HEAD; NODE || (HEAD=NULL); HEAD=NODE, NODE=NODE->__next, free(HEAD) )
149 //to do: seek
150 //to do: store
151 #define count(NODE,HEAD,VAR) { _NEW(I,0) for(NODE=HEAD; NODE || ((VAR=_I),0) ; (NODE=NODE->__next)?(_I++):0 ); }
152 #define order_by_num(K1,K2) (K1>K2)
153 #define order_by_num_desc(K1,K2) (K1<K2)
154 #define order_by_str(K1,K2) (str_order(K1,K2)>0)
155 #define order_by_str_desc(K1,K2) (str_order(K1,K2)<0)
156 #define order_by_ascii(K1,K2) (str_ascii(K1,K2)>0)
157 #define order_by_ascii_desc(K1,K2) (str_ascii(K1,K2)<0)
158 #define insert(NODE,HEAD,ORDERBY,KEY) { if(HEAD) { void **_L=NULL, *H=HEAD; /* <-' */ for_search(HEAD,H,ORDERBY(HEAD->KEY,NODE->KEY)) { if(_L) {*_L=NODE; NODE->__next=HEAD; } else push(NODE,H); break; } else _L=(void *)&(HEAD->__next); if(!HEAD)*_L=NODE; HEAD=H; } else if (NODE) { push(NODE,HEAD); HEAD->__next=NULL; } }
159 #define sort(NODE,HEAD,ORDERBY,KEY) { void *_NEXT; /* <-' */ NODE=HEAD; HEAD=NULL; do { _NEXT=NODE->__next; NODE->__next=NULL; insert(NODE,HEAD,ORDERBY,KEY); NODE=_NEXT; } while(_NEXT); }
160 /* .----------------------------------------------------------------------.
161 / 7. C<<1 builtin iterators and conditionals, updated 2008-01-26 xCh.
162 '----------------------------------------------------------------------- */
163 #define loop while(TRUE)
164 #define repeat(N) _NEW(I,(_J=(N),0)) while(_I++<_J) /* C99 version would be: for(int _i=0,_j=(N);_i++<_j;) */
165 #define for_range(VAR,FROM,TO) _NEW(I,((_J=(TO)),FROM)) for( VAR=_I ; _I<=_J?VAR<=_J:VAR>=_J ; _I<=_J?VAR++:VAR--)
166 #define for_each(NODE,HEAD) for(NODE=HEAD; NODE; NODE=NODE->__next)
167 #define for_search(NODE,HEAD,EXPR) for_each(NODE,HEAD) if(EXPR)
168 #define for_file_lines(STR,FNAME) /* _NEW(CTX,get_context()) file_read(FNAME) for(use_context(_CTX),STR=file_line(_F);release_context(_M),(*S && !feof(_F));STR=file_line(_F),end_context()) _CATCH */
169 #define for_input_lines(S,L) /* _NEW(CTX,get_context()) for(use_context(_CTX),STR=file_get_line(stdin);release_context(_M),(*S && !feof(stdin));STR=file_get_line(stdin)) _CATCH */
170 #define for_ints(VAR,...) _NEW(I,0) while( (VAR=_cll1_for_ints(_I++,__VA_ARGS__,WEIRDINT))!=WEIRDINT )
171 #define for_strs(VAR,...) _NEW(I,0) while( (VAR=(char *)_cll1_for_ptrs(_I++,__VA_ARGS__,NIL))!=NIL )
172 #define for_args(STR) _NEW(I,1) while(_I++<argc)
173 #define this_arg argv[_I]
174 #define next_arg ((_I+1<argc)?argv[_I]:NULL)
175 #define continue_args _I++
176 #define if_exists(NODE,HEAD,EXPR) for_search(NODE,HEAD,EXPR) break; if(NODE)
177 #define if_args if(argc>1)
178 #define switch_for_args for_args with_str(this_arg)
179 #define with_str(STR) _NEW(S,STR)
180 #define if_case(VAL) if(eq(_S,VAL))
181 #define for_fields(FIELD,STR) for_valid_split(FIELD,STR,*OFS)
182 #define for_split_str(A,B,C) for(prefix(A,B,C);A;(A!=B)&&prefix(A,B,C)||(A=NULL))
183 #define for_valid_split(A,B,C) for_split_str(A,B,C) if(*A)
184 #define switch_for_columns(A,B,C) _FOR_COLUMNS(A,B,C) switch(__I)
185 #define switch_for_valid_columns(A,B,C) _FOR_VALID_COLUMNS(A,B,C) switch (_I)
186 #define if_column_number(A,B,C,V) _FOR_COLUMNS(A,B,C) if(_I==V)
187 #define if_valid_column_number(A,B,C,V) _FOR_VALID_COLUMNS(A,B,C) if(_I==V)
188 /* .----------------------------------------------------------------------.
189 / 8. C<<1 object oriented infrastructure, updated 2008-02-04
190 '----------------------------------------------------------------------- */
191 #define def_interface(TYPE,INTERFACE) def_type(TYPE); def_mem(INTERFACE)
192 #define def_obj(TYPE) struct _##TYPE##_struct
193 #define interface(TYPE) TYPE __interface
194 #define interface_of(SELF) SELF->__interface
195 #define method(NAME) (*NAME)
196 #define construct(TYPE,INTERFACE) TYPE _init_##TYPE(TYPE o,INTERFACE i) { o->__interface=i; return o; } TYPE __init__##TYPE
197 #define get_obj(TYPE,INTERFACE,...) __init__##TYPE(_init_##TYPE(get_mem(TYPE),INTERFACE),__VA_ARGS__)
198 #define get_obj_as(COMMUNITY,MEM,INTERFACE,...) (COMMUNITY)get_obj(MEM,INTERFACE,__VA_ARGS__)
199 #define _(METHOD,...) ((((_ARG1(__VA_ARGS__,)) || /* will not compile if object is not lvalue: */(_ARG1(__VA_ARGS__,)=NULL)) && (_ARG1(__VA_ARGS__,))->__interface->METHOD)?(*( (_ARG1(__VA_ARGS__,))->__interface->METHOD )) ((void *)__VA_ARGS__):0)
200 //#define __(METHOD,...) ( _ASSERT(ARG1(__VA_ARGS__,)), (*( __cll1_seekmethod(ARG1(__VA_ARGS__,),METHOD) )) ( __VA_ARGS__ ) )
201 #define call(OBJTYPE,METHOD,...) { int _N=0; OBJTYPE _OBJ; /* <-' */ while( (_OBJ=(OBJTYPE)_cll1_for_ptrs(_N++,__VA_ARGS__,NIL))!=(OBJTYPE)NIL ) _(_OBJ,METHOD); }
202 #define def_community(TYPE,INTERFACE) def_obj(TYPE) { INTERFACE __interface; };
203 /* ---- variable declarators -------------------------------------------- */
204 #define Get_obj(ID,MEM,...) MEM ID=get_obj(MEM,__VA_ARGS__)
205 #define Get_obj_as(ID,COMMUNITY,MEM,...) MEM ID=get_obj_as(COMMUNITY,MEM,INTERFACE,__VA_ARGS__)
206 #define I_am(SELF,MEM) MEM SELF=(MEM)community
207 /* .----------------------------------------------------------------------.
208 / 9. C<<1 setjmp()/longjmp() based exceptions, updated 2008-09-30
209 '----------------------------------------------------------------------- */
210 #define FAILED_TO_FAIL -273
211 #define SYSTEM_FAILURE -1
212 #define LOCAL_FAILURE 13
213 #define LIBRARY_FAILURE 23
214 #define EVIL_FAILURE 666
215 #define try _NEW(E,0) if(!(_E=setjmp(_EENV)))
216 #define fail(E) longjmp(_EENV,((E)>0?(E):FAILED_TO_FAIL))
217 #define pass_failure (_Eatom->__next?longjmp((pop(_Eatom,_Estack),_EENV),_E):_SYSFAIL(FAILED_TO_FAIL))
218 #define else_switch_failures else switch(_E)
219 #define else_catch(E) else if (_E==(E))
220 /* .----------------------------------------------------------------------.
221 / 10. implementation of C<<1 library functions, updated 2008-01-26 xCh.
222 '----------------------------------------------------------------------- */
223 /* later... #define _MALLOC void *_cll1_malloc(size_t size) { return malloc(size); } */
224 #define _CLL1_FPRINT(IOSTREAM) { int ofs=0; va_list ap; /* <-' */ for(va_start(ap,s);s!=NIL;s=va_arg(ap,char *)) { if(ofs)fputs(OFS,IOSTREAM);else ofs=1;/**/fputs(coalesce(s,NIL),IOSTREAM); } va_end(ap); fputs(EOL,IOSTREAM); }
225 #define _DECLARE_PRINT void _cll1_print(const char *s,...)
226 #define _PRINT _DECLARE_PRINT _CLL1_FPRINT(stdout)
227 #define _DECLARE_FPRINT void _cll1_fprint(FILE *f,const char *s,...)
228 #define _FPRINT _DECLARE_FPRINT _CLL1_FPRINT(f)
229 #define _CLL1_FECHO(IOSTREAM) { va_list ap; /* <-' */ for(va_start(ap,s);s!=NIL;s=va_arg(ap,char *)) fputs(coalesce(s,NIL),IOSTREAM); va_end(ap); }
230 #define _ECHO void _cll1_echo(char *s,...) _CLL1_FECHO(stdout)
231 #define _FECHO void _cll1_fecho(FILE *f,char *s,...) _CLL1_FECHO(f)
232 #define _FOR_INTS int _cll1_for_ints(int i, int n, ...) { int j=0;va_list ap; /* <-' */ va_start(ap,n); while(n!=WEIRDINT && j++<i) n=va_arg(ap,int); return n; }
233 #define _FOR_PTRS void *_cll1_for_ptrs(int i, void *v, ...) { int j=0;va_list ap; /* <-' */ va_start(ap,v); while(v!=(void *)NIL && j++<i) v=va_arg(ap,void *); return v; }
234 #define _DECLARE_STRCOLL int _cll1_str_coll(str a, str b)
235 #define _STRCOLL _DECLARE_STRCOLL { if(a && b) return strcoll(a,b); else return (int)(a-b); }
236 #define _DECLARE_STRCMP int _cll1_str_cmp(str a, str b)
237 #define _STRCMP _DECLARE_STRCMP { if(a && b) return strcmp(a,b); else return (int)(a-b); }
238 #define _DECLARE_STRCMPI int _cll1_str_cmpi(str a, str b)
239 #define _STRCMPI _DECLARE_STRCMPI { if(a && b) return strcasecmp(a,b); else return (int)(a-b); }
240 #define _DECLARE_STRSTR str _cll1_str_str(str h, str n)
241 #define _STRSTR _DECLARE_STRSTR { if(h && n) return strstr(h,n); else return NULL; }
242 // later... #define _WORDINSTR char *_cll1_wordinstr(char *a,char *b,int ign) { char *IFS=a; for(;a&&*a;a++) for(;*ifs||ifs=IFS;ifs++) if(*a=b);) for return strcasestr(a,b); else return NULL; }
243 extern _DECLARE_PRINT;
244 extern _DECLARE_FPRINT;
245 extern _DECLARE_STRCOLL;
246 extern _DECLARE_STRCMP;
247 extern _DECLARE_STRCMPI;
248 extern _DECLARE_STRSTR;
249 #define _EXPORT_OUTS _PRINT _FPRINT _ECHO _FECHO
250 #define _EXPORT_STRS _STRCOLL _STRCMP _STRCMPI _STRSTR //_WORDINSTR
251 #define _EXPORT_ARGS _FOR_INTS _FOR_PTRS
252 /* .----------------------------------------------------------------------.
253 / 10. C<<1 private infrastructure, updated 2008-02-03 by xCh.
254 '----------------------------------------------------------------------- */
255 #define _I (_Iatom->I)
256 #define _J (_Iatom->J)
257 #define _S (_Satom->S)
258 #define _F (_Fatom->F)
259 #define _CTX (_CTXatom->CTX)
260 #define _E (_Eatom->E)
261 #define _EENV (_Eatom->ENV)
262 #define _ARG1(ARG1,...) ARG1
263 //#define _ASSERT(EXPR) (expr?expr:fail(CONSISTENCY_FAILURE))
264 #define _SYSFAIL(E) longjmp(_EENV,(E))
265 #define _GET_MEM(TYPE) ((TYPE)malloc(sizeof(struct _##TYPE##_struct))) /* later... ((TYPE)_cll1_malloc(sizeof(struct _##TYPE##_struct))) */
266 #define _ANYATOM(NAME,DECL) def_mem(_##NAME##Atom ) { DECL; int c; list( _##NAME##Atom ); }
267 //#define _FOR_COLUMNS(A,B,C) _NEW(I,0) for( prefix(A,B,C) ; A ; ((A!=B)&&prefix(A,B,C)||(A=NULL) ),_I++ )
268 //#define _FOR_VALID_COLUMNS(A,B,C) _NEW(I,0) for( prefix(A,B,C) ; A ; ((A!=B)&&prefix(A,B,C))||(A=NULL) ) if(*A&&++_I)
269 #define _NEW(NAME,VALUE) for(_##NAME##atom=get_mem(_##NAME##Atom),_##NAME##atom->NAME=(VALUE),_##NAME##atom->c=1,push(_##NAME##atom,_##NAME##stack);_##NAME##atom->c||(pop(_##NAME##atom,_##NAME##stack),0);_##NAME##atom->c--)
270 #define _ANYSTACK(NAME) extern _##NAME##Atom _##NAME##atom, _##NAME##stack; _##NAME##Atom _##NAME##atom,_##NAME##stack=NULL;
271 #define _EXPORT_STACKS _ANYSTACK(I) _ANYSTACK(S) _ANYSTACK(F) _ANYSTACK(CTX) _ANYSTACK(E)
272 _ANYATOM(I, int I;int J);
273 _ANYATOM(S, str S);
274 _ANYATOM(F, file F);
275 _ANYATOM(CTX, void *CTX);
276 _ANYATOM(E, int E;jmp_buf ENV);
277 /* .----------------------------------------------------------------------.
278 / 11. C<<1 memory contexts - alternative to garbage collection
279 '----------------------------------------------------------------------- */
280 typedef _CTXAtom * context;
281 #define create_context(ID) create_mem(ID,context)
282 /* .----------------------------------------------------------------------.
283 / 12. C<<1 CGI and FASTCGI handling, updated 2008-01-16 by xCh.
284 '----------------------------------------------------------------------- */
285 #ifdef USE_LIBRARY_FASTCGI
286 #define while_fastcgi_accept while(FCGI_Accept()>=0)
287 #define USE_MODULE_CGI
288 #endif
289 #ifdef USE_MODULE_CGI
290 #define cgi(MIME) { char *PTR; /* <-' */ recycle_context(_CGI); _CGIdict=NULL; for_split_str(PTR,getenv("QUERY_STRING"),'&') /* _init_cgi */ if(MIME) printf("Content-type: %s\r\n\r\n",MIME); }
291 #define _GETCGI char *getcgi(VAR) { }
292 #define _CGI_GLOBALS def_context(_CGI); struct _CGIVariable { char *V; dict(_CGIVariable); } *_CGIvariable,*_CGIdict;
293 #else
294 #define _GETCGI
295 #define _CGI_GLOBALS
296 #endif
297 /* .----------------------------------------------------------------------.
298 / 13. MySQL wrappers + SQL object interface, updated 2007-12-19 by xCh.
299 '----------------------------------------------------------------------- */
300 #ifdef USE_LIBRARY_MYSQL
301 #define def_sql(CONN) MYSQL *CONN
302 #define create_sql(CONN) MYSQL *ID=mysql_init(NULL)
303 #define sql_connect(CONN,S,U,P,D) mysql_real_connect(CONN,S,U,P,D,0,NULL,0)
304 //todo sql_query
305 //todo sql_queryf
306 //todo for_sql_query_results(ROW,CONN,QUERY)
307 //todo for_sql_queryf_results
308 #define if_db_connect(U,P,D) _NEW(SQLC,mysql_init(NULL)) for(;_SQLC && mysql_real_connect(_SQLC,"localhost",U,P,D,0,NULL,0);mysql_close(SQLC),SQLC=NULL)
309 #define for_db_query_results(ROW,QUERY) _NEW(MYSQLR,mysql_query(_MYSQLC,QUERY)) for( (_SQLR=(_MYSQLR?0:mysql_use_result(_MYSQLC))),(ROW=(_MYSQLR?mysql_fetch_row(_MYSQLR):NULL)) ; ROW ; ROW=mysql_fetch_row(_MYSQLR) )
310 //todo db_query
311 //todo for_db_results
312 //todo for_db_queryf_results(ROW,...)
313 //todo db_queryf
314 #define _MYSQLC (_MYSQLCatom->MYSQLC)
315 #define _MYSQLR (_MYSQLRatom->MYSQLR)
316 #define _SQL_GLOBALS _ANYSTACK(MYSQL,MYSQLC) _ANYSTACK(MYSQL_RES,MYSQLR)
317 #else
318 #define _SQL_GLOBALS
319 #endif
320 //#ifdef USE_INTERFACE_SQL
321 //todo #define _SQL_OBJECT mem Sql { interface(SqlInterface); char *hostname; char *username; char *password; char *database; }
322 //todo #define _SQL_CONSTRUCT def_construct(Sql) { self->hostname="localhost"; }
323 //#endif
324
325 /* ------------------------------------------------------------------- */
326 /* old - from version 0.6 */
327 /* =================================================================== */
328 /*
329 obsolete
330 #define strlwr(A) {char *_S=A; while(_&&*_S){*_S=tolower(*_S);_S++;}}
331 #define strupr(A) {char *_S=A; while(_&&*_S){*_S=toupper(*_S);_S++;}}
332 #define string(S,L) (S=(char *)malloc(L),*S=0)
333 #define duplicate(A,B) if(A) { string(B,strlen(A)+1); strcpy(B,A); }
334 #define concatenate(A,B,C) if (A && B) { string(C,strlen(A)+strlen(B)+1); strcpy(C,A); strcat(C,B); }
335 #define gotoalpha(CHAR) if(CHAR)while(*CHAR && !isalpha(*CHAR))CHAR++
336 #define goto_alpha(CHAR) if(CHAR)while(*CHAR && !isalpha(*CHAR) && *CHAR!='_')CHAR++
337 #define gotoalnum(CHAR) if(CHAR)while(*CHAR && !isalnum(*CHAR))CHAR++
338 #define goto_alnum(CHAR) if(CHAR)while(*CHAR && !isalnum(*CHAR) && *CHAR!='_')CHAR++
339 #define skipalpha(CHAR) if(CHAR)while(*CHAR && isalpha(*CHAR))CHAR++
340 #define skip_alpha(CHAR) if(CHAR)while(*CHAR && (isalpha(*CHAR) || *CHAR=='_'))CHAR++
341 #define skipalnum(CHAR) if(CHAR)while(*CHAR && isalnum(*CHAR))CHAR++
342 #define skip_alnum(CHAR) if(CHAR)while(*CHAR && (isalnum(*CHAR) || *CHAR=='_'))CHAR++
343 #define skipspaces(CHAR) if(CHAR)while(*CHAR==' ')CHAR++
344 #define cutspaces(CHAR) if(CHAR){int _L=strlen(CHAR); while(--_L>0 && CHAR[_L]==' ')CHAR[_L]=0;}
345 #define gotochr(CHAR,C) if(CHAR)while(*CHAR && *CHAR!=C)CHAR++
346 #define strswitch(CHAR) {char *_K=CHAR; FILE *_F=NULL; {{
347 #define stroption(STR) if(eq(STR,_K))
348 #define match(KEY,VAL) {char *_K=KEY, *_V=VAL; FILE *_F=NULL; {{
349 #define assign(STR,SETVAR) stroption(STR) SETVAR=_V
350 */
351 /* I/O iterations, updated 2004-04-19 by xCh. */
352
353 //#define fparse(S,L,F) for(fgets(S,L,F);*S && !feof(F);fgets(S,L,F))
354 //#define input(S,L) fparse(S,L,stdin)
355 //#define fstring(S,F) { int _C=0,_L=0; fpos_t _P; fgetpos(F,&_P); while(_C!='\n' && !feof(F)){ _C=fgetc(F); _L++; } string(S,_L); fsetpos(F,&_P);fgets(S,_L,F);fgetc(F);}
356 //#define parses(S,F) {FILE *_F=fopen(F,"r"); if(_F) { while(!feof(_F)) { fstring(S,_F);
357 //obsolete
358 //#define parse(F) {char *_; FILE *_F=fopen(F,"r"); if(_F) { while(!feof(_F)) { fstring(_,_F);
359 //#define fail }} else {{
360 //#define done }} if(_F)fclose(_F);}
361 //to do #define option(STR,SETVAR) if(_){char *_K,*_V,*_O,*_Q; duplicate(_,_Q); _O=_Q; tr(_O,'\t',' '); prefix(_K,_O,' '); if(eq(STR,_K)) {skipspaces(_O); prefix(_V,_O,'#'); cutspaces(_V); SETVAR=_V; _=NULL;} else free(_Q);}
362 //to do #define ioption(STR,SETVAR) if(_){char *_K,*_V,*_O,*_Q; duplicate(_,_Q); _O=_Q; tr(_O,'\t',' '); prefix(_K,_O,' '); if(eq(STR,_K)) {skipspaces(_O); prefix(_V,_O,'#'); cutspaces(_V); SETVAR=atoi(_V); _=NULL;} free(_Q);}
363 //to do #define loption(STR,SETVAR) if(_){char *_K,*_V,*_O,*_Q; duplicate(_,_Q); _O=_Q; tr(_O,'\t',' '); prefix(_K,_O,' '); if(eq(STR,_K)) {skipspaces(_O); prefix(_V,_O,'#'); cutspaces(_V); SETVAR=atol(_V); _=NULL;} free(_Q);}
364
365 /* I/O sequences, updated 2003-05-29 by xCh. */
366
367 #define nullreopen(F) F=freopen("/dev/null","r",F)
368 #define stdinredir(CMD) {int _r[2];pipe(_r);if(fork()==0){dup2(_r[1],1);close(_r[0]);CMD;exit(0);}nullreopen(stdin);dup2(_r[0],0);close(_r[1]);}
369 #define shell(CMD) stdinredir(system(CMD))
370 #define paste(STR) stdinredir(fputs(STR,stdout))
371
372 /* Useful structures, updated 2003-05-29 by xCh. */
373
374 //#define date(S) { time_t _T; _T=time(NULL); duplicate(ctime(&_T),S); }
375
376 /* some general ideas, unfinished */
377 //bind_exception, unbind_exception
378 //#define _CLL1_THROW(ERR)
379 //#define _CLL1_TRY _NEW_E for(bind_exception(0,NULL);;) if () {.... if(_Eatom->SYS) { if(_Eatom->RET) return; else break;} else { }
380
381 /* .----------------------------------------------------------------------.
382 / 98. We have have done our homework - now let's have some fun:
383 '----------------------------------------------------------------------- */
384 #define _INIT_VARIABLES _EXPORT_GLOBALS _EXPORT_YES _EXPORT_STACKS _SQL_GLOBALS _CGI_GLOBALS
385 #define _IMPL_FUNCTIONS /*_MALLOC*/ _EXPORT_OUTS _EXPORT_ARGS _EXPORT_STRS
386 #define _IMPL_INTERFACE //_SQL_IFC _CAKE_IFC _STD_IFC _X_IFC
387 #define _IMPLEMENT_CLL1_LIBRARY _INIT_VARIABLES _IMPL_FUNCTIONS _IMPL_INTERFACE
388 //this will be probably accomplished some other way...
389 #ifndef DISABLE_LIBRARY_CLL1
390 _IMPLEMENT_CLL1_LIBRARY
391 #endif
392 #ifdef USE_LC_NUMERIC
393 #define _LC_ALL LC_ALL
394 #else
395 //#define _LC_ALL LC_COLLATE|LC_CTYPE|LC_MESSAGES|LC_MONETARY|LC_TIME
396 #define _LC_ALL LC_TIME
397 #endif
398 #define _DECLARE_PROGRAM void _PROGRAM(int argc, char **argv)
399 #define _PROGRAM _cll1_program
400 #define program \
401 _DECLARE_PROGRAM; \
402 int main(int argc, char **argv) \
403 { \
404 LANG=setlocale(_LC_ALL, ""); \
405 try \
406 { \
407 _PROGRAM(argc,argv); \
408 return 0; \
409 } \
410 else_switch_failures \
411 { \
412 case SYSTEM_FAILURE: \
413 perror(errstr); /* and return -1 */ \
414 default: \
415 return -1; \
416 } \
417 } \
418 _DECLARE_PROGRAM
419 #ifdef USE_PREPROCESSOR
420 #include "_include.c"
421 #endif
422 /* .----------------------------------------------------------------------.
423 / 99. C<<1 is up and running. It's your turn now to show something new.
424 '----------------------------------------------------------------------- */
425 #endif
This page took 0.876986 seconds and 5 git commands to generate.