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

Hisham Muhammad's avatar
Hisham Muhammad committed
8
#include "Process.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
9
#include "Settings.h"
10

Hisham Muhammad's avatar
Hisham Muhammad committed
11
#include "CRT.h"
David Hunt's avatar
David Hunt committed
12
#include "StringUtils.h"
13
#include "RichString.h"
14
#include "Platform.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
15
16
17
18
19
20

#include <stdio.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/param.h>
#include <sys/stat.h>
Hisham's avatar
Hisham committed
21
#include <sys/types.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
22
#include <unistd.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
23
#include <stdlib.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
24
25
26
27
#include <signal.h>
#include <string.h>
#include <stdbool.h>
#include <pwd.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
28
#include <time.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
29
#include <assert.h>
30
#include <math.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
31

sherpya's avatar
sherpya committed
32
33
34
35
36
#ifdef __ANDROID__
#define SYS_ioprio_get __NR_ioprio_get
#define SYS_ioprio_set __NR_ioprio_set
#endif

37
// On Linux, this works only with glibc 2.1+. On earlier versions
Hisham Muhammad's avatar
Hisham Muhammad committed
38
// the behavior is similar to have a hardcoded page size.
39
#ifndef PAGE_SIZE
Hisham Muhammad's avatar
Hisham Muhammad committed
40
#define PAGE_SIZE ( sysconf(_SC_PAGESIZE) )
41
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
42
#define PAGE_SIZE_KB ( PAGE_SIZE / ONE_K )
Hisham Muhammad's avatar
Hisham Muhammad committed
43
44

/*{
Hisham Muhammad's avatar
Hisham Muhammad committed
45
#include "Object.h"
46

Hisham Muhammad's avatar
Hisham Muhammad committed
47
#include <sys/types.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
48

49
#define PROCESS_FLAG_IO 0x0001
50

51
typedef enum ProcessFields {
Hisham's avatar
Hisham committed
52
   NULL_PROCESSFIELD = 0,
53
54
55
56
57
58
59
60
61
62
63
64
65
   PID = 1,
   COMM = 2,
   STATE = 3,
   PPID = 4,
   PGRP = 5,
   SESSION = 6,
   TTY_NR = 7,
   TPGID = 8,
   MINFLT = 10,
   MAJFLT = 12,
   PRIORITY = 18,
   NICE = 19,
   STARTTIME = 21,
66
   PROCESSOR = 38,
67
68
69
70
71
72
73
74
75
76
   M_SIZE = 39,
   M_RESIDENT = 40,
   ST_UID = 46,
   PERCENT_CPU = 47,
   PERCENT_MEM = 48,
   USER = 49,
   TIME = 50,
   NLWP = 51,
   TGID = 52,
} ProcessField;
Hisham Muhammad's avatar
Hisham Muhammad committed
77

78
79
80
81
82
typedef struct ProcessPidColumn_ {
   int id;
   char* label;
} ProcessPidColumn;

Hisham Muhammad's avatar
Hisham Muhammad committed
83
84
85
typedef struct Process_ {
   Object super;

Hisham Muhammad's avatar
Hisham Muhammad committed
86
   struct Settings_* settings;
Hisham Muhammad's avatar
Hisham Muhammad committed
87

88
   unsigned long long int time;
Hisham Muhammad's avatar
Hisham Muhammad committed
89
   pid_t pid;
90
91
   pid_t ppid;
   pid_t tgid;
Hisham Muhammad's avatar
Hisham Muhammad committed
92
   char* comm;
93
   int commLen;
Hisham Muhammad's avatar
Hisham Muhammad committed
94
   int indent;
95
96
97
98

   int basenameOffset;
   bool updated;

Hisham Muhammad's avatar
Hisham Muhammad committed
99
100
   char state;
   bool tag;
Hisham Muhammad's avatar
Hisham Muhammad committed
101
   bool showChildren;
102
   bool show;
103
104
105
   unsigned int pgrp;
   unsigned int session;
   unsigned int tty_nr;
106
   int tpgid;
107
   uid_t st_uid;
Hisham Muhammad's avatar
Hisham Muhammad committed
108
   unsigned long int flags;
109
   int processor;
Hisham Muhammad's avatar
Hisham Muhammad committed
110
111
112
113
114

   float percent_cpu;
   float percent_mem;
   char* user;

Hisham Muhammad's avatar
Hisham Muhammad committed
115
116
   long int priority;
   long int nice;
117
   long int nlwp;
Hisham Muhammad's avatar
Hisham Muhammad committed
118
119
   char starttime_show[8];
   time_t starttime_ctime;
Hisham Muhammad's avatar
Hisham Muhammad committed
120

121
122
   long m_size;
   long m_resident;
Hisham Muhammad's avatar
Hisham Muhammad committed
123
124
125
126
127

   int exit_signal;

   unsigned long int minflt;
   unsigned long int majflt;
128
   #ifdef DEBUG
Hisham Muhammad's avatar
Hisham Muhammad committed
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
   long int itrealvalue;
   unsigned long int vsize;
   long int rss;
   unsigned long int rlim;
   unsigned long int startcode;
   unsigned long int endcode;
   unsigned long int startstack;
   unsigned long int kstkesp;
   unsigned long int kstkeip;
   unsigned long int signal;
   unsigned long int blocked;
   unsigned long int sigignore;
   unsigned long int sigcatch;
   unsigned long int wchan;
   unsigned long int nswap;
   unsigned long int cnswap;
   #endif

Hisham Muhammad's avatar
Hisham Muhammad committed
147
148
} Process;

Hisham Muhammad's avatar
Hisham Muhammad committed
149
150
151
152
153
154
typedef struct ProcessFieldData_ {
   const char* name;
   const char* title;
   const char* description;
   int flags;
} ProcessFieldData;
Hisham Muhammad's avatar
Hisham Muhammad committed
155

156
// Implemented in platform-specific code:
Hisham Muhammad's avatar
Hisham Muhammad committed
157
158
void Process_writeField(Process* this, RichString* str, ProcessField field);
long Process_compare(const void* v1, const void* v2);
159
160
161
void Process_delete(Object* cast);
bool Process_isThread(Process* this);
extern ProcessFieldData Process_fields[];
162
163
extern ProcessPidColumn Process_pidColumns[];
extern char Process_pidFormat[20];
Hisham Muhammad's avatar
Hisham Muhammad committed
164

165
typedef Process*(*Process_New)(struct Settings_*);
166
167
168
169
170
171
172
173
typedef void (*Process_WriteField)(Process*, RichString*, ProcessField);

typedef struct ProcessClass_ {
   const ObjectClass super;
   const Process_WriteField writeField;
} ProcessClass;

#define As_Process(this_)              ((ProcessClass*)((this_)->super.klass))
174

Hisham Muhammad's avatar
Hisham Muhammad committed
175
}*/
176

