]> git.ipfire.org Git - thirdparty/sarg.git/blame - topuser.c
Delete unused files from the directory containing the user report
[thirdparty/sarg.git] / topuser.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
32e71fa4 30void topuser(void)
25697a35
GS
31{
32
491b862f 33 FILE *fp_in = NULL, *fp_ou = NULL, *fp_top1 = NULL, *fp_top2 = NULL, *fp_top3 = NULL;
25697a35
GS
34 long long int ttnbytes=0, ttnacc=0, tnacc=0;
35 long long int tnbytes=0, ttnelap=0, tnelap=0;
36 long long int tnincache=0, tnoucache=0, ttnincache=0, ttnoucache=0;
6e792ade
FM
37 long long int nbytes;
38 long long int nacc;
39 long long int elap, incac, oucac;
9f20cdae
FM
40 double perc=0.00;
41 double perc2=0.00;
42 double inperc=0.00, ouperc=0.00;
25697a35 43 int posicao=0;
fa6552b0 44 char olduser[MAX_USER_LEN], csort[MAXLEN];
25697a35 45 char wger[MAXLEN], top1[MAXLEN], top2[MAXLEN], top3[MAXLEN];
2240dcea 46 char user[MAX_USER_LEN], tusr[MAXLEN];
25697a35 47 char ipantes[MAXLEN], nameantes[MAXLEN];
f2ec8c75 48 const char *sfield="-n -k 2,2";
15d5372b
FM
49 const char *order;
50 const char *sort_field;
51 const char *sort_order;
c0ec9cc7 52 char title[80];
ac422f9b 53 char *warea;
25697a35
GS
54 int totuser=0;
55 int topcount=0;
456d78a5 56 int cstatus;
9c7c6346 57 struct getwordstruct gwarea;
afaa3b67 58 longline line;
2240dcea 59 struct generalitemstruct item;
f2ec8c75 60 const struct userinfostruct *uinfo;
25697a35
GS
61
62 ipantes[0]='\0';
63 nameantes[0]='\0';
64
d6e703cc 65 ntopuser = 0;
13a19c1a 66 snprintf(wger,sizeof(wger),"%s/sarg-general",outdirname);
25697a35 67 if((fp_in=fopen(wger,"r"))==NULL) {
fcdc0918 68 debuga(_("(topuser) Cannot open file %s\n"),wger);
06b39c87 69 exit(EXIT_FAILURE);
25697a35
GS
70 }
71
13a19c1a 72 snprintf(top2,sizeof(top2),"%s/top.tmp",outdirname);
25697a35 73 if((fp_top2=fopen(top2,"w"))==NULL) {
fcdc0918 74 debuga(_("(topuser) Cannot open file %s\n"),top2);
06b39c87 75 exit(EXIT_FAILURE);
25697a35
GS
76 }
77
fb7c5f27
FM
78 olduser[0]='\0';
79 totuser=0;
25697a35 80
afaa3b67 81 if ((line=longline_create())==NULL) {
10210234 82 debuga(_("Not enough memory to read the file %s\n"),wger);
06b39c87 83 exit(EXIT_FAILURE);
ac422f9b
FM
84 }
85
afaa3b67 86 while((warea=longline_read(fp_in,line))!=NULL) {
2240dcea
FM
87 ger_read(warea,&item,wger);
88 if(item.total) continue;
89 if(strcmp(olduser,item.user) != 0) {
fb7c5f27
FM
90 totuser++;
91
92 if (olduser[0] != '\0') {
f16ba15b
FM
93 /*
94 This complicated printf is due to Microsoft's inability to comply with any standard. Msvcrt is unable
95 to print a long long int unless it is exactly 64-bits long.
96 */
97 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);
fb7c5f27
FM
98
99 ttnbytes+=tnbytes;
100 ttnacc+=tnacc;
101 ttnelap+=tnelap;
102 ttnincache+=tnincache;
103 ttnoucache+=tnoucache;
104 }
2240dcea 105 strcpy(olduser,item.user);
25697a35
GS
106 tnbytes=0;
107 tnacc=0;
4157aa09 108 tnelap=0;
25697a35
GS
109 tnincache=0;
110 tnoucache=0;
111 }
112
2240dcea
FM
113 tnbytes+=item.nbytes;
114 tnacc+=item.nacc;
115 tnelap+=item.nelap;
116 tnincache+=item.incache;
117 tnoucache+=item.oucache;
25697a35 118 }
9f20cdae 119 fclose(fp_in);
afaa3b67 120 longline_destroy(&line);
25697a35 121
fb7c5f27 122 if (olduser[0] != '\0') {
f16ba15b
FM
123 /*
124 This complicated printf is due to Microsoft's inability to comply with any standard. Msvcrt is unable
125 to print a long long int unless it is exactly 64-bits long.
126 */
127 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);
fb7c5f27
FM
128
129 ttnbytes+=tnbytes;
130 ttnacc+=tnacc;
131 ttnelap+=tnelap;
132 ttnincache+=tnincache;
133 ttnoucache+=tnoucache;
fb7c5f27 134 }
9f20cdae 135 fclose(fp_top2);
25697a35 136
15d5372b 137 if((TopuserSort & TOPUSER_SORT_USER) != 0) {
f2ec8c75 138 sfield="-k 1,1";
15d5372b
FM
139 sort_field=_("user");
140 } else if((TopuserSort & TOPUSER_SORT_CONNECT) != 0) {
f2ec8c75 141 sfield="-n -k 3,3";
15d5372b
FM
142 sort_field=_("connect");
143 } else if((TopuserSort & TOPUSER_SORT_TIME) != 0) {
f2ec8c75 144 sfield="-n -k 4,4";
15d5372b
FM
145 sort_field=_("time");
146 } else {
147 sort_field=_("bytes");
148 }
25697a35 149
15d5372b 150 if((TopuserSort & TOPUSER_SORT_REVERSE) == 0) {
f2ec8c75 151 order="";
15d5372b
FM
152 sort_order=_("normal");
153 } else {
154 order="-r";
155 sort_order=_("reverse");
156 }
25697a35 157
13a19c1a 158 snprintf(top1,sizeof(top1),"%s/top",outdirname);
4e302ff5 159 sprintf(csort,"sort -T \"%s\" %s %s -o \"%s\" \"%s\"", tmp, order, sfield, top1, top2);
456d78a5
FM
160 cstatus=system(csort);
161 if (!WIFEXITED(cstatus) || WEXITSTATUS(cstatus)) {
10210234
FM
162 debuga(_("sort command return status %d\n"),WEXITSTATUS(cstatus));
163 debuga(_("sort command: %s\n"),csort);
06b39c87 164 exit(EXIT_FAILURE);
456d78a5 165 }
25697a35 166
fb7c5f27 167 if((fp_top1=fopen(top1,"r"))==NULL) {
fcdc0918 168 debuga(_("(topuser) Cannot open file %s\n"),top1);
06b39c87 169 exit(EXIT_FAILURE);
fb7c5f27
FM
170 }
171
9f20cdae
FM
172 unlink(top2);
173
13a19c1a 174 snprintf(top3,sizeof(top3),"%s/index.html",outdirname);
fb7c5f27 175 if((fp_top3=fopen(top3,"w"))==NULL) {
fcdc0918 176 debuga(_("(topuser) Cannot open file %s\n"),top3);
06b39c87 177 exit(EXIT_FAILURE);
fb7c5f27
FM
178 }
179
fa6552b0 180 snprintf(title,sizeof(title),_("SARG report for %s"),period.text);
2e96438d 181 write_html_header(fp_top3,(IndexTree == INDEX_TREE_DATE) ? 3 : 1,title,HTML_JS_SORTTABLE);
fcdc0918 182 fputs("<tr><td class=\"header_c\">",fp_top3);
fd46f082 183 fprintf(fp_top3,_("Period: %s"),period.html);
fcdc0918 184 fputs("</td></tr>\n",fp_top3);
15d5372b
FM
185 fputs("<tr><td class=\"header_c\">",fp_top3);
186 fprintf(fp_top3,_("Sort: %s, %s"),sort_field,sort_order);
187 fputs("</td></tr>\n",fp_top3);
fcdc0918 188 fprintf(fp_top3,"<tr><th class=\"header_c\">%s</th></tr>\n",_("Top users"));
c0ec9cc7 189 close_html_header(fp_top3);
9f20cdae 190
c0ec9cc7 191 fputs("<div class=\"report\"><table cellpadding=\"1\" cellspacing=\"2\">\n",fp_top3);
25697a35 192
fcdc0918 193 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"));
c36c7384
FM
194 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"));
195 if(dansguardian_count) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"dansguardian.html\">%s</a></td></tr>\n",_("DansGuardian"));
987e8375 196 if(squidguard_count) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"redirector.html\">%s</a></td></tr>\n",_("Redirector"));
c36c7384 197 if ((ReportType & REPORT_TYPE_DOWNLOADS) != 0 && download_count && !Privacy && ndownload) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"download.html\">%s</a></td></tr>\n",_("Downloads"));
68c0b61b 198 if ((ReportType & REPORT_TYPE_DENIED) != 0 && denied_count && !Privacy) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"denied.html\">%s</a></td></tr>\n",_("Denied accesses"));
c36c7384
FM
199 if ((ReportType & REPORT_TYPE_AUTH_FAILURES) != 0 && authfail_count && !Privacy) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"authfail.html\">%s</a></td></tr>\n",_("Authentication Failures"));
200 if(smartfilter) fprintf(fp_top3,"<tr><td class=\"link\" colspan=\"0\"><a href=\"smartfilter.html\">%s</a></td></tr>\n",_("SmartFilter"));
c0ec9cc7 201 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"));
5a1b55b7 202 fputs("<tr><td></td></tr>\n</table></div>\n",fp_top3);
25697a35 203
085c1e1f 204 if ((ReportType & REPORT_TYPE_TOPUSERS) == 0) {
491b862f 205 fputs("</body>\n</html>\n",fp_top3);
9f20cdae 206 fclose (fp_top3);
491b862f
GS
207 return;
208 }
fb7c5f27 209
ea275279
FM
210 fputs("<div class=\"report\"><table cellpadding=\"1\" cellspacing=\"2\"",fp_top3);
211 if (SortTableJs[0])
212 fputs(" class=\"sortable\"",fp_top3);
213 fputs(">\n<thead><tr>",fp_top3);
9f20cdae
FM
214
215 if((TopUserFields & TOPUSERFIELDS_NUM) != 0)
c36c7384 216 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("NUM"));
ea275279
FM
217 if((TopUserFields & TOPUSERFIELDS_DATE_TIME) !=0 && (ReportType & REPORT_TYPE_DATE_TIME) != 0) {
218 fputs("<th class=\"header_l",fp_top3);
219 if (SortTableJs[0]) fputs(" sorttable_nosort",fp_top3);
220 fputs("\"></th>",fp_top3);
221 }
222 if((TopUserFields & TOPUSERFIELDS_USERID) != 0) {
223 fputs("<th class=\"header_l",fp_top3);
224 if (SortTableJs[0]) fputs(" sorttable_alpha",fp_top3);
225 fprintf(fp_top3,"\">%s</th>",_("USERID"));
226 }
9f20cdae 227 if((TopUserFields & TOPUSERFIELDS_CONNECT) != 0)
c36c7384 228 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("CONNECT"));
9f20cdae 229 if((TopUserFields & TOPUSERFIELDS_BYTES) != 0)
c36c7384 230 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("BYTES"));
9f20cdae 231 if((TopUserFields & TOPUSERFIELDS_SETYB) != 0)
c36c7384 232 fprintf(fp_top3,"<th class=\"header_l\">%%%s</th>",_("BYTES"));
9f20cdae 233 if((TopUserFields & TOPUSERFIELDS_IN_CACHE_OUT) != 0)
ea275279 234 fprintf(fp_top3,"<th class=\"header_c\" colspan=\"2\">%s</th><th style=\"display:none;\"></th>",_("IN-CACHE-OUT"));
9f20cdae 235 if((TopUserFields & TOPUSERFIELDS_USED_TIME) != 0)
c36c7384 236 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("ELAPSED TIME"));
9f20cdae 237 if((TopUserFields & TOPUSERFIELDS_MILISEC) != 0)
156404e9 238 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("MILLISEC"));
9f20cdae 239 if((TopUserFields & TOPUSERFIELDS_PTIME) != 0)
c36c7384 240 fprintf(fp_top3,"<th class=\"header_l\">%%%s</th>",_("TIME"));
9f20cdae 241
ea275279 242 fputs("</tr></thead>\n",fp_top3);
25697a35 243
d6e703cc 244 ntopuser = 0;
25697a35 245
afaa3b67 246 if ((line=longline_create())==NULL) {
10210234 247 debuga(_("Not enough memory to read the downloaded files\n"));
06b39c87 248 exit(EXIT_FAILURE);
ac422f9b
FM
249 }
250
afaa3b67 251 while((warea=longline_read(fp_top1,line))!=NULL) {
9c7c6346
FM
252 getword_start(&gwarea,warea);
253 if (getword(user,sizeof(user),&gwarea,'\t')<0) {
10210234 254 debuga(_("There is a broken user in file %s\n"),top1);
06b39c87 255 exit(EXIT_FAILURE);
05b90947 256 }
6e792ade 257 if (getword_atoll(&nbytes,&gwarea,'\t')<0) {
10210234 258 debuga(_("There is a broken number of bytes in file %s\n"),top1);
06b39c87 259 exit(EXIT_FAILURE);
05b90947 260 }
6e792ade 261 if (getword_atoll(&nacc,&gwarea,'\t')<0) {
10210234 262 debuga(_("There is a broken number of access in file %s\n"),top1);
06b39c87 263 exit(EXIT_FAILURE);
05b90947 264 }
6e792ade 265 if (getword_atoll(&elap,&gwarea,'\t')<0) {
10210234 266 debuga(_("There is a broken elpased time in file %s\n"),top1);
06b39c87 267 exit(EXIT_FAILURE);
05b90947 268 }
6e792ade 269 if (getword_atoll(&incac,&gwarea,'\t')<0) {
10210234 270 debuga(_("There is a broken in-cache size in file %s\n"),top1);
06b39c87 271 exit(EXIT_FAILURE);
05b90947 272 }
6e792ade 273 if (getword_atoll(&oucac,&gwarea,'\n')<0) {
10210234 274 debuga(_("There is a broken out-of-cache size in file %s\n"),top1);
06b39c87 275 exit(EXIT_FAILURE);
05b90947 276 }
9f20cdae 277 if(nacc < 1)
d6e703cc 278 continue;
05b90947 279 ntopuser = 1;
c0ec9cc7 280 if(TopUsersNum > 0 && topcount >= TopUsersNum) break;
6e792ade 281 tnbytes=nbytes;
6e792ade 282 tnelap=elap;
25697a35 283
f2ec8c75
FM
284 uinfo=userinfo_find_from_id(user);
285 if (!uinfo) {
10210234 286 debuga(_("Unknown user ID %s in file %s\n"),user,top1);
06b39c87 287 exit(EXIT_FAILURE);
25697a35 288 }
dfb337be 289
9f20cdae 290 fputs("<tr>",fp_top3);
25697a35 291
9f20cdae
FM
292 posicao++;
293 if((TopUserFields & TOPUSERFIELDS_NUM) != 0)
294 fprintf(fp_top3,"<td class=\"data\">%d</td>",posicao);
25697a35 295
9f20cdae 296 if((TopUserFields & TOPUSERFIELDS_DATE_TIME) !=0 && (ReportType & REPORT_TYPE_DATE_TIME) != 0) {
9f20cdae 297 fputs("<td class=\"data2\">",fp_top3);
25697a35 298#ifdef HAVE_GD
3becf85c 299 if(Graphs && GraphFont[0]!='\0') {
7f2382f6
FM
300 //fprintf(fp_top3,"<a href=\"%s/graph_day.png\"><img src=\"%s/graph.png\" title=\"%s\" alt=\"G\"></a>&nbsp;",uinfo->filename,ImageFile,_("Graphic"));
301 fprintf(fp_top3,"<a href=\"%s/graph.html\"><img src=\"%s/graph.png\" title=\"%s\" alt=\"G\"></a>&nbsp;",uinfo->filename,ImageFile,_("Graphic"));
9f20cdae 302 }
25697a35 303#endif
1b81f396 304 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"));
9f20cdae 305 } else {
d5d021c5 306 sprintf(val1,"%s/d%s.html",outdirname,uinfo->filename);
9f20cdae 307 unlink(val1);
25697a35 308 }
9f20cdae
FM
309 if((TopUserFields & TOPUSERFIELDS_USERID) != 0) {
310 if((ReportType & REPORT_TYPE_USERS_SITES) == 0)
311 fprintf(fp_top3,"<td class=\"data2\">%s</td>",name);
312 else
f2ec8c75 313 fprintf(fp_top3,"<td class=\"data2\"><a href=\"%s/%s.html\">%s</a></td>",uinfo->filename,uinfo->filename,uinfo->label);
25697a35 314 }
ea275279
FM
315 if((TopUserFields & TOPUSERFIELDS_CONNECT) != 0) {
316 fputs("<td class=\"data\"",fp_top3);
317 if (SortTableJs[0]) fprintf(fp_top3," sorttable_customkey=\"%"PRId64"\"",(int64_t)nacc);
318 fprintf(fp_top3,">%s</td>",fixnum(nacc,1));
319 }
320 if((TopUserFields & TOPUSERFIELDS_BYTES) != 0) {
321 fputs("<td class=\"data\"",fp_top3);
322 if (SortTableJs[0]) fprintf(fp_top3," sorttable_customkey=\"%"PRId64"\"",(int64_t)tnbytes);
323 fprintf(fp_top3,">%s</td>",fixnum(tnbytes,1));
324 }
9f20cdae
FM
325 if((TopUserFields & TOPUSERFIELDS_SETYB) != 0) {
326 perc=(ttnbytes) ? tnbytes * 100. / ttnbytes : 0.;
327 fprintf(fp_top3,"<td class=\"data\">%3.2lf%%</td>",perc);
25697a35 328 }
9f20cdae
FM
329 if((TopUserFields & TOPUSERFIELDS_IN_CACHE_OUT) != 0) {
330 inperc=(tnbytes) ? incac * 100. / tnbytes : 0.;
331 ouperc=(tnbytes) ? oucac * 100. / tnbytes : 0.;
332 fprintf(fp_top3,"<td class=\"data\">%3.2lf%%</td><td class=\"data\">%3.2lf%%</td>",inperc,ouperc);
04a01ed3
FM
333#ifdef ENABLE_DOUBLE_CHECK_DATA
334 if (fabs(inperc+ouperc-100.)>=0.01) {
a1136ab4 335 debuga(_("The total of the in-cache and cache-miss is not 100%% at position %d (user %s)\n"),posicao,uinfo->label);
04a01ed3
FM
336 }
337#endif
25697a35 338 }
ea275279
FM
339 if((TopUserFields & TOPUSERFIELDS_USED_TIME) != 0) {
340 fputs("<td class=\"data\"",fp_top3);
341 if (SortTableJs[0]) fprintf(fp_top3," sorttable_customkey=\"%"PRId64"\"",(int64_t)tnelap);
342 fprintf(fp_top3,">%s</td>",buildtime(tnelap));
343 }
32b1f88e
FM
344 if((TopUserFields & TOPUSERFIELDS_MILISEC) != 0) {
345 fputs("<td class=\"data\"",fp_top3);
346 if (SortTableJs[0]) fprintf(fp_top3," sorttable_customkey=\"%"PRId64"\"",(int64_t)tnelap);
347 fprintf(fp_top3,">%s</td>",fixnum2(tnelap,1));
348 }
9f20cdae
FM
349 if((TopUserFields & TOPUSERFIELDS_PTIME) != 0) {
350 perc2=(ttnelap) ? elap * 100. / ttnelap : 0.;
351 fprintf(fp_top3,"<td class=\"data\">%3.2lf%%</td>",perc2);
dfb337be 352 }
25697a35 353
9f20cdae 354 fputs("</tr>\n",fp_top3);
25697a35
GS
355
356 topcount++;
25697a35 357 }
c0ec9cc7
FM
358 fclose(fp_top1);
359 unlink(top1);
afaa3b67 360 longline_destroy(&line);
25697a35 361
9f20cdae 362 if((TopUserFields & TOPUSERFIELDS_TOTAL) != 0) {
ea275279 363 fputs("<tfoot><tr>",fp_top3);
9f20cdae
FM
364 if((TopUserFields & TOPUSERFIELDS_NUM) != 0)
365 fputs("<td></td>",fp_top3);
366 if((TopUserFields & TOPUSERFIELDS_DATE_TIME) !=0 && (ReportType & REPORT_TYPE_DATE_TIME) != 0)
367 fputs("<td></td>",fp_top3);
c36c7384 368 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("TOTAL"));
9f20cdae
FM
369
370 if((TopUserFields & TOPUSERFIELDS_CONNECT) != 0)
b18ce4a0 371 fprintf(fp_top3,"<th class=\"header_r\">%s</th>",fixnum(ttnacc,1));
9f20cdae 372 if((TopUserFields & TOPUSERFIELDS_BYTES) != 0)
b18ce4a0 373 fprintf(fp_top3,"<th class=\"header_r\">%15s</th>",fixnum(ttnbytes,1));
9f20cdae
FM
374 if((TopUserFields & TOPUSERFIELDS_SETYB) != 0)
375 fputs("<td></td>",fp_top3);
376 if((TopUserFields & TOPUSERFIELDS_IN_CACHE_OUT) != 0)
377 {
378 inperc=(ttnbytes) ? ttnincache * 100. / ttnbytes : 0.;
379 ouperc=(ttnbytes) ? ttnoucache *100. / ttnbytes : 0.;
b18ce4a0 380 fprintf(fp_top3,"<th class=\"header_r\">%3.2lf%%</th><th class=\"header_r\">%3.2lf%%</th>",inperc,ouperc);
04a01ed3
FM
381#ifdef ENABLE_DOUBLE_CHECK_DATA
382 if (fabs(inperc+ouperc-100.)>=0.01) {
a1136ab4 383 debuga(_("The total of the in-cache and cache-miss is not 100%%\n"));
04a01ed3
FM
384 }
385#endif
9f20cdae
FM
386 }
387 if((TopUserFields & TOPUSERFIELDS_USED_TIME) != 0)
b18ce4a0 388 fprintf(fp_top3,"<th class=\"header_r\">%s</th>",buildtime(ttnelap));
9f20cdae 389 if((TopUserFields & TOPUSERFIELDS_MILISEC) != 0)
b18ce4a0 390 fprintf(fp_top3,"<th class=\"header_r\">%s</th>",fixnum2(ttnelap,1));
9f20cdae
FM
391
392 fputs("</tr>\n",fp_top3);
25697a35
GS
393 }
394
9f20cdae
FM
395 if(ntopuser && (TopUserFields & TOPUSERFIELDS_AVERAGE) != 0) {
396 fputs("<tr>",fp_top3);
397 if((TopUserFields & TOPUSERFIELDS_NUM) != 0)
398 fputs("<td></td>",fp_top3);
399 if((TopUserFields & TOPUSERFIELDS_DATE_TIME) !=0 && (ReportType & REPORT_TYPE_DATE_TIME) != 0)
400 fputs("<td></td>",fp_top3);
c36c7384 401 fprintf(fp_top3,"<th class=\"header_l\">%s</th>",_("AVERAGE"));
9f20cdae
FM
402
403 if((TopUserFields & TOPUSERFIELDS_CONNECT) != 0)
b18ce4a0 404 fprintf(fp_top3,"<th class=\"header_r\">%s</th>",fixnum(ttnacc/totuser,1));
9f20cdae
FM
405 if((TopUserFields & TOPUSERFIELDS_BYTES) != 0) {
406 tnbytes=(totuser) ? ttnbytes / totuser : 0;
b18ce4a0 407 fprintf(fp_top3,"<th class=\"header_r\">%15s</th>",fixnum(tnbytes,1));
9f20cdae
FM
408 }
409 if((TopUserFields & TOPUSERFIELDS_SETYB) != 0)
410 fputs("<td></td>",fp_top3);
411 if((TopUserFields & TOPUSERFIELDS_IN_CACHE_OUT) != 0)
412 fputs("<td></td><td></td>",fp_top3);
413 if((TopUserFields & TOPUSERFIELDS_USED_TIME) != 0)
b18ce4a0 414 fprintf(fp_top3,"<th class=\"header_r\">%s</th>",buildtime(ttnelap/totuser));
9f20cdae 415 if((TopUserFields & TOPUSERFIELDS_MILISEC) != 0)
b18ce4a0 416 fprintf(fp_top3,"<th class=\"header_r\">%s</th>",fixnum2(ttnelap/totuser,1));
ea275279 417 fputs("</tr></tfoot>\n",fp_top3);
25697a35
GS
418 }
419
c0ec9cc7 420 fputs("</table></div>\n",fp_top3);
fa6552b0
FM
421 if (write_html_trailer(fp_top3)<0)
422 debuga(_("Write error in top user list %s\n"),top3);
423 if (fclose(fp_top3)==EOF)
424 debuga(_("Failed to close the top user list %s - %s\n"),top3,strerror(errno));
25697a35 425
13a19c1a 426 snprintf(tusr,sizeof(tusr),"%s/sarg-users",outdirname);
25697a35 427 if((fp_ou=fopen(tusr,"w"))==NULL) {
fcdc0918 428 debuga(_("(topuser) Cannot open file %s\n"),tusr);
06b39c87 429 exit(EXIT_FAILURE);
25697a35 430 }
d6e703cc 431 fprintf(fp_ou,"%d\n",totuser);
13a19c1a
FM
432 if (fclose(fp_ou)==EOF)
433 debuga(_("Failed to close file %s - %s\n"),tusr,strerror(errno));
25697a35
GS
434
435 return;
436}