forked from allinurl/goaccess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.h
185 lines (161 loc) · 4.92 KB
/
parser.h
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/**
* ______ ___
* / ____/___ / | _____________ __________
* / / __/ __ \/ /| |/ ___/ ___/ _ \/ ___/ ___/
* / /_/ / /_/ / ___ / /__/ /__/ __(__ |__ )
* \____/\____/_/ |_\___/\___/\___/____/____/
*
* The MIT License (MIT)
* Copyright (c) 2009-2016 Gerardo Orellana <hello @ goaccess.io>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef PARSER_H_INCLUDED
#define PARSER_H_INCLUDED
#define KEY_FOUND 1
#define KEY_NOT_FOUND -1
#define LINE_BUFFER 4096 /* read at most this num of chars */
#define NUM_TESTS 20 /* test this many lines from the log */
#define MAX_LOG_ERRORS 20
#define LINE_LEN 23
#define ERROR_LEN 255
#define REF_SITE_LEN 511 /* maximum length of a referring site */
#define SPEC_TOKN_SET 0x1
#define SPEC_TOKN_NUL 0x2
#define SPEC_TOKN_INV 0x3
#define SPEC_SFMT_MIS 0x4
#include "commons.h"
/* Log properties. Note: This is per line parsed */
typedef struct GLogItem_
{
char *agent;
char *browser;
char *browser_type;
char *continent;
char *country;
char *date;
char *host;
char *keyphrase;
char *method;
char *os;
char *os_type;
char *protocol;
char *qstr;
char *ref;
char *req;
char *req_key;
char *status;
char *time;
char *uniq_key;
char *vhost;
char *userid;
char site[REF_SITE_LEN + 1];
uint64_t resp_size;
uint64_t serve_time;
int type_ip;
int is_404;
int is_static;
int uniq_nkey;
int agent_nkey;
char *errstr;
} GLogItem;
/* Overall parsed log properties */
typedef struct GLog_
{
unsigned int excluded_ip;
unsigned int invalid;
unsigned int offset;
unsigned int processed;
unsigned int valid;
unsigned long long resp_size;
unsigned short load_from_disk_only;
unsigned short piping;
GLogItem *items;
unsigned short log_erridx;
char **errors;
FILE *pipe;
} GLog;
/* Raw data field type */
typedef enum
{
INTEGER,
STRING
} GRawDataType;
/* Raw Data extracted from table stores */
typedef struct GRawDataItem_
{
int key;
union
{
char *svalue;
int ivalue;
} value;
} GRawDataItem;
/* Raw Data per module */
typedef struct GRawData_
{
GRawDataItem *items; /* data */
GModule module; /* current module */
GRawDataType type; /* raw data items type */
int idx; /* first level index */
int size; /* total num of items on ht */
} GRawData;
/* Each record contains a data value, i.e., Windows XP, and it may contain a
* root value, i.e., Windows, and a unique key which is the combination of
* date, IP and user agent */
typedef struct GKeyData_
{
void *data;
void *data_key;
int data_nkey;
void *root;
void *root_key;
int root_nkey;
void *uniq_key;
int uniq_nkey;
} GKeyData;
typedef struct GParse_
{
GModule module;
int (*key_data) (GKeyData * kdata, GLogItem * logitem);
/* data field */
void (*datamap) (int data_nkey, const char *data, GModule module);
void (*rootmap) (int root_nkey, const char *root, GModule module);
/* metrics */
void (*hits) (int data_nkey, GModule module);
void (*visitor) (int uniq_nkey, GModule module);
void (*bw) (int data_nkey, uint64_t size, GModule module);
void (*cumts) (int data_nkey, uint64_t ts, GModule module);
void (*maxts) (int data_nkey, uint64_t ts, GModule module);
void (*method) (int data_nkey, const char *method, GModule module);
void (*protocol) (int data_nkey, const char *proto, GModule module);
void (*agent) (int data_nkey, int agent_nkey, GModule module);
} GParse;
char *fgetline (FILE * fp);
char **test_format (GLog * glog, int *len);
GLog *init_log (void);
GLogItem *init_log_item (GLog * glog);
GRawDataItem *new_grawdata_item (unsigned int size);
GRawData *new_grawdata (void);
int parse_log (GLog ** glog, char *tail, int dry_run);
void free_logerrors (GLog * glog);
void free_raw_data (GRawData * raw_data);
void output_logerrors (GLog * glog);
void reset_struct (GLog * glog);
#endif