177
178
static int Process_getuid = -1;

179
#define ONE_K 1024L
Hisham Muhammad's avatar
Hisham Muhammad committed
180
181
182
#define ONE_M (ONE_K * ONE_K)
#define ONE_G (ONE_M * ONE_K)

183
#define ONE_DECIMAL_K 1000L
184
#define ONE_DECIMAL_M (ONE_DECIMAL_K * ONE_DECIMAL_K)
185
#define ONE_DECIMAL_G (ONE_DECIMAL_M * ONE_DECIMAL_K)
186

Hisham's avatar
Hisham committed
187
char Process_pidFormat[20] = "%7d ";
188
189
190
191
192
193
194
195
196
197

static char Process_titleBuffer[20][20];

void Process_setupColumnWidths() {
   int maxPid = Platform_getMaxPid();
   if (maxPid == -1) return;
   int digits = ceil(log10(maxPid));
   assert(digits < 20);
   for (int i = 0; Process_pidColumns[i].label; i++) {
      assert(i < 20);
198
      xSnprintf(Process_titleBuffer[i], 20, "%*s ", digits, Process_pidColumns[i].label);
199
200
      Process_fields[Process_pidColumns[i].id].title = Process_titleBuffer[i];
   }
201
   xSnprintf(Process_pidFormat, sizeof(Process_pidFormat), "%%%dd ", digits);
202
203
}

