aboutsummaryrefslogtreecommitdiff
path: root/include/libn.h
blob: aa9aef73ceddba1765afd54e19d08145b48c56cf (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
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
#pragma once

// ------------------------------------------------------------------------
// standard library

#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include <stdio.h>

#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>

// ----------------------------------------------------------------------------
// dynamic array

typedef struct bufHdr
{
    vlong len;
    vlong cap;
    byte  buf[];
} bufHdr;

#define _bufHdr(s) ((bufHdr*)((uint8*)(s)-offsetof(bufHdr, buf)))
#define buflen(s) ((s) ? (_bufHdr(s)->len) : 0)
#define bufcap(s) ((s) ? (_bufHdr(s)->cap) : 0)
#define bufend(s) ((s) + buflen(s))
#define bufsize(s) ((s) ? (buflen(s) * sizeof((s)[0])) : 0)

#define buffree(s) ((s) ? (free(_bufHdr(s)), (s) = nil) : 0)
#define buffit(s, n) ((n) <= bufcap(s) ? 0 : ((s) = bufgrow((s), (n), sizeof(*(s)))))

#define bufresize(s, n)                                                        \
    do {                                                                       \
        (buffit(s, n));                                                        \
        ((_bufHdr(s)->len) = (n));                                             \
    } while (0)

#define bufpush(s, ...) (buffit((s), 1 + buflen(s)), (s)[_bufHdr(s)->len++] = (__VA_ARGS__))

#define bufpop(s, i) (_bufpop((s), (i), sizeof(*(s))), (s)[_bufHdr(s)->len])

void* bufgrow(void*, vlong, vlong);
void _bufpop(void*, int, vlong);

// -----------------------------------------------------------------------------
// interfaces
// TODO(nnoll): Think about this idea
/*
typedef struct Iface {
    void* impl;
    byte  fcn[];
} Iface;
*/
// -----------------------------------------------------------------------------
// memory allocation

/* allocator interface */
typedef struct mem·Allocator {
    void *(*alloc)(void *iface, uint n, ulong size);
    void  (*free)(void *iface, void *ptr);
} mem·Allocator;

/* system implementation */
static
void ·free(void* _, void* ptr) {
    return free(ptr);
}

static
void *·alloc(void* _, uint n, ulong size) {
    return malloc(n*size);
}

// TODO(nnoll): Allow for nil iterfaces?
static
mem·Allocator mem·sys = {
    .alloc   = ·alloc, 
    .free    = ·free
};

/* simple memory arena */
typedef struct mem·Arena mem·Arena;

mem·Arena *mem·newarena(mem·Allocator from, void*);
void      *mem·arenaalloc(mem·Arena *A, uint n, ulong size); 
void       mem·freearena(mem·Arena *A);

/* generalized memxxx functions */
void       memset64(void *dst, uint64 val, uintptr size);

// -----------------------------------------------------------------------------
// coroutines

typedef struct Coro Coro;

Coro*   coro·new(uintptr stk, uintptr (*func)(Coro*, uintptr));
uintptr coro·yield(Coro *c, uintptr arg);
error   coro·free(Coro *c);

// -----------------------------------------------------------------------------
// Strings

// TODO(nnoll): Move here?
typedef byte* string;

typedef struct str·Hdr
{
    vlong len;
    vlong cap;
    byte  buf[];
} str·Hdr;

// -------------------------------------------------------------------------
// UTF-8 functions.
// Perhaps break into own unit
// TODO: Add to(upper|lower|title)

typedef uint32 Rune;

enum
{
    UTFmax    = 4,
    RuneSync  = 0x80,
    RuneSelf  = 0x80,
    RuneErr   = 0xFFFD,
    RuneMax   = 0x10FFFF,
};

/* utf8 helpers */
int     utf8·fullrune(byte *s, int n);
byte   *utf8·findrune(byte *s, long i);
int     utf8·chartorune(Rune *r, byte *s);
int     utf8·runetochar(byte *s, Rune *r);
int     utf8·len(byte *s);
int     utf8·runelen(Rune r);
int     utf8·isletter(Rune r);
int     utf8·isdigit(Rune r);
int     utf8·isspace(Rune r);
int     utf8·istitle(Rune r);

/* string helpers */
string  str·newcap(const byte *s, vlong len, vlong cap);
string  str·newlen(const byte *s, vlong len);
string  str·new(const byte *s);
string  str·newf(const byte *fmt, ...);
void    str·free(string s);
int     str·len(const string s);
int     str·cap(const string s);
string  str·clear(string s);
string  str·grow(string s, vlong delta);
string  str·fit(string s);
string  str·appendcount(string s, vlong len, const byte *b);
string  str·append(string s, const byte* b);
string  str·appendf(string s, const byte* fmt, ...);
string  str·appendbyte(string s, const byte b);
bool    str·equals(const string s, const string t);
int     str·find(string s, const byte* substr);
void    str·lower(string s);
void    str·upper(string s);
void    str·replace(string s, const byte* from, const byte* to);
string* str·split(string s, const byte* tok);
string  str·join(vlong len, byte** fields, const byte* sep);

// -----------------------------------------------------------------------------
// I/O

typedef FILE Stream;
typedef struct stat io·Stat;

enum SeekPos
{
    seek·cur = SEEK_CUR,
    seek·set = SEEK_SET,
    seek·end = SEEK_END
};

Stream *io·open(byte *name, byte *mode);
int     io·fd(Stream *s);
error   io·stat(Stream *s, io·Stat *buf);
error   io·close(Stream *s);
byte    io·getbyte(Stream *s);
error   io·ungetbyte(Stream *s, byte c);
int     io·read(Stream *s, int sz, int n, void *buf);
int     io·readln(Stream *s, int n, byte *buf);
error   io·putbyte(Stream *s, byte c);
int     io·putstring(Stream *s, string str);
int     io·write(Stream *s, int sz, int n, void *buf);
int     io·flush(Stream *s);
int     io·seek(Stream *s, long off, enum SeekPos whence);

/* generic I/O interfaces */

typedef struct io·Reader
{
    int (*read)(void*, int sz, int n, void *buf);
} io·Reader;

typedef struct io·LineReader
{
    int (*readln)(void*, int n, void *buf);
} io·LineReader;

typedef struct io·Peeker
{
    byte  (*get)(void*);
    error (*unget)(void*, byte);
} io·Peeker;

typedef struct io·FullReader
{
    io·Reader;
    io·Peeker;
} io·FullReader;

typedef struct io·Writer
{
    int (*write)(void*, int sz, int n, void *buf);
} io·Writer;

typedef struct io·Putter
{
    error (*put)(void*, byte);
    int   (*putstr)(void*, string);
} io·Putter;

typedef struct io·FullWriter
{
    io·Writer;
    io·Putter;
} io·FullWriter;

typedef struct io·ReadWriter
{
    io·Reader;
    io·Writer;
} io·ReadWriter;

// -----------------------------------------------------------------------------
// memory mapped files

typedef struct mmap·Reader 
{
    vlong len;
    void* buf;
} mmap·Reader;

mmap·Reader mmap·open(byte *name);
error       mmap·close(mmap·Reader rdr);

// -----------------------------------------------------------------------------
// libflate
// NOTE: Experimental!

typedef struct flate·Reader flate·Reader;
typedef struct flate·Writer flate·Writer;

flate·Reader *flate·newreader(io·Reader rdr, void* r, mem·Allocator mem, void* m);
int           flate·read(flate·Reader *rdr, int sz, int n, void *buf);
error         flate·freereader(flate·Reader *rdr);

flate·Writer *flate·newwriter(io·Writer wtr, void* w, mem·Allocator mem, void* m);
error         flate·freewriter(flate·Writer *wtr);
int           flate·write(flate·Writer *wtr, int sz, int n, void *buf);

// -----------------------------------------------------------------------------
// libgz

typedef void gz·Stream;

gz·Stream* gz·open(byte *path, byte *mode);
error      gz·close(gz·Stream* s);
int        gz·read(gz·Stream *s, int sz, int n, void* buf);
int        gz·readln(gz·Stream *s, int n, byte *buf);
byte       gz·getbyte(gz·Stream *s);
error      gz·ungetbyte(gz·Stream *s, byte c);
int        gz·write(gz·Stream *s, int sz, int n, void* buf);
error      gz·putbyte(gz·Stream *s, byte str);
error      gz·putstring(gz·Stream *s, byte *str);
int        gz·printf(gz·Stream *s, byte *fmt, ...);
error      gz·flush(gz·Stream *s);
vlong      gz·seek(gz·Stream *s, long off, enum SeekPos whence);

// -----------------------------------------------------------------------------
// error handling functions

void errorf(const byte* fmt, ...);

#define panicf(...)  (errorf(__VA_ARGS__), assert(0))

// -----------------------------------------------------------------------------
// sorting

void sort·ints(uintptr n, int arr[]);
void sort·int8s(uintptr n, int8 arr[]);
void sort·int16s(uintptr n, int16 arr[]);
void sort·int32s(uintptr n, int32 arr[]);
void sort·int64s(uintptr n, int64 arr[]);

void sort·uints(uintptr n, uint arr[]);
void sort·uint8s(uintptr n, uint8 arr[]);
void sort·uint16s(uintptr n, uint16 arr[]);
void sort·uint32s(uintptr n, uint32 arr[]);
void sort·uint64s(uintptr n, uint64 arr[]);

void sort·floats(uintptr n, float arr[]);
void sort·doubles(uintptr n, double arr[]);

void sort·strings(uintptr n, byte* arr[]);