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