204
void Process_humanNumber(RichString* str, unsigned long number, bool coloring) {
Hisham Muhammad's avatar
Hisham Muhammad committed
205
206
   char buffer[11];
   int len;
207
208
209
210
211
212
213
214
   
   int largeNumberColor = CRT_colors[LARGE_NUMBER];
   int processMegabytesColor = CRT_colors[PROCESS_MEGABYTES];
   int processColor = CRT_colors[PROCESS];
   if (!coloring) {
      largeNumberColor = CRT_colors[PROCESS];
      processMegabytesColor = CRT_colors[PROCESS];
   }
Hisham Muhammad's avatar
Hisham Muhammad committed
215
 
216
   if(number >= (10 * ONE_DECIMAL_M)) {
217
218
219
      #ifdef __LP64__
      if(number >= (100 * ONE_DECIMAL_G)) {
         len = snprintf(buffer, 10, "%4ldT ", number / ONE_G);
220
         RichString_appendn(str, largeNumberColor, buffer, len);
221
         return;
222
      } else if (number >= (1000 * ONE_DECIMAL_M)) {
223
         len = snprintf(buffer, 10, "%4.1lfT ", (double)number / ONE_G);
224
         RichString_appendn(str, largeNumberColor, buffer, len);
225
226
         return;
      }
227
      #endif
228
      if(number >= (100 * ONE_DECIMAL_M)) {
229
         len = snprintf(buffer, 10, "%4ldG ", number / ONE_M);
230
         RichString_appendn(str, largeNumberColor, buffer, len);
231
         return;
232
      }
233
      len = snprintf(buffer, 10, "%4.1lfG ", (double)number / ONE_M);
234
      RichString_appendn(str, largeNumberColor, buffer, len);
235
      return;
236
   } else if (number >= 100000) {
Hisham Muhammad's avatar
Hisham Muhammad committed
237
      len = snprintf(buffer, 10, "%4ldM ", number / ONE_K);
238
      RichString_appendn(str, processMegabytesColor, buffer, len);
239
      return;
240
   } else if (number >= 1000) {
Hisham Muhammad's avatar
Hisham Muhammad committed
241
      len = snprintf(buffer, 10, "%2ld", number/1000);
242
      RichString_appendn(str, processMegabytesColor, buffer, len);
Hisham Muhammad's avatar
Hisham Muhammad committed
243
      number %= 1000;
244
      len = snprintf(buffer, 10, "%03lu ", number);
245
      RichString_appendn(str, processColor, buffer, len);
246
      return;
Hisham Muhammad's avatar
Hisham Muhammad committed
247
   }
248
   len = snprintf(buffer, 10, "%5lu ", number);
249
   RichString_appendn(str, processColor, buffer, len);
Hisham Muhammad's avatar
Hisham Muhammad committed
250
251
}

252
void Process_colorNumber(RichString* str, unsigned long long number, bool coloring) {
253
   char buffer[14];
254
255
256
257
258
259
260
261
262
263
264

   int largeNumberColor = CRT_colors[LARGE_NUMBER];
   int processMegabytesColor = CRT_colors[PROCESS_MEGABYTES];
   int processColor = CRT_colors[PROCESS];
   int processShadowColor = CRT_colors[PROCESS_SHADOW];
   if (!coloring) {
      largeNumberColor = CRT_colors[PROCESS];
      processMegabytesColor = CRT_colors[PROCESS];
      processShadowColor = CRT_colors[PROCESS];
   }

265
266
267
268
   if ((long long) number == -1LL) {
      int len = snprintf(buffer, 13, "    no perm ");
      RichString_appendn(str, CRT_colors[PROCESS_SHADOW], buffer, len);
   } else if (number > 10000000000) {
269
      xSnprintf(buffer, 13, "%11lld ", number / 1000);
270
271
272
      RichString_appendn(str, largeNumberColor, buffer, 5);
      RichString_appendn(str, processMegabytesColor, buffer+5, 3);
      RichString_appendn(str, processColor, buffer+8, 4);
273
   } else {
274
      xSnprintf(buffer, 13, "%11llu ", number);
275
276
277
278
      RichString_appendn(str, largeNumberColor, buffer, 2);
      RichString_appendn(str, processMegabytesColor, buffer+2, 3);
      RichString_appendn(str, processColor, buffer+5, 3);
      RichString_appendn(str, processShadowColor, buffer+8, 4);
279
280
281
   }
}

