-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvarious.c
565 lines (490 loc) · 12.8 KB
/
various.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
/*
** ATOP - System & Process Monitor
**
** The program 'atop' offers the possibility to view the activity of
** the system on system-level as well as process-level.
**
** This source-file contains various functions to a.o. format the
** time-of-day, the cpu-time consumption and the memory-occupation.
** ==========================================================================
** Author: Gerlof Langeveld
** E-mail: [email protected]
** Date: November 1996
** LINUX-port: June 2000
** --------------------------------------------------------------------------
** Copyright (C) 2000-2010 Gerlof Langeveld
**
** This program is free software; you can redistribute it and/or modify it
** under the terms of the GNU General Public License as published by the
** Free Software Foundation; either version 2, or (at your option) any
** later version.
**
** This program is distributed in the hope that it will be useful, but
** WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
** See the GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
** --------------------------------------------------------------------------
**
** $Log: various.c,v $
** Revision 1.21 2010/11/12 06:16:16 gerlof
** Show all parts of timestamp in header line, even when zero.
**
** Revision 1.20 2010/05/18 19:21:08 gerlof
** Introduce CPU frequency and scaling (JC van Winkel).
**
** Revision 1.19 2010/04/28 18:21:11 gerlof
** Cast value larger than 4GB to long long.
**
** Revision 1.18 2010/04/23 12:19:35 gerlof
** Modified mail-address in header.
**
** Revision 1.17 2010/03/26 11:52:45 gerlof
** Introduced unit of Tbytes for memory-usage.
**
** Revision 1.16 2009/12/17 08:28:38 gerlof
** Express CPU-time usage in days and hours for large values.
**
** Revision 1.15 2009/12/10 08:50:39 gerlof
** Introduction of a new function to convert number of seconds
** to a string indicating days, hours, minutes and seconds.
**
** Revision 1.14 2007/02/13 10:32:47 gerlof
** Removal of external declarations.
** Removal of function getpagesz().
**
** Revision 1.13 2006/02/07 08:27:21 gerlof
** Add possibility to show counters per second.
** Modify presentation of CPU-values.
**
** Revision 1.12 2005/10/31 12:26:09 gerlof
** Modified date-format to yyyy/mm/dd.
**
** Revision 1.11 2005/10/21 09:51:29 gerlof
** Per-user accumulation of resource consumption.
**
** Revision 1.10 2004/05/06 09:46:24 gerlof
** Ported to kernel-version 2.6.
**
** Revision 1.9 2003/07/07 09:27:46 gerlof
** Cleanup code (-Wall proof).
**
** Revision 1.8 2003/07/03 11:16:59 gerlof
** Minor bug solutions.
**
** Revision 1.7 2003/06/30 11:31:17 gerlof
** Enlarge counters to 'long long'.
**
** Revision 1.6 2003/06/24 06:22:24 gerlof
** Limit number of system resource lines.
**
** Revision 1.5 2002/08/30 07:49:09 gerlof
** Convert a hh:mm string into a number of seconds since 00:00.
**
** Revision 1.4 2002/08/27 12:08:37 gerlof
** Modified date format (from yyyy/mm/dd to mm/dd/yyyy).
**
** Revision 1.3 2002/07/24 11:14:05 gerlof
** Changed to ease porting to other UNIX-platforms.
**
** Revision 1.2 2002/07/11 09:43:36 root
** Modified HZ into sysconf(_SC_CLK_TCK).
**
** Revision 1.1 2001/10/02 10:43:36 gerlof
** Initial revision
**
*/
static const char rcsid[] = "$Id: various.c,v 1.21 2010/11/12 06:16:16 gerlof Exp $";
#include <sys/types.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/times.h>
#include <signal.h>
#include <time.h>
#include <math.h>
#include <stdio.h>
#include <unistd.h>
#include <ctype.h>
#include <stdlib.h>
#include "atop.h"
#include "acctproc.h"
/*
** Function convtime() converts a value (number of seconds since
** 1-1-1970) to an ascii-string in the format hh:mm:ss, stored in
** chartim (9 bytes long).
*/
char *
convtime(time_t utime, char *chartim)
{
struct tm *tt;
tt = localtime(&utime);
sprintf(chartim, "%02d:%02d:%02d", tt->tm_hour, tt->tm_min, tt->tm_sec);
return chartim;
}
/*
** Function convdate() converts a value (number of seconds since
** 1-1-1970) to an ascii-string in the format yyyy/mm/dd, stored in
** chardat (11 bytes long).
*/
char *
convdate(time_t utime, char *chardat)
{
struct tm *tt;
tt = localtime(&utime);
sprintf(chardat, "%04d/%02d/%02d",
tt->tm_year+1900, tt->tm_mon+1, tt->tm_mday);
return chardat;
}
/*
** Convert a hh:mm string into a number of seconds since 00:00
**
** Return-value: 0 - Wrong input-format
** 1 - Success
*/
int
hhmm2secs(char *itim, unsigned int *otim)
{
register int i;
int hours, minutes;
/*
** check string syntax
*/
for (i=0; *(itim+i); i++)
if ( !isdigit(*(itim+i)) && *(itim+i) != ':' )
return(0);
sscanf(itim, "%d:%d", &hours, &minutes);
if ( hours < 0 || hours > 23 || minutes < 0 || minutes > 59 )
return(0);
*otim = (hours * 3600) + (minutes * 60);
if (*otim >= SECSDAY)
*otim = SECSDAY-1;
return(1);
}
/*
** Return number of seconds since midnight according local clock time
**
** Return-value: Number of seconds
*/
int
daysecs(time_t itime)
{
struct tm *tt;
tt = localtime(&itime);
return( (tt->tm_hour*3600) + (tt->tm_min*60) );
}
/*
** Function val2valstr() converts a value to an ascii-string of a fixed
** number of positions; if the value does not fit, it will be formatted to
** exponent-notation (as short as possible, so not via the standard printf-
** formatters %f or %e). The offered string should have a length of width+1.
** The value might even be printed as an average for the interval-time.
*/
char *
val2valstr(count_t value, char *strvalue, int width, int avg, int nsecs)
{
count_t maxval, remain = 0;
int exp = 0;
char *suffix = "";
if (avg)
{
value = (value + (nsecs/2)) / nsecs; /* rounded value */
width = width - 2; /* subtract two positions for '/s' */
suffix = "/s";
}
maxval = pow(10.0, width) - 1;
if (value < maxval)
{
sprintf(strvalue, "%*lld%s", width, value, suffix);
}
else
{
if (width < 3)
{
/*
** cannot avoid ignoring width
*/
sprintf(strvalue, "%lld%s", value, suffix);
}
else
{
/*
** calculate new maximum value for the string,
** calculating space for 'e' (exponent) + one digit
*/
width -= 2;
maxval = pow(10.0, width) - 1;
while (value > maxval)
{
exp++;
remain = value % 10;
value /= 10;
}
if (remain >= 5)
value++;
sprintf(strvalue, "%*llde%d%s",
width, value, exp, suffix);
}
}
return strvalue;
}
#define DAYSECS (24*60*60)
#define HOURSECS (60*60)
#define MINSECS (60)
/*
** Function val2elapstr() converts a value (number of seconds)
** to an ascii-string of up to max 13 positions in NNNdNNhNNmNNs
** stored in strvalue (at least 14 positions).
** returnvalue: number of bytes stored
*/
int
val2elapstr(int value, char *strvalue)
{
char *p=strvalue, doshow=0;
if (value > DAYSECS)
{
p+=sprintf(p, "%dd", value/DAYSECS);
value %= DAYSECS;
doshow = 1;
}
if (value > HOURSECS || doshow)
{
p+=sprintf(p, "%dh", value/HOURSECS);
value %= HOURSECS;
doshow = 1;
}
if (value > MINSECS || doshow)
{
p+=sprintf(p, "%dm", value/MINSECS);
value %= MINSECS;
doshow = 1;
}
if (value || doshow)
{
p+=sprintf(p, "%ds", value);
doshow = 1;
}
return p-strvalue;
}
/*
** Function val2cpustr() converts a value (number of milliseconds)
** to an ascii-string of 7 positions in milliseconds or minute-seconds or
** hours-minutes, stored in strvalue (at least 8 positions).
*/
#define MAXMSEC (count_t)100000
#define MAXSEC (count_t)60000
#define MAXMIN (count_t)60000
char *
val2cpustr(count_t value, char *strvalue)
{
if (value < MAXMSEC)
{
sprintf(strvalue, "%3lld.%02llds", value/1000, value%1000/10);
}
else
{
/*
** millisecs irrelevant; round to seconds
*/
value = (value + 500) / 1000;
if (value < MAXSEC)
{
sprintf(strvalue, "%3lldm%02llds", value/60, value%60);
}
else
{
/*
** seconds irrelevant; round to minutes
*/
value = (value + 30) / 60;
if (value < MAXMIN)
{
sprintf(strvalue, "%3lldh%02lldm",
value/60, value%60);
}
else
{
/*
** minutes irrelevant; round to hours
*/
value = (value + 30) / 60;
sprintf(strvalue, "%3lldd%02lldh",
value/24, value%24);
}
}
}
return strvalue;
}
/*
** Function val2Hzstr() converts a value (in MHz)
** to an ascii-string.
** The result-string is placed in the area pointed to strvalue,
** which should be able to contain at least 8 positions.
*/
char *
val2Hzstr(count_t value, char *strvalue)
{
if (value < 1000)
{
sprintf(strvalue, "%4lldMHz", value);
}
else
{
double fval=value/1000.0; // fval is double in GHz
char prefix='G';
if (fval >= 1000.0) // prepare for the future
{
prefix='T';
fval /= 1000.0;
}
sprintf(strvalue, "%4.2f%cHz", fval, prefix);
}
return strvalue;
}
/*
** Function val2memstr() converts a value (number of bytes)
** to an ascii-string in a specific format (indicated by pformat).
** The result-string is placed in the area pointed to strvalue,
** which should be able to contain at least 7 positions.
*/
#define ONEKBYTE 1024
#define ONEMBYTE 1048576
#define ONEGBYTE 1073741824L
#define ONETBYTE 1099511627776LL
#define MAXBYTE 1024
#define MAXKBYTE ONEKBYTE*99999L
#define MAXMBYTE ONEMBYTE*999L
#define MAXGBYTE ONEGBYTE*999LL
char *
val2memstr(count_t value, char *strvalue, int pformat, int avgval, int nsecs)
{
char aformat; /* advised format */
count_t verifyval;
char *suffix = "";
int basewidth = 6;
/*
** notice that the value can be negative, in which case the
** modulo-value should be evaluated and an extra position should
** be reserved for the sign
*/
if (value < 0)
verifyval = -value * 10;
else
verifyval = value;
/*
** verify if printed value is required per second (average) or total
*/
if (avgval)
{
value /= nsecs;
verifyval *= 100;
basewidth -= 2;
suffix = "/s";
}
/*
** determine which format will be used on bases of the value itself
*/
if (verifyval <= MAXBYTE) /* bytes ? */
aformat = ANYFORMAT;
else
if (verifyval <= MAXKBYTE) /* kbytes ? */
aformat = KBFORMAT;
else
if (verifyval <= MAXMBYTE) /* mbytes ? */
aformat = MBFORMAT;
else
if (verifyval <= MAXGBYTE) /* mbytes ? */
aformat = GBFORMAT;
else
aformat = TBFORMAT;
/*
** check if this is also the preferred format
*/
if (aformat <= pformat)
aformat = pformat;
switch (aformat)
{
case ANYFORMAT:
sprintf(strvalue, "%*lld%s",
basewidth, value, suffix);
break;
case KBFORMAT:
sprintf(strvalue, "%*lldK%s",
basewidth-1, value/ONEKBYTE, suffix);
break;
case MBFORMAT:
sprintf(strvalue, "%*.1lfM%s",
basewidth-1, (double)((double)value/ONEMBYTE), suffix);
break;
case GBFORMAT:
sprintf(strvalue, "%*.1lfG%s",
basewidth-1, (double)((double)value/ONEGBYTE), suffix);
break;
case TBFORMAT:
sprintf(strvalue, "%*.1lfT%s",
basewidth-1, (double)((double)value/ONETBYTE), suffix);
break;
default:
sprintf(strvalue, "!TILT!");
}
return strvalue;
}
/*
** Function numeric() checks if the ascii-string contains
** a numeric (positive) value.
** Returns 1 (true) if so, or 0 (false).
*/
int
numeric(char *ns)
{
register char *s = ns;
while (*s)
if (*s < '0' || *s > '9')
return(0); /* false */
else
s++;
return(1); /* true */
}
/*
** Function getboot() returns the boot-time of this system
** (as number of seconds since 1-1-1970).
*/
time_t
getboot(void)
{
static time_t boottime;
if (!boottime) /* do this only once */
{
#ifdef linux
time_t getbootlinux(long);
boottime = getbootlinux(hertz);
#else
struct tms tms;
time_t boottime_again;
/*
** beware that between time() and times() a one-second
** upgrade could have taken place in the kernel, so an
** extra check is issued; if we were around a
** second-upgrade, just do it again (we just passed
** the danger-zone)
*/
boottime = time(0) - (times(&tms) / hertz);
boottime_again = time(0) - (times(&tms) / hertz);
if (boottime != boottime_again)
boottime = time(0) - (times(&tms) / hertz);
#endif
}
return boottime;
}
/*
** signal catcher for cleanup before exit
*/
void
cleanstop(exitcode)
{
acctswoff();
(vis.show_end)();
exit(exitcode);
}