C<<1 va_list based print and echo commands finaly work
authorxchaos <xchaos@4bb87942-c103-4e5a-b51c-0ebff58f8515>
Tue, 22 Jan 2008 02:37:07 +0000 (02:37 +0000)
committerxchaos <xchaos@4bb87942-c103-4e5a-b51c-0ebff58f8515>
Tue, 22 Jan 2008 02:37:07 +0000 (02:37 +0000)
git-svn-id: https://dev.arachne.cz/repos/cll1h/trunk@20 4bb87942-c103-4e5a-b51c-0ebff58f8515

16 files changed:
cll1.h
demos/arguments1.c
demos/arguments2.c
demos/boolean.c
demos/for_range.c
demos/hello.c
demos/just-c99/print.c [new file with mode: 0644]
demos/performance/cll1-print.c [new file with mode: 0644]
demos/performance/cll1.h [new symlink]
demos/performance/fputs.c [new file with mode: 0644]
demos/performance/print.pl [new file with mode: 0755]
demos/performance/print.py [new file with mode: 0755]
demos/performance/printf.c [new file with mode: 0644]
demos/performance/puts.c [new file with mode: 0644]
demos/performance/test-performance [new file with mode: 0755]
demos/repeat.c

diff --git a/cll1.h b/cll1.h
index 8cd24a46ffd132695bb9a640f730ab4d97d07f26..5305e3c125674c0085f2ec45b6235f1c7fc4ad07 100644 (file)
--- a/cll1.h
+++ b/cll1.h
@@ -27,6 +27,7 @@
 #include <malloc.h>
 #include <time.h>
 #include <stdlib.h>
+#include <stdarg.h>
 #include <unistd.h>
 #ifdef USE_LIBRARY_MYSQL
 #include <mysql/mysql.h>
@@ -59,7 +60,7 @@
 #define Define_mem(ID,TYPE) struct TYPE *ID=NULL
 #define Define_mems(ID1,I2,TYPE) Define_mem(ID1,TYPE);Define_mem(ID2,TYPE)
 
-/* .... well.. ehm..  not very useful... :-) */
+/* .... well....ehm...not very useful... :-) */
 #define Create_var(ID,TYPE,INIT) TYPE ID=INIT
 #define Define_var(ID,TYPE) TYPE ID
 /* ------------------------------------------------------------------- */
 /* ------------------------------------------------------------------- */
 /* 5. C<<1 argument handling, updated 2008-01-16 by xCh.               */
 /* ------------------------------------------------------------------- */
-#define for_args _NEW_I if(argc>1) for(_I=1;_I<argc;_I++) 
+#define for_args _NEW_I for(_I=1;_I<argc;_I++)
+#define if_args if(argc>1)
 #define if_arg(VAL) if(eq(argv[_I],VAL))
 #define this_arg argv[_I]
-#define next_arg ((_I+1<argc)?argv[++_I]:NULL)
+#define next_arg ((_I+1<argc)?argv[_I]:NULL)
 /* ------------------------------------------------------------------- */
-/* 6. C<<1 CGI and FASTCGI handling, updated 2008-01-16 by xCh.        */
+/* 6. C<<1 va_list based library functions, updated 2008-01-22 by xCh. */
+/* ------------------------------------------------------------------- */
+#define _ECHO void _echo(char *s, ... ) { va_list ap; for(va_start(ap,s);s;s=va_arg(ap,char *)) fputs(s,stdout); va_end(ap); }
+#define print(...) _echo(__VA_ARGS__,"\n",NULL)
+#define echo(...) _echo(__VA_ARGS__,NULL)
+/* ------------------------------------------------------------------- */
+/* 8. C<<1 CGI and FASTCGI handling, updated 2008-01-16 by xCh.        */
 /* ------------------------------------------------------------------- */
 #ifdef USE_LIBRARY_FASTCGI
 #define while_fastcgi_accept while(FCGI_Accept()>=0)
 //todo #define _QSTACK struct _QStack { char *Q; int _23; list(_QStack); } *_Qatom,*_Qstack=NULL;
 #endif
 /* ------------------------------------------------------------------- */
