summaryrefslogtreecommitdiff
path: root/src/string.c
blob: dce00f314195945eae0728bc28cfbf778887e0df (plain) (blame)
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
#include "config.h"

#include <assert.h>
#include <errno.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "logerr.h"
#include "math.h"
#include "util.h"

#include "string.h"



struct String {
	const size_t length;
	const uint8_t *const bytes;
};



int
string_new_with(
	const char *const string,
	const size_t length,
	const struct String **const out
) {
	int rc = -1;

	const struct String *ret = NULL;
	const uint8_t *bytes = NULL;

	ret = malloc(sizeof(*ret));
	if (ret == NULL) {
		logerr("malloc(): %s", strerror(errno));
		goto out;
	}

	bytes = malloc(length + NULL_TERMINATOR);
	if (bytes == NULL) {
		logerr("malloc(): %s", strerror(errno));
		goto out;
	}

	memcpy((void *)bytes, string, length);
	memcpy((void *)(bytes + length), "", NULL_TERMINATOR);
	memcpy((void *)ret, &(struct String) {
		.length = length,
		.bytes  = bytes,
	}, sizeof(*ret));
	*out = ret;
	rc = 0;
out:
	if (rc) {
		if (bytes != NULL) {
			free((void *)bytes);
			ret = NULL;
		}
		if (ret != NULL) {
			free((void *)ret);
			ret = NULL;
		}
	}
	return rc;
}

int
string_new(const char *const string, const struct String **const out) {
	return string_new_with(string, strlen(string), out);
}

void
string_free(const struct String **const s) {
	free((void *)(*s)->bytes);
	free((void *)(*s));
	*s = NULL;
}

const char *
cstr(const struct String *s) {
	return (const char *)s->bytes;
}

enum Comparison
string_equal(const struct String *const s1, const struct String *const s2) {
	if (s1->length < s2->length) {
		return Comparison_LT;
	} else if (s1->length > s2->length) {
		return Comparison_GT;
	} else {
		const int ret = strcmp((const char *)s1->bytes, (const char *)s2->bytes);
		if (ret < 0) {
			return Comparison_LT;
		} else if (ret > 0) {
			return Comparison_GT;
		} else {
			return Comparison_EQ;
		}
	}
}

int
string_append(
	const struct String *const s1,
	const struct String *const s2,
	const struct String **const out
) {
	int rc = -1;

	const struct String *ret = NULL;
	const uint8_t *bytes = NULL;

	size_t length;
	if (add_size(s1->length, s2->length, &length)) {
		logerr("add_size()");
		goto out;
	}

	ret = malloc(sizeof(*ret));
	if (ret == NULL) {
		logerr("malloc(): %s", strerror(errno));
		goto out;
	}

	bytes = malloc(length + NULL_TERMINATOR);
	if (bytes == NULL) {
		logerr("malloc(): %s", strerror(errno));
		goto out;
	}

	memcpy((void *)bytes, s1->bytes, s1->length);
	memcpy((void *)(bytes + s1->length), s2->bytes, s2->length);
	memcpy((void *)(bytes + length), "", NULL_TERMINATOR);
	memcpy((void *)ret, &(struct String) {
		.length = length,
		.bytes  = bytes,
	}, sizeof(*ret));
	*out = ret;
	rc = 0;
out:
	if (rc) {
		if (bytes != NULL) {
			free((void *)bytes);
			bytes = NULL;
		}
		if (ret != NULL) {
			free((void *)ret);
			ret = NULL;
		}
	}
	return rc;
}