]> git.ipfire.org Git - thirdparty/sarg.git/blame - splitlog.c
Remove duplicate attribute in css
[thirdparty/sarg.git] / splitlog.c
CommitLineData
25697a35 1/*
94ff9470 2 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
1164c474 3 * 1998, 2010
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
32e71fa4 30void splitlog(const char *arq, char *df, int dfrom, int duntil, char *convert)
25697a35
GS
31{
32
33 FILE *fp_in;
34 char buf[MAXLEN];
35 char data[30];
36 char dia[11];
25697a35
GS
37 char wdata[20];
38 time_t tt;
39 int idata=0;
40 struct tm *t;
9c7c6346 41 struct getwordstruct gwarea;
25697a35
GS
42
43 if(arq[0] == '\0')
a96e796d 44 arq="/var/log/squid/access.log";
25697a35 45
936c9905 46 if((fp_in=MY_FOPEN(arq,"r"))==NULL) {
d574e592 47 debuga(_("(splitlog) Cannot open log file %s\n"),arq);
06b39c87 48 exit(EXIT_FAILURE);
25697a35
GS
49 }
50
51 while(fgets(buf,sizeof(buf),fp_in)!=NULL) {
9c7c6346
FM
52 getword_start(&gwarea,buf);
53 if (getword(data,sizeof(data),&gwarea,' ')<0) {
10210234 54 debuga(_("Maybe you have a broken record or garbage in your %s file\n"),arq);
06b39c87 55 exit(EXIT_FAILURE);
4bcb77cf 56 }
25697a35
GS
57 tt=atoi(data);
58 t=localtime(&tt);
59
60 if(dfrom) {
120d768c 61 strftime(wdata, sizeof(wdata), "%Y%m%d", t);
25697a35 62 idata=atoi(wdata);
120d768c
FM
63 if(idata < dfrom || idata > duntil)
64 continue;
25697a35
GS
65 }
66
67 if(strcmp(convert,"onvert") != 0) {
9c7c6346 68 printf("%s %s",data,gwarea.current);
25697a35
GS
69 continue;
70 }
71
72 if(strncmp(df,"e",1) == 0)
120d768c 73 strftime(dia, sizeof(dia), "%d/%m/%Y", t);
25697a35 74 else
120d768c 75 strftime(dia, sizeof(dia), "%m/%d/%Y", t);
25697a35 76
9c7c6346 77 printf("%s %02d:%02d:%02d %s",dia,t->tm_hour,t->tm_min,t->tm_sec,gwarea.current);
25697a35
GS
78 }
79
80 fclose(fp_in);
81}