-/* 7. MySQL infrastructure and wrappers  -  updated 2007-12-19 by xCh. */
+/* 9. MySQL infrastructure and wrappers  -  updated 2007-12-19 by xCh. */
 /* ------------------------------------------------------------------- */
 #ifdef USE_LIBRARY_MYSQL
 #define mysql_connect(S,U,P,D) (create(_Matom,_MStack) && push(_Matom,_Mstack) && (_Matom->M=mysql_init(NULL)),(_Matom->M && mysql_real_connect(_Matom->M,S,U,P,D,0,NULL,0)?_Matom->M:NULL))
 /* ------------------------------------------------------------------- */
 #define insert(A,B,EXP,K) { if(B) { void **_L=NULL, *H=B; for_search(B,H,EXP(B->K,A->K)) { if(_L) {*_L=A; A->_next=B; } else push(A,H); break; } else _L=(void *)&(B->_next); if(!B)*_L=A; B=H; } else push(A,B); }
 #define sort(A,B,EXP,K) { void *_C; A=B; B=NULL; do { _C=A->_next; A->_next=NULL; insert(A,B,EXP,K); A=_C; } while(_C); }
-/* String macros & sequences, updated 2004-04-19 by xCh. */
-
-#define eq(A,B) !strcmp(A,B)
+/* ------------------------------------------------------------------- */
+/* String macros & sequences, updated 2008-01-22               by xCh. */
+/* ------------------------------------------------------------------- */
+#define eq(A,B) (A && B && !strcmp(A,B))
+#define eqi(A,B) (A && B && !strcasecmp(A,B))
+/* Borland C legacy */
 #define strcmpi(A,B) strcasecmp(A,B)
+/* ------------------------------------------------------------------- */
 /*
 obsolete
 #define strlwr(A) {char *_S=A; while(_&&*_S){*_S=tolower(*_S);_S++;}}
@@ -173,20 +185,19 @@ obsolete
 /* Infrastructure, updated 2008-01-08 by xCh.                          */
 /* ------------------------------------------------------------------- */
 /* old #define program int _I; int main(int argc, char **argv) */
-#define _ISTACK struct _IStack { int I; int _23; list(_IStack); } *_Iatom,*_Istack=NULL
-#define _SSTACK struct _SStack { char *S; int _23; list(_SSTACK); } *_Satom,*_Sstack=NULL
-#define _FSTACK struct _FStack { FILE *F; int _23; list(_FSTACK); } *_Fatom,*_Fstack=NULL
+#define _ISTACK struct _IStack { int I; int _23; list(_IStack); } *_Iatom,*_Istack=NULL;
+#define _SSTACK struct _SStack { char *S; int _23; list(_SSTACK); } *_Satom,*_Sstack=NULL;
+#define _FSTACK struct _FStack { FILE *F; int _23; list(_FSTACK); } *_Fatom,*_Fstack=NULL;
 
-#define define_ccl1_globals _ISTACK; _SSTACK; _FSTACK; _MSTACK; _RSTACK; _QSTACK
-#define program define_cll1_globals; int main(int argc, char **argv)
 
 #define _NEW_(ATOM,STACK,TYPE) (create(ATOM,TYPE),ATOM->_23=1,push(ATOM,STACK);ATOM->_23||pop(ATOM,STACK)&&0;ATOM->_23--)
 #define _NEW_I for _NEW_(_Iatom,_Istack,_IStack)
 //#define _NEW_I for(create(_Iatom,_IStack),_Iatom->_23=1,push(_Iatom,_Istack);_Iatom->_23||pop(_Iatom,_Istack)&&0;_Iatom->_23--)
 #define _NEW_S for(create(_Satom,_SStack),_Satom->_23=1,push(_Satom,_Sstack);_Satom->_23||pop(_Satom,_Sstack)&&0;_Satom->_23--)
-#define _I _Iatom->I
-#define _S _Satom->I
-#define _F _Satom->F
+#define _I (_Iatom->I)
+#define _S (_Satom->I)
+#define _F (_Satom->F)
+#define skip_one _I++
 
 /* I/O iterations, updated 2004-04-19 by xCh. */
 
@@ -238,10 +249,20 @@ obsolete
 #define get_interface(IFACE) __get_##_##IFACE(void)
 // must be function #define get_object(TYPE) (_CLL1_MALLOC(TYPE),CLL1_ASSERT(),)
 //#define _(OBJECT,FUNCTION) OBJECT==NULL?NULL::(*(OBJECT->__class->METHOD))(OBJECT
-#endif
+
 /* ------------------------------------------------------------------- */
 /* some general ideas, unfinished */
 //#define _CLL1_THROW(ERR)
 //#define _CLL1_TRY _NEW_E for(;;) if () {.... if(_Eatom->SYS) { if(_Eatom->RET) return; else break;} else { }
-//#define _CLL1_ASSERT(EXPR) assert(EXPR)
+//#define _ASSERT(EXPR) assert(EXPR)
 //#define _CLL1_MALLOC(TYPE) malloc(sizeof(TYPE))