282
283
void Process_printTime(RichString* str, unsigned long long totalHundredths) {
   unsigned long long totalSeconds = totalHundredths / 100;
Hisham Muhammad's avatar
Hisham Muhammad committed
284

285
286
287
288
   unsigned long long hours = totalSeconds / 3600;
   int minutes = (totalSeconds / 60) % 60;
   int seconds = totalSeconds % 60;
   int hundredths = totalHundredths - (totalSeconds * 100);
Hisham Muhammad's avatar
Hisham Muhammad committed
289
   char buffer[11];
290
   if (hours >= 100) {
291
      xSnprintf(buffer, 10, "%7lluh ", hours);
Hisham Muhammad's avatar
Hisham Muhammad committed
292
293
      RichString_append(str, CRT_colors[LARGE_NUMBER], buffer);
   } else {
294
      if (hours) {
295
         xSnprintf(buffer, 10, "%2lluh", hours);
296
         RichString_append(str, CRT_colors[LARGE_NUMBER], buffer);
297
         xSnprintf(buffer, 10, "%02d:%02d ", minutes, seconds);
298
      } else {
299
         xSnprintf(buffer, 10, "%2d:%02d.%02d ", minutes, seconds, hundredths);
300
301
      }
      RichString_append(str, CRT_colors[DEFAULT_COLOR], buffer);
Hisham Muhammad's avatar
Hisham Muhammad committed
302
303
304
   }
}

305
static inline void Process_writeCommand(Process* this, int attr, int baseattr, RichString* str) {
306
307
308
309
310
311
312
313
314
315
316
   int start = RichString_size(str), finish = 0;
   char* comm = this->comm;

   if (this->settings->highlightBaseName || !this->settings->showProgramPath) {
      int i, basename = 0;
      for (i = 0; i < this->basenameOffset; i++) {
         if (comm[i] == '/') {
            basename = i + 1;
         } else if (comm[i] == ':') {
            finish = i + 1;
            break;
317
         }
Hisham Muhammad's avatar
Hisham Muhammad committed
318
      }
319
320
321
322
323
324
325
326
      if (!finish) {
         if (this->settings->showProgramPath)
            start += basename;
         else
            comm += basename;
         finish = this->basenameOffset - basename;
      }
      finish += start - 1;
Hisham Muhammad's avatar
Hisham Muhammad committed
327
   }
328
329
330
331
332

   RichString_append(str, attr, comm);

   if (this->settings->highlightBaseName)
      RichString_setAttrn(str, baseattr, start, finish);
Hisham Muhammad's avatar
Hisham Muhammad committed
333
334
}

335
void Process_outputRate(RichString* str, char* buffer, int n, double rate, int coloring) {
Hisham Muhammad's avatar
Hisham Muhammad committed
336
337
338
339
340
341
342
   int largeNumberColor = CRT_colors[LARGE_NUMBER];
   int processMegabytesColor = CRT_colors[PROCESS_MEGABYTES];
   int processColor = CRT_colors[PROCESS];
   if (!coloring) {
      largeNumberColor = CRT_colors[PROCESS];
      processMegabytesColor = CRT_colors[PROCESS];
   }
343
344
345
346
   if (rate == -1) {
      int len = snprintf(buffer, n, "    no perm ");
      RichString_appendn(str, CRT_colors[PROCESS_SHADOW], buffer, len);
   } else if (rate < ONE_K) {
Hisham Muhammad's avatar
Hisham Muhammad committed
347
348
349
350
351
352
353
354
355
356
357
      int len = snprintf(buffer, n, "%7.2f B/s ", rate);
      RichString_appendn(str, processColor, buffer, len);
   } else if (rate < ONE_K * ONE_K) {
      int len = snprintf(buffer, n, "%7.2f K/s ", rate / ONE_K);
      RichString_appendn(str, processColor, buffer, len);
   } else if (rate < ONE_K * ONE_K * ONE_K) {
      int len = snprintf(buffer, n, "%7.2f M/s ", rate / ONE_K / ONE_K);
      RichString_appendn(str, processMegabytesColor, buffer, len);
   } else {
      int len = snprintf(buffer, n, "%7.2f G/s ", rate / ONE_K / ONE_K / ONE_K);
      RichString_appendn(str, largeNumberColor, buffer, len);
358
359
360
   }
}

