ProcessList.c 20.3 KB
Newer Older
Hisham Muhammad's avatar
Hisham Muhammad committed
1
2
3
4
5
6
7
/*
htop - ProcessList.c
(C) 2004,2005 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

8
9
10
11
12
#ifndef CONFIG_H
#define CONFIG_H
#include "config.h"
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
13
14
#include "ProcessList.h"
#include "Process.h"
15
#include "Vector.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
16
17
18
19
20
21
22
23
24
25
26
27
#include "UsersTable.h"
#include "Hashtable.h"

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <dirent.h>
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include <stdbool.h>
#include <sys/utsname.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
28
#include <stdarg.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

#include "debug.h"
#include <assert.h>

/*{
#ifndef PROCDIR
#define PROCDIR "/proc"
#endif

#ifndef PROCSTATFILE
#define PROCSTATFILE "/proc/stat"
#endif

#ifndef PROCMEMINFOFILE
#define PROCMEMINFOFILE "/proc/meminfo"
#endif

#ifndef MAX_NAME
Hisham Muhammad's avatar
Hisham Muhammad committed
47
48
49
50
51
#define MAX_NAME 128
#endif

#ifndef MAX_READ
#define MAX_READ 8192
Hisham Muhammad's avatar
Hisham Muhammad committed
52
53
54
55
56
57
58
#endif

}*/

/*{

typedef struct ProcessList_ {
59
60
   Vector* processes;
   Vector* processes2;
Hisham Muhammad's avatar
Hisham Muhammad committed
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
   Hashtable* processTable;
   Process* prototype;
   UsersTable* usersTable;

   int processorCount;
   int totalTasks;
   int runningTasks;

   long int* totalTime;
   long int* userTime;
   long int* systemTime;
   long int* idleTime;
   long int* niceTime;
   long int* totalPeriod;
   long int* userPeriod;
   long int* systemPeriod;
   long int* idlePeriod;
   long int* nicePeriod;

   long int totalMem;
   long int usedMem;
   long int freeMem;
   long int sharedMem;
   long int buffersMem;
   long int cachedMem;
   long int totalSwap;
   long int usedSwap;
   long int freeSwap;

   ProcessField* fields;
   ProcessField sortKey;
   int direction;
   bool hideThreads;
   bool shadowOtherUsers;
   bool hideKernelThreads;
   bool hideUserlandThreads;
   bool treeView;
   bool highlightBaseName;
   bool highlightMegabytes;
Hisham Muhammad's avatar
Hisham Muhammad committed
100
101
102
   #ifdef DEBUG
   FILE* traceFile;
   #endif
Hisham Muhammad's avatar
Hisham Muhammad committed
103
104
105
106
107

} ProcessList;
}*/

/* private property */
108
ProcessField defaultHeaders[] = { PID, USER, PRIORITY, NICE, M_SIZE, M_RESIDENT, M_SHARE, STATE, PERCENT_CPU, PERCENT_MEM, TIME, COMM, 0 };
Hisham Muhammad's avatar
Hisham Muhammad committed
109

Hisham Muhammad's avatar
Hisham Muhammad committed
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
#ifdef DEBUG

/* private property */
typedef int(*vxscanf)(void*, const char*, va_list);

#define ProcessList_read(this, buffer, format, ...) ProcessList_xread(this, (vxscanf) vsscanf, buffer, format, ## __VA_ARGS__ )
#define ProcessList_fread(this, file, format, ...)  ProcessList_xread(this, (vxscanf) vfscanf, file, format, ## __VA_ARGS__ )

/* private */
FILE* ProcessList_fopen(ProcessList* this, const char* path, const char* mode) {
   fprintf(this->traceFile, "[%s]\n", path);
   return fopen(path, mode);
}