+
+/* ------------------------------------------------------------------- */
+/* Voila - here we go !                                                */
+/* ------------------------------------------------------------------- */
+#define define_cll1_globals _ISTACK _SSTACK _FSTACK _MSTACK _RSTACK //_QSTACK
+#define implement_cll1_functions _ECHO /* _GET_STR _GET_MEM */
+#define implement_cll1_library define_cll1_globals implement_cll1_functions
+#define program implement_cll1_library int main(int argc, char **argv)
+/* ------------------------------------------------------------------- */
+#endif
index 6cd7bedb9c33136d31fe78218f05b2d76b9c5115..a892c3a24eddfadb7269c44550f448315c814ba0 100644 (file)
@@ -1,24 +1,30 @@
 #include "cll1.h"
 
-//try$ make arguments1
-//try$ ./arguments1 -x xxx yyyy -c cccc
+//try to run: ./arguments1 -x xxx yyyy -c cccc
 
 program
 {
char *ptr;
Define_str(ptr);
  
- arguments
+ if_args then
  {
-  thisargument(ptr);
-  if(*ptr=='-') then
+  for_args
   {
-   printf("Command line switch: -%c ",ptr[1]);
-   nextargument(ptr);   
-   printf("followed by: %s\n",ptr);
+   ptr=this_arg;
+   if (ptr[0]=='-') then
+   {
+    printf("Command line switch: -%c ",ptr[1]);
+    if (next_arg) then
+    {
+     echo("followed by: ",next_arg);
+     skip_one;
+    }
+    print("");
+   }
+   else
+    print("Standalone argument: ",ptr); 
   }
-  else
-   printf("Simple argument: %s \n",ptr); 
  }
  else
-  puts("Bleeeeh, no arguments supplied... :-(");
+  print("Bleeeeh, no arguments supplied... :-(");
 }
index 3982e16fe7ba7879c478d50d6babb0e2effb4d5a..63276cf49b97efa2a6b73aa2918716feba484376 100644 (file)
@@ -1,18 +1,27 @@
 #include "cll1.h"
 
-//try$ make arguments2
-//try$ ./arguments2 -f xxx yyyy -?
+//try to run: ./arguments2 -f reload yyyy -?
 
 program
 {
- char *ptr;
- arguments
+ if_args then
  {
-  argument("-?") printf("This is just help!\n");
-  else argument("-f") { nextargument(ptr) printf("Forced argument: %s\n",ptr); }
-  else { thisargument(ptr); printf("Simple argument: %s \n",ptr); }
+  for_args
+  {
+   if_arg ("-?") then
+    print("This is just help!");
+   else if_arg ("-f") then
+   {
+    if (next_arg) then
+    {
+     print("Forced argument: ",next_arg);
+     skip_one;
+    }
+   }
+   else 
+    print("Normal argument: ",this_arg);
+  }
  }
  else
-  puts("Bleeeeh, no arguments supplied... :-(");
+  print("Bleeeeh, no arguments supplied... :-(");
 }
index 838e31c44789501a0058e74167b13f1913c72e57..1b5f1e2293e946a8018ab8146ff0b124a630a767 100644 (file)
@@ -3,9 +3,9 @@
 program
 {
  boolean t=TRUE,f=FALSE;
- printf("TRUE and FALSE = %s", bool_str(t and f) );
- printf(",TRUE or FALSE = %s", bool_str(t or f) );
- printf(",not FALSE = %s", bool_str(not f) );
- printf(",not TRUE = %s\n", bool_str(not t) );
+
+ print("TRUE and FALSE = ", bool_str(t and f) );
+ print("TRUE or FALSE = ", bool_str(t or f) );
+ print("not FALSE = ", bool_str(not f) );
+ print("not TRUE = ", bool_str(not t) );
 }
index 6aedae7b7e32d7d40a698a59c6c76d622faf72af..44a7b5be881d67ec3a7096e993b40dd8cd55412e 100644 (file)
@@ -4,20 +4,23 @@ program
 {
  int i;
 
printf("for_range(i,0,1)");
echo("for_range(i,0,1)");
  for_range(i,0,1) printf(" [%d]",i);
+ print("");
 
printf("\nfor_range(i,1,0)");
echo("for_range(i,1,0)");
  for_range(i,1,0) printf(" [%d]",i);
+ print("");
 
printf("\nfor_range(i,1,1)");
echo("for_range(i,1,1)");
  for_range(i,1,1) printf(" [%d]",i);
+ print("");
 
printf("\nfor_range(i,1,5)");
echo("for_range(i,1,5)");
  for_range(i,1,5) printf(" [%d]",i);
+ print("");
 
printf("\nfor_range(i,5,1)");
echo("for_range(i,5,1)");
  for_range(i,5,1) printf(" [%d]",i);
-
- printf("\n");
+ print("");
 }
