Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
4ee318be12
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,3 +6,4 @@
|
|||||||
/.vs/ZE-Standard-Libraries/v15
|
/.vs/ZE-Standard-Libraries/v15
|
||||||
/ZE-Standard-Libraries
|
/ZE-Standard-Libraries
|
||||||
/ZE-Standard-Libraries.sln
|
/ZE-Standard-Libraries.sln
|
||||||
|
/.vs
|
||||||
|
102
error/error.c
102
error/error.c
@ -1,6 +1,102 @@
|
|||||||
#include "error.h"
|
#include "error.h"
|
||||||
|
|
||||||
int main(int argc, char **argv){
|
int initErrorSystem(void) {
|
||||||
|
error_list = initList();
|
||||||
return 0;
|
notice_list = initList();
|
||||||
|
if_error = 1;
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int setLogDirectory(const char *path) {
|
||||||
|
logfile.id = getId();
|
||||||
|
int memory_space = strlen(path) + 256;
|
||||||
|
char *file_path = (char *)malloc(sizeof(char)*memory_space);
|
||||||
|
|
||||||
|
//建立完整的文件路径
|
||||||
|
strcat(file_path, path);
|
||||||
|
strcat(file_path, "log");
|
||||||
|
sprintf(file_path, "%d", logfile.id);
|
||||||
|
|
||||||
|
//打开文件,若失败,返回0
|
||||||
|
if ((logfile.fp = fopen(file_path, "w")) == NULL) {
|
||||||
|
printf("Cannot set logfile!");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
logfile.if_enable = 1;
|
||||||
|
|
||||||
|
free(file_path);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int closeLogDirectory(void) {
|
||||||
|
Node *p = error_list->head;
|
||||||
|
while (p != NULL) {
|
||||||
|
saveError(p->value);
|
||||||
|
p = p->next;
|
||||||
|
}
|
||||||
|
|
||||||
|
p = notice_list->head;
|
||||||
|
while (p != NULL) {
|
||||||
|
saveNotice(p->value);
|
||||||
|
p = p->next;
|
||||||
|
}
|
||||||
|
|
||||||
|
releaseList(error_list);
|
||||||
|
releaseList(notice_list);
|
||||||
|
if_error = 0;
|
||||||
|
fclose(logfile.fp);
|
||||||
|
logfile.if_enable = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int loadFromFile(FILE *fp,char* number) {
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int pushInfo(Info *p_info, const char *head, const char *body) {
|
||||||
|
p_info->head = (char *)malloc(sizeof(char) * strlen(head));
|
||||||
|
p_info->body = (char *)malloc(sizeof(char) * strlen(body));
|
||||||
|
strcpy(p_info->head, head);
|
||||||
|
strcpy(p_info->body, body);
|
||||||
|
}
|
||||||
|
|
||||||
|
int pushError(unsigned int type, int pri, Info *p_info) {
|
||||||
|
Error error;
|
||||||
|
error.type = type;
|
||||||
|
error.priority = pri;
|
||||||
|
error.p_info = p_info;
|
||||||
|
error.time = time(NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
int pushNotice(unsigned int type, Info *p_info) {
|
||||||
|
Notice notice;
|
||||||
|
notice.type = type;
|
||||||
|
notice.p_info = p_info;
|
||||||
|
notice.time = time(NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int saveError(Error *p_error) {
|
||||||
|
fprintf(logfile.fp,
|
||||||
|
"--------------------\n\
|
||||||
|
ERROR\n\
|
||||||
|
Type : %ud\n\
|
||||||
|
Priority : %d\n\
|
||||||
|
Time : %s\n\
|
||||||
|
Info : \n\
|
||||||
|
%s\n\
|
||||||
|
%s\n\
|
||||||
|
---------------------\n",
|
||||||
|
p_error->type, p_error->priority, ctime( &(p_error->time) ), p_error->p_info->head, p_error->p_info->body);
|
||||||
|
}
|
||||||
|
static int saveNotice(Notice *p_notice) {
|
||||||
|
fprintf(logfile.fp,
|
||||||
|
"--------------------\n\
|
||||||
|
NOTICE\n\
|
||||||
|
Type : %ud\n\
|
||||||
|
Time : %s\n\
|
||||||
|
Info : \n\
|
||||||
|
%s\n\
|
||||||
|
%s\n\
|
||||||
|
----------------------\n",
|
||||||
|
p_notice->type, ctime( &(p_notice->time) ), p_notice->p_info->head, p_notice->p_info->body);
|
||||||
}
|
}
|
@ -1,4 +1,5 @@
|
|||||||
#include "../list/list_easy.h"
|
#include "../list/list_expand.h"
|
||||||
|
#include <string.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
#ifndef ERROR_H
|
#ifndef ERROR_H
|
||||||
@ -11,19 +12,18 @@
|
|||||||
typedef struct Info{
|
typedef struct Info{
|
||||||
char *head;
|
char *head;
|
||||||
char *body;
|
char *body;
|
||||||
char *tail;
|
|
||||||
}Info;
|
}Info;
|
||||||
|
|
||||||
typedef struct Error{
|
typedef struct Error{
|
||||||
unsigned int type;
|
unsigned int type;
|
||||||
int pri;
|
int priority;
|
||||||
Info info;
|
Info *p_info;
|
||||||
time_t time;
|
time_t time;
|
||||||
}Error;
|
}Error;
|
||||||
|
|
||||||
typedef struct Notice{
|
typedef struct Notice{
|
||||||
unsigned int type;
|
unsigned int type;
|
||||||
Info *info;
|
Info *p_info;
|
||||||
time_t time;
|
time_t time;
|
||||||
}Notice;
|
}Notice;
|
||||||
|
|
||||||
@ -31,29 +31,25 @@ typedef struct Log{
|
|||||||
FILE *fp;
|
FILE *fp;
|
||||||
int if_enable;
|
int if_enable;
|
||||||
unsigned long int id;
|
unsigned long int id;
|
||||||
unsigned int type;
|
|
||||||
}Log;
|
}Log;
|
||||||
|
|
||||||
|
Log logfile;
|
||||||
List *error_list = NULL;
|
List *error_list = NULL;
|
||||||
List *log_list = NULL;
|
List *notice_list = NULL;
|
||||||
int if_error = 0;
|
int if_error = 0;
|
||||||
|
|
||||||
int error_init(int if_enable);
|
int initErrorSystem(void);
|
||||||
int set_logDirectory(char *);
|
|
||||||
int push_error(unsigned int type, int pri, Info *p_info);
|
|
||||||
int push_notice(unsigned int type, Info *p_info);
|
|
||||||
int save_error(Error *p_error);
|
|
||||||
int save_notice(Notice *p_notice);
|
|
||||||
Info *init_Info(char *m_info);
|
|
||||||
|
|
||||||
int error_init(int if_enable){
|
int setLogDirectory(const char *path);
|
||||||
if(if_enable == 1){
|
int closeLogDirectory(void);
|
||||||
error_list = init_list();
|
int loadFromFile(FILE *fp,char* number);
|
||||||
log_list = init_list();
|
|
||||||
if_error = 1;
|
int pushInfo(Info *p_info, const char *head,const char *body);
|
||||||
return 1;
|
int pushError(unsigned int type, int pri, Info *p_info);
|
||||||
}
|
int pushNotice(unsigned int type, Info *p_info);
|
||||||
return 0;
|
|
||||||
}
|
//为保证处理效果,不允许外调下列函数
|
||||||
|
static int saveError(Error *p_error);
|
||||||
|
static int saveNotice(Notice *p_notice);
|
||||||
|
|
||||||
#endif
|
#endif
|
@ -1,6 +1,6 @@
|
|||||||
#ifndef LIST_EXPAND_H
|
#ifndef LIST_EXPAND_H
|
||||||
#define LIST_EXPAND_H
|
#define LIST_EXPAND_H
|
||||||
#include "list.h"
|
#include "list.c"
|
||||||
|
|
||||||
Node *nodeWithInt(int);//快速初始化一个单一值节点并赋值
|
Node *nodeWithInt(int);//快速初始化一个单一值节点并赋值
|
||||||
Node *nodeWithDouble(double);//快速初始化一个节单一值点并赋值
|
Node *nodeWithDouble(double);//快速初始化一个节单一值点并赋值
|
||||||
|
Loading…
Reference in New Issue
Block a user