]> git.ipfire.org Git - thirdparty/sarg.git/blame - totday.c
Keep global statistics in memory and use them to check computation
[thirdparty/sarg.git] / totday.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
f2ec8c75 30void day_totalize(const char *tmp, const struct userinfostruct *uinfo, int indexonly)
25697a35 31{
9bd92830 32 FILE *fp_in, *fp_ou;
25697a35 33
9bd92830
FM
34 char buf[200];
35 char date[20];
36 long long int hour;
37 long long int bytes;
38 long long int elap;
39 long long int tbytes[MAX_DATETIME_DAYS*24];
40 long long int telap[MAX_DATETIME_DAYS*24];
41 int day,month,year;
42 int daylist[MAX_DATETIME_DAYS];
43 int ndaylist;
44 int daynum;
45 int dayidx;
46 int i;
47 char wdirname[2048];
48 char arqout[2048];
49 char colsep;
50 struct getwordstruct gwarea;
120d768c 51
9bd92830
FM
52 if(indexonly) return;
53 if((ReportType & REPORT_TYPE_USERS_SITES) == 0) return;
54 if (datetimeby==0) return;
25697a35 55
9bd92830
FM
56 if (snprintf(wdirname,sizeof(wdirname),"%s/%s.htmp",tmp,uinfo->filename)>=sizeof(wdirname)) {
57 debuga(_("File name too long: %s/%s%s\n"),tmp,uinfo->filename,".htmp");
58 exit(EXIT_FAILURE);
59 }
60 if (snprintf(arqout,sizeof(arqout),"%s/%s.day",tmp,uinfo->filename)>=sizeof(arqout)) {
61 debuga(_("File name too long: %s/%s%s\n"),tmp,uinfo->filename,".day");
62 exit(EXIT_FAILURE);
63 }
25697a35 64
9bd92830
FM
65 if((fp_in=fopen(wdirname,"r"))==NULL) {
66 debuga(_("(totday) Cannot open log file %s\n"),wdirname);
67 exit(EXIT_FAILURE);
68 }
25697a35 69
9bd92830
FM
70 memset(tbytes,0,sizeof(tbytes));
71 memset(telap,0,sizeof(tbytes));
72 ndaylist=0;
25697a35 73
9bd92830
FM
74 while(fgets(buf,sizeof(buf),fp_in)!=NULL) {
75 fixendofline(buf);
76 getword_start(&gwarea,buf);
77 if (getword(date,sizeof(date),&gwarea,'\t')<0 || getword_atoll(&hour,&gwarea,'\t')<0) {
78 debuga(_("There is a broken record or garbage in file %s\n"),wdirname);
79 exit(EXIT_FAILURE);
80 }
81 if (sscanf(date,"%d/%d/%d",&day,&month,&year)!=3) continue;
82 if (day<1 || day>31 || month<1 || month>12 || year>9999) continue;
83 if (hour<0 || hour>=24) continue;
84 daynum=(year*10000)+(month*100)+day;
85 for (dayidx=0 ; dayidx<ndaylist && daynum!=daylist[dayidx] ; dayidx++);
86 if (dayidx>=ndaylist) {
87 if (dayidx>=sizeof(daylist)/sizeof(*daylist)) {
88 debuga(_("Too many different dates in %s\n"),wdirname);
89 exit(EXIT_FAILURE);
90 }
91 daylist[ndaylist++]=daynum;
92 }
93 i=dayidx*24+hour;
94 if ((datetimeby & DATETIME_BYTE)!=0) {
95 colsep=((datetimeby & DATETIME_ELAP)!=0) ? '\t' : '\0';
96 if (getword_atoll(&bytes,&gwarea,colsep)<0) {
97 debuga(_("Invalid number of bytes in file %s\n"),wdirname);
98 exit(EXIT_FAILURE);
99 }
100 tbytes[i]+=bytes;
101 }
102 if ((datetimeby & DATETIME_ELAP)!=0) {
103 if (getword_atoll(&elap,&gwarea,'\0')<0) {
104 debuga(_("Invalid elapsed time in file %s\n"),wdirname);
105 exit(EXIT_FAILURE);
106 }
107 telap[i]+=elap;
108 }
109 }
110 fclose(fp_in);
25697a35 111
9bd92830 112 if((fp_ou=fopen(arqout,"w"))==NULL) {
007905af
FM
113 debuga(_("(totday) Cannot open log file %s\n"),arqout);
114 exit(EXIT_FAILURE);
9bd92830 115 }
25697a35 116
9bd92830
FM
117 for (i=0 ; i<sizeof(tbytes)/sizeof(*tbytes) ; i++) {
118 if (tbytes[i]==0 && telap[i]==0) continue;
119 dayidx=i/24;
120 if (dayidx>sizeof(daylist)/sizeof(*daylist)) continue;
121 hour=i%24;
122 daynum=daylist[dayidx];
123 day=daynum%100;
124 month=(daynum/100)%100;
125 year=daynum/10000;
126 fprintf(fp_ou,"%d/%d/%d\t%d",day,month,year,(int)hour);
127 if ((datetimeby & DATETIME_BYTE)!=0) fprintf(fp_ou,"\t%"PRIu64"",(uint64_t)tbytes[i]);
128 if ((datetimeby & DATETIME_ELAP)!=0) fprintf(fp_ou,"\t%"PRIu64"",(uint64_t)telap[i]);
129 fputs("\n",fp_ou);
130 }
25697a35 131
9bd92830
FM
132 if (fclose(fp_ou)==EOF) {
133 debuga(_("Failed to close file %s - %s\n"),arqout,strerror(errno));
134 exit(EXIT_FAILURE);
135 }
25697a35 136
9bd92830
FM
137 if (unlink(wdirname)==-1) {
138 debuga(_("Cannot delete temporary file %s - %s\n"),wdirname,strerror(errno));
139 exit(EXIT_FAILURE);
140 }
141 return;
25697a35 142}