kr / beanstalkd

Beanstalk is a simple, fast work queue.

This URL has Read+Write access

beanstalkd / ms.c
100644 117 lines (93 sloc) 2.381 kb
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
/* ms.c - resizable multiset implementation */
 
/* Copyright (C) 2008 Keith Rarick and Philotic Inc.
 
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
 
* 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, see <http://www.gnu.org/licenses/>.
*/
 
#include <string.h>
#include <stdlib.h>
 
#include "ms.h"
#include "util.h"
 
void
ms_init(ms a, ms_event_fn oninsert, ms_event_fn onremove)
{
    a->used = a->cap = a->last = 0;
    a->items = NULL;
    a->oninsert = oninsert;
    a->onremove = onremove;
}
 
static void
grow(ms a)
{
    void **nitems;
    size_t ncap = (a->cap << 1) ? : 1;
 
    nitems = malloc(ncap * sizeof(void *));
    if (!nitems) return;
 
    memcpy(nitems, a->items, a->used * sizeof(void *));
    free(a->items);
    a->items = nitems;
    a->cap = ncap;
}
 
int
ms_append(ms a, void *item)
{
    if (a->used >= a->cap) grow(a);
    if (a->used >= a->cap) return 0;
 
    a->items[a->used++] = item;
    if (a->oninsert) a->oninsert(a, item, a->used - 1);
    return 1;
}
 
static int
ms_delete(ms a, size_t i)
{
    void *item;
 
    if (i >= a->used) return 0;
    item = a->items[i];
    a->items[i] = a->items[--a->used];
 
    /* it has already been removed now */
    if (a->onremove) a->onremove(a, item, i);
    return 1;
}
 
void
ms_clear(ms a)
{
    while (ms_delete(a, 0));
    free(a->items);
    ms_init(a, a->oninsert, a->onremove);
}
 
int
ms_remove(ms a, void *item)
{
    size_t i;
 
    for (i = 0; i < a->used; i++) {
        if (a->items[i] == item) return ms_delete(a, i);
    }
    return 0;
}
 
int
ms_contains(ms a, void *item)
{
    size_t i;
 
    for (i = 0; i < a->used; i++) {
        if (a->items[i] == item) return 1;
    }
    return 0;
}
 
void *
ms_take(ms a)
{
    void *item;
 
    if (!a->used) return NULL;
 
    a->last = a->last % a->used;
    item = a->items[a->last];
    ms_delete(a, a->last);
    ++a->last;
    return item;
}