361
void Process_writeField(Process* this, RichString* str, ProcessField field) {
362
   char buffer[256]; buffer[255] = '\0';
Hisham Muhammad's avatar
Hisham Muhammad committed
363
   int attr = CRT_colors[DEFAULT_COLOR];
364
   int baseattr = CRT_colors[PROCESS_BASENAME];
365
   int n = sizeof(buffer) - 1;
Hisham Muhammad's avatar
Hisham Muhammad committed
366
   bool coloring = this->settings->highlightMegabytes;
Hisham Muhammad's avatar
Hisham Muhammad committed
367
368

   switch (field) {
369
370
   case PERCENT_CPU: {
      if (this->percent_cpu > 999.9) {
371
         xSnprintf(buffer, n, "%4d ", (unsigned int)this->percent_cpu); 
372
      } else if (this->percent_cpu > 99.9) {
373
         xSnprintf(buffer, n, "%3d. ", (unsigned int)this->percent_cpu); 
374
      } else {
375
         xSnprintf(buffer, n, "%4.1f ", this->percent_cpu);
376
377
378
379
380
      }
      break;
   }
   case PERCENT_MEM: {
      if (this->percent_mem > 99.9) {
381
         xSnprintf(buffer, n, "100. "); 
382
      } else {
383
         xSnprintf(buffer, n, "%4.1f ", this->percent_mem);
384
385
386
      }
      break;
   }
Hisham Muhammad's avatar
Hisham Muhammad committed
387
   case COMM: {
Hisham Muhammad's avatar
Hisham Muhammad committed
388
      if (this->settings->highlightThreads && Process_isThread(this)) {
389
390
391
         attr = CRT_colors[PROCESS_THREAD];
         baseattr = CRT_colors[PROCESS_THREAD_BASENAME];
      }
Hisham Muhammad's avatar
Hisham Muhammad committed
392
      if (!this->settings->treeView || this->indent == 0) {
393
         Process_writeCommand(this, attr, baseattr, str);
Hisham Muhammad's avatar
Hisham Muhammad committed
394
395
396
397
         return;
      } else {
         char* buf = buffer;
         int maxIndent = 0;
398
399
400
         bool lastItem = (this->indent < 0);
         int indent = (this->indent < 0 ? -this->indent : this->indent);

Hisham Muhammad's avatar
Hisham Muhammad committed
401
         for (int i = 0; i < 32; i++)
402
            if (indent & (1U << i))
Hisham Muhammad's avatar
Hisham Muhammad committed
403
               maxIndent = i+1;
404
          for (int i = 0; i < maxIndent - 1; i++) {
405
406
            int written;
            if (indent & (1 << i))
Hisham Muhammad's avatar
Hisham Muhammad committed
407
               written = snprintf(buf, n, "%s  ", CRT_treeStr[TREE_STR_VERT]);
Hisham Muhammad's avatar
Hisham Muhammad committed
408
            else
409
410
411
               written = snprintf(buf, n, "   ");
            buf += written;
            n -= written;
412
         }
Hisham Muhammad's avatar
Hisham Muhammad committed
413
         const char* draw = CRT_treeStr[lastItem ? (this->settings->direction == 1 ? TREE_STR_BEND : TREE_STR_TEND) : TREE_STR_RTEE];
414
         xSnprintf(buf, n, "%s%s ", draw, this->showChildren ? CRT_treeStr[TREE_STR_SHUT] : CRT_treeStr[TREE_STR_OPEN] );
Hisham Muhammad's avatar
Hisham Muhammad committed
415
         RichString_append(str, CRT_colors[PROCESS_TREE], buffer);
416
         Process_writeCommand(this, attr, baseattr, str);
417
         return;
Hisham Muhammad's avatar
Hisham Muhammad committed
418
419
      }
   }
420
421
422
423
424
   case MAJFLT: Process_colorNumber(str, this->majflt, coloring); return;
   case MINFLT: Process_colorNumber(str, this->minflt, coloring); return;
   case M_RESIDENT: Process_humanNumber(str, this->m_resident * PAGE_SIZE_KB, coloring); return;
   case M_SIZE: Process_humanNumber(str, this->m_size * PAGE_SIZE_KB, coloring); return;
   case NICE: {
425
      xSnprintf(buffer, n, "%3ld ", this->nice);
426
427
428
429
430
      attr = this->nice < 0 ? CRT_colors[PROCESS_HIGH_PRIORITY]
           : this->nice > 0 ? CRT_colors[PROCESS_LOW_PRIORITY]
           : attr;
      break;
   }
431
432
433
434
   case NLWP: xSnprintf(buffer, n, "%4ld ", this->nlwp); break;
   case PGRP: xSnprintf(buffer, n, Process_pidFormat, this->pgrp); break;
   case PID: xSnprintf(buffer, n, Process_pidFormat, this->pid); break;
   case PPID: xSnprintf(buffer, n, Process_pidFormat, this->ppid); break;
435
   case PRIORITY: {
436
      if(this->priority <= -100)
437
         xSnprintf(buffer, n, " RT ");
438
      else
439
         xSnprintf(buffer, n, "%3ld ", this->priority);
440
441
      break;
   }
442
443
444
   case PROCESSOR: xSnprintf(buffer, n, "%3d ", Settings_cpuId(this->settings, this->processor)); break;
   case SESSION: xSnprintf(buffer, n, Process_pidFormat, this->session); break;
   case STARTTIME: xSnprintf(buffer, n, "%s", this->starttime_show); break;
Hisham Muhammad's avatar
Hisham Muhammad committed
445
   case STATE: {
446
      xSnprintf(buffer, n, "%c ", this->state);
447
448
449
450
451
452
453
454
      switch(this->state) {
          case 'R':
              attr = CRT_colors[PROCESS_R_STATE];
              break;
          case 'D':
              attr = CRT_colors[PROCESS_D_STATE];
              break;
      }
Hisham Muhammad's avatar
Hisham Muhammad committed
455
456
      break;
   }
457
   case ST_UID: xSnprintf(buffer, n, "%4d ", this->st_uid); break;
458
   case TIME: Process_printTime(str, this->time); return;
459
460
461
   case TGID: xSnprintf(buffer, n, Process_pidFormat, this->tgid); break;
   case TPGID: xSnprintf(buffer, n, Process_pidFormat, this->tpgid); break;
   case TTY_NR: xSnprintf(buffer, n, "%3u:%3u ", major(this->tty_nr), minor(this->tty_nr)); break;
Hisham Muhammad's avatar
Hisham Muhammad committed
462
   case USER: {
Hisham Muhammad's avatar
Hisham Muhammad committed
463
      if (Process_getuid != (int) this->st_uid)
Hisham Muhammad's avatar
Hisham Muhammad committed
464
         attr = CRT_colors[PROCESS_SHADOW];
465
      if (this->user) {
466
         xSnprintf(buffer, n, "%-9s ", this->user);
467
      } else {
468
         xSnprintf(buffer, n, "%-9d ", this->st_uid);
469
      }
470
471
472
      if (buffer[9] != '\0') {
         buffer[9] = ' ';
         buffer[10] = '\0';
Hisham Muhammad's avatar
Hisham Muhammad committed
473
474
475
476
      }
      break;
   }
   default:
477
      xSnprintf(buffer, n, "- ");
Hisham Muhammad's avatar
Hisham Muhammad committed
478
479
480
481
   }
   RichString_append(str, attr, buffer);
}

