]> mj.ucw.cz Git - libucw.git/blob - lib/lib.h
2fb56d95e552a8a6a2beba1e9e3c5507a8174da1
[libucw.git] / lib / lib.h
1 /*
2  *      Sherlock Library -- Miscellaneous Functions
3  *
4  *      (c) 1997--2000 Martin Mares <mj@ucw.cz>
5  */
6
7 /*
8  *  This file should be included as the very first include in all
9  *  source files, especially before all OS includes since it sets
10  *  up libc feature macros.
11  */
12
13 #ifndef _SHERLOCK_LIB_H
14 #define _SHERLOCK_LIB_H
15
16 #include "lib/config.h"
17
18 /* Tell libc we're going to use all extensions available */
19
20 #define _GNU_SOURCE
21
22 #ifndef NULL
23 #define NULL ((void *)0)
24 #endif
25
26 /* Ugly structure handling macros */
27
28 #define OFFSETOF(s, i) ((unsigned int)&((s *)0)->i)
29 #define SKIP_BACK(s, i, p) ((s *)((char *)p - OFFSETOF(s, i)))
30 #define ALIGN(s, a) (((s)+a-1)&~(a-1))
31
32 /* Temporary Files */
33
34 #define TMP_DIR "tmp"
35 #define TMP_DIR_LEN 3
36
37 struct tempfile {
38   int fh;
39   byte name[32];
40 };
41
42 void open_temp(struct tempfile *, byte *);
43 void delete_temp(struct tempfile *);
44 u32 temprand(uns);
45
46 /* FIXME: Remove? */
47 #define TF_GENERIC "t"
48 #define TF_QUEUE_CONTROL "c"
49 #define TF_QUEUE_DATA "d"
50 #define TF_DECODE "x"
51 #define TF_TRANSFORM "s"
52 #define TF_OBJECT "o"
53
54 /* Logging */
55
56 /* FIXME: Define new logging mechanism? */
57
58 #define L_DEBUG "<0>"
59 #define L_INFO "<2>"
60 #define L_WARN "<4>"
61 #define L_ERROR "<6>"
62 #define L_FATAL "<9>"
63
64 void log(byte *, ...);
65 void die(byte *, ...) NONRET;
66 void initlog(byte *);
67 void open_log_file(byte *);
68
69 #ifdef DEBUG
70 #define ASSERT(x) do { if (!(x)) die("Assertion `%s' failed at %s:%d", #x, __FILE__, __LINE__); } while(0)
71 #else
72 #define ASSERT(x) do { } while(0)
73 #endif
74
75 /* Allocation */
76
77 void *xmalloc(uns);
78 void *xrealloc(void *, uns);
79 byte *stralloc(byte *);
80
81 /* Content-Type pattern matching and filters */
82
83 int match_ct_patt(byte *, byte *);
84
85 /* Binary log */
86
87 int log2(u32);
88
89 /* wordsplit.c */
90
91 int wordsplit(byte *, byte **, uns);
92
93 /* pat(i)match.c */
94
95 int match_pattern(byte *, byte *);
96 int match_pattern_nocase(byte *, byte *);
97
98 /* md5hex.c */
99
100 void md5_to_hex(byte *, byte *);
101 void hex_to_md5(byte *, byte *);
102
103 #define MD5_SIZE 16
104 #define MD5_HEX_SIZE 33
105
106 /* prime.c */
107
108 int isprime(uns);
109 uns nextprime(uns);
110
111 /* timer.c */
112
113 void init_timer(void);
114 uns get_timer(void);
115
116 /* regex.c */
117
118 typedef struct regex regex;
119
120 regex *rx_compile(byte *r);
121 void rx_free(regex *r);
122 int rx_match(regex *r, byte *s);
123 int rx_subst(regex *r, byte *by, byte *src, byte *dest, uns destlen);
124
125 /* random.c */
126
127 uns random_max(uns);
128
129 /* mmap.c */
130
131 void *mmap_file(byte *name, unsigned *len);
132
133 #endif