ZE-Standard-Libraries/type/type.h

352 lines
8.3 KiB
C
Raw Normal View History

2018-07-23 04:59:16 +00:00
#ifndef type_h
#define type_h
2018-08-03 10:32:20 +00:00
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <stdlib.h>
2018-08-07 04:10:55 +00:00
#include <unistd.h>
2018-08-07 04:55:59 +00:00
#include <inttypes.h>
2018-08-17 08:58:15 +00:00
#include <stdarg.h>
2018-08-03 10:32:20 +00:00
2018-08-07 09:43:42 +00:00
/*
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
*/
2018-08-22 15:19:08 +00:00
/************************************************
*
************************************************/
2018-07-23 04:59:16 +00:00
#define VOID 0
#define INT 1
#define DOUBLE 2
#define STRING 3
#define POINTER 4
#define LIST 5
2018-07-25 14:10:09 +00:00
#define STACK 6
#define TREE 7
2018-07-30 09:45:33 +00:00
#define LIST_NODE 8
#define TREE_NODE 9
#define STACK_NODE 10
2018-08-03 10:58:49 +00:00
#define T_SID 11
2018-08-07 04:10:55 +00:00
#define UINT 12
#define STANDARD_DATA 13
#define DATA_FILE 14
2018-08-07 09:43:42 +00:00
#define MESSAGE 15
2018-08-17 08:58:15 +00:00
#define HOLE 16
#define ULLINT 17
2018-07-23 04:59:16 +00:00
2018-08-22 15:19:08 +00:00
/************************************************
*
************************************************/
2018-07-30 09:45:33 +00:00
#define DEEPC 1
#define DEEPB 2
#define DEEPA 3
2018-08-03 10:32:20 +00:00
#define TYPE_LEN 5
2018-07-30 09:45:33 +00:00
#define DEEPC_LEN 4
#define DEEPB_LEN 8
#define DEEPA_LEN 32
#define DATA_BIT 5
2018-08-07 04:10:55 +00:00
#define DEEP_LEN 25
#define DEEPER_LEN 65
#define DEEPEST_LEN 225
2018-08-21 08:26:31 +00:00
#define SID_LEN 33
2018-08-07 04:10:55 +00:00
#define FILE_TSET_LEN 18
#define HEAD_TEST_LEN 9
2018-08-21 08:26:31 +00:00
#define INFO_TEST_LEN 8
2018-08-22 08:36:26 +00:00
#define ENABLE_LIST_QUICK 65535
#define FN_NODE_SPARE 500
2018-08-17 08:58:15 +00:00
#define INDEX_CHANGE_MAX 500
#define INDEX_DISTANCE_MAX 120
2018-08-21 08:26:31 +00:00
#define STD_TEXT_LEN 4
2018-08-03 10:32:20 +00:00
#define HIGH 0x3
#define STANDARD 0x2
#define LOW 0x1
2018-08-22 15:19:08 +00:00
/************************************************
*
************************************************/
2018-08-22 08:36:26 +00:00
#define ABS(x) ((x>0)?(x):(-x))
2018-08-17 08:58:15 +00:00
2018-08-22 15:19:08 +00:00
/************************************************
2018-08-22 15:38:03 +00:00
*
2018-08-22 15:19:08 +00:00
************************************************/
/*
*MD5的管理及操作的结构
*/
2018-08-14 15:59:55 +00:00
typedef struct md5_ctx{
unsigned int count[2];
unsigned int state[4];
unsigned char buffer[64];
}MD5_CTX;
2018-08-22 15:19:08 +00:00
/*
*SID的初始值管理及操作的结构
*/
2018-08-14 15:59:55 +00:00
struct sid_raw{
2018-08-03 10:32:20 +00:00
unsigned int type;
unsigned int *value;//4
unsigned int *value_deeper;//8
unsigned int *value_deepest;//32
2018-08-14 15:59:55 +00:00
};
2018-08-22 15:19:08 +00:00
/*
*SID的管理及操作的结构
*/
2018-08-14 15:59:55 +00:00
typedef struct s_id{
2018-08-22 15:19:08 +00:00
struct sid_raw *sr;//指向SID初始值
unsigned int deep;//SID初始值的复杂度
MD5_CTX *md5;//指向MD5结构
unsigned char *decrypt_hex;//指向MD5的Hex信息
char *decrypt_str;//指向MD5的Hex信息转化成的字符串
2018-08-14 15:59:55 +00:00
2018-08-03 10:32:20 +00:00
}SID;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-03 10:32:20 +00:00
typedef struct Node{
2018-08-22 15:19:08 +00:00
unsigned long long f_number;//长链表模式下,分派的数组节点编号
unsigned int type;//类型
void *value;//值指针
struct Node *next;//指向下一个节点
struct Node *last;//指向上一个节点
2018-08-14 15:59:55 +00:00
SID *s_id;
2018-08-03 10:32:20 +00:00
} Node;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-14 15:59:55 +00:00
typedef struct simple_Node{
2018-08-22 15:19:08 +00:00
void *value;//值指针
struct simple_Node *next;//指向下一个节点
2018-08-14 15:59:55 +00:00
}s_Node;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-14 15:59:55 +00:00
struct lst_std_id{
unsigned long long start_idx;
unsigned long long end_idx;
SID *sid;
};
struct list_quick;
2018-08-03 10:32:20 +00:00
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-03 10:32:20 +00:00
typedef struct List{
2018-08-22 15:19:08 +00:00
Node *head;//指向第一个节点
Node *tail;//指向最后一个节点
s_Node *s_head;//指向第一个单向节点
s_Node *s_tail;//指向最后一个单向节点
/*如果长链表模式开启则指向对应的长链表模式的管理结构,如果未开启则为NULL*/
2018-08-14 15:59:55 +00:00
struct list_quick *p_lq;
2018-08-22 15:19:08 +00:00
unsigned long long length;//链表的长度
2018-08-14 15:59:55 +00:00
SID *s_id;
2018-08-03 10:32:20 +00:00
} List;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-17 08:58:15 +00:00
struct index_change{
2018-08-22 15:19:08 +00:00
unsigned long long c_index;//偏移量,有正负之分
int f_count;//偏移量所对应的数组对的节点
2018-08-17 08:58:15 +00:00
};
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-14 15:59:55 +00:00
struct list_quick{
2018-08-22 15:19:08 +00:00
Node **fn_node;//指向链表各个节点的映射数组
unsigned long long fn_len;//映射数组的总长度
unsigned long long rlst_len;//在映射数组实际被占用的长度
_Bool if_sort;//链表是否有序
unsigned int idxc_count;//链的删减增的操作次数
struct index_change *idxc_lst[INDEX_CHANGE_MAX];//储存链表的删减增操作的记录
FILE *fp;//链表缓存文件
2018-08-14 15:59:55 +00:00
List *stdid_lst;
};
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-03 10:32:20 +00:00
typedef struct Info{
2018-08-22 15:19:08 +00:00
char head[64];//信息头
char body[256];//信息内容
2018-08-03 10:32:20 +00:00
}Info;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-03 10:32:20 +00:00
typedef struct Error{
2018-08-22 15:19:08 +00:00
unsigned int type;//错误类型号
int priority;//优先级
time_t time;//错误产生的时间
Info info;//信息指针
2018-08-03 10:32:20 +00:00
}Error;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-03 10:32:20 +00:00
typedef struct Notice{
2018-08-22 15:19:08 +00:00
unsigned int type;//警告类型号
time_t time;//警告产生的时间
Info info;//信息指针
2018-08-03 10:32:20 +00:00
}Notice;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-03 10:32:20 +00:00
typedef struct Log{
2018-08-22 15:19:08 +00:00
FILE *fp;//日志文件的指针
int if_enable;//日志文件是否启用
unsigned long int id;//日志文件的ID
2018-08-03 10:32:20 +00:00
}Log;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-07 04:10:55 +00:00
typedef struct stack_node{
2018-08-22 15:19:08 +00:00
unsigned int type;//栈节点的类型
void *value;//值指针
struct stack_node *next;//下一个栈节点
SID *s_id;//栈节点的ID
2018-08-07 04:10:55 +00:00
} SNode;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-07 04:10:55 +00:00
typedef struct stack{
2018-08-22 15:19:08 +00:00
unsigned long long length;//栈的长度
SNode *top;//指向栈顶的栈节点
SID *s_id;//栈的ID
2018-08-07 04:10:55 +00:00
} Stack;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-03 10:32:20 +00:00
typedef struct tree_node
{
2018-08-22 15:19:08 +00:00
SID *s_id;//超级树节点的ID
List *home;//超级树节点的子节点列表
struct tree_node *father;//超级树节点的父节点
Node *room;//超级树节点的父节点的子节点列表
unsigned long long child_num;//超级树节点的子节点数量
unsigned int type;//超级树节点的类型
void *value;//值指针
2018-08-03 10:32:20 +00:00
}TNode;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-14 15:59:55 +00:00
typedef struct simple_tree_node{
2018-08-22 15:19:08 +00:00
void *value;//值指针
struct simple_tree_node *childs[2];//子节点
2018-08-14 15:59:55 +00:00
}s_TNode;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-03 10:32:20 +00:00
typedef struct tree
{
2018-08-22 15:19:08 +00:00
SID *s_id;//超级树的SID
TNode *root;//超级树根节点
s_TNode *s_root;//二叉树的根节点
2018-08-03 10:32:20 +00:00
}Tree;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-07 04:55:59 +00:00
typedef struct file_head{
2018-08-22 15:19:08 +00:00
char head_test[18];//数据文件头部的验证信息
unsigned long long data_num;//数据文件中的标准数据结构的数目
2018-08-07 04:55:59 +00:00
}F_HEAD;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-07 04:55:59 +00:00
typedef struct data_file{
2018-08-22 15:19:08 +00:00
FILE *fp;//数据文件
F_HEAD *pf_head;//数据文件头
List *pf_stdlst;//数据文件的标志数据结构的储存链表
2018-08-07 04:55:59 +00:00
}D_FILE;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-07 04:55:59 +00:00
typedef struct standard_data_blocks{
2018-08-22 15:19:08 +00:00
unsigned int type;//数据块的类型
unsigned long long location;//数据块在数据文件中的定位
char *sid;//数据块的ID
_Bool if_data;//数据块是否赋值
unsigned int blocks_num;//数据块字节大小
char *buff;//指向数据块储存值内存空间的指针
2018-08-07 04:55:59 +00:00
}STD_BLOCKS;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-07 04:55:59 +00:00
typedef struct standard_data_connection{
2018-08-22 15:19:08 +00:00
unsigned long long location;//数据块链接关系结构在文件中的定位
char *f_sid;//前一个数据块的ID
char *s_sid;//后一个数据块的ID
2018-08-07 04:55:59 +00:00
}STD_CTN;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-07 04:55:59 +00:00
typedef struct standard_data_head{
2018-08-22 15:19:08 +00:00
unsigned long long data_blk_num;//数据块的数目
unsigned long long data_ctn_num;//数据块链接关系结构的数目
2018-08-07 04:55:59 +00:00
}STD_HEAD;
2018-08-22 15:19:08 +00:00
/*
*
*/
2018-08-07 04:55:59 +00:00
typedef struct standard_data{
2018-08-22 15:19:08 +00:00
SID *s_id;//标准数据结构的ID
int read_data;//标准数据结构是否已经读取完整
unsigned int type;//标准数据结构所对应的类型
unsigned long long size;//标准数据结构在数据文件中的大小
unsigned long long location;//标准数据结构的头在数据文件中的定位
_Bool lock;//标准数据文件是否被锁住
List *pd_blocklst;//数据块储存链表
List *pd_ctnlst;//数据块连接关系结构的储存链表
2018-08-07 04:55:59 +00:00
}STD_DATA;
2018-08-03 10:32:20 +00:00
2018-08-22 15:38:03 +00:00
/*
*
*/
typedef struct message{
SID *p_sid;//消息的ID
time_t time;//消息的产生时间
char titile[16];//消息标题
unsigned long size;//消息的大小
char content[0];//消息的正文
}MSG;
2018-07-23 04:59:16 +00:00
#endif /* type_h */