File: diskmeter.cc

package info (click to toggle)
xosview 1.24-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,184 kB
  • sloc: cpp: 11,975; makefile: 154; ansic: 32; awk: 13; sh: 8
file content (102 lines) | stat: -rw-r--r-- 3,034 bytes parent folder | download | duplicates (5)
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
//
//  Copyright (c) 1995, 1996, 1997-2002 by Brian Grayson (bgrayson@netbsd.org)
//
//  This file was written by Brian Grayson for the NetBSD and xosview
//    projects.
//  This file may be distributed under terms of the GPL or of the BSD
//    license, whichever you choose.  The full license notices are
//    contained in the files COPYING.GPL and COPYING.BSD, which you
//    should have received.  If not, contact one of the xosview
//    authors for a copy.
//

#include "diskmeter.h"
#include "kernel.h"
#include <stdlib.h>
#include <err.h>


DiskMeter::DiskMeter( XOSView *parent, double max )
	: FieldMeterGraph( parent, 3, "DISK", "READ/WRITE/IDLE" ) {
	dodecay_ = 0;
	maxBandwidth_ = max;
	total_ = max;
	if (!BSDDiskInit())
		disableMeter();

	/* Since at the first call, it will look like we transferred a
	 * gazillion bytes, let's reset total_ again and do another
	 * call.  This will force total_ to be something reasonable.  */
	getstats();
	total_ = max;
	getstats();
	IntervalTimerStart();
	/* By doing this check, we eliminate the startup situation where
	 * all fields are 0, and total is 0, leading to nothing being drawn
	 * on the meter.  So, make it look like nothing was transferred,
	 * out of a total of 1 bytes.  */
	fields_[0] = fields_[1] = 0.0;
	total_ = 1.0;
	fields_[2] = total_;
}

DiskMeter::~DiskMeter( void ) {
}

void DiskMeter::checkResources( void ) {
	FieldMeterGraph::checkResources();

	setfieldcolor( 0, parent_->getResource("diskReadColor") );
	setfieldcolor( 1, parent_->getResource("diskWriteColor") );
	setfieldcolor( 2, parent_->getResource("diskIdleColor") );
	priority_ = atoi( parent_->getResource("diskPriority") );
	dodecay_ = parent_->isResourceTrue("diskDecay");
	useGraph_ = parent_->isResourceTrue("diskGraph");
	SetUsedFormat( parent_->getResource("diskUsedFormat") );
}

void DiskMeter::checkevent( void ) {
	getstats();
	drawfields();
}

void DiskMeter::getstats( void ) {
	uint64_t reads = 0, writes = 0;
	//  Reset to desired full-scale settings.
	total_ = maxBandwidth_;

	IntervalTimerStop();
	BSDGetDiskXFerBytes(&reads, &writes);

	/*  Adjust this to bytes/second.  */
#if defined(HAVE_DEVSTAT)
	fields_[0] = reads / IntervalTimeInSecs();
	fields_[1] = writes / IntervalTimeInSecs();
#else
	fields_[0] = (reads - prevreads_) / IntervalTimeInSecs();
	fields_[1] = (writes - prevwrites_) / IntervalTimeInSecs();
	prevreads_ = reads;
	prevwrites_ = writes;
#endif
	IntervalTimerStart();

	/*  Adjust in case of first call.  */
	if (fields_[0] < 0.0)
		fields_[0] = 0.0;
	if (fields_[1] < 0.0)
		fields_[1] = 0.0;

	/*  Adjust total_ if needed.  */
	if (fields_[0] + fields_[1] > total_)
		total_ = fields_[0] + fields_[1];

	fields_[2] = total_ - (fields_[0] + fields_[1]);
	if (fields_[0] < 0.0)
		warnx("diskmeter: fields[0] of %f is < 0!", fields_[0]);
	if (fields_[1] < 0.0)
		warnx("diskmeter: fields[1] of %f is < 0!", fields_[1]);
	if (fields_[2] < 0.0)
		warnx("diskmeter: fields[2] of %f is < 0!", fields_[2]);

	setUsed(fields_[0] + fields_[1], total_);
}