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
|
unit systemunit;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Math, lowlevelunit, mystringlistunit;
function cpuUtilization: extended;
function numCpus: int64;
function momentanFreieCpus: int64;
function belegterSpeicher: int64;
function minCache: int64;
function shellSubst(s: string): string;
function shellExpand(s: string): string; overload;
procedure shellExpand(s: string; out sa: tMyStringList); overload;
procedure shellExpand(var sa: tMyStringList); overload;
function mkTemp(s: string): string;
function myReadLink(s: string): string;
function pwd: string;
implementation
uses
process;
var _cpuLastUsed,_cpuLastIdle: int64;
function cpuUtilization: extended;
var
procstat: textfile;
s: string;
used,idle: int64;
i: integer;
begin
result:=0;
s:='';
assignfile(procstat,'/proc/stat');
reset(procstat);
while not eof(procstat) do begin
readln(procstat,s);
if startetMit('cpu ',s) then break;
s:='';
end;
closefile(procstat);
if s='' then exit;
used:=0;
idle:=0;
for i:=0 to 3 do begin
used:=used+idle;
idle:=strtoint(erstesArgument(s));
end;
result:=(used-_cpuLastUsed)/max(1,used-_cpuLastUsed + idle-_cpuLastIdle);
_cpuLastUsed:=used;
_cpuLastIdle:=idle;
end;
function numCpus: int64;
var
procstat: textfile;
s: string;
begin
result:=0;
s:='';
assignfile(procstat,'/proc/stat');
reset(procstat);
while not eof(procstat) do begin
readln(procstat,s);
if (not startetMit('cpu ',s)) and
startetMit('cpu',s) then
inc(result);
end;
closefile(procstat);
end;
function momentanFreieCpus: int64;
begin
result:=floor(numCpus*(1-cpuUtilization));
end;
function belegterSpeicher: int64;
var
f: textFile;
s: string;
begin
s:='/proc/'+inttostr(getProcessId)+'/smaps';
result:=0;
if not fileexists(s) then exit;
assignfile(f,s);
reset(f);
while not eof(f) do begin
readln(f,s);
if startetMit('Rss:',s) and (endetMit('kB',s) or endetMit('KB',s)) then
result:=result+strtoint(s);
end;
closefile(f);
end;
function minCache: int64;
var
f: textFile;
s: string;
begin
s:='/proc/cpuinfo';
result:=0;
if not fileexists(s) then exit;
assignfile(f,s);
reset(f);
while not eof(f) do begin
readln(f,s);
if startetMit('cache',s) and startetMit('size',s) and startetMit(':',s) and (endetMit('KB',s) or endetMit('kB',s)) then begin
if result=0 then result:=strtoint(s)
else result:=min(result,strtoint(s));
end;
end;
closefile(f);
end;
function shellSubst(s: string): string;
var
name: string;
begin
result:=s;
while pos('${',result)>0 do begin
s:=erstesArgument(result,'${',false);
name:=erstesArgument(result,'}',false);
result:=s+GetEnvironmentVariable(name)+result;
end;
end;
function shellExpand(s: string): string;
var
sa: tMyStringList;
i: longint;
begin
shellExpand(s,sa);
result:='';
for i:=0 to sa.count-1 do
result:=result+sa[i]+' ';
delete(result,length(result),1);
sa.free;
end;
procedure shellExpand(s: string; out sa: tMyStringList);
begin
sa:=tMyStringList.create;
while s<>'' do
sa.add(erstesArgument(s));
shellExpand(sa);
end;
procedure shellExpand(var sa: tMyStringList);
var
start,ende,s: string;
i,j,ebene,iStart,iStopp,insOff: longint;
begin
i:=0;
while i<sa.count do
if pos('{',sa[i])>0 then begin
s:=sa[i];
start:=erstesArgument(s,'{',false);
j:=1;
ebene:=0;
while (j<=length(s)) and ((s[j]<>'}') or (ebene>0)) do begin
case s[j] of
'{': inc(ebene);
'}': dec(ebene);
end{of case};
inc(j);
end;
if (ebene<>0) or (j>length(s)) then
fehler('Geschweifte Klammern sind in '''+sa[i]+''' nicht ausgewogen!');
ende:=rightStr(s,length(s)-j);
s:=leftStr(s,j-1)+',';
sa.delete(i);
iStart:=low(longint);
insOff:=0;
j:=1;
ebene:=0;
while (j<=length(s)) do begin
case s[j] of
'{': inc(ebene);
'}': dec(ebene);
'.':
if (ebene=0) and (copy(s,j,2)='..') then begin
if iStart<>low(longint) then
fehler('''..'' darf nicht mehrmals hintereinander auftauchen - in '''+sa[i]+''' ist das aber der Fall!');
iStart:=strtoint(trim(leftStr(s,j-1)));
delete(s,1,j+1);
j:=1;
continue;
end;
',':
if ebene=0 then begin
if iStart=low(longint) then begin // keine Zähliteration
sa.insert(i+insOff,start+leftStr(s,j-1)+ende);
inc(insOff);
delete(s,1,j);
j:=1;
continue;
end
else begin // eine Zähliteration
iStopp:=strtoint(trim(leftStr(s,j-1)));
delete(s,1,j);
for j:=iStart to iStopp do
sa.insert(i+insOff+j-iStart,start+inttostr(j)+ende);
inc(insOff,iStopp-iStart+1);
iStart:=low(longint);
j:=1;
continue;
end;
end;
end{of case};
inc(j);
end;
end
else
inc(i);
end;
function mkTemp(s: string): string;
var
args: array of string;
begin
setlength(args,0);
while s<>'' do begin
setlength(args,length(args)+1);
args[length(args)-1]:=erstesArgument(s);
end;
result:='';
if not runCommand('mktemp',args,result) then
raise exception.create('Fehler beim Ausführen von ''mktemp '+s+'''!');
result:=trim(result);
end;
function myReadLink(s: string): string;
var
args: array of string;
begin
setlength(args,3);
args[0]:='-f';
args[1]:='-n';
args[2]:=s;
result:='';
if not runCommand('readlink',args,result) then
raise exception.create('Fehler beim Ausführen von ''readlink -f -n '+s+'''!');
result:=trim(result);
end;
function pwd: string;
var
args: array of string;
begin
setlength(args,0);
result:='';
if not runCommand('pwd',args,result) then
raise exception.create('Fehler beim Ausführen von ''pwd''!');
result:=trim(result);
end;
begin
_cpuLastUsed:=0;
_cpuLastIdle:=0;
cpuUtilization;
end.
|