-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.cpp
75 lines (66 loc) · 1.47 KB
/
error.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
//
// Created by Administrator on 2017/2/17.
//
#include <syslog.h>
#include <stdarg.h>
#include "unp.h"
int daemon_proc;
static void err_doit(int errnoflag,int level,const char* fmt,va_list ap);
void err_ret(const char *fmt,...){
va_list ap;
va_start(ap,fmt);
err_doit(1,LOG_INFO,fmt,ap);
va_end(ap);
return ;
}
void err_sys(const char *fmt,...){
va_list ap;
va_start(ap,fmt);
err_doit(1,LOG_ERR,fmt,ap);
va_end(ap);
exit(1);
}
void err_dump(const char *fmt,...){
va_list ap;
va_start(ap,fmt);
err_doit(1,LOG_ERR,fmt,ap);
va_end(ap);
abort();
exit(1);
}
void err_msg(const char *fmt,...){
va_list ap;
va_start(ap,fmt);
err_doit(0,LOG_INFO,fmt,ap);
va_end(ap);
return;
}
void err_quit(const char *fmt,...){
va_list ap;
va_start(ap,fmt);
err_doit(0,LOG_ERR,fmt,ap);
va_end(ap);
exit(1);
}
static void err_doit(int errnoflag,int level,const char* fmt,va_list ap){
int error_sava,n;
char buf[MAXLINE + 1] = {0};
error_sava = errno;
#ifdef HAVA_VSNPRINTF
vsnprintf(buf,MAXLINE,fmt,ap);
#else
vsnprintf(buf,fmt,ap);
#endif
n = strlen(buf);
if(errnoflag)
snprintf(buf+n,MAXLINE - n,": %s",strerror(error_sava));
strcat(buf,"\n");
if(daemon_proc)
syslog(level,buf);
else{
fflush(stdout);
fputs(buf,stderr);
fflush(stderr);
}
return ;
}