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-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-07-23 04:59:16 +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-07-23 04:59:16 +00:00
|
|
|
|
2018-08-03 10:32:20 +00:00
|
|
|
#define HIGH 0x3
|
|
|
|
#define STANDARD 0x2
|
|
|
|
#define LOW 0x1
|
|
|
|
|
|
|
|
typedef struct s_id{
|
|
|
|
unsigned int type;
|
|
|
|
unsigned int *value;//4
|
|
|
|
unsigned int *value_deeper;//8
|
|
|
|
unsigned int *value_deepest;//32
|
|
|
|
unsigned int deep;
|
|
|
|
}SID;
|
|
|
|
|
|
|
|
typedef struct Node{
|
|
|
|
SID *s_id;
|
|
|
|
void *value;
|
|
|
|
_Bool if_malloc;
|
|
|
|
_Bool if_sid;
|
|
|
|
unsigned int type;
|
|
|
|
struct Node *next;
|
|
|
|
struct Node *last;
|
|
|
|
} Node;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct List{
|
|
|
|
SID *s_id;
|
|
|
|
Node *head;
|
|
|
|
Node *tail;
|
|
|
|
_Bool if_sid;
|
|
|
|
unsigned long long length;
|
|
|
|
} List;
|
|
|
|
|
|
|
|
typedef struct Info{
|
|
|
|
char head[64];
|
|
|
|
char body[256];
|
|
|
|
}Info;
|
|
|
|
|
|
|
|
typedef struct Error{
|
|
|
|
unsigned int type;
|
|
|
|
int priority;
|
|
|
|
Info info;
|
|
|
|
time_t time;
|
|
|
|
}Error;
|
|
|
|
|
|
|
|
typedef struct Notice{
|
|
|
|
unsigned int type;
|
|
|
|
Info info;
|
|
|
|
time_t time;
|
|
|
|
}Notice;
|
|
|
|
|
|
|
|
typedef struct Log{
|
|
|
|
FILE *fp;
|
|
|
|
int if_enable;
|
|
|
|
unsigned long int id;
|
|
|
|
}Log;
|
|
|
|
|
|
|
|
typedef struct tree_node
|
|
|
|
{
|
|
|
|
SID *s_id;
|
|
|
|
List *home;
|
|
|
|
struct tree_node *father;
|
|
|
|
Node *room;
|
|
|
|
unsigned long long child_num;
|
|
|
|
unsigned int type;
|
|
|
|
void *value;
|
|
|
|
_Bool if_malloc;
|
|
|
|
_Bool if_sid;
|
|
|
|
}TNode;
|
|
|
|
|
|
|
|
typedef struct tree
|
|
|
|
{
|
|
|
|
SID *s_id;
|
|
|
|
_Bool if_sid;
|
|
|
|
TNode *root;
|
|
|
|
}Tree;
|
|
|
|
|
|
|
|
|
2018-07-23 04:59:16 +00:00
|
|
|
#endif /* type_h */
|