]> git.ipfire.org Git - thirdparty/sarg.git/blame - convlog.c
Rename configure.in as configure.ac
[thirdparty/sarg.git] / convlog.c
CommitLineData
25697a35 1/*
94ff9470 2 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
110ce984 3 * 1998, 2015
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
81a022d8 30void convlog(const char *arq, char df, int dfrom, int duntil)
25697a35 31{
9bd92830
FM
32 FILE *fp_in;
33 char *buf;
34 char data[30];
35 char dia[11];
36 time_t tt;
37 int idata=0;
38 struct tm *t;
39 struct getwordstruct gwarea;
40 longline line;
25697a35 41
9bd92830
FM
42 if(arq[0] == '\0')
43 arq="/var/log/squid/access.log";
25697a35 44
9bd92830 45 if((fp_in=MY_FOPEN(arq,"r"))==NULL) {
af961877 46 debuga(__FILE__,__LINE__,_("Cannot open file \"%s\": %s\n"),arq,strerror(errno));
9bd92830
FM
47 exit(EXIT_FAILURE);
48 }
25697a35 49
9bd92830 50 if ((line=longline_create())==NULL) {
af961877 51 debuga(__FILE__,__LINE__,_("Not enough memory to read file \"%s\"\n"),arq);
9bd92830
FM
52 exit(EXIT_FAILURE);
53 }
9b179eb0 54
9bd92830
FM
55 while((buf=longline_read(fp_in,line))!=NULL) {
56 getword_start(&gwarea,buf);
57 if (getword(data,sizeof(data),&gwarea,' ')<0) {
af961877 58 debuga(__FILE__,__LINE__,_("Invalid record in file \"%s\"\n"),arq);
9bd92830
FM
59 exit(EXIT_FAILURE);
60 }
61 tt=atoi(data);
62 t=localtime(&tt);
25697a35 63
9bd92830
FM
64 if(dfrom) {
65 idata=(t->tm_year+1900)*10000+(t->tm_mon+1)*100+t->tm_mday;
66 if(idata < dfrom || idata > duntil)
67 continue;
68 }
25697a35 69
81a022d8 70 if (df=='e')
9bd92830 71 strftime(dia, sizeof(dia), "%d/%m/%Y", t);
81a022d8 72 else if (df=='u')
9bd92830 73 strftime(dia, sizeof(dia), "%m/%d/%Y", t);
81a022d8
FM
74 else //if (df=='w')
75 strftime(dia, sizeof(dia), "%Y.%U", t);
25697a35 76
9bd92830
FM
77 printf("%s %02d:%02d:%02d %s\n",dia,t->tm_hour,t->tm_min,t->tm_sec,gwarea.current);
78 }
25697a35 79
9bd92830
FM
80 longline_destroy(&line);
81 if (fclose(fp_in)==EOF) {
af961877 82 debuga(__FILE__,__LINE__,_("Read error in \"%s\": %s\n"),arq,strerror(errno));
507460ae 83 exit(EXIT_FAILURE);
9bd92830 84 }
25697a35 85}