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