]> git.ipfire.org Git - thirdparty/sarg.git/blame - splitlog.c
Don't show the input log reading percentage
[thirdparty/sarg.git] / splitlog.c
CommitLineData
25697a35 1/*
94ff9470 2 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
61d965f3 3 * 1998, 2012
25697a35
GS
4 *
5 * SARG donations:
6 * please look at http://sarg.sourceforge.net/donations.php
1164c474
FM
7 * Support:
8 * http://sourceforge.net/projects/sarg/forums/forum/363374
25697a35
GS
9 * ---------------------------------------------------------------------
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
24 *
25 */
26
27#include "include/conf.h"
5f3cfd1d 28#include "include/defs.h"
25697a35 29
2c7e8c23
FM
30/*
31Extract a date range from a squid log file and write it into a separate file.
32
33It can optionally convert the date in human readable format.
34
35The output can be split by day into separate files.
36
37\param arq The squid log file to split.
38\param df The date format if the date is to be converted in human readable form. Only the first
39character is taken into account. It can be 'e' for European date format or anything else for
40US date format.
41\param dfrom The first date to output in the form (Year*10000+Month*100+Day).
42\param duntil The last date to output in the form (Year*10000+Month*100+Day).
43\param convert \c True if the date must be converted into human readable form.
44\param splitprefix If not empty, the output file is written in separate files (one for each day) and
45the files are named after the day they contain prefixed with the string contained in this variable.
46*/
47void splitlog(const char *arq, const char *df, int dfrom, int duntil, int convert, const char *splitprefix)
25697a35 48{
9bd92830 49 FILE *fp_in;
2c7e8c23 50 FILE *fp_ou=NULL;
9bd92830
FM
51 char *buf;
52 char data[30];
53 char dia[11];
2c7e8c23 54 char output_file[MAXLEN];
9bd92830 55 time_t tt;
2c7e8c23
FM
56 time_t min_tt;
57 time_t max_tt=0;
9bd92830 58 int idata=0;
2c7e8c23
FM
59 int autosplit=0;
60 int output_prefix_len=0;
61 int prev_year=0, prev_month=0, prev_day=0;
9bd92830
FM
62 struct tm *t;
63 struct getwordstruct gwarea;
64 longline line;
25697a35 65
2c7e8c23
FM
66 if (splitprefix[0]!='\0') {
67 // '/' + '-YYYY-mm-dd' + '\0' == 13
68 output_prefix_len=snprintf(output_file,sizeof(output_file)-12,"%s%s",outdir,splitprefix);
69 if (output_prefix_len>=sizeof(output_file)-12) {
70 debuga(_("(splitlog) Output path is too long: %s%s-YYYY-mm-dd\n"),outdir,splitprefix);
71 exit(EXIT_FAILURE);
72 }
73 autosplit=1;
74 } else {
75 fp_ou=stdout;
76 }
77
9bd92830
FM
78 if(arq[0] == '\0')
79 arq="/var/log/squid/access.log";
25697a35 80
9bd92830
FM
81 if((fp_in=MY_FOPEN(arq,"r"))==NULL) {
82 debuga(_("(splitlog) Cannot open log file %s - %s\n"),arq,strerror(errno));
83 exit(EXIT_FAILURE);
84 }
9b179eb0 85
9bd92830
FM
86 if ((line=longline_create())==NULL) {
87 debuga(_("Not enough memory to read the log file %s\n"),arq);
88 exit(EXIT_FAILURE);
89 }
2c7e8c23 90 time(&min_tt);
25697a35 91
9bd92830
FM
92 while((buf=longline_read(fp_in,line))!=NULL) {
93 getword_start(&gwarea,buf);
94 if (getword(data,sizeof(data),&gwarea,' ')<0) {
95 debuga(_("Invalid date found in file %s\n"),arq);
96 exit(EXIT_FAILURE);
97 }
98 tt=atoi(data);
99 t=localtime(&tt);
25697a35 100
9bd92830
FM
101 if(dfrom) {
102 idata=(t->tm_year+1900)*10000+(t->tm_mon+1)*100+t->tm_mday;
103 if(idata < dfrom || idata > duntil)
104 continue;
105 }
25697a35 106
2c7e8c23
FM
107 if (autosplit && (prev_year!=t->tm_year || prev_month!=t->tm_mon || prev_day!=t->tm_mday)) {
108 prev_year=t->tm_year;
109 prev_month=t->tm_mon;
110 prev_day=t->tm_mday;
111 if (fp_ou && fclose(fp_ou)==EOF) {
112 debuga(_("Failed to close file %s - %s\n"),output_file,strerror(errno));
113 exit(EXIT_FAILURE);
114 }
115 strftime(output_file+output_prefix_len, sizeof(output_file)-output_prefix_len, "-%Y-%m-%d", t);
116 /*
117 The line must be added to a file we have already created. The file must be created if the date
118 is seen for the first time. The idea is to create the files from scratch if the split is started
119 a second time.
120 */
121 if ((fp_ou=MY_FOPEN(output_file,(tt>=min_tt && tt<=max_tt) ? "a" : "w"))==NULL) {
122 debuga(_("(splitlog) Cannot open output log file %s - %s\n"),output_file,strerror(errno));
123 exit(EXIT_FAILURE);
124 }
125 if (tt<min_tt) min_tt=tt;
126 if (tt>max_tt) max_tt=tt;
127 }
128
9bd92830 129 if(!convert) {
2c7e8c23 130 fprintf(fp_ou,"%s %s\n",data,gwarea.current);
9bd92830
FM
131 } else {
132 if(df[0]=='e')
133 strftime(dia, sizeof(dia), "%d/%m/%Y", t);
134 else
135 strftime(dia, sizeof(dia), "%m/%d/%Y", t);
25697a35 136
2c7e8c23 137 fprintf(fp_ou,"%s %02d:%02d:%02d %s\n",dia,t->tm_hour,t->tm_min,t->tm_sec,gwarea.current);
9bd92830
FM
138 }
139 }
25697a35 140
9bd92830
FM
141 longline_destroy(&line);
142 if (fclose(fp_in)==EOF) {
143 debuga(_("Failed to close file %s - %s\n"),arq,strerror(errno));
144 }
2c7e8c23
FM
145 if (autosplit && fp_ou) {
146 if (fclose(fp_ou)==EOF) {
147 debuga(_("Failed to close file %s - %s\n"),output_file,strerror(errno));
148 exit(EXIT_FAILURE);
149 }
150 }
25697a35 151}