5e2073280d8f6ad5cc675da058de155e788a9bf6
[gnucomo.git] / src / gcm_input / syslog_cooker.cpp
1
2 /**************************************************************************
3 **  (c) Copyright 2002, Andromeda Technology & Automation
4 ** This is free software; you can redistribute it and/or modify it under the
5 ** terms of the GNU General Public License, see the file COPYING.
6 ***************************************************************************
7 ** MODULE INFORMATION *
8 ***********************
9 **      FILE NAME      : syslog_cooker.cpp
10 **      SYSTEM NAME    : 
11 **      VERSION NUMBER : $Revision: 1.2 $
12 **
13 **  DESCRIPTION      :  Cooks system log lines
14 **
15 **  EXPORTED OBJECTS : 
16 **  LOCAL    OBJECTS : 
17 **  MODULES  USED    :
18 ***************************************************************************
19 **  ADMINISTRATIVE INFORMATION *
20 ********************************
21 **      ORIGINAL AUTHOR : Arjen Baart - arjen@andromeda.nl
22 **      CREATION DATE   : Aug 06, 2003
23 **      LAST UPDATE     : Aug 06, 2003
24 **      MODIFICATIONS   : 
25 **************************************************************************/
26
27 /*****************************
28    $Log: syslog_cooker.cpp,v $
29    Revision 1.2  2004-01-13 12:20:12  arjen
30    Accept '/' and '.' characters within the service name
31
32    Revision 1.1  2003/08/11 16:56:16  arjen
33    Different kinds of log files are parsed by a collection of objects
34    of different classes, derived from the base class line_cooker
35    Depending on the message content or the message_type element in
36    XML, one of these objects is selected.
37
38    Logrunner is integrated with gcm_input. Although its functionality
39    is still limited, a connection between logrunner and gcm_input
40    is beginning to form.
41
42 *****************************/
43
44 /* static const char *RCSID = "$Id: syslog_cooker.cpp,v 1.2 2004-01-13 12:20:12 arjen Exp $"; */
45
46 #include <ctype.h>
47
48 #include "syslog_cooker.h"
49
50 static const String syslog_date_re("[[:alpha:]]{3} [ 123][0-9] [0-9]{2}:[0-9]{2}:[0-9]{2}");
51 static const regex re_syslog(syslog_date_re + " [[:alnum:]]+ [[:alpha:]/]+.*:.+");
52
53 bool syslog_cooker::check_pattern(String logline)
54 {
55    return logline == re_syslog;
56 }
57
58 bool syslog_cooker::cook_this(String logline, UTC arrival)
59 {
60    if (check_pattern(logline))
61    {
62       String datestring = logline(0,16);
63       date   log_date = datestring;
64       hour   log_time = datestring;
65       String rest;   //  Rest of the line to be parsed
66       int    i;
67
68       if (log_date.Year() < 0 || log_date.Year() > 2500)
69       {
70          //  The year is not in the log file. Assume the year of arrival,
71          //  unless this puts the log entry at a later date than the arrival date.
72          //  This happens e.g. when a log entry from December arrives in Januari.
73
74          log_date = date(log_date.Day(), log_date.Month(), date(arrival).Year());
75          if (log_date > date(arrival))
76          {
77             log_date = date(log_date.Day(), log_date.Month(), date(arrival).Year() - 1);
78          }
79       }
80
81       ts = UTC(log_date, log_time);
82
83       //  Extract the hostname
84  
85       rest = logline << 16;
86       i = rest.index(' ');
87       hn = rest(0,i);
88
89       //  Extract the service
90
91       rest <<= i + 1;
92       for (i = 0; (isalpha(rest[i])  || rest[i] == '/' || rest[i] == '.') && i < ~rest; i++);
93       srv = rest(0, i);
94
95       return true;
96    }
97    else
98    {
99       return false;
100    }
101 }
102
103