ProcessList.h 4.43 KB
Newer Older
Hisham Muhammad's avatar
Hisham Muhammad committed
1
/* Do not edit this file. It was automatically generated. */
Hisham Muhammad's avatar
Hisham Muhammad committed
2
3
4
5

#ifndef HEADER_ProcessList
#define HEADER_ProcessList
/*
Hisham Muhammad's avatar
Hisham Muhammad committed
6
htop - ProcessList.h
Hisham Muhammad's avatar
Hisham Muhammad committed
7
(C) 2004,2005 Hisham H. Muhammad
Hisham Muhammad's avatar
Hisham Muhammad committed
8
9
10
11
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

Hisham Muhammad's avatar
Hisham Muhammad committed
12
13
14
15
16
#ifndef CONFIG_H
#define CONFIG_H
#include "config.h"
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
17
#include "Process.h"
18
#include "Vector.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
19
20
#include "UsersTable.h"
#include "Hashtable.h"
21
#include "String.h"
22
#include "Panel.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
23
24
25
26
27
28
29
30
31
32

#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
33
#include <stdarg.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
34
#include <math.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
35
36
37
38

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

39

Hisham Muhammad's avatar
Hisham Muhammad committed
40
41
42
43
44
#ifndef PROCDIR
#define PROCDIR "/proc"
#endif

#ifndef PROCSTATFILE
45
#define PROCSTATFILE PROCDIR "/stat"
Hisham Muhammad's avatar
Hisham Muhammad committed
46
47
48
#endif

#ifndef PROCMEMINFOFILE
49
#define PROCMEMINFOFILE PROCDIR "/meminfo"
Hisham Muhammad's avatar
Hisham Muhammad committed
50
51
52
53
54
55
#endif

#ifndef MAX_NAME
#define MAX_NAME 128
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
56
#ifndef MAX_READ
57
#define MAX_READ 2048
Hisham Muhammad's avatar
Hisham Muhammad committed
58
59
#endif

60
#ifndef ProcessList_cpuId
61
#define ProcessList_cpuId(pl, cpu) ((pl)->countCPUsFromZero ? (cpu) : (cpu)+1)
62
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
63

64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
typedef enum TreeStr_ {
   TREE_STR_HORZ,
   TREE_STR_VERT,
   TREE_STR_RTEE,
   TREE_STR_BEND,
   TREE_STR_TEND,
   TREE_STR_OPEN,
   TREE_STR_SHUT,
   TREE_STR_COUNT
} TreeStr;

typedef enum TreeType_ {
   TREE_TYPE_AUTO,
   TREE_TYPE_ASCII,
   TREE_TYPE_UTF8,
} TreeType;
Hisham Muhammad's avatar
Hisham Muhammad committed
80

81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
typedef struct CPUData_ {
   unsigned long long int totalTime;
   unsigned long long int userTime;
   unsigned long long int systemTime;
   unsigned long long int systemAllTime;
   unsigned long long int idleAllTime;
   unsigned long long int idleTime;
   unsigned long long int niceTime;
   unsigned long long int ioWaitTime;
   unsigned long long int irqTime;
   unsigned long long int softIrqTime;
   unsigned long long int stealTime;
   unsigned long long int guestTime;
   
   unsigned long long int totalPeriod;
   unsigned long long int userPeriod;
   unsigned long long int systemPeriod;
   unsigned long long int systemAllPeriod;
   unsigned long long int idleAllPeriod;
   unsigned long long int idlePeriod;
   unsigned long long int nicePeriod;
   unsigned long long int ioWaitPeriod;
   unsigned long long int irqPeriod;
   unsigned long long int softIrqPeriod;
   unsigned long long int stealPeriod;
   unsigned long long int guestPeriod;
} CPUData;

Hisham Muhammad's avatar
Hisham Muhammad committed
109
typedef struct ProcessList_ {
110
111
   Vector* processes;
   Vector* processes2;
Hisham Muhammad's avatar
Hisham Muhammad committed
112
113
114
   Hashtable* processTable;
   UsersTable* usersTable;

115
116
117
118
119
120
121
   Panel* panel;
   bool follow;
   bool userOnly;
   uid_t userId;
   bool filtering;
   const char* incFilter;

122
   int cpuCount;
Hisham Muhammad's avatar
Hisham Muhammad committed
123
   int totalTasks;
124
125
   int userlandThreads;
   int kernelThreads;
Hisham Muhammad's avatar
Hisham Muhammad committed
126
127
   int runningTasks;

128
   #ifdef HAVE_LIBHWLOC
129
130
131
   hwloc_topology_t topology;
   bool topologyOk;
   #endif
132
   CPUData* cpus;
133
134
135
136
137
138
139
140
141
142

   unsigned long long int totalMem;
   unsigned long long int usedMem;
   unsigned long long int freeMem;
   unsigned long long int sharedMem;
   unsigned long long int buffersMem;
   unsigned long long int cachedMem;
   unsigned long long int totalSwap;
   unsigned long long int usedSwap;
   unsigned long long int freeSwap;
Hisham Muhammad's avatar
Hisham Muhammad committed
143
144
145
146
147
148

   ProcessField* fields;
   ProcessField sortKey;
   int direction;
   bool hideThreads;
   bool shadowOtherUsers;
Hisham Muhammad's avatar
Hisham Muhammad committed
149
150
   bool showThreadNames;
   bool showingThreadNames;
Hisham Muhammad's avatar
Hisham Muhammad committed
151
152
153
154
155
   bool hideKernelThreads;
   bool hideUserlandThreads;
   bool treeView;
   bool highlightBaseName;
   bool highlightMegabytes;
156
   bool highlightThreads;
157
   bool detailedCPUTime;
158
   bool countCPUsFromZero;
159
   const char **treeStr;
Hisham Muhammad's avatar
Hisham Muhammad committed
160
161
162

} ProcessList;

163
164
165
166
167

extern const char *ProcessList_treeStrAscii[TREE_STR_COUNT];

extern const char *ProcessList_treeStrUtf8[TREE_STR_COUNT];

Hisham Muhammad's avatar
Hisham Muhammad committed
168
169
170
171
ProcessList* ProcessList_new(UsersTable* usersTable);

void ProcessList_delete(ProcessList* this);

172
173
void ProcessList_setPanel(ProcessList* this, Panel* panel);

Hisham Muhammad's avatar
Hisham Muhammad committed
174
175
void ProcessList_invertSortOrder(ProcessList* this);

176
void ProcessList_printHeader(ProcessList* this, RichString* header);
Hisham Muhammad's avatar
Hisham Muhammad committed
177

Hisham Muhammad's avatar
Hisham Muhammad committed
178
Process* ProcessList_get(ProcessList* this, int idx);
Hisham Muhammad's avatar
Hisham Muhammad committed
179
180
181
182
183

int ProcessList_size(ProcessList* this);

void ProcessList_sort(ProcessList* this);

184
185
#ifdef HAVE_TASKSTATS

186
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
187

188
189
190
191
192
193
194
195
196
197
198
199
200
#ifdef HAVE_OPENVZ

#endif

#ifdef HAVE_CGROUP

#endif

#ifdef HAVE_VSERVER

#endif


Hisham Muhammad's avatar
Hisham Muhammad committed
201
202
void ProcessList_scan(ProcessList* this);

203
204
ProcessField ProcessList_keyAt(ProcessList* this, int at);

205
206
void ProcessList_expandTree(ProcessList* this);

207
208
void ProcessList_rebuildPanel(ProcessList* this, bool flags, bool follow, bool userOnly, uid_t userId, bool filtering, const char* incFilter);

Hisham Muhammad's avatar
Hisham Muhammad committed
209
#endif