]> git.ipfire.org Git - thirdparty/sarg.git/blame - convlog.c
Use string pointers in getword instead of copying the strings
[thirdparty/sarg.git] / convlog.c
CommitLineData
25697a35 1/*
c37945ed
FM
2 * AUTHOR: Pedro Lineu Orso pedro.orso@gmail.com
3 * 1998, 2008
94ff9470 4 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
25697a35
GS
5 *
6 * SARG donations:
7 * please look at http://sarg.sourceforge.net/donations.php
8 * ---------------------------------------------------------------------
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
23 *
24 */
25
26#include "include/conf.h"
5f3cfd1d 27#include "include/defs.h"
25697a35 28
32e71fa4 29void convlog(const char *arq, char *df, int dfrom, int duntil)
25697a35
GS
30{
31
32 FILE *fp_in;
33 char buf[MAXLEN];
34 char data[30];
35 char dia[11];
25697a35
GS
36 char wdata[20];
37 time_t tt;
38 int idata=0;
39 struct tm *t;
9c7c6346 40 struct getwordstruct gwarea;
25697a35
GS
41
42 if(arq[0] == '\0')
a96e796d 43 arq="/var/log/squid/access.log";
25697a35 44
936c9905 45 if((fp_in=MY_FOPEN(arq,"r"))==NULL) {
25697a35
GS
46 fprintf(stderr, "SARG: (convlog) %s: %s\n",text[8],arq);
47 exit(1);
48 }
49
50 while(fgets(buf,sizeof(buf),fp_in)!=NULL) {
9c7c6346
FM
51 getword_start(&gwarea,buf);
52 if (getword(data,sizeof(data),&gwarea,' ')<0) {
4bcb77cf
FM
53 printf("SARG: Maybe you have a broken record or garbage in your %s file.\n",arq);
54 exit(1);
55 }
25697a35
GS
56 tt=atoi(data);
57 t=localtime(&tt);
58
59 if(dfrom) {
120d768c 60 strftime(wdata, sizeof(wdata), "%Y%m%d", t);
25697a35 61 idata=atoi(wdata);
120d768c
FM
62 if(idata < dfrom || idata > duntil)
63 continue;
25697a35
GS
64 }
65
66 if(strncmp(df,"e",1) == 0)
120d768c 67 strftime(dia, sizeof(dia), "%d/%m/%Y", t);
25697a35 68 else
120d768c 69 strftime(dia, sizeof(dia), "%m/%d/%Y", t);
25697a35 70
9c7c6346 71 printf("%s %02d:%02d:%02d %s",dia,t->tm_hour,t->tm_min,t->tm_sec,gwarea.current);
25697a35
GS
72 }
73
74 fclose(fp_in);
75}