]> arthur.barton.de Git - netatalk.git/blob - include/atalk/logger.h
doh, the code was looking up the loglevel against a table, then using the position...
[netatalk.git] / include / atalk / logger.h
1
2 #ifndef _ATALK_LOGGER_H
3 #define _ATALK_LOGGER_H 1
4
5 #include <atalk/boolean.h>
6
7 #ifdef HAVE_CONFIG_H
8 #include "config.h"
9 #endif
10
11 #define MAXLOGSIZE 512
12
13 enum loglevels {
14   log_severe   = 0,
15   log_error    = 10,
16   log_warning  = 20,
17   log_note     = 30,
18   log_info     = 40,
19   log_debug    = 50,
20   log_debug6   = 60,
21   log_debug7   = 70,
22   log_debug8   = 80,
23   log_debug9   = 90,
24   log_maxdebug = 100
25 };
26 #define LOGLEVEL_STRING_IDENTIFIERS { \
27   "LOG_SEVERE",                       \
28   "LOG_ERROR",                        \
29   "LOG_WARN",                         \
30   "LOG_NOTE",                         \
31   "LOG_INFO",                         \
32   "LOG_DEBUG",                        \
33   "LOG_DEBUG6",                       \
34   "LOG_DEBUG7",                       \
35   "LOG_DEBUG8",                       \
36   "LOG_DEBUG9",                       \
37   "LOG_MAXDEBUG"}                        
38
39 /* this is the enum specifying all availiable logtypes */
40 enum logtypes {
41   logtype_default,
42   logtype_core,
43   logtype_logger,
44   logtype_cnid,
45   logtype_afpd,
46
47   logtype_end_of_list_marker  /* don't put any logtypes after this */
48 };
49
50 /* these are the string identifiers corresponding to each logtype */
51 #define LOGTYPE_STRING_IDENTIFIERS { \
52   "Default",                         \
53   "Core",                            \
54   "Logger",                          \
55   "CNID",                            \
56   "AFPDaemon",                       \
57                                      \
58   "end_of_list_marker"}              \
59
60 /* Display Option flags. */
61 /* redefine these so they can don't interfeer with syslog */
62 /* these can be used in standard logging too */
63 #define logoption_pid         0x01   /* log the pid with each message */
64 #define logoption_cons        0x02   /* log on the console if error logging */
65 #define logoption_ndelay      0x08   /* don't delay open */
66 #define logoption_perror      0x20   /* log to stderr as well */
67 #define logoption_nfile       0x40   /* ignore the file that called the log */
68 #define logoption_nline       0x80   /* ignore the line that called the log*/
69
70 /* facility codes */
71 /* redefine these so they can don't interfeer with syslog */
72 #define logfacility_user        (1<<3)  /* random user-level messages */
73 #define logfacility_mail        (2<<3)  /* mail system */
74 #define logfacility_daemon      (3<<3)  /* system daemons */
75 #define logfacility_auth        (4<<3)  /* security/authorization messages */
76 #define logfacility_syslog      (5<<3)  /* messages generated by syslogd */
77 #define logfacility_lpr         (6<<3)  /* line printer subsystem */
78 #define logfacility_authpriv    (10<<3) /* security/auth messages (private) */
79 #define logfacility_ftp         (11<<3) /* ftp daemon */
80
81 /* Setup the log filename and the loglevel, and the type of log it is. */
82 /* setup the internal variables used by the logger (called automatically) */
83 void log_init();
84
85 bool log_setup(char *filename, enum loglevels loglevel, enum logtypes logtype, 
86                int display_options);
87
88 /* Setup the Level and type of log that will be logged to syslog. */
89 void syslog_setup(enum loglevels loglevel, enum logtypes logtype, 
90                   int display_options, int facility);
91
92 /* void setuplog(char *logsource, char *logtype, char *loglevel, char *filename); */
93 void setuplog(char *logtype, char *loglevel, char *filename);
94
95 /* finish up and close the logs */
96 void log_close();
97
98 /* This function sets up the ProcessName */
99 void set_processname(char *processname);
100
101 /* Log a Message */
102 void make_log_entry(enum loglevels loglevel, enum logtypes logtype, 
103              char *message, ...);
104
105 #ifndef DISABLE_LOGGER
106 typedef void(*make_log_func)
107        (enum loglevels loglevel, enum logtypes logtype, char *message, ...);
108 make_log_func set_log_location(char *srcfilename, int srclinenumber);
109
110 void LoadProccessNameFromProc();
111
112 #define LOG set_log_location(__FILE__, __LINE__)
113 #else /* DISABLE_LOGGER */
114 /* if the logger is disabled the rest is a bit futile */
115 #define LOG make_log_entry
116 #endif /* DISABLE_LOGGER */
117
118 #endif