/* private */
static inline int ProcessList_xread(ProcessList* this, vxscanf fn, void* buffer, char* format, ...) {
   va_list ap;
   va_start(ap, format);
   int num = fn(buffer, format, ap);
   va_end(format);
   va_start(ap, format);
   while (*format) {
      char ch = *format;
      char* c; int* d; long int* ld; unsigned long int* lu; char** s;
      if (ch != '%') {
         fprintf(this->traceFile, "%c", ch);
         format++;
         continue;
      }
      format++;
      switch(*format) {
      case 'c': c = va_arg(ap, char*);  fprintf(this->traceFile, "%c", *c); break;
      case 'd': d = va_arg(ap, int*);   fprintf(this->traceFile, "%d", *d); break;
      case 's': s = va_arg(ap, char**); fprintf(this->traceFile, "%s", *s); break;
      case 'l':
         format++;
         switch (*format) {
         case 'd': ld = va_arg(ap, long int*); fprintf(this->traceFile, "%ld", *ld); break;
         case 'u': lu = va_arg(ap, unsigned long int*); fprintf(this->traceFile, "%lu", *lu); break;
         }
      }
      format++;
   }
   fprintf(this->traceFile, "\n");
   va_end(format);
   return num;
}

#else

#ifndef ProcessList_read
#define ProcessList_fopen(this, path, mode) fopen(path, mode)
#define ProcessList_read(this, buffer, format, ...) sscanf(buffer, format, ## __VA_ARGS__ )
#define ProcessList_fread(this, file, format, ...) fscanf(file, format, ## __VA_ARGS__ )
#endif

#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
168
169
170
ProcessList* ProcessList_new(UsersTable* usersTable) {
   ProcessList* this;
   this = malloc(sizeof(ProcessList));
171
   this->processes = Vector_new(PROCESS_CLASS, true, DEFAULT_SIZE);
Hisham Muhammad's avatar
Hisham Muhammad committed
172
173
174
175
176
   this->processTable = Hashtable_new(20, false);
   this->prototype = Process_new(this);
   this->usersTable = usersTable;
   
   /* tree-view auxiliary buffers */
177
   this->processes2 = Vector_new(PROCESS_CLASS, true, DEFAULT_SIZE);
Hisham Muhammad's avatar
Hisham Muhammad committed
178
179
180
181
   
   #ifdef DEBUG
   this->traceFile = fopen("/tmp/htop-proc-trace", "w");
   #endif
Hisham Muhammad's avatar
Hisham Muhammad committed
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

   FILE* status = fopen(PROCSTATFILE, "r");
   assert(status != NULL);
   char buffer[256];
   int procs = -1;
   do {
      procs++;
      fgets(buffer, 255, status);
   } while (String_startsWith(buffer, "cpu"));
   fclose(status);
   this->processorCount = procs - 1;
   this->totalTime = calloc(procs, sizeof(long int));
   this->userTime = calloc(procs, sizeof(long int));
   this->systemTime = calloc(procs, sizeof(long int));
   this->niceTime = calloc(procs, sizeof(long int));
   this->idleTime = calloc(procs, sizeof(long int));
   this->totalPeriod = calloc(procs, sizeof(long int));
   this->userPeriod = calloc(procs, sizeof(long int));
   this->systemPeriod = calloc(procs, sizeof(long int));
   this->nicePeriod = calloc(procs, sizeof(long int));
   this->idlePeriod = calloc(procs, sizeof(long int));
   for (int i = 0; i < procs; i++) {
      this->totalTime[i] = 1;
      this->totalPeriod[i] = 1;
   }

   this->fields = calloc(sizeof(ProcessField), LAST_PROCESSFIELD+1);
209
   // TODO: turn 'fields' into a Vector,
Hisham Muhammad's avatar
Hisham Muhammad committed
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
   // (and ProcessFields into proper objects).
   for (int i = 0; defaultHeaders[i]; i++) {
      this->fields[i] = defaultHeaders[i];
   }
   this->sortKey = PERCENT_CPU;
   this->direction = 1;
   this->hideThreads = false;
   this->shadowOtherUsers = false;
   this->hideKernelThreads = false;
   this->hideUserlandThreads = false;
   this->treeView = false;
   this->highlightBaseName = false;
   this->highlightMegabytes = false;

   return this;
}

void ProcessList_delete(ProcessList* this) {
   Hashtable_delete(this->processTable);
229
230
   Vector_delete(this->processes);
   Vector_delete(this->processes2);
Hisham Muhammad's avatar
Hisham Muhammad committed
231
232
233
234
235
236
237
238
239
240
241
242
243
   Process_delete((Object*)this->prototype);

   free(this->totalTime);
   free(this->userTime);
   free(this->systemTime);
   free(this->niceTime);
   free(this->idleTime);
   free(this->totalPeriod);
   free(this->userPeriod);
   free(this->systemPeriod);
   free(this->nicePeriod);
   free(this->idlePeriod);

Hisham Muhammad's avatar
Hisham Muhammad committed
244
245
246
247
   #ifdef DEBUG
   fclose(this->traceFile);
   #endif

Hisham Muhammad's avatar
Hisham Muhammad committed
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
   free(this->fields);
   free(this);
}

