]> git.ipfire.org Git - thirdparty/sarg.git/blame - convlog.c
Fixed Debian bug #444845.
[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];
36 char hora[9];
37 char wdata[20];
38 time_t tt;
39 int idata=0;
40 struct tm *t;
41
42 if(arq[0] == '\0')
32e71fa4 43 arq="/usr/local/squid/logs/access.log";
25697a35 44
0dda06bf 45#if defined(HAVE_FOPEN64)
32e71fa4 46 if((fp_in=fopen64(arq,"r"))==NULL) {
0dda06bf 47#else
25697a35 48 if((fp_in=fopen(arq,"r"))==NULL) {
0dda06bf 49#endif
25697a35
GS
50 fprintf(stderr, "SARG: (convlog) %s: %s\n",text[8],arq);
51 exit(1);
52 }
53
54 while(fgets(buf,sizeof(buf),fp_in)!=NULL) {
4bcb77cf
FM
55 if (getword(data,sizeof(data),buf,' ')<0) {
56 printf("SARG: Maybe you have a broken record or garbage in your %s file.\n",arq);
57 exit(1);
58 }
25697a35
GS
59 tt=atoi(data);
60 t=localtime(&tt);
61
62 if(dfrom) {
63 strftime(wdata, 127, "%Y%m%d", t);
64 idata=atoi(wdata);
65 if(idata < dfrom || idata > duntil)
66 continue;
67 }
68
69 if(strncmp(df,"e",1) == 0)
70 strftime(dia, 127, "%d/%m/%Y", t);
71 else
72 strftime(dia, 127, "%m/%d/%Y", t);
73 sprintf(hora,"%02d:%02d:%02d",t->tm_hour,t->tm_min,t->tm_sec);
74
75 printf("%s %s %s",dia,hora,buf);
76 }
77
78 fclose(fp_in);
79}