summaryrefslogtreecommitdiff
path: root/src/irmd/prog_table.c
blob: 6b05e777f18d8f4c6d89f98da6a877655209fc4b (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
/*
 * Ouroboros - Copyright (C) 2016 - 2021
 *
 * The IPC Resource Manager - Program Table
 *
 *    Dimitri Staessens <dimitri.staessens@ugent.be>
 *    Sander Vrijders   <sander.vrijders@ugent.be>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., http://www.fsf.org/about/contact/.
 */

#include <ouroboros/errno.h>
#include <ouroboros/irm.h>

#include "prog_table.h"
#include "utils.h"

#include <assert.h>
#include <stdlib.h>
#include <string.h>

struct prog_entry * prog_entry_create(char *   progn,
                                      char *   prog,
                                      uint32_t flags,
                                      char **  argv)
{
        struct prog_entry * e;

        assert(progn);
        assert(prog);

        e = malloc(sizeof(*e));
        if (e == NULL)
                return NULL;

        list_head_init(&e->next);
        list_head_init(&e->names);

        e->progn = progn;
        e->prog  = prog;
        e->flags = flags;

        if (flags & BIND_AUTO) {
                e->argv = argv;
        } else {
                e->argv  = NULL;
                argvfree(argv);
                argv = NULL;
        }

        return e;
}
void prog_entry_destroy(struct prog_entry * e)
{
        struct list_head * p = NULL;
        struct list_head * h = NULL;

        if (e == NULL)
                return;

        if (e->progn != NULL)
                free(e->progn);

        if (e->prog != NULL)
                free(e->prog);

        if (e->argv != NULL)
                argvfree(e->argv);

        list_for_each_safe(p, h, &e->names) {
                struct str_el * s = list_entry(p, struct str_el, next);
                list_del(&s->next);
                free(s->str);
                free(s);
        }

        free(e);
}

int prog_entry_add_name(struct prog_entry * e,
                        char *              name)
{
        struct str_el * s;

        if (e == NULL || name == NULL)
                return -EINVAL;

        s = malloc(sizeof(*s));
        if (s == NULL)
                return -ENOMEM;

        s->str = name;
        list_add(&s->next, &e->names);

        return 0;
}

void prog_entry_del_name(struct prog_entry * e,
                         char *              name)
{
        struct list_head * p = NULL;
        struct list_head * h = NULL;

        list_for_each_safe(p, h, &e->names) {
                struct str_el * s = list_entry(p, struct str_el, next);
                if (!strcmp(name, s->str)) {
                        list_del(&s->next);
                        if (s->str != NULL)
                                free(s->str);
                        free(s);
                }
        }
}

int prog_table_add(struct list_head *  prog_table,
                   struct prog_entry * e)
{
        assert(prog_table);
        assert(e);

        list_add(&e->next, prog_table);

        return 0;
}

void prog_table_del(struct list_head * prog_table,
                    char *             prog)
{
        struct list_head * p;
        struct list_head * h;

        assert(prog_table);
        assert(prog);

        list_for_each_safe(p, h, prog_table) {
                struct prog_entry * e = list_entry(p, struct prog_entry, next);
                if (!strcmp(prog, e->prog)) {
                        list_del(&e->next);
                        prog_entry_destroy(e);
                }
        }
}

struct prog_entry * prog_table_get(struct list_head * prog_table,
                                   char *             prog)
{
        struct list_head * p;

        assert(prog_table);
        assert(prog);

        list_for_each(p, prog_table) {
                struct prog_entry * e = list_entry(p, struct prog_entry, next);
                if (!strcmp(e->prog, prog))
                        return e;
        }

        return NULL;
}

struct prog_entry * prog_table_get_by_progn(struct list_head * prog_table,
                                            char *             progn)
{
        struct list_head * p;

        assert(prog_table);
        assert(progn);

        list_for_each(p, prog_table) {
                struct prog_entry * e = list_entry(p, struct prog_entry, next);
                if (!strcmp(e->progn, progn))
                        return e;
        }

        return NULL;
}