482
void Process_display(Object* cast, RichString* out) {
483
   Process* this = (Process*) cast;
Hisham Muhammad's avatar
Hisham Muhammad committed
484
   ProcessField* fields = this->settings->fields;
485
   RichString_prune(out);
486
   for (int i = 0; fields[i]; i++)
487
      As_Process(this)->writeField(this, out, fields[i]);
Hisham Muhammad's avatar
Hisham Muhammad committed
488
   if (this->settings->shadowOtherUsers && (int)this->st_uid != Process_getuid)
489
490
491
      RichString_setAttr(out, CRT_colors[PROCESS_SHADOW]);
   if (this->tag == true)
      RichString_setAttr(out, CRT_colors[PROCESS_TAG]);
492
   assert(out->chlen > 0);
493
494
}

495
void Process_done(Process* this) {
496
   assert (this != NULL);
497
   free(this->comm);
498
499
}

500
501
502
503
504
505
506
507
ProcessClass Process_class = {
   .super = {
      .extends = Class(Object),
      .display = Process_display,
      .delete = Process_delete,
      .compare = Process_compare
   },
   .writeField = Process_writeField,
508
509
};

510
void Process_init(Process* this, struct Settings_* settings) {
Hisham Muhammad's avatar
Hisham Muhammad committed
511
   this->settings = settings;
512
   this->tag = false;
Hisham Muhammad's avatar
Hisham Muhammad committed
513
   this->showChildren = true;
514
   this->show = true;
515
   this->updated = false;
516
   this->basenameOffset = -1;
517
518
519
520
521
522
523
524
   if (Process_getuid == -1) Process_getuid = getuid();
}