void ProcessList_invertSortOrder(ProcessList* this) {
   if (this->direction == 1)
      this->direction = -1;
   else
      this->direction = 1;
}

RichString ProcessList_printHeader(ProcessList* this) {
   RichString out = RichString_new();
   ProcessField* fields = this->fields;
   for (int i = 0; fields[i]; i++) {
      char* field = Process_printField(fields[i]);
      if (this->sortKey == fields[i])
         RichString_append(&out, CRT_colors[PANEL_HIGHLIGHT_FOCUS], field);
      else
         RichString_append(&out, CRT_colors[PANEL_HEADER_FOCUS], field);
   }
   return out;
}


void ProcessList_prune(ProcessList* this) {
274
   Vector_prune(this->processes);
Hisham Muhammad's avatar
Hisham Muhammad committed
275
276
277
}

void ProcessList_add(ProcessList* this, Process* p) {
278
   Vector_add(this->processes, p);
Hisham Muhammad's avatar
Hisham Muhammad committed
279
280
281
282
283
284
285
   Hashtable_put(this->processTable, p->pid, p);
}

void ProcessList_remove(ProcessList* this, Process* p) {
   Hashtable_remove(this->processTable, p->pid);
   ProcessField pf = this->sortKey;
   this->sortKey = PID;
286
287
   int index = Vector_indexOf(this->processes, p);
   Vector_remove(this->processes, index);
Hisham Muhammad's avatar
Hisham Muhammad committed
288
289
290
291
   this->sortKey = pf;
}

Process* ProcessList_get(ProcessList* this, int index) {
292
   return (Process*) (Vector_get(this->processes, index));
Hisham Muhammad's avatar
Hisham Muhammad committed
293
294
295
}

int ProcessList_size(ProcessList* this) {
296
   return (Vector_size(this->processes));
Hisham Muhammad's avatar
Hisham Muhammad committed
297
298
299
300
}

/* private */
void ProcessList_buildTree(ProcessList* this, int pid, int level, int indent, int direction) {
301
   Vector* children = Vector_new(PROCESS_CLASS, false, DEFAULT_SIZE);
Hisham Muhammad's avatar
Hisham Muhammad committed
302

303
304
   for (int i = 0; i < Vector_size(this->processes); i++) {
      Process* process = (Process*) (Vector_get(this->processes, i));
Hisham Muhammad's avatar
Hisham Muhammad committed
305
      if (process->ppid == pid) {
306
307
         Process* process = (Process*) (Vector_take(this->processes, i));
         Vector_add(children, process);
Hisham Muhammad's avatar
Hisham Muhammad committed
308
         i--;
Hisham Muhammad's avatar
Hisham Muhammad committed
309
310
      }
   }
311
   int size = Vector_size(children);
Hisham Muhammad's avatar
Hisham Muhammad committed
312
   for (int i = 0; i < size; i++) {
313
      Process* process = (Process*) (Vector_get(children, i));
Hisham Muhammad's avatar
Hisham Muhammad committed
314
      if (direction == 1)
315
         Vector_add(this->processes2, process);
Hisham Muhammad's avatar
Hisham Muhammad committed
316
      else
317
         Vector_insert(this->processes2, 0, process);
Hisham Muhammad's avatar
Hisham Muhammad committed
318
319
320
321
322
323
      int nextIndent = indent;
      if (i < size - 1)
         nextIndent = indent | (1 << level);
      ProcessList_buildTree(this, process->pid, level+1, nextIndent, direction);
      process->indent = indent | (1 << level);
   }
324
   Vector_delete(children);
Hisham Muhammad's avatar
Hisham Muhammad committed
325
326
327
328
}

