From eb2803ce79604b45c070edbe1e787f4373949cfe Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Wed, 12 Jul 2006 01:35:59 +0000 Subject: Share name strings from UsersList --- Process.c | 14 ++++++++++---- Process.h | 3 +-- ProcessList.c | 7 +------ 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Process.c b/Process.c index 9d5e0aa1..50aac7cb 100644 --- a/Process.c +++ b/Process.c @@ -31,7 +31,6 @@ in the source distribution for its full text. #define PAGE_SIZE ( sysconf(_SC_PAGESIZE) / 1024 ) #define PROCESS_COMM_LEN 300 -#define PROCESS_USER_LEN 10 /*{ @@ -105,7 +104,7 @@ typedef struct Process_ { uid_t st_uid; float percent_cpu; float percent_mem; - char user[PROCESS_USER_LEN + 1]; + char* user; } Process; }*/ @@ -120,6 +119,8 @@ char *Process_fieldNames[] = { "", "PID", "Command", "STATE", "PPID", "PGRP", "SESSION", "TTY_NR", "TPGID", "FLAGS", "MINFLT", "CMINFLT", "MAJFLT", "CMAJFLT", "UTIME", "STIME", "CUTIME", "CSTIME", "PRIORITY", "NICE", "ITREALVALUE", "STARTTIME", "VSIZE", "RSS", "RLIM", "STARTCODE", "ENDCODE", "STARTSTACK", "KSTKESP", "KSTKEIP", "SIGNAL", "BLOCKED", "SIGIGNORE", "SIGCATCH", "WCHAN", "NSWAP", "CNSWAP", "EXIT_SIGNAL", "PROCESSOR", "M_SIZE", "M_RESIDENT", "M_SHARE", "M_TRS", "M_DRS", "M_LRS", "M_DT", "ST_UID", "PERCENT_CPU", "PERCENT_MEM", "USER", "TIME", "*** report bug! ***" }; +static int Process_getuid = -1; + Process* Process_new(struct ProcessList_ *pl) { Process* this = malloc(sizeof(Process)); Object_setClass(this, PROCESS_CLASS); @@ -131,6 +132,7 @@ Process* Process_new(struct ProcessList_ *pl) { this->utime = 0; this->stime = 0; this->comm = NULL; + if (Process_getuid == -1) Process_getuid = getuid(); return this; } @@ -153,7 +155,7 @@ void Process_display(Object* cast, RichString* out) { RichString_init(out); for (int i = 0; fields[i]; i++) Process_writeField(this, out, fields[i]); - if (this->pl->shadowOtherUsers && this->st_uid != getuid()) + if (this->pl->shadowOtherUsers && this->st_uid != Process_getuid) RichString_setAttr(out, CRT_colors[PROCESS_SHADOW]); if (this->tag == true) RichString_setAttr(out, CRT_colors[PROCESS_TAG]); @@ -315,9 +317,13 @@ void Process_writeField(Process* this, RichString* str, ProcessField field) { case M_SHARE: Process_printLargeNumber(this, str, this->m_share * PAGE_SIZE); return; case ST_UID: snprintf(buffer, n, "%4d ", this->st_uid); break; case USER: { - if (getuid() != this->st_uid) + if (Process_getuid != this->st_uid) attr = CRT_colors[PROCESS_SHADOW]; + if (this->user) { snprintf(buffer, n, "%-8s ", this->user); + } else { + snprintf(buffer, n, "%-8d ", this->st_uid); + } if (buffer[8] != '\0') { buffer[8] = ' '; buffer[9] = '\0'; diff --git a/Process.h b/Process.h index 680b0d4a..5c4c7166 100644 --- a/Process.h +++ b/Process.h @@ -34,7 +34,6 @@ in the source distribution for its full text. #define PAGE_SIZE ( sysconf(_SC_PAGESIZE) / 1024 ) #define PROCESS_COMM_LEN 300 -#define PROCESS_USER_LEN 10 typedef enum ProcessField_ { @@ -107,7 +106,7 @@ typedef struct Process_ { uid_t st_uid; float percent_cpu; float percent_mem; - char user[PROCESS_USER_LEN + 1]; + char* user; } Process; diff --git a/ProcessList.c b/ProcessList.c index c2c6433c..87db785c 100644 --- a/ProcessList.c +++ b/ProcessList.c @@ -541,12 +541,7 @@ void ProcessList_processEntries(ProcessList* this, char* dirname, int parent, fl goto errorReadingProcess; if(!existingProcess) { - 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); - } + process->user = UsersTable_getRef(this->usersTable, process->st_uid); snprintf(statusfilename, MAX_NAME, "%s/%s/cmdline", dirname, name); status = ProcessList_fopen(this, statusfilename, "r"); -- cgit v1.2.3