ProcessList.h 3.68 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"
Hisham Muhammad's avatar
Hisham Muhammad committed
22
23
24
25
26
27
28
29
30
31

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

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

38

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

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

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

#ifndef MAX_NAME
#define MAX_NAME 128
#endif

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

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


64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
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
92
typedef struct ProcessList_ {
93
94
   Vector* processes;
   Vector* processes2;
Hisham Muhammad's avatar
Hisham Muhammad committed
95
96
97
   Hashtable* processTable;
   UsersTable* usersTable;

98
   int cpuCount;
Hisham Muhammad's avatar
Hisham Muhammad committed
99
   int totalTasks;
100
101
   int userlandThreads;
   int kernelThreads;
Hisham Muhammad's avatar
Hisham Muhammad committed
102
103
   int runningTasks;

104
105
106
107
   #ifdef HAVE_HWLOC
   hwloc_topology_t topology;
   bool topologyOk;
   #endif
108
   CPUData* cpus;
109
110
111
112
113
114
115
116
117
118

   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
119
120
121
122
123
124

   ProcessField* fields;
   ProcessField sortKey;
   int direction;
   bool hideThreads;
   bool shadowOtherUsers;
Hisham Muhammad's avatar
Hisham Muhammad committed
125
126
   bool showThreadNames;
   bool showingThreadNames;
Hisham Muhammad's avatar
Hisham Muhammad committed
127
128
129
130
131
   bool hideKernelThreads;
   bool hideUserlandThreads;
   bool treeView;
   bool highlightBaseName;
   bool highlightMegabytes;
132
   bool highlightThreads;
133
   bool detailedCPUTime;
134
   bool countCPUsFromZero;
Hisham Muhammad's avatar
Hisham Muhammad committed
135
136
137
138
139
140
141
142
143

} ProcessList;

ProcessList* ProcessList_new(UsersTable* usersTable);

void ProcessList_delete(ProcessList* this);

void ProcessList_invertSortOrder(ProcessList* this);

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

Hisham Muhammad's avatar
Hisham Muhammad committed
146
Process* ProcessList_get(ProcessList* this, int idx);
Hisham Muhammad's avatar
Hisham Muhammad committed
147
148
149
150
151

int ProcessList_size(ProcessList* this);

void ProcessList_sort(ProcessList* this);

152
153
#ifdef HAVE_TASKSTATS

154
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
155

156
157
158
159
160
161
162
163
164
165
166
167
168
#ifdef HAVE_OPENVZ

#endif

#ifdef HAVE_CGROUP

#endif

#ifdef HAVE_VSERVER

#endif


Hisham Muhammad's avatar
Hisham Muhammad committed
169
170
void ProcessList_scan(ProcessList* this);

171
172
ProcessField ProcessList_keyAt(ProcessList* this, int at);

173
174
void ProcessList_expandTree(ProcessList* this);

Hisham Muhammad's avatar
Hisham Muhammad committed
175
#endif