summaryrefslogtreecommitdiff
path: root/src/string.c
blob: e8c7dbcb1309c89e01c9d40759662def63c9ba2f (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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#include <s.h>

#include <assert.h>
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

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

#include "string.h"



struct String {
	const size_t length;
	const u8 *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 u8 *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((u8 *)bytes, string, length);
	memcpy((u8 *)(bytes + length), "", NULL_TERMINATOR);
	memcpy((u8 *)ret, &(struct String) {
		.length = length,
		.bytes  = bytes,
	}, sizeof(*ret));
	*out = ret;
	rc = 0;
out:
	if (rc) {
		if (bytes != NULL) {
			free((u8 *)bytes);
			bytes = NULL;
		}
		if (ret != NULL) {
			free((struct String *)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);
}

struct String
S(const char *const string) {
	return (struct String) {
		.length = strlen(string) + NULL_TERMINATOR,
		.bytes  = (const u8 *)string,
	};
}

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

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

enum Comparison
string_compare(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;
		}
	}
}

bool
string_equals(const struct String *const s1, const struct String *const s2) {
	return string_compare(s1, s2) == 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 u8 *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((u8 *)bytes, s1->bytes, s1->length);
	memcpy((u8 *)(bytes + s1->length), s2->bytes, s2->length);
	memcpy((u8 *)(bytes + length), "", NULL_TERMINATOR);
	memcpy((u8 *)ret, &(struct String) {
		.length = length,
		.bytes  = bytes,
	}, sizeof(*ret));
	*out = ret;
	rc = 0;
out:
	if (rc) {
		if (bytes != NULL) {
			free((u8 *)bytes);
			bytes = NULL;
		}
		if (ret != NULL) {
			free((struct String *)ret);
			ret = NULL;
		}
	}
	return rc;
}