]> git.evergreen-ils.org Git - working/Evergreen.git/blob - OpenSRF/src/utils/utils.h
made C auth server
[working/Evergreen.git] / OpenSRF / 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 <stdio.h>
21 #include <stdarg.h>
22 #include <fcntl.h>
23 #include <unistd.h>
24 #include <sys/time.h>
25 #include <sys/stat.h>
26 #include <fcntl.h>
27 #include <sys/types.h>
28 #include <stdlib.h>
29 #include <string.h>
30 //#include <sys/timeb.h>
31
32 #include "md5.h"
33
34 /* turns a va_list into a string */
35 #define VA_LIST_TO_STRING(x) \
36         unsigned long len = 0;\
37         va_list args; \
38         va_list a_copy;\
39         va_copy(a_copy, args); \
40         va_start(args, x); \
41         len = vsnprintf(NULL, 0, x, args); \
42         va_end(args); \
43         len += 2; \
44         char _b[len]; \
45         bzero(_b, len); \
46         va_start(a_copy, x); \
47         vsnprintf(_b, len - 1, x, a_copy); \
48         va_end(a_copy); \
49         char* VA_BUF = _b; \
50
51 /* turns a long into a string */
52 #define LONG_TO_STRING(l) \
53         unsigned int __len = snprintf(NULL, 0, "%ld", l) + 2;\
54         char __b[__len]; \
55         bzero(__b, __len); \
56         snprintf(__b, __len - 1, "%ld", l); \
57         char* LONGSTR = __b;
58
59 #define DOUBLE_TO_STRING(l) \
60         unsigned int __len = snprintf(NULL, 0, "%lf", l) + 2; \
61         char __b[__len]; \
62         bzero(__b, __len); \
63         snprintf(__b, __len - 1, "%lf", l); \
64         char* DOUBLESTR = __b;
65
66 #define INT_TO_STRING(l) \
67         unsigned int __len = snprintf(NULL, 0, "%d", l) + 2; \
68         char __b[__len]; \
69         bzero(__b, __len); \
70         snprintf(__b, __len - 1, "%d", l); \
71         char* INTSTR = __b;
72
73
74 /*
75 #define MD5SUM(s) \
76         struct md5_ctx ctx; \
77         unsigned char digest[16];\
78         MD5_start (&ctx);\
79         int i;\
80         for ( i=0 ; i != strlen(text) ; i++ ) MD5_feed (&ctx, text[i]);\
81         MD5_stop (&ctx, digest);\
82         char buf[16];\
83         memset(buf,0,16);\
84         char final[256];\
85         memset(final,0,256);\
86         for ( i=0 ; i<16 ; i++ ) {\
87                 sprintf(buf, "%02x", digest[i]);\
88                 strcat( final, buf );\
89         }\
90         char* MD5STR = final;
91         */
92
93
94         
95
96
97 #define BUFFER_MAX_SIZE 10485760 
98
99 /* these are evil and should be condemned 
100         ! Only use these if you are done with argv[].
101         call init_proc_title() first, then call
102         set_proc_title. 
103         the title is only allowed to be as big as the
104         initial process name of the process (full size of argv[]).
105         truncation may occurr.
106  */
107 int init_proc_title( int argc, char* argv[] );
108 int set_proc_title( char* format, ... );
109
110
111 int daemonize();
112
113 void* safe_malloc(int size);
114
115 // ---------------------------------------------------------------------------------
116 // Generic growing buffer. Add data all you want
117 // ---------------------------------------------------------------------------------
118 struct growing_buffer_struct {
119         char *buf;
120         int n_used;
121         int size;
122 };
123 typedef struct growing_buffer_struct growing_buffer;
124
125 growing_buffer* buffer_init( int initial_num_bytes);
126
127 // XXX This isn't defined in utils.c!! removing for now...
128 //int buffer_addchar(growing_buffer* gb, char c);
129
130 int buffer_add(growing_buffer* gb, char* c);
131 int buffer_fadd(growing_buffer* gb, const char* format, ... );
132 int buffer_reset( growing_buffer* gb);
133 char* buffer_data( growing_buffer* gb);
134 int buffer_free( growing_buffer* gb );
135 int buffer_add_char(growing_buffer* gb, char c);
136
137 /* returns the size needed to fill in the vsnprintf buffer.  
138         * ! this calls va_end on the va_list argument*
139         */
140 long va_list_size(const char* format, va_list);
141
142 /* turns a va list into a string, caller must free the 
143         allocated char */
144 char* va_list_to_string(const char* format, ...);
145
146
147 /* string escape utility method.  escapes unicode embeded characters.
148         escapes the usual \n, \t, etc. 
149         for example, if you provide a string like so:
150
151         hello,
152                 you
153
154         you would get back:
155         hello,\n\tyou
156  
157  */
158 char* uescape( const char* string, int size, int full_escape );
159
160 /* utility methods */
161 int set_fl( int fd, int flags );
162 int clr_fl( int fd, int flags );
163
164
165
166 // Utility method
167 double get_timestamp_millis();
168
169
170 /* returns true if the whole string is a number */
171 int stringisnum(char* s);
172
173 /* reads a file and returns the string version of the file
174         user is responsible for freeing the returned char*
175         */
176 char* file_to_string(const char* filename);
177
178
179
180 /** 
181   Calculates the md5 of the text provided.
182   The returned string must be freed by the caller.
183   */
184 char* md5sum( char* text, ... );
185
186
187 #endif