-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathextension.js
213 lines (178 loc) · 6.38 KB
/
extension.js
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
import { default as Clutter } from 'gi://Clutter';
import { default as St } from 'gi://St';
import * as Main from 'resource:///org/gnome/shell/ui/main.js';
import { default as Gio } from 'gi://Gio';
import GLib from 'gi://GLib';
import { Extension } from 'resource:///org/gnome/shell/extensions/extension.js';
export default class HardDiskLEDExtension extends Extension {
refreshTime = 2.0; // in seconds, speed displayed also /s
ledThreshold = 500000;
ledMinThreshold = 100000;
settings = null;
button = null
timeout = null
cur = null
ioSpeed = null
lastCount = null
lastSpeed = null
mode = null;
layoutManager = null;
ioSpeedStaticIcon = null;
ioSpeedIcon = null;
init() {
this.cur = 0;
this.lastCount = 0;
}
changeMode() {
this.mode++;
if (this.mode > 7) {
this.mode = 0;
}
this.settings.set_int('mode', this.mode);
this.parseStat(true);
}
parseStat(forceDot = false) {
try {
let input_file = Gio.file_new_for_path('/proc/diskstats');
let [, contents, _etag] = input_file.load_contents(null);
contents = new TextDecoder().decode(contents);
let lines = contents.split('\n');
let count = 0;
let line;
for (let i = 0; i < lines.length; i++) {
line = lines[i];
let fields = line.split(/ +/);
if (fields.length <= 2) break;
if (parseInt(fields[2]) % 16 === 0
&& fields[3].indexOf('md0') != 0
&& fields[3].indexOf('ram0') != 0
&& fields[3].indexOf('dm-0') != 0
&& fields[3].indexOf('zram0') != 0
&& fields[3].indexOf('loop0') != 0) {
count = count + parseInt(fields[6]) + parseInt(fields[10]);
// log(fields[3] + ':' + fields[6] + ' ' + fields[10] + ' ' + count);
}
}
if (this.lastCount === 0) this.lastCount = count;
let speed = (count - this.lastCount) / this.refreshTime * 512;
let dot = " ";
if (speed > this.lastSpeed || forceDot || speed > this.ledThreshold) {
if (speed > this.ledMinThreshold) {
if (this.mode == 0 || this.mode == 2 || this.mode == 4 || this.mode == 6) {
dot = "●";
} else if (this.mode == 1 || this.mode == 3 || this.mode == 7) {
dot = "⬤";
}
}
}
if (this.mode == 2 || this.mode == 3 || this.mode == 6 || this.mode == 7) {
this.ioSpeed.hide();
} else {
this.ioSpeed.show();
}
if (this.mode == 4 || this.mode == 5 || this.mode == 6 || this.mode == 7) {
this.ioSpeedStaticIcon.hide();
} else {
this.ioSpeedStaticIcon.show();
}
if (this.mode == 5) {
this.ioSpeedIcon.hide();
} else {
this.ioSpeedIcon.show();
}
this.ioSpeedIcon.set_text(dot);
this.ioSpeed.set_text(this.speedToString(speed));
this.lastCount = count;
this.lastSpeed = speed;
} catch (e) {
this.ioSpeed.set_text(e.message);
}
/*
let curDiskstats = GLib.file_get_contents('/proc/diskstats');
if (diskstats == curDiskstats) {
if (cur !== 0) {
button.set_child(iconDark);
cur = 0;
}
} else {
if (cur != 1) {
button.set_child(icon);
cur = 1;
}
diskstats = curDiskstats;
}*/
return true;
}
speedToString(amount) {
let digits;
let speed_map;
speed_map = ["B/s", "K/s", "M/s", "G/s"];
if (amount === 0)
return "0" + speed_map[0];
let unit = 0;
while (amount >= 1000) { // 1M=1024K, 1MB/s=1000MB/s
amount /= 1000;
++unit;
}
if (amount >= 100) // 100MB 100KB 200KB
digits = 0;
else if (amount >= 10) // 10MB 10.2
digits = 1;
else
digits = 2;
return String(amount.toFixed(digits)) + speed_map[unit];
}
enable() {
this.init()
this.settings = this.getSettings();
this.mode = this.settings.get_int('mode'); // default mode
this.button = new St.Button({
style_class: 'panel-button',
reactive: true,
can_focus: true,
x_expand: true,
y_expand: false,
track_hover: true
});
this.layoutManager = new St.BoxLayout({
vertical: false,
style_class: 'harddiskled-container'
});
this.ioSpeedStaticIcon = new St.Icon({
style_class: 'system-status-icon',
y_align: Clutter.ActorAlign.CENTER,
gicon: Gio.icon_new_for_string('drive-harddisk-symbolic')
});
this.ioSpeed = new St.Label({
text: '---',
y_align: Clutter.ActorAlign.CENTER,
style_class: 'harddiskled-label'
});
this.ioSpeedIcon = new St.Label({
text: '',
y_align: Clutter.ActorAlign.CENTER,
style_class: 'harddiskled-icon'
});
this.layoutManager.add_child(this.ioSpeedStaticIcon);
this.layoutManager.add_child(this.ioSpeedIcon);
this.layoutManager.add_child(this.ioSpeed);
this.button.connect('button-press-event', this.changeMode.bind(this));
this.button.set_child(this.layoutManager);
Main.panel._rightBox.insert_child_at_index(this.button, 0);
// the monotonic time, in microseconds
this.timeout = GLib.timeout_add(
GLib.PRIORITY_DEFAULT,
this.refreshTime * 1000,
() => this.parseStat(true)
);
}
disable() {
if (this.timeout) {
GLib.source_remove(this.timeout);
this.timeout = null;
}
Main.panel._rightBox.remove_child(this.button);
this.button.destroy();
this.settings = this.button = this.layoutManager = this.ioSpeedStaticIcon = this.ioSpeed = this.ioSpeedIcon = null;
}
}