chuyiwen_gmsv/include/lssproto_util.h
chuyiwen bea5ac05b3 sq_gmsv_chuyiwen
sa_sever
2016-12-24 09:45:52 +09:00

111 lines
4.6 KiB
C

#ifndef _LSSPROTOUTIL_H_
#define _LSSPROTOUTIL_H_
#include <stdlib.h>
#include <string.h>
#ifndef WIN32
#include <strings.h>
#include <unistd.h>
#endif
//#define lssproto__ENCRYPT
#define lssproto__NODEBUG
struct lssproto_ {
int (*write_func)(int,char*,int) ; /* write function */
size_t workbufsize; /* size of work area */
char *work,*arraywork,*escapework,*val_str,*ret_work; /* work areas which have same size */
char *cryptwork,*jencodecopy,*jencodeout,*compresswork; /* these work has bigger size (3times)*/
char** token_list; /* token list */
unsigned long message_id; /*= 1, */ /* for generating message IDs */
};
#ifdef _LSSPROTOUTIL_C_
struct lssproto_ lssproto = {
NULL,
0,
NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,
NULL,
1,
};
char **lssproto_stringwrapper;
char lssproto_readlogfilename[1024];
char lssproto_writelogfilename[1024];
#else
extern char **lssproto_stringwrapper;
extern struct lssproto_ lssproto;
extern char lssproto_readlogfilename[1024];
extern char lssproto_writelogfilename[1024];
#endif
char* lssproto_escapeString( char*a );
char* lssproto_descapeString( char*a );
void lssproto_splitString( char *src );
void lssproto_strcpysafe( char *dest, char *src, int len );
void lssproto_strcatsafe( char *dest , char *src , int maxlen );
char*lssproto_mkstr_int( int i );
char*lssproto_mkstr_u_int( unsigned int i );
char*lssproto_mkstr_long( long l );
char*lssproto_mkstr_u_long( unsigned long l );
char*lssproto_mkstr_short( short s );
char*lssproto_mkstr_u_short( short s );
char*lssproto_mkstr_char( char c );
char*lssproto_mkstr_u_char( char c);
char*lssproto_mkstr_string( char*a );
char*lssproto_mkstr_float( float f );
char*lssproto_mkstr_double( double d );
char*lssproto_mkstr_int_array( int size , int *array );
char*lssproto_mkstr_u_int_array( int size , int *array );
char*lssproto_mkstr_short_array( int size , short *array );
char*lssproto_mkstr_u_short_array(int size , short *array );
char *lssproto_mkstr_char_array( int size , char *array );
char *lssproto_mkstr_u_char_array( int size , unsigned char *array );
char *lssproto_mkstr_float_array( int size , float *array );
char *lssproto_mkstr_double_array( int size , double *array );
int lssproto_demkstr_int( char*a );
unsigned int lssproto_demkstr_u_int( char*a );
long lssproto_demkstr_long( char*a );
unsigned long lssproto_demkstr_u_long(char*a );
short lssproto_demkstr_short( char*a );
unsigned short lssproto_demkstr_u_short( char*a );
char lssproto_demkstr_char( char*a );
unsigned char lssproto_demkstr_u_char( char*a );
float lssproto_demkstr_float( char*a );
double lssproto_demkstr_double(char*a );
char* lssproto_demkstr_string( char*a);
int *lssproto_demkstr_int_array( char**tk ,int *buf ,int start , int size );
int *lssproto_demkstr_u_int_array( char **tk , int *buf , int start , int size );
unsigned int *lssproto_demkstr_long_array(
char **tk , unsigned int *buf , int start , int size );
unsigned long *lssproto_demkstr_u_long_array(
char **tk , unsigned long *buf , int start , int size );
short *lssproto_demkstr_short_array( char **tk , short *buf , int start , int size );
unsigned short*lssproto_demkstr_u_short_array(
char **tk , unsigned short *buf , int start , int size );
char *lssproto_demkstr_char_array( char **tk , char *buf , int start , int size );
unsigned char *lssproto_demkstr_u_char_array(
char **tk , unsigned char*buf , int start , int size );
float *lssproto_demkstr_float_array( char **tk , float *buf , int start , int size );
double *lssproto_demkstr_u_double_array( char **tk , double *buf , int start , int size );
char *lssproto_wrapStringAddr( char *copy , int maxcopylen , char*src );
void lssproto_GetMessageInfo( int *id , char *funcname , int len,char **tk );
int lssproto_ClientRead(void);
void lssproto_consumeLine(char *buf , int ofs );
void lssproto_copyLine( char*src , char *out , int maxoutlen );
void lssproto_Send( int fd , char *msg );
int lssproto_AllocateCommonWork(int bufsiz);
unsigned int lssproto_GetNewMessageID(void);
void lssproto_CreateHeader(char*out, char *fname );
void lssproto_CreateHeaderID( char *out,unsigned long msgid , char *fname );
int lssproto_default_write_wrap( int fd , char *buf , int size );
void lssproto_bzero( char *b , int siz );
void lssproto_bcopy(char*s , char *d , int siz );
char *lssproto_Ltoa( long v );
char *lssproto_Ultoa( unsigned long v );
void lssproto_DebugSend( int fd , char *msg );
/* Modified by ringo to fasten int type transfer */
char *lssproto_cnv10to62( int a, char *out, int outlen );
int lssproto_a62toi( char *a );
extern int JENCODE_KEY;
#endif