]> git.ipfire.org Git - thirdparty/sarg.git/blob - splitlog.c
Replaced the ifdef FOPEN64 by a single call to MY_FOPEN for code clarity.
[thirdparty/sarg.git] / splitlog.c
1 /*
2 * AUTHOR: Pedro Lineu Orso pedro.orso@gmail.com
3 * 1998, 2008
4 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
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"
27 #include "include/defs.h"
28
29 void splitlog(const char *arq, char *df, int dfrom, int duntil, char *convert)
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')
43 arq="/usr/local/squid/logs/access.log";
44
45 if((fp_in=MY_FOPEN(arq,"r"))==NULL) {
46 fprintf(stderr, "SARG: (splitlog) %s: %s\n",text[8],arq);
47 exit(1);
48 }
49
50 while(fgets(buf,sizeof(buf),fp_in)!=NULL) {
51 if (getword(data,sizeof(data),buf,' ')<0) {
52 printf("SARG: Maybe you have a broken record or garbage in your %s file.\n",arq);
53 exit(1);
54 }
55 tt=atoi(data);
56 t=localtime(&tt);
57
58 if(dfrom) {
59 strftime(wdata, 127, "%Y%m%d", t);
60 idata=atoi(wdata);
61 if(idata < dfrom || idata > duntil)
62 continue;
63 }
64
65 if(strcmp(convert,"onvert") != 0) {
66 printf("%s %s",data,buf);
67 continue;
68 }
69
70 if(strncmp(df,"e",1) == 0)
71 strftime(dia, 127, "%d/%m/%Y", t);
72 else
73 strftime(dia, 127, "%m/%d/%Y", t);
74
75 sprintf(hora,"%02d:%02d:%02d",t->tm_hour,t->tm_min,t->tm_sec);
76 printf("%s %s %s",dia,hora,buf);
77 }
78
79 fclose(fp_in);
80 }