-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtoucanlib.h
452 lines (376 loc) · 13.1 KB
/
toucanlib.h
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
/*
* Copyright (c) 2024 Logan Ryan McLintock
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef TOUCANLIB_H
#define TOUCANLIB_H
#ifdef __linux__
/* For: strdup and snprintf */
#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE 500
#endif
/* For: DT_DIR and DT_UNKNOWN */
#ifndef _DEFAULT_SOURCE
#define _DEFAULT_SOURCE
#endif
#endif
#ifdef _WIN32
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#ifndef _CRT_RAND_S
#define _CRT_RAND_S
#endif
#endif
#include <sys/types.h>
#include <sys/stat.h>
#ifdef _WIN32
#include <Windows.h>
#include <direct.h>
#include <io.h>
#include <fcntl.h>
#include <process.h>
#else
#include <sys/mman.h>
#include <sys/wait.h>
#include <dirent.h>
#include <fcntl.h>
#include <time.h>
#include <unistd.h>
#endif
#include <ctype.h>
#include <errno.h>
#include <limits.h>
#include <locale.h>
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
#define popen _popen
#define pclose _pclose
#endif
#ifdef _WIN32
#define stat_f _stat64
#define stat_s __stat64
#else
#define stat_f stat
#define stat_s stat
#endif
#ifndef S_ISREG
#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
#endif
#ifndef S_ISDIR
#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
#endif
#ifndef S_ISLNK
#define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
#endif
#ifndef _WIN32
#define mkdir(dir) mkdir(dir, S_IRWXU)
#endif
#define mreturn(rv) do { \
fprintf(stderr, "[%s:%d]: Error: " #rv "\n", __FILE__, __LINE__); \
return (rv); \
} while (0)
#define d_mreturn(msg, rv) do { \
fprintf(stderr, "[%s:%d]: " msg " error\n", __FILE__, __LINE__); \
return (rv); \
} while (0)
#define mgoto(lab) do { \
fprintf(stderr, "[%s:%d]: Error: " #lab "\n", __FILE__, __LINE__); \
goto lab; \
} while (0)
#define d_mgoto(lab, ...) do { \
fprintf(stderr, "[%s: %d]: " #lab ": ", __FILE__, __LINE__); \
fprintf(stderr, __VA_ARGS__); \
goto lab; \
} while (0)
/* Success return codes */
#define SUCCESS 0
#define MATCH SUCCESS
/* Used to not trigger the debugging */
#define NULL_OK NULL
/*
* Error codes:
* EOF is is negative.
*/
/* Success is 0 or: */
#define OK 0
/* System related error. Terminates execution (after clean up). */
#define GEN_ERROR 1
/*
* User related errors.
* Execution continutes, but exit status will be non-zero.
*/
#define NO_MATCH 2
#define SYNTAX_ERROR 3
#define DIV_BY_ZERO_ERROR 4
#define USER_OVERFLOW_ERROR 5
#define USAGE_ERROR 6
/*
* System or user related error whereby execution continutes.
* Exit status will be non-zero.
*/
#define ERROR_BUT_CONTIN 7
#ifdef _WIN32
#define DIR_SEP_STR "\\"
#else
#define DIR_SEP_STR "/"
#endif
#define TAB_SIZE 8
/* For printing a number as a string */
#define NUM_BUF_SIZE 32
#define NUM_OPERATORS 25
/* Parentheses */
#define LEFT_PARENTHESIS 0
#define RIGHT_PARENTHESIS 1
/* Unary operators */
#define POSITIVE 2
#define NEGATIVE 3
#define BITWISE_COMPLEMENT 4
#define LOGICAL_NEGATION 5
/* Binary operators */
#define EXPONENTIATION 6
#define MULTIPLICATION 7
#define DIVISION 8
#define MODULO 9
#define ADDITION 10
#define SUBTRACTION 11
#define BITWISE_LEFT_SHIFT 12
#define BITWISE_RIGHT_SHIFT 13
#define LESS_THAN 14
#define LESS_THAN_OR_EQUAL 15
#define GREATER_THAN 16
#define GREATER_THAN_OR_EQUAL 17
#define EQUAL 18
#define NOT_EQUAL 19
#define BITWISE_AND 20
#define BITWISE_XOR 21
#define BITWISE_OR 22
#define LOGICAL_AND 23
#define LOGICAL_OR 24
/* Stringify. Converts text to a string literal. */
#define sf(text) #text
/* Expanded stringify. Stringifies the definition of macro_name. */
#define esf(macro_name) sf(macro_name)
/* Concatenation */
#define conc(a, b) a ## b
/* Epanded concatenation */
#define econc(a, b) conc(a, b)
/* attr must be an unsigned char */
#define IS_DIR(attr) ((attr) & 1)
#define IS_SLINK(attr) ((attr) & 1 << 1)
#define IS_DOTDIR(attr) ((attr) & 1 << 2)
/* Unsigned addition overflow test */
#define aof(a, b, max_val) ((a) > (max_val) - (b))
/* Unsigned multiplication overflow test */
#define mof(a, b, max_val) ((a) && (b) > (max_val) / (a))
/* Inputs need to be isxdigit */
#define hex_nibble(h) (((h) & 0x0F) + ((h) & 0x40 ? 9 : 0))
#define hex(h1, h0) (hex_nibble(h1) << 4 | hex_nibble(h0))
#define start_of_gb(b) while (!left_ch(b))
#define end_of_gb(b) while (!right_ch(b))
#define C(l) ((l) - 'a' + 1)
typedef int (*Fptr)(void *);
/*
* Input buffer: Characters are stored in reverse order.
* Unget file links in a new struct at the head.
* Operated on by get and unget functions.
*/
struct ibuf {
char *nm; /* Associated filename or name of stream */
FILE *fp; /* File pointer */
int incr_rn; /* Increment row number next character */
/*
* Row number of character read from file, starting from 1.
* \n is treated as at the end of the line, so the row number will not
* increment until the character after is read.
*/
size_t rn;
char *a; /* Memory */
size_t i; /* Write index */
size_t n; /* Allocated number of elements */
struct ibuf *next; /* Link to next struct */
};
/*
* Ouput buffer: Characters are stored in normal order.
* Operated on by put functions.
*/
struct obuf {
char *a; /* Memory */
size_t i; /* Write index */
size_t n; /* Allocated number of elements */
};
struct lbuf {
long *a; /* Memory */
size_t i; /* Write index */
size_t n; /* Allocated number of elements */
};
struct sbuf {
size_t *a; /* Memory */
size_t i; /* Write index */
size_t n; /* Allocated number of elements */
};
struct pbuf {
void **a; /* Memory */
size_t i; /* Write index */
size_t n; /* Allocated number of elements */
};
struct gb {
char *fn;
unsigned char *a;
size_t g; /* Gap start */
size_t c; /* Cursor */
size_t e; /* End of buffer */
int m_set; /* Mark set */
size_t m; /* Mark */
size_t r; /* Row number (starts from 1) */
size_t col; /* Column number (starts from 0) */
int sc_set; /* Sticky column set */
size_t sc; /* Sticky column for repeated up and down */
size_t d; /* Draw start */
int mod; /* Modified */
struct gb *prev;
struct gb *next;
};
/* Hash table entry */
struct entry {
char *name; /* Macro name */
char *def; /* User-defined macro definition */
Fptr func_p; /* Function Pointer */
struct entry *hist; /* For entry history */
struct entry *prev; /* Previous entry in collision chain */
struct entry *next; /* Next entry in collision chain */
};
/* Hash table */
struct ht {
struct entry **b; /* Buckets */
size_t n; /* Number of buckets */
};
/* Function declarations */
int binary_io(void);
char *concat(const char *str, ...);
void *quick_search(const void *mem, size_t mem_len, const void *find,
size_t find_len);
FILE *fopen_w(const char *fn, int append);
int tty_check(FILE *stream, int *is_tty);
int milli_sleep(long milliseconds);
int random_uint(unsigned int *x);
int random_num(unsigned int max_inclusive, unsigned int *x);
int str_to_num(const char *str, unsigned long max_val, unsigned long *res);
int str_to_size_t(const char *str, size_t *res);
int str_to_uint(const char *str, unsigned int *res);
int hex_to_val(unsigned char h1, unsigned char h0, unsigned char *res);
int lop(long *a, long b, unsigned char op);
int lpow(long *a, long b);
char *ltostr(long a, unsigned int base, unsigned int pad);
struct ibuf *init_ibuf(size_t n);
int free_ibuf(struct ibuf *b);
int unget_ch(struct ibuf *b, char ch);
int unget_str(struct ibuf *b, const char *str);
int unget_stream(struct ibuf **b, FILE *fp, const char *nm);
int unget_file(struct ibuf **b, const char *fn);
int append_stream(struct ibuf **b, FILE *fp, const char *nm);
int append_file(struct ibuf **b, const char *fn);
int get_ch(struct ibuf **input, char *ch);
int eat_whitespace(struct ibuf **input);
int delete_to_nl(struct ibuf **input);
int eat_str_if_match(struct ibuf **input, const char *str);
int get_word(struct ibuf **input, struct obuf *token, int interpret_hex);
struct obuf *init_obuf(size_t n);
void free_obuf(struct obuf *b);
void free_obuf_exterior(struct obuf *b);
int put_ch(struct obuf *b, char ch);
int put_str(struct obuf *b, const char *str);
int put_mem(struct obuf *b, const char *mem, size_t mem_len);
int put_obuf(struct obuf *b, struct obuf *t);
int put_file(struct obuf *b, const char *fn);
int put_stream(struct obuf *b, FILE *fp);
int write_obuf(struct obuf *b, const char *fn, int append);
int flush_obuf(struct obuf *b, int tty_output);
char *obuf_to_str(struct obuf **b);
struct lbuf *init_lbuf(size_t n);
void free_lbuf(struct lbuf *b);
int add_l(struct lbuf *b, long x);
struct sbuf *init_sbuf(size_t n);
void free_sbuf(struct sbuf *b);
int add_s(struct sbuf *b, size_t x);
struct pbuf *init_pbuf(size_t n);
void free_pbuf(struct pbuf *b);
int add_p(struct pbuf *b, void *x);
struct gb *init_gb(size_t s);
void free_gb(struct gb *b);
void free_gb_list(struct gb *b);
void delete_gb(struct gb *b);
int insert_ch(struct gb *b, char ch);
int insert_str(struct gb *b, const char *str);
int insert_mem(struct gb *b, const char *mem, size_t mem_len);
int insert_file(struct gb *b, const char *fn);
int delete_ch(struct gb *b);
int left_ch(struct gb *b);
int right_ch(struct gb *b);
int backspace_ch(struct gb *b);
void start_of_line(struct gb *b);
void end_of_line(struct gb *b);
int up_line(struct gb *b);
int down_line(struct gb *b);
void left_word(struct gb *b);
void right_word(struct gb *b, char transform);
int goto_row(struct gb *b, struct gb *cl);
int insert_hex(struct gb *b, struct gb *cl);
void set_mark(struct gb *b);
int swap_cursor_and_mark(struct gb *b);
int exact_forward_search(struct gb *b, struct gb *cl);
int regex_forward_search(struct gb *b, struct gb *cl);
int regex_replace_region(struct gb *b, struct gb *cl);
int match_bracket(struct gb *b);
void trim_clean(struct gb *b);
int copy_region(struct gb *b, struct gb *p, int cut);
int cut_to_eol(struct gb *b, struct gb *p);
int cut_to_sol(struct gb *b, struct gb *p);
int word_under_cursor(struct gb *b, struct gb *tmp);
int copy_logical_line(struct gb *b, struct gb *tmp);
int insert_shell_cmd(struct gb *b, const char *cmd, int *es);
int shell_line(struct gb *b, struct gb *tmp, int *es);
int paste(struct gb *b, struct gb *p);
int save(struct gb *b);
int rename_gb(struct gb *b, const char *fn);
int new_gb(struct gb **b, const char *fn, size_t s);
void remove_gb(struct gb **b);
int eval_ibuf(struct ibuf **input, long *res, int verbose);
int eval_str(const char *math_str, long *res, int verbose);
struct ht *init_ht(size_t num_buckets);
void free_ht(struct ht *ht);
struct entry *lookup(struct ht *ht, const char *name);
int delete_entry(struct ht *ht, const char *name, int pop_hist);
int upsert(struct ht *ht, const char *name, const char *def, Fptr func_p,
int push_hist);
int regex_search(const char *text, size_t text_size, int sol,
const char *regex_str, int nl_ins, size_t *match_offset,
size_t *match_len, int verbose);
int regex_replace(const char *text, size_t text_size,
const char *regex_str, int nl_ins,
const char *replace_str, char **result,
size_t *result_len, int verbose);
int get_file_size(const char *fn, size_t *fs);
int get_path_attr(const char *path, unsigned char *attr);
int rec_rm(const char *path);
char *ls_dir(const char *dir);
int mmap_file_ro(const char *fn, void **mem, size_t *fs);
int un_mmap(void *p, size_t s);
int make_temp(const char *template, char **temp_fn);
int make_stemp(const char *template, char **temp_fn);
#endif