forked from Tasssadar/multirom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.h
87 lines (74 loc) · 3.04 KB
/
util.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
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef _INIT_UTIL_H_
#define _INIT_UTIL_H_
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/time.h>
#include <time.h>
#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
static const char *coldboot_done = "/dev/.coldboot_done";
time_t gettime(void);
unsigned int decode_uid(const char *s);
int mkdir_recursive(const char *pathname, mode_t mode);
void sanitize(char *p);
int make_link(const char *oldpath, const char *newpath);
void remove_link(const char *oldpath, const char *newpath);
int wait_for_file(const char *filename, int timeout);
int copy_file(const char *from, const char *to);
int mkdir_with_perms(const char *path, mode_t mode, const char *owner, const char *group);
int write_file(const char *path, const char *value);
int remove_dir(const char *dir);
int run_cmd(char **cmd);
char *run_get_stdout(char **cmd);
char *readlink_recursive(const char *link);
char *parse_string(char *src);
uint32_t timespec_diff(struct timespec *f, struct timespec *s);
// auto-conversion of pointer type occurs only for
// void*, not for void** nor void***
typedef void* ptrToList; // void ***
typedef void* listItself; // void **
typedef void* callback;
typedef void(*callbackPtr)(void*);
void list_add(void *item, ptrToList list_p);
int list_add_from_list(listItself src_p, ptrToList list_p);
int list_rm(void *item, ptrToList list_p, callback destroy_callback_p);
int list_rm_noreorder(void *item, ptrToList list_p, callback destroy_callback_p);
int list_rm_opt(int reorder, void *item, ptrToList list_p, callback destroy_callback_p);
int list_rm_at(int idx, ptrToList list_p, callback destroy_callback_p);
int list_size(listItself list);
int list_item_count(listItself list);
int list_copy(listItself src, ptrToList dest_p);
int list_move(ptrToList source_p, ptrToList dest_p);
void list_clear(ptrToList list_p, callback destroy_callback_p);
void list_swap(ptrToList a_p, ptrToList b_p);
inline int in_rect(int x, int y, int rx, int ry, int rw, int rh);
typedef struct
{
char **keys;
void **values;
} map;
map *map_create(void);
void map_destroy(map *m, void (*destroy_callback)(void*));
void map_add(map *m, char *key, void *val, void (*destroy_callback)(void*));
void map_add_not_exist(map *m, char *key, void *val);
void map_rm(map *m, char *key, void (*destroy_callback)(void*));
int map_find(map *m, char *key);
void *map_get_val(map *m, char *key);
void *map_get_ref(map *m, char *key);
// alloc and fill with 0s
inline void *mzalloc(size_t size);
#endif