-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmisc.h
160 lines (103 loc) · 4.31 KB
/
misc.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
/******************************************************************************
* Copyright (C) 2008 - 2014 Andreas Öman
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
******************************************************************************/
#pragma once
#include <alloca.h>
#include <stdarg.h>
#include <stdint.h>
#include <unistd.h>
#include <sys/time.h>
#define URL_ESCAPE_PATH 1
#define URL_ESCAPE_PARAM 2
int url_escape(char *dst, const int size, const char *src, int how);
char *url_escape_tmp(const char *src, int how);
char *url_escape_alloc(const char *src, int how);
#define BASE64_STANDARD 0
#define BASE64_URL 1
int base64_encode(char *out, int out_size, const void *in, int in_size);
int base64_decode(uint8_t *out, const char *in, int out_size);
#define BASE64_SIZE(x) (((x)+2) / 3 * 4 + 1)
char *base64_encode_a(const void *in, int in_size, int mode);
int dictcmp(const char *a, const char *b);
#define WRITEFILE_NO_CHANGE 1000000
int writefile(const char *path, const void *buf, int size, int checksame);
char *readfile(const char *path, time_t *ts);
int mkdir_p(const char *path, int mode);
int mkdir_chown_p(const char *path, uid_t uid, uid_t gid, int mode);
int rm_rf(const char *path, int remove_self);
void get_random_bytes(void *out, size_t len);
typedef struct { uint32_t a; uint32_t b; uint32_t c; uint32_t d; } prng_t;
uint32_t prng_get(prng_t *x);
void prng_init(prng_t *x);
#define mystrdupa(n) ({ int my_l = strlen(n); \
char *my_b = alloca(my_l + 1); \
memcpy(my_b, n, my_l + 1); })
#define mystrndupa(n, len) ({ \
char *my_b = alloca(len + 1); \
my_b[len] = 0; \
memcpy(my_b, n, len); \
})
// Check if s1 begins with s2
static inline const char *mystrbegins(const char *s1, const char *s2)
{
while(*s2)
if(*s1++ != *s2++)
return NULL;
return s1;
}
int64_t get_ts(void);
int64_t get_ts_mono(void);
void strset(char **p, const char *s);
int str_tokenize(char *buf, char **vec, int vecsize, int delimiter);
int hexnibble(char c);
int hex2bin(uint8_t *buf, size_t buflen, const char *str);
void bin2hex(char *dst, size_t dstlen, const uint8_t *src, size_t srclen);
char *bin2str(const void *src, size_t len);
const char *time_to_RFC_1123(time_t t);
#if 0
void strvec_addp(char ***str, const char *v);
void strvec_addpn(char ***str, const char *v, size_t len);
char **strvec_split(const char *str, char ch);
void strvec_free(char **s);
int strvec_len(char **s);
char **strvec_dup(char **s);
#endif
void http_deescape(char *s);
char *lp_get(char **lp);
#define LINEPARSE(out, src) for(char *lp = src, *out; (out = lp_get(&lp)) != NULL; )
#ifndef ARRAYSIZE
#define ARRAYSIZE(x) (sizeof(x) / sizeof(x[0]))
#endif
size_t html_enteties_escape(const char *src, char *dst);
const char *html_enteties_escape_tmp(const char *src);
char * str_replace_tokens(char *str, const char *tokenprefix,
const char *tokenpostfix,
const char **tokens);
void freecharp(char **ptr);
void freeuint8p(uint8_t **ptr);
#define scoped_char char __attribute__((cleanup(freecharp)))
#define scoped_uint8_t uint8_t __attribute__((cleanup(freeuint8p)))
char *fmtv(const char *fmt, va_list ap);
char *fmt(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
void *malloc_add(size_t a, size_t b);
void *malloc_mul(size_t a, size_t b);
int64_t rfc3339_date_parse(const char *s, int roundup);