void ProcessList_sort(ProcessList* this) {
   if (!this->treeView) {
329
      Vector_sort(this->processes);
Hisham Muhammad's avatar
Hisham Muhammad committed
330
331
332
333
334
   } else {
      int direction = this->direction;
      int sortKey = this->sortKey;
      this->sortKey = PID;
      this->direction = 1;
335
      Vector_sort(this->processes);
Hisham Muhammad's avatar
Hisham Muhammad committed
336
337
      this->sortKey = sortKey;
      this->direction = direction;
338
      Process* init = (Process*) (Vector_take(this->processes, 0));
Hisham Muhammad's avatar
Hisham Muhammad committed
339
340
      assert(init->pid == 1);
      init->indent = 0;
341
      Vector_add(this->processes2, init);
Hisham Muhammad's avatar
Hisham Muhammad committed
342
      ProcessList_buildTree(this, init->pid, 0, 0, direction);
343
      Vector* t = this->processes;
Hisham Muhammad's avatar
Hisham Muhammad committed
344
345
346
347
348
349
      this->processes = this->processes2;
      this->processes2 = t;
   }
}

/* private */
Hisham Muhammad's avatar
Hisham Muhammad committed
350
int ProcessList_readStatFile(ProcessList* this, Process *proc, FILE *f, char *command) {
Hisham Muhammad's avatar
Hisham Muhammad committed
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
   static char buf[MAX_READ];
   long int zero;

   int size = fread(buf, 1, MAX_READ, f);
   if(!size) return 0;

   proc->pid = atoi(buf);
   char *location = strchr(buf, ' ');
   if(!location) return 0;

   location += 2;
   char *end = strrchr(location, ')');
   if(!end) return 0;
   
   int commsize = end - location;
   memcpy(command, location, commsize);
   command[commsize] = '\0';
   location = end + 2;
   
Hisham Muhammad's avatar
Hisham Muhammad committed
370
   int num = ProcessList_read(this, location, 
Hisham Muhammad's avatar
Hisham Muhammad committed
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
      "%c %d %d %d %d %d %lu %lu %lu %lu "
      "%lu %lu %lu %ld %ld %ld %ld %ld %ld "
      "%lu %lu %ld %lu %lu %lu %lu %lu "
      "%lu %lu %lu %lu %lu %lu %lu %lu "
      "%d %d",
      &proc->state, &proc->ppid, &proc->pgrp, &proc->session, &proc->tty_nr, 
      &proc->tpgid, &proc->flags, &proc->minflt, &proc->cminflt, &proc->majflt, 
      &proc->cmajflt, &proc->utime, &proc->stime, &proc->cutime, &proc->cstime, 
      &proc->priority, &proc->nice, &zero, &proc->itrealvalue, 
      &proc->starttime, &proc->vsize, &proc->rss, &proc->rlim, 
      &proc->startcode, &proc->endcode, &proc->startstack, &proc->kstkesp, 
      &proc->kstkeip, &proc->signal, &proc->blocked, &proc->sigignore, 
      &proc->sigcatch, &proc->wchan, &proc->nswap, &proc->cnswap, 
      &proc->exit_signal, &proc->processor);
   
   // This assert is always valid on 2.4, but reportedly not always valid on 2.6.
   // TODO: Check if the semantics of this field has changed.
   // assert(zero == 0);
   
   if(num != 37) return 0;
   return 1;
}

Hisham Muhammad's avatar
Hisham Muhammad committed
394
bool ProcessList_readStatusFile(ProcessList* this, Process* proc, char* dirname, char* name) {
Hisham Muhammad's avatar
Hisham Muhammad committed
395
396
397
   char statusfilename[MAX_NAME+1];
   statusfilename[MAX_NAME] = '\0';
   snprintf(statusfilename, MAX_NAME, "%s/%s/status", dirname, name);
Hisham Muhammad's avatar
Hisham Muhammad committed
398
   FILE* status = ProcessList_fopen(this, statusfilename, "r");
Hisham Muhammad's avatar
Hisham Muhammad committed
399
400
401
402
403
404
405
406
407
408
409
   bool success = false;
   if (status) {
      char buffer[1024];
      buffer[1023] = '\0';
      while (!feof(status)) {
         char* ok = fgets(buffer, 1023, status);
         if (!ok)
            break;
         if (String_startsWith(buffer, "Uid:")) {
            int uid1, uid2, uid3, uid4;
            // TODO: handle other uid's.
Hisham Muhammad's avatar
Hisham Muhammad committed
410
            int ok = ProcessList_read(this, buffer, "Uid:\t%d\t%d\t%d\t%d", &uid1, &uid2, &uid3, &uid4);
Hisham Muhammad's avatar
Hisham Muhammad committed
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
            if (ok >= 1) {
               proc->st_uid = uid1;
               success = true;
            }
            break;
         }
      }
      fclose(status);
   }
   if (!success) {
      snprintf(statusfilename, MAX_NAME, "%s/%s/stat", dirname, name);
      struct stat sstat;
      int statok = stat(statusfilename, &sstat);
      if (statok == -1)
         return false;
      proc->st_uid = sstat.st_uid;
   }
   return success;
}

