summaryrefslogtreecommitdiffstats
path: root/src/memblock.c
blob: 3bef4944f8ae22118dbb1c981bb2f9dcef9e2e3d (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
#include <stdlib.h>
#include <assert.h>
#include <string.h>

#include "memblock.h"

struct memblock *memblock_new(size_t length) {
    struct memblock *b = malloc(sizeof(struct memblock)+length);
    b->type = MEMBLOCK_APPENDED;
    b->ref = 1;
    b->length = length;
    b->data = b+1;
    return b;
}

struct memblock *memblock_new_fixed(void *d, size_t length) {
    struct memblock *b = malloc(sizeof(struct memblock));
    b->type = MEMBLOCK_FIXED;
    b->ref = 1;
    b->length = length;
    b->data = d;
    return b;
}

struct memblock *memblock_new_dynamic(void *d, size_t length) {
    struct memblock *b = malloc(sizeof(struct memblock));
    b->type = MEMBLOCK_DYNAMIC;
    b->ref = 1;
    b->length = length;
    b->data = d;
    return b;
}

struct memblock* memblock_ref(struct memblock*b) {
    assert(b && b->ref >= 1);
    b->ref++;
    return b;
}

void memblock_unref(struct memblock*b) {
    assert(b && b->ref >= 1);
    b->ref--;

    if (b->ref == 0) {
        if (b->type == MEMBLOCK_DYNAMIC)
            free(b->data);
        free(b);
    }
}

void memblock_unref_fixed(struct memblock *b) {
    void *d;
    
    assert(b && b->ref >= 1);

    if (b->ref == 1) {
        memblock_unref(b);
        return;
    }

    d = malloc(b->length);
    assert(d);
    memcpy(d, b->data, b->length);
    b->data = d;
    b->type = MEMBLOCK_DYNAMIC;
}