2006-03-04 18:16:49 +00:00
|
|
|
#ifndef HEADER_ProcessList
|
|
|
|
#define HEADER_ProcessList
|
|
|
|
/*
|
2006-06-06 20:28:42 +00:00
|
|
|
htop - ProcessList.h
|
2006-03-24 03:39:04 +00:00
|
|
|
(C) 2004,2005 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2006-03-04 18:16:49 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2021-04-29 15:12:43 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/time.h>
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "Hashtable.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "Object.h"
|
2011-12-01 12:31:57 +00:00
|
|
|
#include "Panel.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
#include "Process.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "RichString.h"
|
2015-01-22 01:27:31 +00:00
|
|
|
#include "Settings.h"
|
2020-09-18 17:23:04 +00:00
|
|
|
#include "UsersTable.h"
|
|
|
|
#include "Vector.h"
|
2010-08-24 23:20:38 +00:00
|
|
|
|
2016-02-14 21:57:29 +00:00
|
|
|
#ifdef HAVE_LIBHWLOC
|
|
|
|
#include <hwloc.h>
|
|
|
|
#endif
|
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
#ifndef MAX_NAME
|
|
|
|
#define MAX_NAME 128
|
|
|
|
#endif
|
|
|
|
|
2006-03-24 03:39:04 +00:00
|
|
|
#ifndef MAX_READ
|
2006-07-11 06:13:32 +00:00
|
|
|
#define MAX_READ 2048
|
2006-03-24 03:39:04 +00:00
|
|
|
#endif
|
|
|
|
|
2021-01-06 17:11:24 +00:00
|
|
|
typedef unsigned long long int memory_t;
|
|
|
|
#define MEMORY_MAX ULLONG_MAX
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
typedef struct ProcessList_ {
|
2020-10-21 19:26:09 +00:00
|
|
|
const Settings* settings;
|
2015-01-22 01:27:31 +00:00
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector* processes;
|
|
|
|
Vector* processes2;
|
2006-03-04 18:16:49 +00:00
|
|
|
Hashtable* processTable;
|
|
|
|
UsersTable* usersTable;
|
|
|
|
|
2020-11-18 11:19:42 +00:00
|
|
|
Hashtable* displayTreeSet;
|
|
|
|
Hashtable* draftingTreeSet;
|
|
|
|
|
2021-06-23 07:44:56 +00:00
|
|
|
Hashtable* dynamicMeters; /* runtime-discovered meters */
|
|
|
|
|
2021-03-30 04:55:48 +00:00
|
|
|
struct timeval realtime; /* time of the current sample */
|
|
|
|
uint64_t realtimeMs; /* current time in milliseconds */
|
|
|
|
uint64_t monotonicMs; /* same, but from monotonic clock */
|
2021-03-23 06:27:05 +00:00
|
|
|
|
2011-12-01 12:31:57 +00:00
|
|
|
Panel* panel;
|
2012-02-02 23:45:40 +00:00
|
|
|
int following;
|
2011-12-01 12:31:57 +00:00
|
|
|
uid_t userId;
|
|
|
|
const char* incFilter;
|
2020-09-09 09:38:15 +00:00
|
|
|
Hashtable* pidMatchList;
|
2011-12-01 12:31:57 +00:00
|
|
|
|
2011-11-21 02:52:41 +00:00
|
|
|
#ifdef HAVE_LIBHWLOC
|
2011-09-24 00:30:47 +00:00
|
|
|
hwloc_topology_t topology;
|
|
|
|
bool topologyOk;
|
|
|
|
#endif
|
2015-01-22 01:27:31 +00:00
|
|
|
|
2021-02-17 16:38:35 +00:00
|
|
|
unsigned int totalTasks;
|
|
|
|
unsigned int runningTasks;
|
|
|
|
unsigned int userlandThreads;
|
|
|
|
unsigned int kernelThreads;
|
2015-03-17 02:01:48 +00:00
|
|
|
|
2021-01-06 17:11:24 +00:00
|
|
|
memory_t totalMem;
|
|
|
|
memory_t usedMem;
|
|
|
|
memory_t buffersMem;
|
|
|
|
memory_t cachedMem;
|
2021-03-03 18:48:30 +00:00
|
|
|
memory_t sharedMem;
|
2021-01-06 17:11:24 +00:00
|
|
|
memory_t availableMem;
|
2021-01-07 13:38:18 +00:00
|
|
|
|
2021-01-06 17:11:24 +00:00
|
|
|
memory_t totalSwap;
|
|
|
|
memory_t usedSwap;
|
|
|
|
memory_t cachedSwap;
|
2015-03-16 06:13:42 +00:00
|
|
|
|
2021-02-17 16:38:35 +00:00
|
|
|
unsigned int cpuCount;
|
2006-03-04 18:16:49 +00:00
|
|
|
} ProcessList;
|
|
|
|
|
2021-06-23 07:44:56 +00:00
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* dynamicMeters, Hashtable* pidMatchList, uid_t userId);
|
2014-11-27 19:48:38 +00:00
|
|
|
void ProcessList_delete(ProcessList* pl);
|
2020-10-27 20:26:28 +00:00
|
|
|
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate);
|
2014-11-24 20:55:03 +00:00
|
|
|
|
2011-11-03 22:12:12 +00:00
|
|
|
|
2021-06-23 07:44:56 +00:00
|
|
|
ProcessList* ProcessList_init(ProcessList* this, const ObjectClass* klass, UsersTable* usersTable, Hashtable* dynamicMeters, Hashtable* pidMatchList, uid_t userId);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void ProcessList_done(ProcessList* this);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void ProcessList_setPanel(ProcessList* this, Panel* panel);
|
2011-12-01 12:31:57 +00:00
|
|
|
|
2021-01-05 22:42:55 +00:00
|
|
|
void ProcessList_printHeader(const ProcessList* this, RichString* header);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void ProcessList_add(ProcessList* this, Process* p);
|
2014-11-24 20:55:03 +00:00
|
|
|
|
2021-01-05 22:42:55 +00:00
|
|
|
void ProcessList_remove(ProcessList* this, const Process* p);
|
2014-11-24 20:55:03 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void ProcessList_sort(ProcessList* this);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-11-04 16:46:11 +00:00
|
|
|
ProcessField ProcessList_keyAt(const ProcessList* this, int at);
|
2008-03-14 18:50:49 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void ProcessList_expandTree(ProcessList* this);
|
2010-08-24 23:20:38 +00:00
|
|
|
|
2021-02-12 17:48:09 +00:00
|
|
|
void ProcessList_collapseAllBranches(ProcessList* this);
|
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void ProcessList_rebuildPanel(ProcessList* this);
|
2011-12-01 12:31:57 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
Process* ProcessList_getProcess(ProcessList* this, pid_t pid, bool* preExisting, Process_New constructor);
|
2015-03-17 02:01:48 +00:00
|
|
|
|
2020-10-13 14:03:37 +00:00
|
|
|
void ProcessList_scan(ProcessList* this, bool pauseProcessUpdate);
|
2014-11-24 20:55:03 +00:00
|
|
|
|
2021-03-19 16:34:12 +00:00
|
|
|
static inline Process* ProcessList_findProcess(ProcessList* this, pid_t pid) {
|
|
|
|
return (Process*) Hashtable_get(this->processTable, pid);
|
|
|
|
}
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
#endif
|