]> git.ipfire.org Git - thirdparty/sarg.git/blob - topuser.c
Rename configure.in as configure.ac
[thirdparty/sarg.git] / topuser.c
1 /*
2 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
3 * 1998, 2015
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 extern struct globalstatstruct globstat;
31 extern bool smartfilter;
32
33 /*!
34 Save the total number of users. The number is written in sarg-users and set
35 in a global variable for further reference.
36
37 \param totuser The total number of users.
38 */
39 static void set_total_users(int totuser)
40 {
41 char tusr[1024];
42 FILE *fp_ou;
43
44 snprintf(tusr,sizeof(tusr),"%s/sarg-users",outdirname);
45 if((fp_ou=fopen(tusr,"w"))==NULL) {
46 debuga(__FILE__,__LINE__,_("Cannot open file \"%s\": %s\n"),tusr,strerror(errno));
47 exit(EXIT_FAILURE);
48 }
49 fprintf(fp_ou,"%d\n",totuser);
50 if (fclose(fp_ou)==EOF) {
51 debuga(__FILE__,__LINE__,_("Write error in \"%s\": %s\n"),tusr,strerror(errno));
52 exit(EXIT_FAILURE);
53 }
54 globstat.totuser=totuser;
55 }
56
57 void topuser(void)
58 {
59 FILE *fp_in = NULL, *fp_top1 = NULL, *fp_top2 = NULL, *fp_top3 = NULL;
60 long long int ttnbytes=0, ttnacc=0, tnacc=0;
61 long long int tnbytes=0, ttnelap=0, tnelap=0;
62 long long int tnincache=0, tnoucache=0, ttnincache=0, ttnoucache=0;
63 long long int nbytes;
64 long long int nacc;
65 long long int elap, incac, oucac;
66 double perc=0.00;
67 double perc2=0.00;
68 double inperc=0.00, ouperc=0.00;
69 int posicao=0;
70 char olduser[MAX_USER_LEN], csort[MAXLEN];
71 char wger[MAXLEN], top1[MAXLEN], top2[MAXLEN], top3[MAXLEN];
72 char user[MAX_USER_LEN];
73 const char *sfield="-n -k 2,2";
74 const char *order;
75 const char *sort_field;
76 const char *sort_order;
77 char title[80];
78 char *warea;
79 int totuser=0;
80 int topcount=0;
81 int cstatus;
82 struct getwordstruct gwarea;
83 longline line;
84 struct generalitemstruct item;
85 struct userinfostruct *uinfo;
86
87 if (debugz>=LogLevel_Process)
88 debuga(__FILE__,__LINE__,_("Creating top users report...\n"));
89 ntopuser = 0;
90 snprintf(wger,sizeof(wger),"%s/sarg-general",outdirname);
91 if((fp_in=fopen(wger,"r"))==NULL) {
92 debuga(__FILE__,__LINE__,_("Cannot open file \"%s\": %s\n"),wger,strerror(errno));
93 exit(EXIT_FAILURE);
94 }
95
96 snprintf(top2,sizeof(top2),"%s/top.tmp",outdirname);
97 if((fp_top2=fopen(top2,"w"))==NULL) {
98 debuga(__FILE__,__LINE__,_("Cannot open file \"%s\": %s\n"),top2,strerror(errno));
99 exit(EXIT_FAILURE);
100 }
101
102 olduser[0]='\0';
103 totuser=0;
104
105 if ((line=longline_create())==NULL) {
106 debuga(__FILE__,__LINE__,_("Not enough memory to read file \"%s\"\n"),wger);
107 exit(EXIT_FAILURE);
108 }
109
110 while((warea=longline_read(fp_in,line))!=NULL) {
111 ger_read(warea,&item,wger);
112 if(item.total) continue;
113 if(strcmp(olduser,item.user) != 0) {
114 totuser++;
115
116 if (olduser[0] != '\0') {
117 /*
118 This complicated printf is due to Microsoft's inability to comply with any standard. Msvcrt is unable
119 to print a long long int unless it is exactly 64-bits long.
120 */
121 fprintf(fp_top2,"%s\t%"PRIu64"\t%"PRIu64"\t%"PRIu64"\t%"PRIu64"\t%"PRIu64"\n",olduser,(uint64_t)tnbytes,(uint64_t)tnacc,(uint64_t)tnelap,(uint64_t)tnincache,(uint64_t)tnoucache);
122
123 ttnbytes+=tnbytes;
124 ttnacc+=tnacc;
125 ttnelap+=tnelap;
126 ttnincache+=tnincache;
127 ttnoucache+=tnoucache;
128 }
129 strcpy(olduser,item.user);
130 tnbytes=0;
131 tnacc=0;
132 tnelap=0;
133 tnincache=0;
134 tnoucache=0;
135 }
136
137 tnbytes+=item.nbytes;
138 tnacc+=item.nacc;
139 tnelap+=item.nelap;
140 tnincache+=item.incache;
141 tnoucache+=item.oucache;
142 }
143 if (fclose(fp_in)==EOF) {
144 debuga(__FILE__,__LINE__,_("Read error in \"%s\": %s\n"),wger,strerror(errno));
145 exit(EXIT_FAILURE);
146 }
147 longline_destroy(&line);
148
149 if (olduser[0] != '\0') {
150 /*
151 This complicated printf is due to Microsoft's inability to comply with any standard. Msvcrt is unable
152 to print a long long int unless it is exactly 64-bits long.
153 */
154 fprintf(fp_top2,"%s\t%"PRIu64"\t%"PRIu64"\t%"PRIu64"\t%"PRIu64"\t%"PRIu64"\n",olduser,(uint64_t)tnbytes,(uint64_t)tnacc,(uint64_t)tnelap,(uint64_t)tnincache,(uint64_t)tnoucache);
155
156 ttnbytes+=tnbytes;
157 ttnacc+=tnacc;
158 ttnelap+=tnelap;
159 ttnincache+=tnincache;
160 ttnoucache+=tnoucache;
161 }
162 if (fclose(fp_top2)==EOF) {
163 debuga(__FILE__,__LINE__,_("Write error in \"%s\": %s\n"),top2,strerror(errno));
164 exit(EXIT_FAILURE);
165 }
166
167 #ifdef ENABLE_DOUBLE_CHECK_DATA
168 if (ttnacc!=globstat.nacc || ttnbytes!=globstat.nbytes || ttnelap!=globstat.elap ||
169 ttnincache!=globstat.incache || ttnoucache!=globstat.oucache) {
170 debuga(__FILE__,__LINE__,_("Total statistics mismatch when reading \"%s\" to produce the top users\n"),wger);
171 exit(EXIT_FAILURE);
172 }
173 #endif
174
175 set_total_users(totuser);
176
177 if((TopuserSort & TOPUSER_SORT_USER) != 0) {
178 sfield="-k 1,1";
179 sort_field=_("user");
180 } else if((TopuserSort & TOPUSER_SORT_CONNECT) != 0) {
181 sfield="-n -k 3,3";
182 sort_field=_("connect");
183 } else if((TopuserSort & TOPUSER_SORT_TIME) != 0) {
184 sfield="-n -k 4,4";
185 sort_field=pgettext("duration","time");
186 } else {
187 sort_field=_("bytes");
188 }
189
190 if((TopuserSort & TOPUSER_SORT_REVERSE) == 0) {
191 order="";
192 sort_order=_("normal");
193 } else {
194 order="-r";
195 sort_order=_("reverse");
196 }
197
198 snprintf(top1,sizeof(top1),"%s/top",outdirname);
199 if (snprintf(csort,sizeof(csort),"sort -T \"%s\" -t \"\t\" %s %s -o \"%s\" \"%s\"", tmp, order, sfield, top1, top2)>=sizeof(csort)) {
200 debuga(__FILE__,__LINE__,_("Sort command too long when sorting file \"%s\" to \"%s\"\n"),top2,top1);
201 exit(EXIT_FAILURE);
202 }
203 cstatus=system(csort);
204 if (!WIFEXITED(cstatus) || WEXITSTATUS(cstatus)) {
205 debuga(__FILE__,__LINE__,_("sort command return status %d\n"),WEXITSTATUS(cstatus));
206 debuga(__FILE__,__LINE__,_("sort command: %s\n"),csort);
207 exit(EXIT_FAILURE);
208 }
209
210 if((fp_top1=fopen(top1,"r"))==NULL) {
211 debuga(__FILE__,__LINE__,_("Cannot open file \"%s\": %s\n"),top1,strerror(errno));
212 exit(EXIT_FAILURE);
213 }
214
215 if (!KeepTempLog && unlink(top2)) {
216 debuga(__FILE__,__LINE__,_("Cannot delete \"%s\": %s\n"),top2,strerror(errno));
217 exit(EXIT_FAILURE);
218 }
219
220 snprintf(top3,sizeof(top3),"%s/"INDEX_HTML_FILE,outdirname);
221 if((fp_top3=fopen(top3,"w"))==NULL) {
222 debuga(__FILE__,__LINE__,_("Cannot open file \"%s\": %s\n"),top3,strerror(errno));
223 exit(EXIT_FAILURE);
224 }
225
226 snprintf(title,sizeof(title),_("SARG report for %s"),period.text);
227 write_html_header(fp_top3,(IndexTree == INDEX_TREE_DATE) ? 3 : 1,title,HTML_JS_SORTTABLE);
228 fputs("<tr><td class=\"header_c\">",fp_top3);
229 fprintf(fp_top3,_("Period: %s"),period.html);
230 fputs("</td></tr>\n",fp_top3);
231 if ((ReportType & REPORT_TYPE_TOPUSERS) != 0) {
232 fputs("<tr><td class=\"header_c\">",fp_top3);
233 fprintf(fp_top3,_("Sort: %s, %s"),sort_field,sort_order);
234 fputs("</td></tr>\n",fp_top3);
235 fprintf(fp_top3,"<tr><th class=\"header_c\">%s</th></tr>\n",_("Top users"));
236 } else {
237 /* TRANSLATORS: This is the title of the main report page when no
238 * top users list are requested.
239 */
240 fprintf(fp_top3,"<tr><th class=\"header_c\">%s</th></tr>\n",_("Table of content"));
241 }
242 close_html_header(fp_top3);
243
244 if (!indexonly) {
245 fputs("<div class=\"report\"><table cellpadding=\"1\" cellspacing=\"2\">\n",fp_top3);
246 if((ReportType & REPORT_TYPE_TOPSITES) != 0 && !Privacy) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"topsites.html\">%s</a></td></tr>\n",_("Top sites"));
247 if((ReportType & REPORT_TYPE_SITES_USERS) != 0 && !Privacy) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"siteuser.html\">%s</a></td></tr>\n",_("Sites & Users"));
248 if(dansguardian_count) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"dansguardian.html\">%s</a></td></tr>\n",_("DansGuardian"));
249 if(redirector_count) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"redirector.html\">%s</a></td></tr>\n",_("Redirector"));
250 if (is_download()) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"download.html\">%s</a></td></tr>\n",_("Downloads"));
251 if (is_denied()) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"denied.html\">%s</a></td></tr>\n",_("Denied accesses"));
252 if (is_authfail()) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"authfail.html\">%s</a></td></tr>\n",_("Authentication Failures"));
253 if(smartfilter) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"smartfilter.html\">%s</a></td></tr>\n",_("SmartFilter"));
254 if(UserAgentLog[0] != '\0' && useragent_count) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"useragent.html\">%s</a></td></tr>\n",_("Useragent"));
255 fputs("<tr><td></td></tr>\n</table></div>\n",fp_top3);
256 }
257
258 if ((ReportType & REPORT_TYPE_TOPUSERS) == 0) {
259 fputs("</body>\n</html>\n",fp_top3);
260 if (fclose (fp_top3)==EOF) {
261 debuga(__FILE__,__LINE__,_("Write error in \"%s\": %s\n"),top3,strerror(errno));
262 exit(EXIT_FAILURE);
263 }
264 if (debugz>=LogLevel_Process) debugaz(__FILE__,__LINE__,_("No top users report because it is not configured in report_type\n"));
265 return;
266 }
267
268 fputs("<div class=\"report\"><table cellpadding=\"1\" cellspacing=\"2\"",fp_top3);
269 if (SortTableJs[0])
270 fputs(" class=\"sortable\"",fp_top3);
271 fputs(">\n<thead><tr>",fp_top3);
272
273 if((TopUserFields & TOPUSERFIELDS_NUM) != 0)
274 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("NUM"));
275 if((TopUserFields & TOPUSERFIELDS_DATE_TIME) !=0 && (ReportType & REPORT_TYPE_DATE_TIME) != 0 && !indexonly) {
276 fputs("<th class=\"header_l",fp_top3);
277 if (SortTableJs[0]) fputs(" sorttable_nosort",fp_top3);
278 fputs("\"></th>",fp_top3);
279 }
280 if((TopUserFields & TOPUSERFIELDS_USERID) != 0) {
281 fputs("<th class=\"header_l",fp_top3);
282 if (SortTableJs[0]) fputs(" sorttable_alpha",fp_top3);
283 fprintf(fp_top3,"\">%s</th>",_("USERID"));
284 }
285 if((TopUserFields & TOPUSERFIELDS_USERIP) != 0) {
286 fputs("<th class=\"header_l",fp_top3);
287 if (SortTableJs[0]) fputs(" sorttable_alpha",fp_top3);
288 fprintf(fp_top3,"\">%s</th>",_("USERIP"));
289 }
290 if((TopUserFields & TOPUSERFIELDS_CONNECT) != 0)
291 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("CONNECT"));
292 if((TopUserFields & TOPUSERFIELDS_BYTES) != 0)
293 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("BYTES"));
294 if((TopUserFields & TOPUSERFIELDS_SETYB) != 0)
295 fprintf(fp_top3,"<th class=\"header_l\">%%%s</th>",_("BYTES"));
296 if((TopUserFields & TOPUSERFIELDS_IN_CACHE_OUT) != 0)
297 fprintf(fp_top3,"<th class=\"header_c\" colspan=\"2\">%s</th><th style=\"display:none;\"></th>",_("IN-CACHE-OUT"));
298 if((TopUserFields & TOPUSERFIELDS_USED_TIME) != 0)
299 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("ELAPSED TIME"));
300 if((TopUserFields & TOPUSERFIELDS_MILISEC) != 0)
301 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("MILLISEC"));
302 if((TopUserFields & TOPUSERFIELDS_PTIME) != 0)
303 fprintf(fp_top3,"<th class=\"header_l\">%%%s</th>",pgettext("duration","TIME"));
304
305 fputs("</tr></thead>\n",fp_top3);
306
307 greport_prepare();
308
309 ntopuser = 0;
310
311 if ((line=longline_create())==NULL) {
312 debuga(__FILE__,__LINE__,_("Not enough memory to read file \"%s\"\n"),top1);
313 exit(EXIT_FAILURE);
314 }
315
316 while((warea=longline_read(fp_top1,line))!=NULL) {
317 getword_start(&gwarea,warea);
318 if (getword(user,sizeof(user),&gwarea,'\t')<0) {
319 debuga(__FILE__,__LINE__,_("Invalid user in file \"%s\"\n"),top1);
320 exit(EXIT_FAILURE);
321 }
322 if (getword_atoll(&nbytes,&gwarea,'\t')<0) {
323 debuga(__FILE__,__LINE__,_("Invalid number of bytes in file \"%s\"\n"),top1);
324 exit(EXIT_FAILURE);
325 }
326 if (getword_atoll(&nacc,&gwarea,'\t')<0) {
327 debuga(__FILE__,__LINE__,_("Invalid number of accesses in file \"%s\"\n"),top1);
328 exit(EXIT_FAILURE);
329 }
330 if (getword_atoll(&elap,&gwarea,'\t')<0) {
331 debuga(__FILE__,__LINE__,_("Invalid elapsed time in file \"%s\"\n"),top1);
332 exit(EXIT_FAILURE);
333 }
334 if (getword_atoll(&incac,&gwarea,'\t')<0) {
335 debuga(__FILE__,__LINE__,_("Invalid in-cache size in file \"%s\"\n"),top1);
336 exit(EXIT_FAILURE);
337 }
338 if (getword_atoll(&oucac,&gwarea,'\n')<0) {
339 debuga(__FILE__,__LINE__,_("Invalid out-of-cache size in file \"%s\"\n"),top1);
340 exit(EXIT_FAILURE);
341 }
342 if(nacc < 1)
343 continue;
344 ntopuser = 1;
345 if(TopUsersNum > 0 && topcount >= TopUsersNum) break;
346 tnbytes=nbytes;
347 tnelap=elap;
348
349 uinfo=userinfo_find_from_id(user);
350 if (!uinfo) {
351 debuga(__FILE__,__LINE__,_("Unknown user ID %s in file \"%s\"\n"),user,top1);
352 exit(EXIT_FAILURE);
353 }
354 uinfo->topuser=1;
355
356 fputs("<tr>",fp_top3);
357
358 posicao++;
359 if((TopUserFields & TOPUSERFIELDS_NUM) != 0)
360 fprintf(fp_top3,"<td class=\"data\">%d</td>",posicao);
361
362 if (!indexonly) {
363 if((TopUserFields & TOPUSERFIELDS_DATE_TIME) !=0 && (ReportType & REPORT_TYPE_DATE_TIME) != 0) {
364 fputs("<td class=\"data2\">",fp_top3);
365 #ifdef HAVE_GD
366 if(Graphs && GraphFont[0]!='\0') {
367 greport_day(uinfo);
368 //fprintf(fp_top3,"<a href=\"%s/graph_day.png\"><img src=\"%s/graph.png\" title=\"%s\" alt=\"G\"></a>&nbsp;",uinfo->filename,ImageFile,_("Graphic"));
369 fprintf(fp_top3,"<a href=\"%s/graph.html\"><img src=\"%s/graph.png\" title=\"%s\" alt=\"G\"></a>&nbsp;",uinfo->filename,ImageFile,_("Graphic"));
370 }
371 #endif
372 report_day(uinfo);
373 fprintf(fp_top3,"<a href=\"%s/d%s.html\"><img src=\"%s/datetime.png\" title=\"%s\" alt=\"T\"></a></td>",uinfo->filename,uinfo->filename,ImageFile,_("date/time report"));
374 day_deletefile(uinfo);
375 }
376 }
377 if((TopUserFields & TOPUSERFIELDS_USERID) != 0) {
378 if((ReportType & REPORT_TYPE_USERS_SITES) == 0 || indexonly)
379 fprintf(fp_top3,"<td class=\"data2\">%s</td>",uinfo->label);
380 else
381 fprintf(fp_top3,"<td class=\"data2\"><a href=\"%s/%s.html\">%s</a></td>",uinfo->filename,uinfo->filename,uinfo->label);
382 }
383 if((TopUserFields & TOPUSERFIELDS_USERIP) != 0) {
384 fprintf(fp_top3,"<td class=\"data2\">%s</td>",uinfo->ip);
385 }
386 if((TopUserFields & TOPUSERFIELDS_CONNECT) != 0) {
387 fputs("<td class=\"data\"",fp_top3);
388 if (SortTableJs[0]) fprintf(fp_top3," sorttable_customkey=\"%"PRId64"\"",(int64_t)nacc);
389 fprintf(fp_top3,">%s</td>",fixnum(nacc,1));
390 }
391 if((TopUserFields & TOPUSERFIELDS_BYTES) != 0) {
392 fputs("<td class=\"data\"",fp_top3);
393 if (SortTableJs[0]) fprintf(fp_top3," sorttable_customkey=\"%"PRId64"\"",(int64_t)tnbytes);
394 fprintf(fp_top3,">%s</td>",fixnum(tnbytes,1));
395 }
396 if((TopUserFields & TOPUSERFIELDS_SETYB) != 0) {
397 perc=(ttnbytes) ? tnbytes * 100. / ttnbytes : 0.;
398 fprintf(fp_top3,"<td class=\"data\">%3.2lf%%</td>",perc);
399 }
400 if((TopUserFields & TOPUSERFIELDS_IN_CACHE_OUT) != 0) {
401 inperc=(tnbytes) ? incac * 100. / tnbytes : 0.;
402 ouperc=(tnbytes) ? oucac * 100. / tnbytes : 0.;
403 fprintf(fp_top3,"<td class=\"data\">%3.2lf%%</td><td class=\"data\">%3.2lf%%</td>",inperc,ouperc);
404 #ifdef ENABLE_DOUBLE_CHECK_DATA
405 if ((inperc!=0. || ouperc!=0.) && fabs(inperc+ouperc-100.)>=0.01) {
406 debuga(__FILE__,__LINE__,_("The total of the in-cache and cache-miss is not 100%% at position %d (user %s)\n"),posicao,uinfo->label);
407 }
408 #endif
409 }
410 if((TopUserFields & TOPUSERFIELDS_USED_TIME) != 0) {
411 fputs("<td class=\"data\"",fp_top3);
412 if (SortTableJs[0]) fprintf(fp_top3," sorttable_customkey=\"%"PRId64"\"",(int64_t)tnelap);
413 fprintf(fp_top3,">%s</td>",buildtime(tnelap));
414 }
415 if((TopUserFields & TOPUSERFIELDS_MILISEC) != 0) {
416 fputs("<td class=\"data\"",fp_top3);
417 if (SortTableJs[0]) fprintf(fp_top3," sorttable_customkey=\"%"PRId64"\"",(int64_t)tnelap);
418 fprintf(fp_top3,">%s</td>",fixnum2(tnelap,1));
419 }
420 if((TopUserFields & TOPUSERFIELDS_PTIME) != 0) {
421 perc2=(ttnelap) ? elap * 100. / ttnelap : 0.;
422 fprintf(fp_top3,"<td class=\"data\">%3.2lf%%</td>",perc2);
423 }
424
425 fputs("</tr>\n",fp_top3);
426
427 topcount++;
428 }
429 if (fclose(fp_top1)==EOF) {
430 debuga(__FILE__,__LINE__,_("Read error in \"%s\": %s\n"),top1,strerror(errno));
431 exit(EXIT_FAILURE);
432 }
433 if (!KeepTempLog && unlink(top1)) {
434 debuga(__FILE__,__LINE__,_("Cannot delete \"%s\": %s\n"),top1,strerror(errno));
435 exit(EXIT_FAILURE);
436 }
437 longline_destroy(&line);
438
439 if((TopUserFields & TOPUSERFIELDS_TOTAL) != 0) {
440 fputs("<tfoot><tr>",fp_top3);
441 if((TopUserFields & TOPUSERFIELDS_NUM) != 0)
442 fputs("<td></td>",fp_top3);
443 if((TopUserFields & TOPUSERFIELDS_DATE_TIME) !=0 && (ReportType & REPORT_TYPE_DATE_TIME) != 0 && !indexonly)
444 fputs("<td></td>",fp_top3);
445 if((TopUserFields & TOPUSERFIELDS_USERIP) != 0)
446 fprintf(fp_top3,"<th class=\"header_l\" colspan=\"2\">%s</th>",_("TOTAL"));
447 else
448 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("TOTAL"));
449
450 if((TopUserFields & TOPUSERFIELDS_CONNECT) != 0)
451 fprintf(fp_top3,"<th class=\"header_r\">%s</th>",fixnum(ttnacc,1));
452 if((TopUserFields & TOPUSERFIELDS_BYTES) != 0)
453 fprintf(fp_top3,"<th class=\"header_r\">%15s</th>",fixnum(ttnbytes,1));
454 if((TopUserFields & TOPUSERFIELDS_SETYB) != 0)
455 fputs("<td></td>",fp_top3);
456 if((TopUserFields & TOPUSERFIELDS_IN_CACHE_OUT) != 0)
457 {
458 inperc=(ttnbytes) ? ttnincache * 100. / ttnbytes : 0.;
459 ouperc=(ttnbytes) ? ttnoucache *100. / ttnbytes : 0.;
460 fprintf(fp_top3,"<th class=\"header_r\">%3.2lf%%</th><th class=\"header_r\">%3.2lf%%</th>",inperc,ouperc);
461 #ifdef ENABLE_DOUBLE_CHECK_DATA
462 if (fabs(inperc+ouperc-100.)>=0.01) {
463 debuga(__FILE__,__LINE__,_("The total of the in-cache and cache-miss is not 100%%\n"));
464 }
465 #endif
466 }
467 if((TopUserFields & TOPUSERFIELDS_USED_TIME) != 0)
468 fprintf(fp_top3,"<th class=\"header_r\">%s</th>",buildtime(ttnelap));
469 if((TopUserFields & TOPUSERFIELDS_MILISEC) != 0)
470 fprintf(fp_top3,"<th class=\"header_r\">%s</th>",fixnum2(ttnelap,1));
471
472 fputs("</tr>\n",fp_top3);
473 }
474 greport_cleanup();
475
476 if(ntopuser && (TopUserFields & TOPUSERFIELDS_AVERAGE) != 0) {
477 fputs("<tr>",fp_top3);
478 if((TopUserFields & TOPUSERFIELDS_NUM) != 0)
479 fputs("<td></td>",fp_top3);
480 if((TopUserFields & TOPUSERFIELDS_DATE_TIME) !=0 && (ReportType & REPORT_TYPE_DATE_TIME) != 0 && !indexonly)
481 fputs("<td></td>",fp_top3);
482 if((TopUserFields & TOPUSERFIELDS_USERIP) != 0)
483 fprintf(fp_top3,"<th class=\"header_l\" colspan=\"2\">%s</th>",_("AVERAGE"));
484 else
485 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("AVERAGE"));
486
487 if((TopUserFields & TOPUSERFIELDS_CONNECT) != 0)
488 fprintf(fp_top3,"<th class=\"header_r\">%s</th>",fixnum(ttnacc/totuser,1));
489 if((TopUserFields & TOPUSERFIELDS_BYTES) != 0) {
490 tnbytes=(totuser) ? ttnbytes / totuser : 0;
491 fprintf(fp_top3,"<th class=\"header_r\">%15s</th>",fixnum(tnbytes,1));
492 }
493 if((TopUserFields & TOPUSERFIELDS_SETYB) != 0)
494 fputs("<td></td>",fp_top3);
495 if((TopUserFields & TOPUSERFIELDS_IN_CACHE_OUT) != 0)
496 fputs("<td></td><td></td>",fp_top3);
497 if((TopUserFields & TOPUSERFIELDS_USED_TIME) != 0)
498 fprintf(fp_top3,"<th class=\"header_r\">%s</th>",buildtime(ttnelap/totuser));
499 if((TopUserFields & TOPUSERFIELDS_MILISEC) != 0)
500 fprintf(fp_top3,"<th class=\"header_r\">%s</th>",fixnum2(ttnelap/totuser,1));
501 fputs("</tr></tfoot>\n",fp_top3);
502 }
503
504 fputs("</table></div>\n",fp_top3);
505 write_html_trailer(fp_top3);
506 if (fclose(fp_top3)==EOF) {
507 debuga(__FILE__,__LINE__,_("Write error in \"%s\": %s\n"),top3,strerror(errno));
508 exit(EXIT_FAILURE);
509 }
510
511 return;
512 }