forked from haiwen/seafile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.h
400 lines (297 loc) · 9.69 KB
/
utils.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
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#ifndef CCNET_UTILS_H
#define CCNET_UTILS_H
#ifdef WIN32
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x500
#endif
#include <windows.h>
#endif
#include <sys/time.h>
#include <time.h>
#include <stdint.h>
#include <unistd.h>
#include <stdarg.h>
#include <glib.h>
#include <glib-object.h>
#include <stdlib.h>
#include <sys/stat.h>
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
#include <event2/util.h>
#else
#include <evutil.h>
#endif
#ifdef __linux__
#include <endian.h>
#endif
#ifdef __OpenBSD__
#include <machine/endian.h>
#endif
#ifdef WIN32
#include <errno.h>
#include <glib/gstdio.h>
#ifndef WEXITSTATUS
#define WEXITSTATUS(status) (((status) & 0xff00) >> 8)
#endif
/* Borrowed from libevent */
#define ccnet_pipe_t intptr_t
int pgpipe (ccnet_pipe_t handles[2]);
/* Should only be called in main loop. */
#define ccnet_pipe(a) pgpipe((a))
#define piperead(a,b,c) recv((a),(b),(c),0)
#define pipewrite(a,b,c) send((a),(b),(c),0)
#define pipeclose(a) closesocket((a))
#define SeafStat struct __stat64
#else
#define ccnet_pipe_t int
#define ccnet_pipe(a) pipe((a))
#define piperead(a,b,c) read((a),(b),(c))
#define pipewrite(a,b,c) write((a),(b),(c))
#define pipeclose(a) close((a))
#define SeafStat struct stat
#endif
#define pipereadn(a,b,c) recvn((a),(b),(c))
#define pipewriten(a,b,c) sendn((a),(b),(c))
int seaf_stat (const char *path, SeafStat *st);
int seaf_fstat (int fd, SeafStat *st);
#ifdef WIN32
void
seaf_stat_from_find_data (WIN32_FIND_DATAW *fdata, SeafStat *st);
#endif
int seaf_set_file_time (const char *path, guint64 mtime);
#ifdef WIN32
wchar_t *
win32_long_path (const char *path);
/* Convert a (possible) 8.3 format path to long path */
wchar_t *
win32_83_path_to_long_path (const char *worktree, const wchar_t *path, int path_len);
__time64_t
file_time_to_unix_time (FILETIME *ftime);
#endif
int
seaf_util_unlink (const char *path);
int
seaf_util_rmdir (const char *path);
int
seaf_util_mkdir (const char *path, mode_t mode);
int
seaf_util_open (const char *path, int flags);
int
seaf_util_create (const char *path, int flags, mode_t mode);
int
seaf_util_rename (const char *oldpath, const char *newpath);
gboolean
seaf_util_exists (const char *path);
gint64
seaf_util_lseek (int fd, gint64 offset, int whence);
#ifdef WIN32
typedef int (*DirentCallback) (wchar_t *parent,
WIN32_FIND_DATAW *fdata,
void *user_data,
gboolean *stop);
int
traverse_directory_win32 (wchar_t *path_w,
DirentCallback callback,
void *user_data);
#endif
#ifndef O_BINARY
#define O_BINARY 0
#endif
typedef enum IgnoreReason {
IGNORE_REASON_END_SPACE_PERIOD = 0,
IGNORE_REASON_INVALID_CHARACTER = 1,
} IgnoreReason;
gboolean
should_ignore_on_checkout (const char *file_path, IgnoreReason *ignore_reason);
/* for debug */
#ifndef ccnet_warning
#define ccnet_warning(fmt, ...) g_warning("%s(%d): " fmt, __FILE__, __LINE__, ##__VA_ARGS__)
#endif
#ifndef ccnet_error
#define ccnet_error(fmt, ...) g_error("%s(%d): " fmt, __FILE__, __LINE__, ##__VA_ARGS__)
#endif
#ifndef ccnet_message
#define ccnet_message(fmt, ...) g_message("%s(%d): " fmt, __FILE__, __LINE__, ##__VA_ARGS__)
#endif
#define CCNET_DOMAIN g_quark_from_string("ccnet")
struct timeval timeval_from_msec (uint64_t milliseconds);
size_t ccnet_strlcpy (char *dst, const char *src, size_t size);
void rawdata_to_hex (const unsigned char *rawdata, char *hex_str, int n_bytes);
int hex_to_rawdata (const char *hex_str, unsigned char *rawdata, int n_bytes);
#define sha1_to_hex(sha1, hex) rawdata_to_hex((sha1), (hex), 20)
#define hex_to_sha1(hex, sha1) hex_to_rawdata((hex), (sha1), 20)
/* If msg is NULL-terminated, set len to -1 */
int calculate_sha1 (unsigned char *sha1, const char *msg, int len);
int ccnet_sha1_equal (const void *v1, const void *v2);
unsigned int ccnet_sha1_hash (const void *v);
char* gen_uuid ();
void gen_uuid_inplace (char *buf);
gboolean is_uuid_valid (const char *uuid_str);
gboolean
is_object_id_valid (const char *obj_id);
/* dir operations */
int checkdir (const char *dir);
int checkdir_with_mkdir (const char *path);
char* ccnet_expand_path (const char *src);
/**
* Make directory with 256 sub-directories from '00' to 'ff'.
* `base` and subdir will be created if they are not existing.
*/
int objstore_mkdir (const char *base);
void objstore_get_path (char *path, const char *base, const char *obj_id);
char** strsplit_by_space (char *string, int *length);
/* Read "n" bytes from a descriptor. */
ssize_t readn(int fd, void *vptr, size_t n);
ssize_t writen(int fd, const void *vptr, size_t n);
/* Read "n" bytes from a socket. */
ssize_t recvn(evutil_socket_t fd, void *vptr, size_t n);
ssize_t sendn(evutil_socket_t fd, const void *vptr, size_t n);
int copy_fd (int ifd, int ofd);
int copy_file (const char *dst, const char *src, int mode);
/* string utilities */
char** strsplit_by_char (char *string, int *length, char c);
char * strjoin_n (const char *seperator, int argc, char **argv);
int is_ipaddr_valid (const char *ip);
typedef void (*KeyValueFunc) (void *data, const char *key, char *value);
void parse_key_value_pairs (char *string, KeyValueFunc func, void *data);
typedef gboolean (*KeyValueFunc2) (void *data, const char *key,
const char *value);
void parse_key_value_pairs2 (char *string, KeyValueFunc2 func, void *data);
gchar* ccnet_key_file_get_string (GKeyFile *keyf,
const char *category,
const char *key);
GList *string_list_append (GList *str_list, const char *string);
GList *string_list_append_sorted (GList *str_list, const char *string);
GList *string_list_remove (GList *str_list, const char *string);
void string_list_free (GList *str_list);
gboolean string_list_is_exists (GList *str_list, const char *string);
void string_list_join (GList *str_list, GString *strbuf, const char *seperator);
GList *string_list_parse (const char *list_in_str, const char *seperator);
GList *string_list_parse_sorted (const char *list_in_str, const char *seperator);
gboolean string_list_sorted_is_equal (GList *list1, GList *list2);
char** ncopy_string_array (char **orig, int n);
void nfree_string_array (char **array, int n);
/* 64bit time */
gint64 get_current_time();
/*
* Utility functions for converting data to/from network byte order.
*/
#if !defined(__NetBSD__)
static inline uint64_t
bswap64 (uint64_t val)
{
uint64_t ret;
uint8_t *ptr = (uint8_t *)&ret;
ptr[0]=((val)>>56)&0xFF;
ptr[1]=((val)>>48)&0xFF;
ptr[2]=((val)>>40)&0xFF;
ptr[3]=((val)>>32)&0xFF;
ptr[4]=((val)>>24)&0xFF;
ptr[5]=((val)>>16)&0xFF;
ptr[6]=((val)>>8)&0xFF;
ptr[7]=(val)&0xFF;
return ret;
}
#endif
static inline uint64_t
hton64(uint64_t val)
{
#if __BYTE_ORDER == __LITTLE_ENDIAN || defined WIN32 || defined __APPLE__
return bswap64 (val);
#else
return val;
#endif
}
static inline uint64_t
ntoh64(uint64_t val)
{
#if __BYTE_ORDER == __LITTLE_ENDIAN || defined WIN32 || defined __APPLE__
return bswap64 (val);
#else
return val;
#endif
}
static inline void put64bit(uint8_t **ptr,uint64_t val)
{
uint64_t val_n = hton64 (val);
*((uint64_t *)(*ptr)) = val_n;
(*ptr)+=8;
}
static inline void put32bit(uint8_t **ptr,uint32_t val)
{
uint32_t val_n = htonl (val);
*((uint32_t *)(*ptr)) = val_n;
(*ptr)+=4;
}
static inline void put16bit(uint8_t **ptr,uint16_t val)
{
uint16_t val_n = htons (val);
*((uint16_t *)(*ptr)) = val_n;
(*ptr)+=2;
}
static inline uint64_t get64bit(const uint8_t **ptr)
{
uint64_t val_h = ntoh64 (*((uint64_t *)(*ptr)));
(*ptr)+=8;
return val_h;
}
static inline uint32_t get32bit(const uint8_t **ptr)
{
uint32_t val_h = ntohl (*((uint32_t *)(*ptr)));
(*ptr)+=4;
return val_h;
}
static inline uint16_t get16bit(const uint8_t **ptr)
{
uint16_t val_h = ntohs (*((uint16_t *)(*ptr)));
(*ptr)+=2;
return val_h;
}
/* Convert between local encoding and utf8. Returns the converted
* string if success, otherwise return NULL
*/
char *ccnet_locale_from_utf8 (const gchar *src);
char *ccnet_locale_to_utf8 (const gchar *src);
/* Detect whether a process with the given name is running right now. */
gboolean process_is_running(const char *name);
/* count how much instance of a program is running */
int count_process (const char *process_name_in);
#ifdef WIN32
int win32_kill_process (const char *process_name_in);
int win32_spawn_process (char *cmd, char *wd);
char *wchar_to_utf8 (const wchar_t *src);
wchar_t *wchar_from_utf8 (const char *src);
#endif
char* ccnet_object_type_from_id (const char *object_id);
gint64 ccnet_calc_directory_size (const char *path, GError **error);
#ifdef WIN32
char * strtok_r(char *s, const char *delim, char **save_ptr);
#endif
#include <jansson.h>
const char *
json_object_get_string_member (json_t *object, const char *key);
gboolean
json_object_has_member (json_t *object, const char *key);
gint64
json_object_get_int_member (json_t *object, const char *key);
void
json_object_set_string_member (json_t *object, const char *key, const char *value);
void
json_object_set_int_member (json_t *object, const char *key, gint64 value);
/* Replace invalid UTF-8 bytes with '?' */
void
clean_utf8_data (char *data, int len);
char *
normalize_utf8_path (const char *path);
/* zlib related functions. */
int
seaf_compress (guint8 *input, int inlen, guint8 **output, int *outlen);
int
seaf_decompress (guint8 *input, int inlen, guint8 **output, int *outlen);
char*
format_dir_path (const char *path);
gboolean
is_empty_string (const char *str);
gboolean
is_permission_valid (const char *perm);
#endif