#include <Logging_Strategy.h>
Inheritance diagram for ACE_Logging_Strategy:
Public Methods | |
ACE_Logging_Strategy (void) | |
Constructor. | |
virtual int | init (int argc, ACE_TCHAR *argv[]) |
Dynamic linking initialization hook. | |
virtual int | fini (void) |
Dynamic linking termination hook. | |
virtual int | handle_timeout (const ACE_Time_Value &tv, const void *arg) |
int | parse_args (int argc, ACE_TCHAR *argv[]) |
void | log_msg (ACE_Log_Msg *log_msg) |
Protected Methods | |
void | tokenize (ACE_TCHAR *flag_string) |
Tokenize to set all the flags. | |
void | priorities (ACE_TCHAR *priority_string, ACE_Log_Msg::MASK_TYPE mask) |
Tokenize to set priorities (either process or thread one). | |
Protected Attributes | |
u_long | thread_priority_mask_ |
Current thread's priority mask set by <priorities>. | |
u_long | process_priority_mask_ |
Process-wide priority mask set by <priorities>. | |
u_long | flags_ |
Flags we keep track of. | |
ACE_TCHAR * | filename_ |
File name we're logging to. | |
ACE_TCHAR * | logger_key_ |
Logger key for distributed logging. | |
ACE_TCHAR * | program_name_ |
Program name to be used for n format specifier. | |
int | wipeout_logfile_ |
int | count_ |
int | fixed_number_ |
int | order_files_ |
int | max_file_number_ |
u_long | interval_ |
u_long | max_size_ |
ACE_Log_Msg * | log_msg_ |
ACE_Log_Msg instance to work with. |
Depending upon when this service is invoked and with what flags, the output of other network services can be controlled. The output can be streamed to stderr, to a file, to a logging daemon, or it can be set to be "silent". If logging records are output to a file, the file can be set to a maximum size and repeatedly split into new files. The log file size can be limited at any logging point (i.e., application, client logging daemon, or server logging daemon) by specifying the -i <sample_interval_in_secs> and -m <max_size_in_KB> options for the Logging_Strategy class in a svc.conf file.
By default, two logfiles are generated. It's possible, however, to generate as many logfiles as necessary to store all the information. To achieve this, it is only necessary to indicate the maximum size of the logfiles via the -m option and the process will generate automatically the logfiles. You can control the total number of logfiles created via the -n option.
By using the -o option we can also choose the mode of organization of the files, e.g., the first one is the normal used in Unix systems (when cron rotates the logs it keeps the lowest number the most recent one), the second is for increasing speed (we only create a new log file, and don't rotate the others (fewer accesses to disk)).
|
Constructor.
|
|
Dynamic linking termination hook.
Reimplemented from ACE_Shared_Object. |
|
Timeout handler which tests logfile size. If the current logfile size exceeds <max_size_>, the current logfile is closed, saved to logfile.old, and a new logfile is reopened. Reimplemented from ACE_Event_Handler. |
|
Dynamic linking initialization hook.
Reimplemented from ACE_Shared_Object. |
|
|
|
Parse arguments provided in svc.conf file.
|
|
Tokenize to set priorities (either process or thread one).
|
|
Tokenize to set all the flags.
|
|
This tells us in what file we last wrote. It will be increased to enable multiple log files |
|
File name we're logging to.
|
|
If non-0 we have a maximum number of log files we can write. Default value is 0, i.e., no maximum number. |
|
Flags we keep track of.
|
|
If non-zero, sampling interval (in secs) at which maximum logfile size is checked, otherwise logfile size can grow indefinitely. Default value is 0. |
|
ACE_Log_Msg instance to work with.
|
|
Logger key for distributed logging.
|
|
Tells us what is the maximum log file to write. We will write <max_file_number_> + 1 files (includes the current log file). Default value is 1, i.e., 2 files by default. |
|
Maximum logfile size (in KB). Default value is <ACE_DEFAULT_MAX_LOGFILE_SIZE>. |
|
If non-0 we order the files as we rotate them. Default value is 0, i.e., we do not rotate files by default. |
|
Process-wide priority mask set by <priorities>.
|
|
Program name to be used for n format specifier.
|
|
Current thread's priority mask set by <priorities>.
|
|
If non-0 then wipeout the logfile, otherwise append to it. Default value is 0. |