ZE-Standard-Libraries/communicate/communicate.h

289 lines
8.3 KiB
C
Raw Normal View History

2018-07-30 09:45:33 +00:00
#ifndef communicate_h
#define communicate_h
2018-08-07 04:10:55 +00:00
#include "../type/type.h"
#include "../list/list_expand.h"
2018-07-30 09:45:33 +00:00
2018-08-07 04:10:55 +00:00
2018-08-23 07:24:59 +00:00
/************************************************
:
************************************************/
/*
*
*: route指示数据文件路径
*: ,NULL.
*/
extern D_FILE *initDataFileForWrite(char *route);
/*
*
*: route指示数据文件路径
*: ,NULL.
*/
extern D_FILE *initDataFileForRead(char *route);
/*
*
*: type指示数据块储存数据的数据类型,data_size指示数据块储存数据的大小
*: ,NULL.
*/
extern STD_BLOCKS *initStandardDBlocks(SID *p_sid, unsigned int type, unsigned long long data_size);
/*
*
*: f_sid指示第一个数据块的SID,s_sid指示第二个数据块的SID.
*: ,NULL.
*/
extern STD_CTN *initStandardDConnection(SID *f_sid, SID *s_sid);
/*
*
*: type指示标准数据结构所储存的数据结构的数据类型, s_id指示所储存的数据结构的ID,
s_id为NULL,ID.便,ID.
*: ,NULL.
*/
extern STD_DATA *initStandardData(unsigned int type, SID *s_id);
/************************************************
:
************************************************/
/*
*
*: data为指向所添加数据所在内存空间的指针
*: 0,-1.
*/
extern int dataForStandardDBlock(STD_BLOCKS *p_stdb,void *data);
/*
*
*: 0,-1.
*/
extern int dataFileAddStandardData(D_FILE *p_dfile, STD_DATA *p_std);
/*
*
*: type指示所添加数据的数据类型, data为指向所添加数据所在内存空间的指针, data_size指示所添加数据的大小
*: 0,-1.
*/
extern int standardDataAddBlock(STD_DATA *p_std, SID *p_sid ,unsigned int type, void *data, unsigned long long data_size);
/*
*
*: f_sid指示第一个数据块的SID,s_sid指示第二个数据块的SID.
*: 0,-1.
*/
extern int standardDataAddConnection(STD_DATA *p_std, SID *f_sid, SID *s_sid);
/************************************************
:
************************************************/
/*
*,.
*: 0,-1.
*/
extern int dataFileWriteIn(D_FILE *p_dfile);
/*
*
*/
2018-08-21 08:26:31 +00:00
__CALLBACK_STATE(StandardDataInfoWrite);
2018-08-23 07:24:59 +00:00
/*
*
*/
2018-08-21 08:26:31 +00:00
__CALLBACK_STATE(StandardDataWrite);
2018-08-23 07:24:59 +00:00
/*
*
*/
2018-08-21 08:26:31 +00:00
__CALLBACK_STATE(StandardDConnectionWrite);
2018-08-23 07:24:59 +00:00
/*
*
*/
2018-08-21 08:26:31 +00:00
__CALLBACK_STATE(StandardDBlockWrite);
2018-08-07 04:10:55 +00:00
2018-08-23 07:24:59 +00:00
/*
*,,.
*: 0,-1.
*/
extern int dataFileReadOut(D_FILE *p_dfile);
/*
*
*/
__CALLBACK_STATE(dataFileReadOut);
/************************************************
:
************************************************/
/*
*
*: 0,-1.
*/
extern int releaseSTDBlocks(STD_BLOCKS *p_stdb);
/*
*
*: 0,-1.
*/
extern int releaseStandardData(STD_DATA *p_std);
/*
*
*: 0,-1.
*/
extern int releaseSTDConnection(STD_CTN *p_stdc);
/*
*
*: 0,-1.
*/
extern int releaseDFile(D_FILE *p_file);
/*
*,.
*/
static unsigned long long calStandardData(STD_DATA *p_std);
/*
*
*/
__CALLBACK_STATE(calStandardDataCTN);
/*
*
*/
__CALLBACK_STATE(calStandardDataBLK);
/************************************************
:
************************************************/
/*
*
*: ,NULL.
*/
extern STD_DATA *listToSTD(List *);
/*
*
*: ,NULL.
*/
extern List *standardDataToList(STD_DATA *);
/*
*
*/
2018-08-21 08:26:31 +00:00
__CALLBACK_STATE(StandardDataToList);
2018-08-23 07:24:59 +00:00
//STD_DATA *stackToSTD(Stack *);
//STD_DATA *treeToSTD(Tree *);
/************************************************
:
************************************************/
/*
*,
*: ,.
*: 0,-1.
*/
2018-08-23 07:49:02 +00:00
extern int readDataFileInfo(D_FILE *p_dfile);
2018-08-23 07:24:59 +00:00
/*
*
*: p_std为指向框架中的相关标准数据所在内存空间的指针
*: 0,-1.
*/
2018-08-23 07:49:02 +00:00
extern int readStandardData(D_FILE *p_dfile, STD_DATA *p_std);
2018-08-23 07:24:59 +00:00
/*
*
*: 0,-1.
*/
2018-08-23 07:49:02 +00:00
extern int readSTDBlocks(STD_BLOCKS *p_stdb);
2018-08-23 07:24:59 +00:00
/*
*,
*: 0,-1.
*/
2018-08-23 07:49:02 +00:00
extern int checkIfDataFile(D_FILE *p_dfile);
2018-08-23 07:24:59 +00:00
/*
*ID,
*: 0,-1.
*/
2018-08-23 07:49:02 +00:00
extern int readStandardDataBySid(D_FILE *p_dfile, SID *p_sid);
2018-08-23 07:24:59 +00:00
/*
*ID,
*/
2018-08-21 08:26:31 +00:00
__CALLBACK_STATE(findStandardDataBySid);
2018-08-07 09:43:42 +00:00
2018-08-23 07:24:59 +00:00
/************************************************
:
************************************************/
/*
*
*/
2018-08-23 07:49:02 +00:00
extern void printStandardData(void *value);
2018-08-23 07:24:59 +00:00
/************************************************
:
************************************************/
/*
*
*: ,NULL.
*/
2018-08-23 07:49:02 +00:00
extern MSG *createMessage(char *title, void *data, unsigned long data_size);
2018-08-23 07:24:59 +00:00
/*
*ipv4地址发送消息
*: 0,-1.
*/
2018-08-23 07:49:02 +00:00
extern int sendMessageIPv4(MSG *p_msg, char *ip, unsigned int port);
2018-08-23 07:24:59 +00:00
2018-07-30 09:45:33 +00:00
#endif /* communicate_h */