void ProcessList_processEntries(ProcessList* this, char* dirname, int parent, float period) {
   DIR* dir;
   struct dirent* entry;
   Process* prototype = this->prototype;

   dir = opendir(dirname);
   assert(dir != NULL);
   while ((entry = readdir(dir)) != NULL) {
      char* name = entry->d_name;
      int pid;
      // filename is a number: process directory
      pid = atoi(name);

      // The RedHat kernel hides threads with a dot.
      // I believe this is non-standard.
      bool isThread = false;
      if ((!this->hideThreads) && pid == 0 && name[0] == '.') {
         char* tname = name + 1;
         pid = atoi(tname);
         if (pid > 0)
            isThread = true;
      }

      if (pid > 0 && pid != parent) {
         if (!this->hideUserlandThreads) {
            char subdirname[MAX_NAME+1];
            snprintf(subdirname, MAX_NAME, "%s/%s/task", dirname, name);
   
            if (access(subdirname, X_OK) == 0) {
               ProcessList_processEntries(this, subdirname, pid, period);
            }
Hisham Muhammad's avatar
Hisham Muhammad committed
462
463
         }

Hisham Muhammad's avatar
Hisham Muhammad committed
464
465
466
467
468
469
470
471
472
473
         FILE* status;
         char statusfilename[MAX_NAME+1];
         char command[PROCESS_COMM_LEN + 1];

         Process* process;
         Process* existingProcess = (Process*) Hashtable_get(this->processTable, pid);
         if (!existingProcess) {
            process = Process_clone(prototype);
            process->pid = pid;
            ProcessList_add(this, process);
Hisham Muhammad's avatar
Hisham Muhammad committed
474
            if (! ProcessList_readStatusFile(this, process, dirname, name))
Hisham Muhammad's avatar
Hisham Muhammad committed
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
               goto errorReadingProcess;
         } else {
            process = existingProcess;
         }
         process->updated = true;

         char* username = UsersTable_getRef(this->usersTable, process->st_uid);
         if (username) {
            strncpy(process->user, username, PROCESS_USER_LEN);
         } else {
            snprintf(process->user, PROCESS_USER_LEN, "%d", process->st_uid);
         }

         int lasttimes = (process->utime + process->stime);

         snprintf(statusfilename, MAX_NAME, "%s/%s/stat", dirname, name);
Hisham Muhammad's avatar
Hisham Muhammad committed
491
492
         
         status = ProcessList_fopen(this, statusfilename, "r");
Hisham Muhammad's avatar
Hisham Muhammad committed
493
494
         if (status == NULL) 
            goto errorReadingProcess;
Hisham Muhammad's avatar
Hisham Muhammad committed
495
496

         int success = ProcessList_readStatFile(this, process, status, command);
Hisham Muhammad's avatar
Hisham Muhammad committed
497
498
499
500
501
502
503
504
505
506
         fclose(status);
         if(!success) {
            goto errorReadingProcess;
         }

         process->percent_cpu = (process->utime + process->stime - lasttimes) / 
            period * 100.0;

         if(!existingProcess) {
            snprintf(statusfilename, MAX_NAME, "%s/%s/cmdline", dirname, name);
Hisham Muhammad's avatar
Hisham Muhammad committed
507
            status = ProcessList_fopen(this, statusfilename, "r");
Hisham Muhammad's avatar
Hisham Muhammad committed
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
            if (!status) {
               goto errorReadingProcess;
            }

            int amtRead = fread(command, 1, PROCESS_COMM_LEN - 1, status);
            if (amtRead > 0) {
               for (int i = 0; i < amtRead; i++)
                  if (command[i] == '\0' || command[i] == '\n')
                     command[i] = ' ';
               command[amtRead] = '\0';
            }
            command[PROCESS_COMM_LEN] = '\0';
            process->comm = String_copy(command);
            fclose(status);
         }

         snprintf(statusfilename, MAX_NAME, "%s/%s/statm", dirname, name);
Hisham Muhammad's avatar
Hisham Muhammad committed
525
526
         status = ProcessList_fopen(this, statusfilename, "r");

Hisham Muhammad's avatar
Hisham Muhammad committed
527
528
529
         if(!status) {
            goto errorReadingProcess;
         }
Hisham Muhammad's avatar
Hisham Muhammad committed
530
         int num = ProcessList_fread(this, status, "%d %d %d %d %d %d %d",
Hisham Muhammad's avatar
Hisham Muhammad committed
531
532
533
             &process->m_size, &process->m_resident, &process->m_share, 
             &process->m_trs, &process->m_drs, &process->m_lrs, 
             &process->m_dt);
Hisham Muhammad's avatar
Hisham Muhammad committed
534

Hisham Muhammad's avatar
Hisham Muhammad committed
535
536
537
538
539
540
541
542
543
         fclose(status);
         if(num != 7)
            goto errorReadingProcess;

         process->percent_mem = process->m_resident / 
            (float)(this->usedMem - this->cachedMem - this->buffersMem) * 
            100.0;

         this->totalTasks++;
Hisham Muhammad's avatar
Hisham Muhammad committed
544
545
546
         if (process->state == 'R') {
            this->runningTasks++;
         }
Hisham Muhammad's avatar
Hisham Muhammad committed
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567

         if (this->hideKernelThreads && process->m_size == 0)
            ProcessList_remove(this, process);

         continue;

         // Exception handler.
         errorReadingProcess: {
            ProcessList_remove(this, process);
         }
      }
   }
   closedir(dir);
}

