blob: 623eaea6d5e2dec65cf8960f89664a1a9b394445 (
plain) (
blame)
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
|
#include <stdio.h>
#include <stdbool.h>
#include <sys/queue.h>
#ifndef JOBS_H
struct output {
char *name, *store_path;
};
struct job {
char *name, *drv_path;
bool transitive;
size_t outputs_size, outputs_filled;
struct output **outputs;
size_t deps_size, deps_filled;
struct job **deps;
size_t parents_size, parents_filled;
struct job **parents;
CIRCLEQ_ENTRY(job) clist;
};
CIRCLEQ_HEAD(job_clist, job);
typedef enum {
JOB_READ_SUCCESS = 0,
JOB_READ_EOF = 1,
JOB_READ_EVAL_ERR = 2,
JOB_READ_JSON_INVAL = 3,
} job_read_state_t;
int job_read(FILE *stream, struct job **jobs);
int jobs_init(FILE **stream);
void job_free(struct job *j);
int job_parents_list_insert(struct job *job, struct job *parent);
#define JOBS_H
#endif
|