-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.h
342 lines (310 loc) · 7.58 KB
/
main.h
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
/*
Task Spooler - a task queue system for the unix user
Copyright (C) 2007-2013 Lluís Batlle i Rossell
Please find the license in the provided COPYING file.
*/
enum
{
CMD_LEN=500,
PROTOCOL_VERSION=730
};
enum msg_types
{
KILL_SERVER,
NEWJOB,
NEWJOB_OK,
RUNJOB,
RUNJOB_OK,
ENDJOB,
LIST,
LIST_LINE,
CLEAR_FINISHED,
ASK_OUTPUT,
ANSWER_OUTPUT,
REMOVEJOB,
REMOVEJOB_OK,
WAITJOB,
WAIT_RUNNING_JOB,
WAITJOB_OK,
URGENT,
URGENT_OK,
GET_STATE,
ANSWER_STATE,
SWAP_JOBS,
SWAP_JOBS_OK,
INFO,
INFO_DATA,
SET_MAX_SLOTS,
GET_MAX_SLOTS,
GET_MAX_SLOTS_OK,
GET_VERSION,
VERSION,
NEWJOB_NOK,
SET_MAX_RAM,
GET_MAX_RAM,
GET_MAX_RAM_OK
};
enum Request
{
c_QUEUE,
c_TAIL,
c_KILL_SERVER,
c_LIST,
c_CLEAR_FINISHED,
c_SHOW_HELP,
c_SHOW_VERSION,
c_CAT,
c_SHOW_OUTPUT_FILE,
c_SHOW_PID,
c_REMOVEJOB,
c_WAITJOB,
c_URGENT,
c_GET_STATE,
c_SWAP_JOBS,
c_INFO,
c_SET_MAX_SLOTS,
c_GET_MAX_SLOTS,
c_KILL_JOB,
c_SET_MAX_RAM,
c_GET_MAX_RAM
};
struct Command_line {
enum Request request;
int need_server;
int store_output;
int stderr_apart;
int should_go_background;
int should_keep_finished;
int send_output_by_mail;
int gzip;
int do_depend;
int depend_on; /* -1 means depend on previous */
int max_slots; /* How many jobs to run at once */
int jobid; /* When queuing a job, main.c will fill it automatically from
the server answer to NEWJOB */
int jobid2;
int wait_enqueuing;
struct {
char **array;
int num;
} command;
char *label;
int num_slots; /* Slots for the job to use. Default 1 */
int amt_ram; /* RAM (GB) for the job to use. Default 0 */
int max_ram;
};
enum Process_type {
CLIENT,
SERVER
};
extern struct Command_line command_line;
extern int server_socket;
extern enum Process_type process_type;
extern int server_socket; /* Used in the client */
struct msg;
enum Jobstate
{
QUEUED,
RUNNING,
FINISHED,
SKIPPED,
HOLDING_CLIENT
};
struct msg
{
enum msg_types type;
union
{
struct {
int command_size;
int store_output;
int should_keep_finished;
int label_size;
int env_size;
int do_depend;
int depend_on; /* -1 means depend on previous */
int wait_enqueuing;
int num_slots;
int amt_ram;
} newjob;
struct {
int ofilename_size;
int store_output;
int pid;
} output;
int jobid;
struct Result {
int errorlevel;
int died_by_signal;
int signal;
float user_ms;
float system_ms;
float real_ms;
int skipped;
} result;
int size;
enum Jobstate state;
struct {
int jobid1;
int jobid2;
} swap;
int last_errorlevel;
int max_slots;
int version;
int max_ram;
} u;
};
struct Procinfo
{
char *ptr;
int nchars;
int allocchars;
struct timeval enqueue_time;
struct timeval start_time;
struct timeval end_time;
};
struct Job
{
struct Job *next;
int jobid;
char *command;
enum Jobstate state;
struct Result result; /* Defined in msg.h */
char *output_filename;
int store_output;
int pid;
int should_keep_finished;
int do_depend;
int depend_on;
int *notify_errorlevel_to;
int notify_errorlevel_to_size;
int dependency_errorlevel;
char *label;
struct Procinfo info;
int num_slots;
int amt_ram;
};
enum ExitCodes
{
EXITCODE_OK = 0,
EXITCODE_UNKNOWN_ERROR = -1,
EXITCODE_QUEUE_FULL = 2
};
/* client.c */
void c_new_job();
void c_list_jobs();
void c_shutdown_server();
void c_wait_server_lines();
void c_clear_finished();
int c_wait_server_commands();
void c_send_runjob_ok(const char *ofname, int pid);
int c_tail();
int c_cat();
void c_show_output_file();
void c_remove_job();
void c_show_pid();
void c_kill_job();
int c_wait_job();
int c_wait_running_job();
int c_wait_job_recv();
void c_move_urgent();
int c_wait_newjob_ok();
void c_get_state();
void c_swap_jobs();
void c_show_info();
char *build_command_string();
void c_send_max_slots(int max_slots);
void c_send_max_ram(int max_ram);
void c_get_max_slots();
void c_get_max_ram();
void c_check_version();
/* jobs.c */
void s_list(int s);
int s_newjob(int s, struct msg *m);
void s_removejob(int jobid);
void job_finished(const struct Result *result, int jobid);
int next_run_job();
void s_mark_job_running(int jobid);
void s_clear_finished();
void s_process_runjob_ok(int jobid, char *oname, int pid);
void s_send_output(int socket, int jobid);
int s_remove_job(int s, int *jobid);
void s_remove_notification(int s);
void check_notify_list(int jobid);
void s_wait_job(int s, int jobid);
void s_wait_running_job(int s, int jobid);
void s_move_urgent(int s, int jobid);
void s_send_state(int s, int jobid);
void s_swap_jobs(int s, int jobid1, int jobid2);
void dump_jobs_struct(FILE *out);
void dump_notifies_struct(FILE *out);
void joblist_dump(int fd);
const char * jstate2string(enum Jobstate s);
void s_job_info(int s, int jobid);
void s_send_runjob(int s, int jobid);
void s_set_max_slots(int new_max_slots);
void s_set_max_ram(int new_max_ram);
void s_get_max_slots(int s);
void s_get_max_ram(int s);
int job_is_running(int jobid);
int job_is_holding_client(int jobid);
int wake_hold_client();
/* server.c */
void server_main(int notify_fd, char *_path);
void dump_conns_struct(FILE *out);
/* server_start.c */
int try_connect(int s);
void wait_server_up();
int ensure_server_up();
void notify_parent(int fd);
void create_socket_path(char **path);
/* execute.c */
int run_job();
/* client_run.c */
void c_run_tail(const char *filename);
void c_run_cat(const char *filename);
/* mail.c */
void send_mail(int jobid, int errorlevel, const char *ofname,
const char *command);
void hook_on_finish(int jobid, int errorlevel, const char *ofname,
const char *command);
/* error.c */
void error(const char *str, ...);
void warning(const char *str, ...);
/* signals.c */
void ignore_sigpipe();
void restore_sigmask();
void block_sigint();
void unblock_sigint_and_install_handler();
/* msg.c */
void send_bytes(const int fd, const char *data, int bytes);
int recv_bytes(const int fd, char *data, int bytes);
void send_msg(const int fd, const struct msg *m);
int recv_msg(const int fd, struct msg *m);
/* msgdump.c */
void msgdump(FILE *, const struct msg *m);
/* error.c */
void error_msg(const struct msg *m, const char *str, ...);
void warning_msg(const struct msg *m, const char *str, ...);
/* list.c */
char * joblist_headers();
char * joblist_line(const struct Job *p);
char * joblistdump_torun(const struct Job *p);
char * joblistdump_headers();
/* print.c */
int fd_nprintf(int fd, int maxsize, const char *fmt, ...);
/* info.c */
void pinfo_dump(const struct Procinfo *p, int fd);
void pinfo_addinfo(struct Procinfo *p, int maxsize, const char *line, ...);
void pinfo_free(struct Procinfo *p);
int pinfo_size(const struct Procinfo *p);
void pinfo_set_enqueue_time(struct Procinfo *p);
void pinfo_set_start_time(struct Procinfo *p);
void pinfo_set_end_time(struct Procinfo *p);
float pinfo_time_until_now(const struct Procinfo *p);
float pinfo_time_run(const struct Procinfo *p);
void pinfo_init(struct Procinfo *p);
/* env.c */
char * get_environment();
/* tail.c */
int tail_file(const char *fname, int last_lines);