]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/utils/utils.h
1a205fdc091df09c7d0a0fae787b334190843012
[OpenSRF.git] / src / utils / utils.h
1 /*
2 Copyright (C) 2005  Georgia Public Library Service 
3 Bill Erickson <highfalutin@gmail.com>
4 Mike Rylander <mrylander@gmail.com>
5
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15 */
16
17 #ifndef UTILS_H
18 #define UTILS_H
19
20 #include <stdarg.h>
21 #include <fcntl.h>
22 #include <unistd.h>
23 #include <sys/time.h>
24 #include <sys/stat.h>
25 #include <fcntl.h>
26
27 #define BUFFER_MAX_SIZE 10485760 
28
29 void* safe_malloc(int size);
30
31 // ---------------------------------------------------------------------------------
32 // Generic growing buffer. Add data all you want
33 // ---------------------------------------------------------------------------------
34 struct growing_buffer_struct {
35         char *buf;
36         int n_used;
37         int size;
38 };
39 typedef struct growing_buffer_struct growing_buffer;
40
41 growing_buffer* buffer_init( int initial_num_bytes);
42
43 // XXX This isn't defined in utils.c!! removing for now...
44 //int buffer_addchar(growing_buffer* gb, char c);
45
46 int buffer_add(growing_buffer* gb, char* c);
47 int buffer_fadd(growing_buffer* gb, const char* format, ... );
48 int buffer_reset( growing_buffer* gb);
49 char* buffer_data( growing_buffer* gb);
50 int buffer_free( growing_buffer* gb );
51 int buffer_add_char(growing_buffer* gb, char c);
52
53
54 /* string escape utility method.  escapes unicode embeded characters.
55         escapes the usual \n, \t, etc. 
56         for example, if you provide a string like so:
57
58         hello,
59                 you
60
61         you would get back:
62         hello,\n\tyou
63  
64  */
65 char* uescape( const char* string, int size, int full_escape );
66
67 /* utility methods */
68 int set_fl( int fd, int flags );
69 int clr_fl( int fd, int flags );
70
71
72
73 // Utility method
74 double get_timestamp_millis();
75
76
77
78
79 #endif