summaryrefslogtreecommitdiff
path: root/src/include-local/s6ps.h
blob: ca33a7375f3c0a3ca4c2e54a8273ae38d53a4fed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/* ISC license. */

#ifndef S6PS_H
#define S6PS_H

#include <sys/types.h>
#include <stdint.h>

#include <skalibs/uint64.h>
#include <skalibs/stralloc.h>
#include <skalibs/genalloc.h>
#include <skalibs/tai.h>
#include <skalibs/avltree.h>
#include <skalibs/avltreen.h>

typedef enum pfield_e pfield_t, *pfield_t_ref ;
enum pfield_e
{
  PFIELD_PID,
  PFIELD_COMM,
  PFIELD_STATE,
  PFIELD_PPID,
  PFIELD_PGRP,
  PFIELD_SESSION,
  PFIELD_TTY,
  PFIELD_TPGID,
  PFIELD_MINFLT,
  PFIELD_CMINFLT,
  PFIELD_MAJFLT,
  PFIELD_CMAJFLT, 
  PFIELD_UTIME,
  PFIELD_STIME,
  PFIELD_CUTIME,
  PFIELD_CSTIME,
  PFIELD_PRIO,
  PFIELD_NICE,
  PFIELD_THREADS,
  PFIELD_START,
  PFIELD_VSIZE,
  PFIELD_RSS,
  PFIELD_RSSLIM,
  PFIELD_CPUNO,
  PFIELD_RTPRIO,
  PFIELD_RTPOLICY,
  PFIELD_USER,
  PFIELD_GROUP,
  PFIELD_PMEM,
  PFIELD_WCHAN,
  PFIELD_ARGS,
  PFIELD_ENV,
  PFIELD_PCPU,
  PFIELD_TTIME,
  PFIELD_CTTIME,
  PFIELD_TSTART,
  PFIELD_CPCPU,
  PFIELD_PHAIL
} ;

typedef struct pscan_s pscan_t, *pscan_t_ref ;
struct pscan_s
{
  stralloc data ;
  pid_t pid ;
  signed int height ;
  size_t statlen ;
  size_t commlen ;
  size_t cmdlen ;
  size_t envlen ;
  uid_t uid ;
  gid_t gid ;
  pid_t ppid ;
  unsigned int state ;
  pid_t pgrp ;
  pid_t session ;
  dev_t ttynr ;
  pid_t tpgid ;
  uint64_t minflt ;
  uint64_t cminflt ;
  uint64_t majflt ;
  uint64_t cmajflt ;
  uint64_t utime ;
  uint64_t stime ;
  uint64_t cutime ;
  uint64_t cstime ;
  int prio ;
  int nice ;
  uint64_t threads ;
  uint64_t start ;
  uint64_t vsize ;
  uint64_t rss ;
  uint64_t rsslim ;
  uint64_t wchan ;
  uint64_t cpuno ;
  uint64_t rtprio ;
  uint64_t policy ;
} ;

#define PSCAN_ZERO \
{ \
  .data = STRALLOC_ZERO, \
  .pid = 0, \
  .height = 0, \
  .statlen = 0, \
  .commlen = 0, \
  .cmdlen = 0, \
  .envlen = 0, \
  .uid = 0, \
  .gid = 0, \
  .ppid = 0, \
  .state = 0, \
  .pgrp = 0, \
  .session = 0, \
  .ttynr = 0, \
  .tpgid = -1, \
  .minflt = 0, \
  .cminflt = 0, \
  .majflt = 0, \
  .cmajflt = 0, \
  .utime = 0, \
  .stime = 0, \
  .cutime = 0, \
  .cstime = 0, \
  .prio = 0, \
  .nice = 0, \
  .threads = 0, \
  .start = 0, \
  .vsize = 0, \
  .rss = 0, \
  .rsslim = 0, \
  .wchan = 0, \
  .cpuno = 0, \
  .rtprio = 0, \
  .policy = 0 \
}

typedef struct s6ps_cache_s s6ps_cache_t, *s6ps_cache_t_ref ;
struct s6ps_cache_s
{
  avltree tree ;
  genalloc index ;
} ;
#define S6PS_CACHE_ZERO { .tree = AVLTREE_ZERO, .index = GENALLOC_ZERO }

typedef struct s6ps_wchan_s s6ps_wchan_t, *s6ps_wchan_t_ref ;
struct s6ps_wchan_s
{
  stralloc sysmap ;
  genalloc ind ;
} ;
#define S6PS_WCHAN_ZERO { .sysmap = STRALLOC_ZERO, .ind = GENALLOC_ZERO }

typedef struct s6ps_auxinfo_s s6ps_auxinfo_t, *s6ps_auxinfo_t_ref ;
struct s6ps_auxinfo_s
{
  tain boottime ;
  s6ps_cache_t caches[3] ;
  s6ps_wchan_t wchan ;
  unsigned int hz ;
  unsigned int pgsz ;
  uint64_t totalmem ;
} ;
#define S6PS_AUXINFO_ZERO { .boottime = TAIN_EPOCH, .caches = { S6PS_CACHE_ZERO, S6PS_CACHE_ZERO, S6PS_CACHE_ZERO }, .wchan = S6PS_WCHAN_ZERO, .hz = 0, .pgsz = 0, .totalmem = 0 }

typedef int pfieldfmt_func (s6ps_auxinfo_t *, pscan_t *, size_t *, size_t *) ;
typedef pfieldfmt_func *pfieldfmt_func_ref ;


 /* exported by s6ps_pfield.c */

extern char const *const *s6ps_opttable ;
extern char const *const *s6ps_fieldheaders ;
extern pfieldfmt_func_ref const *const s6ps_pfield_fmt ;
extern int s6ps_compute_boottime (s6ps_auxinfo_t *, pscan_t *, unsigned int) ;


 /* exported by s6ps_statparse.c */

extern int s6ps_statparse (pscan_t *) ;


 /* exported by s6ps_otree.c */

extern void s6ps_otree (pscan_t *, unsigned int, avltreen *, unsigned int *) ;


 /* exported by s6ps_cache.c */

extern int s6ps_cache_init (s6ps_cache_t *) ;
extern void s6ps_cache_finish (s6ps_cache_t *) ;
extern int s6ps_uint32_cmp (void const *, void const *, void *) ;


 /* exported by s6ps_pwcache.c */

extern int s6ps_pwcache_lookup (s6ps_cache_t *, stralloc *, uid_t) ;


 /* exported by s6ps_grcache.c */

extern int s6ps_grcache_lookup (s6ps_cache_t *, stralloc *, gid_t) ;


 /* exported by s6ps_ttycache.c */

extern int s6ps_ttycache_lookup (s6ps_cache_t *, stralloc *, dev_t) ;


 /* exported by s6ps_wchan.c */

extern int s6ps_wchan_init (s6ps_wchan_t *, char const *) ;
extern void s6ps_wchan_finish (s6ps_wchan_t *) ;
extern int s6ps_wchan_lookup (s6ps_wchan_t const *, stralloc *, uint64_t) ;

#endif