index 50a595dac48124420c16cf9eb45db2dbd2c11da3..b59bc77fa347e398e0cfcfc5e616c3616bcfa750 100644 (file)
@@ -2,5 +2,6 @@
 
 program
 {
- print("Hello ","world"," !\n");
+ echo("Hello ","world","! ");
+ print("Hello ","world","!");
 }
diff --git a/demos/just-c99/print.c b/demos/just-c99/print.c
new file mode 100644 (file)
index 0000000..7abbb16
--- /dev/null
@@ -0,0 +1,12 @@
+#include <stdarg.h>
+#include <stdio.h>
+
+void _echo(char *s, ... ) { va_list ap; for(va_start(ap,s);s;s=va_arg(ap,char *)) fputs(s,stdout); va_end(ap); }
+#define print(...) _echo(__VA_ARGS__,"\n",NULL)
+#define echo(...) _echo(__VA_ARGS__,NULL)
+
+int main(void)
+{
+ echo("Hello ","world","! ");
+ print("Hello ","world","! ");
+}
diff --git a/demos/performance/cll1-print.c b/demos/performance/cll1-print.c
new file mode 100644 (file)
index 0000000..eb20e07
--- /dev/null
@@ -0,0 +1,12 @@
+#include "cll1.h"
+
+#define RUNS 10000000UL
+program
+{
+ unsigned long i;
+ for_range(i,0,RUNS)
+ {
+  print("stuff");
+ }
+ return 0;
+}
diff --git a/demos/performance/cll1.h b/demos/performance/cll1.h
new file mode 120000 (symlink)
index 0000000..58b5d6f
--- /dev/null
@@ -0,0 +1 @@
+../../cll1.h
\ No newline at end of file
diff --git a/demos/performance/fputs.c b/demos/performance/fputs.c
new file mode 100644 (file)
index 0000000..6c84320
--- /dev/null
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+#define RUNS 10000000UL
+int main (void)
+{
+unsigned long i;
+for (i=0;i<RUNS;i++) {
+fputs("stuff\n",stdout);
+}
+return 0;
+}
diff --git a/demos/performance/print.pl b/demos/performance/print.pl
new file mode 100755 (executable)
index 0000000..0cbdef1
--- /dev/null
@@ -0,0 +1,8 @@
+#!/usr/bin/perl
+
+my $i=0;
+for ($i=0;$i<10000000;$i++)
+{
+ print ("stuff");
+}
+
diff --git a/demos/performance/print.py b/demos/performance/print.py
new file mode 100755 (executable)
index 0000000..c83a0e9
--- /dev/null
@@ -0,0 +1,5 @@
+#!/usr/bin/python
+
+for i in range(1,10000000):
+ print "stuff"
+
diff --git a/demos/performance/printf.c b/demos/performance/printf.c
new file mode 100644 (file)
index 0000000..81844fc
--- /dev/null
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+#define RUNS 10000000UL
+int main (void)
+{
+unsigned long i;
+for (i=0;i<RUNS;i++) {
+printf("stuff\n");
+}
+return 0;
+}
diff --git a/demos/performance/puts.c b/demos/performance/puts.c
new file mode 100644 (file)
index 0000000..77eac34
--- /dev/null
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+#define RUNS 10000000UL
+int main (void)
+{
+unsigned long i;
+for (i=0;i<RUNS;i++) {
+puts("stuff"); 
+}
+return 0;
+}
diff --git a/demos/performance/test-performance b/demos/performance/test-performance
new file mode 100755 (executable)
index 0000000..c752da4
--- /dev/null
@@ -0,0 +1,24 @@
+#!/bin/sh
+make cll1-print
+make printf
+make puts
+make fputs
+clear
+cat print.py
+echo "Running..."
+time ./print.py &> /dev/null
+cat print.pl
+echo "Running..."
+time ./print.pl &> /dev/null
+cat cll1-print.c
+echo "Running..."
+time ./cll1-print &> /dev/null
+cat printf.c
+echo "Running..."
+time ./printf &> /dev/null
+cat puts.c
+echo "Running..."
+time ./puts &> /dev/null
+cat fputs.c
+echo "Running..."
+time ./fputs &> /dev/null
index 7e8622e467de9fec17293d463b0d7c8fa2b321d2..70a5abec589542579a09ed499b210ff15ea3e6a8 100644 (file)
@@ -4,7 +4,7 @@ program
 {
  repeat(2)
  {
-  printf("Tohle cele delam 2x:\n");
-  repeat(3) printf("Tohle delam 3x...\n");
+  print("Tohle cele delam 2x:");
+  repeat(3) print("Tohle delam 3x...");
  }
 }
This page took 0.326408 seconds and 4 git commands to generate.