summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/lib/support/handle.c
blob: a6657ee43713146c828816ad0e05a60fa64e3a09 (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
#include "otfcc/handle.h"
#include "element-impl.h"
#include "support/otfcc-alloc.h"

// default constructors
static INLINE void initHandle(otfcc_Handle *h) {
	h->state = HANDLE_STATE_EMPTY;
	h->index = 0;
	h->name = NULL;
}
static INLINE void disposeHandle(struct otfcc_Handle *h) {
	if (h->name) {
		sdsfree(h->name);
		h->name = NULL;
	}
	h->index = 0;
	h->state = HANDLE_STATE_EMPTY;
}
static void copyHandle(otfcc_Handle *dst, const otfcc_Handle *src) {
	dst->state = src->state;
	dst->index = src->index;
	if (src->name) {
		dst->name = sdsdup(src->name);
	} else {
		dst->name = NULL;
	}
}

caryll_standardValTypeFn(otfcc_Handle, initHandle, copyHandle, disposeHandle);

// custom constructors
static struct otfcc_Handle handle_fromIndex(glyphid_t id) {
	struct otfcc_Handle h = {HANDLE_STATE_INDEX, id, NULL};
	return h;
}
static struct otfcc_Handle handle_fromName(MOVE sds s) {
	struct otfcc_Handle h = {HANDLE_STATE_EMPTY, 0, NULL};
	if (s) {
		h.state = HANDLE_STATE_NAME;
		h.name = s;
	}
	return h;
}
static struct otfcc_Handle handle_fromConsolidated(glyphid_t id, sds s) {
	struct otfcc_Handle h = {HANDLE_STATE_CONSOLIDATED, id, sdsdup(s)};
	return h;
}

// consolidation
static void handle_consolidateTo(struct otfcc_Handle *h, glyphid_t id, sds name) {
	otfcc_iHandle.dispose(h);
	h->state = HANDLE_STATE_CONSOLIDATED;
	h->index = id;
	h->name = sdsdup(name);
}

const struct otfcc_HandlePackage otfcc_iHandle = {
    caryll_standardValTypeMethods(otfcc_Handle), // VT
    .fromIndex = handle_fromIndex,               // custom constructor, from index
    .fromName = handle_fromName,                 // custom constructor, from name
    .fromConsolidated = handle_fromConsolidated, // custom constructor, from consolidated
    .consolidateTo = handle_consolidateTo,
};