-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexamples.c
231 lines (194 loc) · 5.61 KB
/
examples.c
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#define _POSIX_C_SOURCE 1
#define PMK_ARENA_IMPL
#define DEFAULT_ARENA_CAP 16
#define PMK_DEBUG 0
#include "pmk_arena.h"
#define PMK_STRING_IMPL
#define PMK_REALLOC(c,p,os,ns) arena_realloc_into(c,p,os,ns)
#include "pmk_string.h"
#include <stdio.h>
#include <stdlib.h>
#define NELEM(X) (sizeof(X)/sizeof(X[0]))
#define NELEMS(X) (ptrdiff_t)(sizeof(X)/sizeof(X[0]))
static void
example1()
{
String name = str_lit("Paul");
printf("Example1: Hello, %.*s\n", len_data(name));
}
static void
example2()
{
String name = str_lit("Paul");
StringBuilder builder = {0};
builder_append(&builder, str_lit("Hello, "));
builder_append(&builder, name);
printf("Example2: %.*s\n", len_data(builder));
// if not using an arena, you will need to manually destroy StringBuilders
// to prevent memory leaks
builder_destroy(&builder);
}
static void
example3()
{
String name = str_lit("Paul");
int age = 33;
String favorite_color = str_lit("Orange");
StringBuilder builder = {0};
builder_print(&builder, "My name is %.*s.", len_data(name));
builder_print(&builder, " I am %d years old and my favorite color is %.*s.", age, len_data(favorite_color));
printf("Example3: %.*s\n", len_data(builder));
builder_destroy(&builder);
}
static void
example4()
{
String message = str_lit(" Hello there, \t you . ");
s32 save = 0;
String token;
printf("Example4: [%s]\n", message.data);
while (1) {
token = string_tokenize(message, str_lit(" \t"), &save);
if (token.len == 0)
break;
printf(" token: [%.*s]\n", len_data(token));
}
}
static void
example5()
{
String animals[] = {
str_lit("dog"),
str_lit("fish"),
str_lit("cat"),
str_lit("monkey"),
str_lit("horse"),
str_lit("duck"),
str_lit("goose"),
str_lit("cow"),
str_lit("pig"),
str_lit("sheep"),
str_lit("donkey"),
};
qsort(animals, NELEM(animals), sizeof(animals[0]), string_compare_qsort);
StringBuilder builder = {0};
for (s32 i = 0; i < NELEMS(animals); i++) {
if (i > 0)
builder_append(&builder, str_lit(", "));
builder_append(&builder, animals[i]);
}
printf("Example5: %.*s\n", len_data(builder));
builder_destroy(&builder);
}
static void
example6()
{
Arena arena = {0};
StringBuilder builder = {0};
String name = str_lit("Paul");
builder_print_context(&arena, &builder, "Hello, %.*s. This is in an arena.", len_data(name));
printf("Example6: %.*s\n", len_data(builder));
builder_destroy(&builder);
arena_destroy(&arena);
}
static void
example7()
{
Arena arena1 = arena_create(1<<5);
Arena arena2 = arena_create(1<<4);
Arena arena3 = {0};
StringBuilder builder = {0};
String name = str_lit("Paul");
builder_print_context(&arena1, &builder, "Hello, %.*s.", len_data(name));
builder_print_context(&arena2, &builder, " Nice to meet you, %.*s.", len_data(name));
void * old_ptr = builder.data;
builder.data = arena_realloc_into(&arena3, builder.data, builder.cap, builder.cap);
// if not overriding PMK_REALLOC, the original buffer was allocated by malloc()
// so we need to free it to prevent a leak
PMK_FREE(NULL, old_ptr);
arena_destroy(&arena1);
arena_destroy(&arena2);
printf("Example7: %.*s\n", len_data(builder));
arena_destroy(&arena3);
}
static void
example8()
{
StringBuilder builder = {0};
builder_append(&builder, str_lit("Hello, good morning, how are you?"));
builder_replace(&builder, str_lit("good"), str_lit("what a lovely"));
printf("Example8: %.*s\n", len_data(builder));
builder_splice(&builder, 21, 28, str_lit("evening"));
printf("Example8: %.*s\n", len_data(builder));
builder_destroy(&builder);
}
static void
example9()
{
StringBuilder builder = {0};
printf("What is your name? ");
builder_getline(&builder, stdin);
String name = builder_to_string(builder);
name = string_trim(name);
printf("Example9: Hello, %.*s!\n", len_data(name));
builder_destroy(&builder);
}
static void
example10()
{
StringBuilder builder = {0};
printf("How old are you? ");
builder_getline(&builder, stdin);
String age = builder_to_string(builder);
age = string_trim(age);
int age_int;
if (string_parse_int(age, &age_int) != 0 || age_int <= 0) {
printf("That's not a valid age.\n");
return;
}
printf("Example10: Next year, you will be %d years old!\n", age_int+1);
builder_destroy(&builder);
}
static void
example11()
{
const char * filename = "README.md";
StringBuilder builder = {0};
builder_read_file(&builder, filename);
s32 line_count = string_count(builder_to_string(builder), '\n');
printf("Example11: there are %d bytes and %d lines in %s\n", builder.len, line_count, filename);
builder_destroy(&builder);
}
static void
example12()
{
const char * filename = "README.md";
char buffer[1 << 6];
StringBuilder builder = builder_from_fixed(buffer);
builder_read_file(&builder, filename);
s32 line_count = string_count(builder_to_string(builder), '\n');
printf("Example12: there are %d bytes and %d lines in %s\n", builder.len, line_count, filename);
builder_destroy(&builder);
}
int main()
{
#if PMK_STRING_TEST
pmk_string_test();
fprintf(stderr, "All tests passed.\n");
#else
example1();
example2();
example3();
example4();
example5();
example6();
example7();
example8();
//example9();
//example10();
example11();
example12();
#endif
arena_destroy(&default_arena);
return 0;
}