Process.c 18.7 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

175
176
#define Process_isChildOf(process_, pid_) (process_->tgid == pid_ || (process_->tgid == process_->pid && process_->ppid == pid_))

177
178
#define Process_sortState(state) ((state) == 'I' ? 0x100 : (state))

Hisham Muhammad's avatar
Hisham Muhammad committed
179
}*/
180

181
182
static int Process_getuid = -1;

183
#define ONE_K 1024L
Hisham Muhammad's avatar
Hisham Muhammad committed
184
185
186
#define ONE_M (ONE_K * ONE_K)
#define ONE_G (ONE_M * ONE_K)

187
#define ONE_DECIMAL_K 1000L
188
#define ONE_DECIMAL_M (ONE_DECIMAL_K * ONE_DECIMAL_K)
189
#define ONE_DECIMAL_G (ONE_DECIMAL_M * ONE_DECIMAL_K)
190

Hisham's avatar
Hisham committed
191
char Process_pidFormat[20] = "%7d ";
192
193
194
195
196
197
198
199
200
201

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);
202
      xSnprintf(Process_titleBuffer[i], 20, "%*s ", digits, Process_pidColumns[i].label);
203
204
      Process_fields[Process_pidColumns[i].id].title = Process_titleBuffer[i];
   }
205
   xSnprintf(Process_pidFormat, sizeof(Process_pidFormat), "%%%dd ", digits);
206
207
}

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

256
void Process_colorNumber(RichString* str, unsigned long long number, bool coloring) {
257
   char buffer[14];
258
259
260
261
262
263
264
265
266
267
268

   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];
   }

269
270
271
272
   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) {
273
      xSnprintf(buffer, 13, "%11lld ", number / 1000);
274
275
276
      RichString_appendn(str, largeNumberColor, buffer, 5);
      RichString_appendn(str, processMegabytesColor, buffer+5, 3);
      RichString_appendn(str, processColor, buffer+8, 4);
277
   } else {
278
      xSnprintf(buffer, 13, "%11llu ", number);
279
280
281
282
      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);
283
284
285
   }
}

286
287
void Process_printTime(RichString* str, unsigned long long totalHundredths) {
   unsigned long long totalSeconds = totalHundredths / 100;
Hisham Muhammad's avatar
Hisham Muhammad committed
288

289
290
291
292
   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
293
   char buffer[11];
294
   if (hours >= 100) {
295
      xSnprintf(buffer, 10, "%7lluh ", hours);
Hisham Muhammad's avatar
Hisham Muhammad committed
296
297
      RichString_append(str, CRT_colors[LARGE_NUMBER], buffer);
   } else {
298
      if (hours) {
299
         xSnprintf(buffer, 10, "%2lluh", hours);
300
         RichString_append(str, CRT_colors[LARGE_NUMBER], buffer);
301
         xSnprintf(buffer, 10, "%02d:%02d ", minutes, seconds);
302
      } else {
303
         xSnprintf(buffer, 10, "%2d:%02d.%02d ", minutes, seconds, hundredths);
304
305
      }
      RichString_append(str, CRT_colors[DEFAULT_COLOR], buffer);
Hisham Muhammad's avatar
Hisham Muhammad committed
306
307
308
   }
}

309
static inline void Process_writeCommand(Process* this, int attr, int baseattr, RichString* str) {
310
311
312
313
314
315
316
317
318
319
320
   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;
321
         }
Hisham Muhammad's avatar
Hisham Muhammad committed
322
      }
323
324
325
326
327
328
329
330
      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
331
   }
332
333
334
335
336

   RichString_append(str, attr, comm);

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

339
void Process_outputRate(RichString* str, char* buffer, int n, double rate, int coloring) {
Hisham Muhammad's avatar
Hisham Muhammad committed
340
341
342
343
344
345
346
   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];
   }
347
348
349
350
   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
351
352
353
354
355
356
357
358
359
360
361
      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);
362
363
364
   }
}

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

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

Hisham Muhammad's avatar
Hisham Muhammad committed
405
         for (int i = 0; i < 32; i++)
406
            if (indent & (1U << i))
Hisham Muhammad's avatar
Hisham Muhammad committed
407
               maxIndent = i+1;
408
          for (int i = 0; i < maxIndent - 1; i++) {
409
410
            int written;
            if (indent & (1 << i))
Hisham Muhammad's avatar
Hisham Muhammad committed
411
               written = snprintf(buf, n, "%s  ", CRT_treeStr[TREE_STR_VERT]);
Hisham Muhammad's avatar
Hisham Muhammad committed
412
            else
413
414
415
               written = snprintf(buf, n, "   ");
            buf += written;
            n -= written;
416
         }
Hisham Muhammad's avatar
Hisham Muhammad committed
417
         const char* draw = CRT_treeStr[lastItem ? (this->settings->direction == 1 ? TREE_STR_BEND : TREE_STR_TEND) : TREE_STR_RTEE];
418
         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
419
         RichString_append(str, CRT_colors[PROCESS_TREE], buffer);
420
         Process_writeCommand(this, attr, baseattr, str);
421
         return;
Hisham Muhammad's avatar
Hisham Muhammad committed
422
423
      }
   }
424
425
426
427
428
   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: {
429
      xSnprintf(buffer, n, "%3ld ", this->nice);
430
431
432
433
434
      attr = this->nice < 0 ? CRT_colors[PROCESS_HIGH_PRIORITY]
           : this->nice > 0 ? CRT_colors[PROCESS_LOW_PRIORITY]
           : attr;
      break;
   }
