File:  [ELWIX - Embedded LightWeight unIX -] / libaitio / example / test_sess.c
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Tue Mar 19 17:31:38 2013 UTC (11 years, 3 months ago) by misho
Branches: MAIN
CVS tags: io7_4, io7_3, io7_2, io7_1, io7_0, io6_9, io6_8, io6_7, io6_6, io6_5, io6_4, io6_3, io6_2, io6_1, io6_0, io5_9, io5_8, io5_7, io5_6, io5_5, io5_4, io5_3, io5_2, IO7_3, IO7_2, IO7_1, IO7_0, IO6_9, IO6_8, IO6_7, IO6_6, IO6_5, IO6_4, IO6_3, IO6_2, IO6_1, IO6_0, IO5_9, IO5_8, IO5_7, IO5_6, IO5_5, IO5_4, IO5_3, IO5_2, IO5_1, HEAD
version 5.1

    1: #include <stdio.h>
    2: #include <string.h>
    3: #include <elwix.h>
    4: #include <aitsess.h>
    5: 
    6: int main()
    7: {
    8: 	sess_t *n = NULL;
    9: 	int i = 255;
   10: 	char *dat, szVal[256];
   11: 	ait_val_t *v = NULL;
   12: 	
   13: 	/*
   14: 	map_createSession("/tmp/abra-kadabra-123", 1003, 4096, &n);
   15: 	if (sess_GetErrno()) {
   16: 		printf("Error:: #%d - %s\n", sess_GetErrno(), sess_GetError());
   17: 		return 2;
   18: 	}
   19: 	dat = map_attachSession(n, NULL);
   20: 	if (!dat)
   21: 		return 1;
   22: 	printf("brym n=%d dat=%p dat=%s\n", n, dat, dat);
   23: 	strcpy(dat, "nAuth=1:nStatus=0:szChanne=SIP/0765-4802:szSID=437d9371-3977e2de-099999:szUser=099999:szPass=123123:szCaller=123123123:szRadGro=ppcards:szPhone=0768:ExtCode=07:szDispl=Bulgaria:nMasterG=1:nPrice=82:nGPrice=82:nMPrice=82:nBillInc=2:nGBillIn=2:nMBillIn=2:nMCache=807901468:nCache=999338:nAccount=29297:nPricePa=1:nGPriceP=1:nMPriceP=1:WarnTime=0:GratisTi=0:ActTime=1132220092:");
   24: 	sess_SetValue(n, "nAuth", NULL);
   25: 	printf("begin>>> String=%s\n", dat);
   26: 	printf("find=%d\n", sess_GetValue(n, "000", NULL, NULL));
   27: 	if (sess_GetErrno()) {
   28: 		printf("Error:: #%d - %s\n", sess_GetErrno(), sess_GetError());
   29: 		return 2;
   30: 	}
   31: 	sess_DelValue(n, "000");
   32: 	printf("CLOSE %p>>> String=%s\n", n->addr, n->addr);
   33: 	strcat(dat, "Blaaaaaaaaaaaaaaaaaa da mu eb* mamataaaaa .....\n");
   34: 	map_detachSession(n);
   35: 	getchar();
   36: 	freeSession(NULL, &n);
   37: 	*/
   38: 
   39: 	sess_initSession(SHARED_MAP, "/tmp/abra-kadabra-123", &n);
   40: 	ALLOC_MEMORY(1003, 4096, n);
   41: 	if (io_GetErrno()) {
   42: 		printf("Error:: #%d - %s\n", io_GetErrno(), io_GetError());
   43: 		return 2;
   44: 	}
   45: 	ATTACH_MEMORY(n);
   46: //	sess_SetValue(n, "piuk_gniah++", "mryyynnnnn");
   47: 	printf(">>> String=%s\n", n->sess_addr);
   48: 	getchar();
   49: 	printf("12345678 Define? %d\n", SESS_RET_DEF(sess_GetValue(n, "12345678", &v)));
   50: 	ait_freeVar(&v);
   51: 	printf("111 Define? %d\n", SESS_RET_DEF(sess_SetValue(n, "111", "321")));
   52: 	printf("88 Define? %d\n", SESS_RET_DEF(sess_GetValue(n, "88", &v)));
   53: 	ait_freeVar(&v);
   54: 	printf("222 find=%d\n", SESS_RET_DEF(sess_SetValue(n, "222", NULL)));
   55: 	printf("12345678 find=%d\n", sess_GetValue(n, "12345678", &v));
   56: 	printf("12345678 value=%s\n", AIT_GET_STR(v));
   57: 	ait_freeVar(&v);
   58: 	printf("111 find=%d\n", sess_GetValue(n, "111", &v));
   59: 	printf("111 value=%s\n", AIT_GET_STR(v));
   60: 	ait_freeVar(&v);
   61: 	printf("222 find=%d\n", SESS_RET_DEF(sess_GetValue(n, "222", &v)));
   62: 	printf("222 value=%s\n", AIT_GET_STR(v));
   63: 	ait_freeVar(&v);
   64: 	printf("000 find=%d\n", sess_GetValue(n, "000", &v));
   65: 	printf("000 value=%s\n", AIT_GET_STR(v));
   66: 	ait_freeVar(&v);
   67: 	printf("00 find=%d\n", sess_GetValue(n, "00", &v));
   68: 	printf("00 value=%s\n", AIT_GET_STR(v));
   69: 	ait_freeVar(&v);
   70: 	printf("insert Result?%d\n", SESS_RET_NEW(sess_SetValue(n, "789", "Gniah40")));
   71: 	printf("00 find=%d\n", sess_GetValue(n, "00", &v));
   72: 	printf("00 value=%s\n", AIT_GET_STR(v));
   73: 	ait_freeVar(&v);
   74: 	printf(">>> String=%s\n", n->sess_addr);
   75: 	printf("update Result=%d\n", sess_SetValue(n, "789", NULL));
   76: //	printf(">>> String=%s\n", dat);
   77: //	sess_DelValue(n, "789");
   78: 	sess_DelValue(n, "GratisT");
   79: 	sess_DelValue(n, "szUser");
   80: 	getchar();
   81: 	printf("end %p>>> String=%s\n", n->sess_addr, n->sess_addr);
   82: 	DETACH_MEMORY(n);
   83: 	getchar();
   84: 	FREE_MEMORY(n);
   85: 	sess_freeSession(&n);
   86: 	return 0;
   87: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>