void Process_toggleTag(Process* this) {
   this->tag = this->tag == true ? false : true;
}

bool Process_setPriority(Process* this, int priority) {
525
   CRT_dropPrivileges();
526
527
   int old_prio = getpriority(PRIO_PROCESS, this->pid);
   int err = setpriority(PRIO_PROCESS, this->pid, priority);
528
   CRT_restorePrivileges();
529
530
   if (err == 0 && old_prio != getpriority(PRIO_PROCESS, this->pid)) {
      this->nice = priority;
531
   }
532
   return (err == 0);
533
534
}

535
536
537
538
539
bool Process_changePriorityBy(Process* this, size_t delta) {
   return Process_setPriority(this, this->nice + delta);
}

void Process_sendSignal(Process* this, size_t sgn) {
540
   CRT_dropPrivileges();
541
   kill(this->pid, (int) sgn);
542
   CRT_restorePrivileges();
543
544
}

545
long Process_pidCompare(const void* v1, const void* v2) {
Hisham Muhammad's avatar
Hisham Muhammad committed
546
547
   Process* p1 = (Process*)v1;
   Process* p2 = (Process*)v2;
548
549
550
   return (p1->pid - p2->pid);
}

551
long Process_compare(const void* v1, const void* v2) {
552
   Process *p1, *p2;
Hisham Muhammad's avatar
Hisham Muhammad committed
553
554
   Settings *settings = ((Process*)v1)->settings;
   if (settings->direction == 1) {
555
556
557
558
559
560
      p1 = (Process*)v1;
      p2 = (Process*)v2;
   } else {
      p2 = (Process*)v1;
      p1 = (Process*)v2;
   }
Hisham Muhammad's avatar
Hisham Muhammad committed
561
   switch (settings->sortKey) {
Hisham Muhammad's avatar
Hisham Muhammad committed
562
   case PERCENT_CPU:
563
      return (p2->percent_cpu > p1->percent_cpu ? 1 : -1);
Hisham Muhammad's avatar
Hisham Muhammad committed
564
   case PERCENT_MEM:
565
      return (p2->m_resident - p1->m_resident);
Hisham Muhammad's avatar
Hisham Muhammad committed
566
   case COMM:
567
      return strcmp(p1->comm, p2->comm);
568
569
570
571
572
573
574
575
576
577
   case MAJFLT:
      return (p2->majflt - p1->majflt);
   case MINFLT:
      return (p2->minflt - p1->minflt);
   case M_RESIDENT:
      return (p2->m_resident - p1->m_resident);
   case M_SIZE:
      return (p2->m_size - p1->m_size);
   case NICE:
      return (p1->nice - p2->nice);
578
579
   case NLWP:
      return (p1->nlwp - p2->nlwp);
580
581
582
583
584
585
586
587
   case PGRP:
      return (p1->pgrp - p2->pgrp);
   case PID:
      return (p1->pid - p2->pid);
   case PPID:
      return (p1->ppid - p2->ppid);
   case PRIORITY:
      return (p1->priority - p2->priority);
588
589
   case PROCESSOR:
      return (p1->processor - p2->processor);
590
591
   case SESSION:
      return (p1->session - p2->session);
592
593
594
595
596
597
   case STARTTIME: {
      if (p1->starttime_ctime == p2->starttime_ctime)
         return (p1->pid - p2->pid);
      else
         return (p1->starttime_ctime - p2->starttime_ctime);
   }
598
599
600
601
602
603
604
605
606
607
608
609
610
611
   case STATE:
      return (p1->state - p2->state);
   case ST_UID:
      return (p1->st_uid - p2->st_uid);
   case TIME:
      return ((p2->time) - (p1->time));
   case TGID:
      return (p1->tgid - p2->tgid);
   case TPGID:
      return (p1->tpgid - p2->tpgid);
   case TTY_NR:
      return (p1->tty_nr - p2->tty_nr);
   case USER:
      return strcmp(p1->user ? p1->user : "", p2->user ? p2->user : "");
Hisham Muhammad's avatar
Hisham Muhammad committed
612
   default:
613
      return (p1->pid - p2->pid);
Hisham Muhammad's avatar
Hisham Muhammad committed
614
615
   }
}