summaryrefslogtreecommitdiff
path: root/src/irmd/irm_flow.c
blob: 70d2a789ab567c9b7607244315e5486b865e9340 (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
215
216
217
218
219
220
221
222
/*
 * Ouroboros - Copyright (C) 2016 - 2020
 *
 * The IPC Resource Manager - Flows
 *
 *    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/.
 */

#define _POSIX_C_SOURCE 200112L

#include "config.h"

#define OUROBOROS_PREFIX "irm_flow"

#include <ouroboros/errno.h>
#include <ouroboros/logs.h>
#include <ouroboros/time_utils.h>

#include "irm_flow.h"

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

struct irm_flow * irm_flow_create(pid_t     n_pid,
                                  pid_t     n_1_pid,
                                  int       flow_id,
                                  qosspec_t qs)
{
        pthread_condattr_t cattr;
        struct irm_flow *  f = malloc(sizeof(*f));
        if (f == NULL)
                goto fail_malloc;

        if (pthread_condattr_init(&cattr))
                goto fail_cattr;

#ifndef __APPLE__
        pthread_condattr_setclock(&cattr, PTHREAD_COND_CLOCK);
#endif
        if (pthread_cond_init(&f->state_cond, &cattr))
                goto fail_state_cond;

        if (pthread_mutex_init(&f->state_lock, NULL))
                goto fail_mutex;

        f->n_pid   = n_pid;
        f->n_1_pid = n_1_pid;
        f->flow_id = flow_id;
        f->qs      = qs;

        f->n_rb = shm_rbuff_create(n_pid, flow_id);
        if (f->n_rb == NULL) {
                log_err("Could not create ringbuffer for process %d.", n_pid);
                goto fail_n_rbuff;
        }

        f->n_1_rb = shm_rbuff_create(n_1_pid, flow_id);
        if (f->n_1_rb == NULL) {
                log_err("Could not create ringbuffer for process %d.", n_1_pid);
                goto fail_n_1_rbuff;
        }

        f->state = FLOW_ALLOC_PENDING;

        if (clock_gettime(CLOCK_MONOTONIC, &f->t0) < 0)
                log_warn("Failed to set timestamp.");

        pthread_condattr_destroy(&cattr);

        return f;

 fail_n_1_rbuff:
        shm_rbuff_destroy(f->n_rb);
 fail_n_rbuff:
        pthread_mutex_destroy(&f->state_lock);
 fail_mutex:
        pthread_cond_destroy(&f->state_cond);
 fail_state_cond:
        pthread_condattr_destroy(&cattr);
 fail_cattr:
        free(f);
 fail_malloc:
        return NULL;
}

static void cancel_irm_destroy(void * o)
{
        struct irm_flow * f = (struct irm_flow *) o;

        pthread_mutex_unlock(&f->state_lock);

        pthread_cond_destroy(&f->state_cond);
        pthread_mutex_destroy(&f->state_lock);

        shm_rbuff_destroy(f->n_rb);
        shm_rbuff_destroy(f->n_1_rb);

        free(f);
}

void irm_flow_destroy(struct irm_flow * f)
{
        assert(f);

        pthread_mutex_lock(&f->state_lock);

        if (f->state == FLOW_DESTROY) {
                pthread_mutex_unlock(&f->state_lock);
                return;
        }

        if (f->state == FLOW_ALLOC_PENDING)
                f->state = FLOW_DESTROY;
        else
                f->state = FLOW_NULL;

        pthread_cond_signal(&f->state_cond);

        pthread_cleanup_push(cancel_irm_destroy, f);

        while (f->state != FLOW_NULL)
                pthread_cond_wait(&f->state_cond, &f->state_lock);

        pthread_cleanup_pop(true);
}

enum flow_state irm_flow_get_state(struct irm_flow * f)
{
        enum flow_state state;

        assert(f);

        pthread_mutex_lock(&f->state_lock);

        state = f->state;

        pthread_mutex_unlock(&f->state_lock);

        return state;
}

void irm_flow_set_state(struct irm_flow * f,
                        enum flow_state   state)
{
        assert(f);
        assert(state != FLOW_DESTROY);

        pthread_mutex_lock(&f->state_lock);

        f->state = state;
        pthread_cond_broadcast(&f->state_cond);

        pthread_mutex_unlock(&f->state_lock);
}

int irm_flow_wait_state(struct irm_flow * f,
                        enum flow_state   state,
                        struct timespec * timeo)
{
        int ret = 0;
        int s;

        struct timespec dl;

        assert(f);
        assert(state != FLOW_NULL);
        assert(state != FLOW_DESTROY);
        assert(state != FLOW_DEALLOC_PENDING);

        if (timeo != NULL) {
                clock_gettime(PTHREAD_COND_CLOCK, &dl);
                ts_add(&dl, timeo, &dl);
        }

        pthread_mutex_lock(&f->state_lock);

        assert(f->state != FLOW_NULL);

        pthread_cleanup_push((void *)(void *) pthread_mutex_unlock,
                             &f->state_lock);

        while (!(f->state == state ||
                 f->state == FLOW_DESTROY ||
                 f->state == FLOW_DEALLOC_PENDING) &&
               ret != -ETIMEDOUT) {
                if (timeo == NULL)
                        ret = -pthread_cond_wait(&f->state_cond,
                                                 &f->state_lock);
                else
                        ret = -pthread_cond_timedwait(&f->state_cond,
                                                      &f->state_lock,
                                                      &dl);
        }

        if (f->state == FLOW_DESTROY ||
            f->state == FLOW_DEALLOC_PENDING ||
            ret == -ETIMEDOUT) {
                f->state = FLOW_NULL;
                pthread_cond_broadcast(&f->state_cond);
        }

        s = f->state;

        pthread_cleanup_pop(true);

        return ret ? ret : s;
}