435
436
437
438
   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;
439
   case PRIORITY: {
440
      if(this->priority <= -100)
441
         xSnprintf(buffer, n, " RT ");
442
      else
443
         xSnprintf(buffer, n, "%3ld ", this->priority);
444
445
      break;
   }
446
447
448
   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
449
   case STATE: {
450
      xSnprintf(buffer, n, "%c ", this->state);
451
452
453
454
455
456
457
458
      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
459
460
      break;
   }
461
   case ST_UID: xSnprintf(buffer, n, "%4d ", this->st_uid); break;
462
   case TIME: Process_printTime(str, this->time); return;
463
464
465
   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
466
   case USER: {
Hisham Muhammad's avatar
Hisham Muhammad committed
467
      if (Process_getuid != (int) this->st_uid)
Hisham Muhammad's avatar
Hisham Muhammad committed
468
         attr = CRT_colors[PROCESS_SHADOW];
469
      if (this->user) {
470
         xSnprintf(buffer, n, "%-9s ", this->user);
471
      } else {
472
         xSnprintf(buffer, n, "%-9d ", this->st_uid);
473
      }
474
475
476
      if (buffer[9] != '\0') {
         buffer[9] = ' ';
         buffer[10] = '\0';
Hisham Muhammad's avatar
Hisham Muhammad committed
477
478
479
480
      }
      break;
   }
   default:
481
      xSnprintf(buffer, n, "- ");
Hisham Muhammad's avatar
Hisham Muhammad committed
482
483
484
485
   }
   RichString_append(str, attr, buffer);
}

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

499
void Process_done(Process* this) {
500
   assert (this != NULL);
501
   free(this->comm);
502
503
}

504
505
506
507
508
509
510
511
ProcessClass Process_class = {
   .super = {
      .extends = Class(Object),
      .display = Process_display,
      .delete = Process_delete,
      .compare = Process_compare
   },
   .writeField = Process_writeField,
512
513
};

514
void Process_init(Process* this, struct Settings_* settings) {
Hisham Muhammad's avatar
Hisham Muhammad committed
515
   this->settings = settings;
516
   this->tag = false;
Hisham Muhammad's avatar
Hisham Muhammad committed
517
   this->showChildren = true;
518
   this->show = true;
519
   this->updated = false;
520
   this->basenameOffset = -1;
521
522
523
524
525
526
527
528
   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) {
529
   CRT_dropPrivileges();
530
531
   int old_prio = getpriority(PRIO_PROCESS, this->pid);
   int err = setpriority(PRIO_PROCESS, this->pid, priority);
532
   CRT_restorePrivileges();
533
534
   if (err == 0 && old_prio != getpriority(PRIO_PROCESS, this->pid)) {
      this->nice = priority;
535
   }
536
   return (err == 0);
537
538
}

539
540
541
542
543
bool Process_changePriorityBy(Process* this, size_t delta) {
   return Process_setPriority(this, this->nice + delta);
}

void Process_sendSignal(Process* this, size_t sgn) {
544
   CRT_dropPrivileges();
545
   kill(this->pid, (int) sgn);
546
   CRT_restorePrivileges();
547
548
}

549
long Process_pidCompare(const void* v1, const void* v2) {
Hisham Muhammad's avatar
Hisham Muhammad committed
550
551
   Process* p1 = (Process*)v1;
   Process* p2 = (Process*)v2;
552
553
554
   return (p1->pid - p2->pid);
}

555
long Process_compare(const void* v1, const void* v2) {
556
   Process *p1, *p2;
Hisham Muhammad's avatar
Hisham Muhammad committed
557
558
   Settings *settings = ((Process*)v1)->settings;
   if (settings->direction == 1) {
559
560
561
562
563
564
      p1 = (Process*)v1;
      p2 = (Process*)v2;
   } else {
      p2 = (Process*)v1;
      p1 = (Process*)v2;
   }
Hisham Muhammad's avatar
Hisham Muhammad committed
565
   switch (settings->sortKey) {
Hisham Muhammad's avatar
Hisham Muhammad committed
566
   case PERCENT_CPU:
567
      return (p2->percent_cpu > p1->percent_cpu ? 1 : -1);
Hisham Muhammad's avatar
Hisham Muhammad committed
568
   case PERCENT_MEM:
569
      return (p2->m_resident - p1->m_resident);
Hisham Muhammad's avatar
Hisham Muhammad committed
570
   case COMM:
571
      return strcmp(p1->comm, p2->comm);
572
573
574
575
576
577
578
579
580
581
   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);
582
583
   case NLWP:
      return (p1->nlwp - p2->nlwp);
584
585
586
587
588
589
590
591
   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);
592
593
   case PROCESSOR:
      return (p1->processor - p2->processor);
594
595
   case SESSION:
      return (p1->session - p2->session);
596
597
598
599
600
601
   case STARTTIME: {
      if (p1->starttime_ctime == p2->starttime_ctime)
         return (p1->pid - p2->pid);
      else
         return (p1->starttime_ctime - p2->starttime_ctime);
   }
602
   case STATE:
603
      return (Process_sortState(p1->state) - Process_sortState(p2->state));
604
605
606
607
608
609
610
611
612
613
614
615
   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
616
   default:
617
      return (p1->pid - p2->pid);
Hisham Muhammad's avatar
Hisham Muhammad committed
618
619
   }
}