void ProcessList_scan(ProcessList* this) {
   long int usertime, nicetime, systemtime, idletime, totaltime;
   long int swapFree;

   FILE* status;
   char buffer[128];
Hisham Muhammad's avatar
Hisham Muhammad committed
568
   status = ProcessList_fopen(this, PROCMEMINFOFILE, "r");
Hisham Muhammad's avatar
Hisham Muhammad committed
569
570
571
572
573
574
575
   assert(status != NULL);
   while (!feof(status)) {
      fgets(buffer, 128, status);

      switch (buffer[0]) {
      case 'M':
         if (String_startsWith(buffer, "MemTotal:"))
Hisham Muhammad's avatar
Hisham Muhammad committed
576
            ProcessList_read(this, buffer, "MemTotal: %ld kB", &this->totalMem);
Hisham Muhammad's avatar
Hisham Muhammad committed
577
         else if (String_startsWith(buffer, "MemFree:"))
Hisham Muhammad's avatar
Hisham Muhammad committed
578
            ProcessList_read(this, buffer, "MemFree: %ld kB", &this->freeMem);
Hisham Muhammad's avatar
Hisham Muhammad committed
579
         else if (String_startsWith(buffer, "MemShared:"))
Hisham Muhammad's avatar
Hisham Muhammad committed
580
            ProcessList_read(this, buffer, "MemShared: %ld kB", &this->sharedMem);
Hisham Muhammad's avatar
Hisham Muhammad committed
581
582
583
         break;
      case 'B':
         if (String_startsWith(buffer, "Buffers:"))
Hisham Muhammad's avatar
Hisham Muhammad committed
584
            ProcessList_read(this, buffer, "Buffers: %ld kB", &this->buffersMem);
Hisham Muhammad's avatar
Hisham Muhammad committed
585
586
587
         break;
      case 'C':
         if (String_startsWith(buffer, "Cached:"))
Hisham Muhammad's avatar
Hisham Muhammad committed
588
            ProcessList_read(this, buffer, "Cached: %ld kB", &this->cachedMem);
Hisham Muhammad's avatar
Hisham Muhammad committed
589
590
591
         break;
      case 'S':
         if (String_startsWith(buffer, "SwapTotal:"))
Hisham Muhammad's avatar
Hisham Muhammad committed
592
            ProcessList_read(this, buffer, "SwapTotal: %ld kB", &this->totalSwap);
Hisham Muhammad's avatar
Hisham Muhammad committed
593
         if (String_startsWith(buffer, "SwapFree:"))
Hisham Muhammad's avatar
Hisham Muhammad committed
594
            ProcessList_read(this, buffer, "SwapFree: %ld kB", &swapFree);
Hisham Muhammad's avatar
Hisham Muhammad committed
595
596
597
         break;
      }
   }
Hisham Muhammad's avatar
Hisham Muhammad committed
598

Hisham Muhammad's avatar
Hisham Muhammad committed
599
600
601
602
   this->usedMem = this->totalMem - this->freeMem;
   this->usedSwap = this->totalSwap - swapFree;
   fclose(status);

Hisham Muhammad's avatar
Hisham Muhammad committed
603
604
   status = ProcessList_fopen(this, PROCSTATFILE, "r");

Hisham Muhammad's avatar
Hisham Muhammad committed
605
606
607
608
609
610
611
612
613
614
615
   assert(status != NULL);
   for (int i = 0; i <= this->processorCount; i++) {
      char buffer[256];
      int cpuid;
      long int ioWait, irq, softIrq, steal;
      ioWait = irq = softIrq = steal = 0;
      // Dependending on your kernel version,
      // 5, 7 or 8 of these fields will be set.
      // The rest will remain at zero.
      fgets(buffer, 255, status);
      if (i == 0)
Hisham Muhammad's avatar
Hisham Muhammad committed
616
         ProcessList_read(this, buffer, "cpu  %ld %ld %ld %ld %ld %ld %ld %ld", &usertime, &nicetime, &systemtime, &idletime, &ioWait, &irq, &softIrq, &steal);
Hisham Muhammad's avatar
Hisham Muhammad committed
617
      else {
Hisham Muhammad's avatar
Hisham Muhammad committed
618
         ProcessList_read(this, buffer, "cpu%d %ld %ld %ld %ld %ld %ld %ld %ld", &cpuid, &usertime, &nicetime, &systemtime, &idletime, &ioWait, &irq, &softIrq, &steal);
Hisham Muhammad's avatar
Hisham Muhammad committed
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
         assert(cpuid == i - 1);
      }
      // Fields existing on kernels >= 2.6
      // (and RHEL's patched kernel 2.4...)
      systemtime += ioWait + irq + softIrq + steal;
      totaltime = usertime + nicetime + systemtime + idletime;
      assert (usertime >= this->userTime[i]);
      assert (nicetime >= this->niceTime[i]);
      assert (systemtime >= this->systemTime[i]);
      assert (idletime >= this->idleTime[i]);
      assert (totaltime >= this->totalTime[i]);
      this->userPeriod[i] = usertime - this->userTime[i];
      this->nicePeriod[i] = nicetime - this->niceTime[i];
      this->systemPeriod[i] = systemtime - this->systemTime[i];
      this->idlePeriod[i] = idletime - this->idleTime[i];
      this->totalPeriod[i] = totaltime - this->totalTime[i];
      this->userTime[i] = usertime;
      this->niceTime[i] = nicetime;
      this->systemTime[i] = systemtime;
      this->idleTime[i] = idletime;
      this->totalTime[i] = totaltime;
   }
   float period = (float)this->totalPeriod[0] / this->processorCount;
   fclose(status);

   // mark all process as "dirty"
645
646
   for (int i = 0; i < Vector_size(this->processes); i++) {
      Process* p = (Process*) Vector_get(this->processes, i);
Hisham Muhammad's avatar
Hisham Muhammad committed
647
648
649
650
651
652
653
654
655
656
657
      p->updated = false;
   }
   
   this->totalTasks = 0;
   this->runningTasks = 0;
   
   signal(11, ProcessList_dontCrash);

   ProcessList_processEntries(this, PROCDIR, 0, period);
   signal(11, SIG_DFL);
   
658
659
   for (int i = Vector_size(this->processes) - 1; i >= 0; i--) {
      Process* p = (Process*) Vector_get(this->processes, i);
Hisham Muhammad's avatar
Hisham Muhammad committed
660
661
662
663
664
665
666
667
668
669
670
671
672
      if (p->updated == false)
         ProcessList_remove(this, p);
      else
         p->updated = false;
   }

}

void ProcessList_dontCrash(int signal) {
   // This ugly hack was added because I suspect some
   // crashes were caused by contents of /proc vanishing
   // away while we read them.
}