Different kinds of log files are parsed by a collection of objects
[gnucomo.git] / src / gcm_input / access_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      : access_cooker.cpp
10 **      SYSTEM NAME    : 
11 **      VERSION NUMBER : $Revision: 1.1 $
12 **
13 **  DESCRIPTION      :  Cooks Apache http daemon access 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 11, 2003
23 **      LAST UPDATE     : Aug 11, 2003
24 **      MODIFICATIONS   : 
25 **************************************************************************/
26
27 /*****************************
28    $Log: access_cooker.cpp,v $
29    Revision 1.1  2003-08-11 16:56:15  arjen
30    Different kinds of log files are parsed by a collection of objects
31    of different classes, derived from the base class line_cooker
32    Depending on the message content or the message_type element in
33    XML, one of these objects is selected.
34
35    Logrunner is integrated with gcm_input. Although its functionality
36    is still limited, a connection between logrunner and gcm_input
37    is beginning to form.
38
39 *****************************/
40
41 /* static const char *RCSID = "$Id: access_cooker.cpp,v 1.1 2003-08-11 16:56:15 arjen Exp $"; */
42
43 #include <ctype.h>
44
45 #include "access_cooker.h"
46
47 static const regex re_accesslog("(GET|POST) .+ HTTP");
48
49 bool access_cooker::check_pattern(String logline)
50 {
51    return logline == re_accesslog;
52 }
53
54 bool access_cooker::cook_this(String logline, UTC arrival)
55 {
56    if (check_pattern(logline))
57    {
58       String datestring = logline(regex("\\[.+\\]"));
59
60       datestring <<= 1;
61       datestring >>= 1;
62       datestring[datestring.index(':')] = ' ';
63
64       date   log_date = datestring;
65       hour   log_time = datestring;
66
67       log_date = datestring;
68       log_time = datestring;
69
70       ts = UTC(log_date, log_time);
71
72       hn  = "";
73       srv = "httpd";
74
75       return true;
76    }
77    else
78    {
79       return false;
80    }
81 }
82
83