2 * Sherlock Library -- Miscellaneous Functions
4 * (c) 1997--2001 Martin Mares <mj@ucw.cz>
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.
13 #ifndef _SHERLOCK_LIB_H
14 #define _SHERLOCK_LIB_H
16 #include "lib/config.h"
18 /* Tell libc we're going to use all extensions available */
22 /* Ugly structure handling macros */
24 #define OFFSETOF(s, i) ((unsigned int)&((s *)0)->i)
25 #define SKIP_BACK(s, i, p) ((s *)((char *)p - OFFSETOF(s, i)))
26 #define ALIGN(s, a) (((s)+a-1)&~(a-1))
28 /* Some other macros */
30 #define MIN(a,b) (((a)<(b))?(a):(b))
31 #define MAX(a,b) (((a)>(b))?(a):(b))
32 #define CLAMP(x,min,max) ({ int _t=x; (_t < min) ? min : (_t > max) ? max : _t; })
33 #define ABS(x) ((x) < 0 ? -(x) : (x))
34 #define ARRAY_SIZE(a) (sizeof(a)/sizeof(*(a)))
46 void open_temp(struct tempfile *, byte *);
47 void delete_temp(struct tempfile *);
52 #define L_DEBUG 'D' /* Debugging messages */
53 #define L_INFO 'I' /* Informational msgs, warnings and errors */
56 #define L_INFO_R 'i' /* Errors caused by external events */
59 #define L_FATAL '!' /* die() */
61 void log(unsigned int cat, const char *msg, ...) __attribute__((format(printf,2,3)));
62 void die(byte *, ...) NONRET;
63 void log_init(byte *);
64 void log_file(byte *);
68 #define ASSERT(x) do { if (!(x)) die("Assertion `%s' failed at %s:%d", #x, __FILE__, __LINE__); } while(0)
70 #define ASSERT(x) do { } while(0)
74 #define DBG(x,y...) log(L_DEBUG, x,##y)
76 #define DBG(x,y...) do { } while(0)
79 /* Memory allocation */
83 * The standard dmalloc macros tend to produce lots of namespace
84 * conflicts and we use only xmalloc and xfree, so we can define
85 * the stubs ourselves.
87 #define DMALLOC_DISABLE
89 #define xmalloc(size) _xmalloc_leap(__FILE__, __LINE__, size)
90 #define xrealloc(ptr,size) _xrealloc_leap(__FILE__, __LINE__, ptr, size)
91 #define xfree(ptr) _xfree_leap(__FILE__, __LINE__, ptr)
94 * Unfortunately, several libraries we might want to link to define
95 * their own xmalloc and we don't want to interfere with them, hence
98 #define xmalloc sh_xmalloc
99 void *xmalloc(unsigned);
100 void *xmalloc_zero(unsigned);
101 void *xrealloc(void *, unsigned);
102 #define xfree(x) free(x)
105 byte *stralloc(byte *);
111 struct odes { /* Object description */
113 struct mempool *pool, *local_pool;
116 struct oattr { /* Object attribute */
117 struct oattr *next, *same, *last_same;
122 void obj_dump(struct odes *);
123 struct odes *obj_new(struct mempool *);
124 void obj_free(struct odes *);
125 int obj_read(struct fastbuf *, struct odes *);
126 void obj_write(struct fastbuf *, struct odes *);
127 struct oattr *obj_find_attr(struct odes *, uns);
128 struct oattr *obj_find_attr_last(struct odes *, uns);
129 uns obj_del_attr(struct odes *, struct oattr *);
130 byte *obj_find_aval(struct odes *, uns);
131 struct oattr *obj_set_attr(struct odes *, uns, byte *);
132 struct oattr *obj_set_attr_num(struct odes *, uns, uns);
133 struct oattr *obj_add_attr(struct odes *, struct oattr *, uns, byte *);
135 /* Content-Type pattern matching and filters */
137 int match_ct_patt(byte *, byte *);
145 int wordsplit(byte *, byte **, uns);
147 /* pat(i)match.c: Matching of shell patterns */
149 int match_pattern(byte *, byte *);
150 int match_pattern_nocase(byte *, byte *);
154 void md5_to_hex(byte *, byte *);
155 void hex_to_md5(byte *, byte *);
158 #define MD5_HEX_SIZE 33
167 void init_timer(void);
172 typedef struct regex regex;
174 regex *rx_compile(byte *r);
175 void rx_free(regex *r);
176 int rx_match(regex *r, byte *s);
177 int rx_subst(regex *r, byte *by, byte *src, byte *dest, uns destlen);
185 void *mmap_file(byte *name, unsigned *len, int writeable);
186 void munmap_file(void *start, unsigned len);
190 void setproctitle_init(int argc, char **argv);
191 void setproctitle(char *msg, ...) __attribute__((format(printf,1,2)));