forked from postgresql-interfaces/psqlodbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
misc.c
314 lines (277 loc) · 5.96 KB
/
misc.c
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
/*-------
* Module: misc.c
*
* Description: This module contains miscellaneous routines
* such as for debugging/logging and string functions.
*
* Classes: n/a
*
* API functions: none
*
* Comments: See "readme.txt" for copyright and license information.
*-------
*/
#include "psqlodbc.h"
#include "misc.h"
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
#include <time.h>
#ifndef WIN32
#include <pwd.h>
#include <sys/types.h>
#include <unistd.h>
#else
#include <process.h> /* Byron: is this where Windows keeps def.
* of getpid ? */
#endif
/*
* returns STRCPY_FAIL, STRCPY_TRUNCATED, or #bytes copied
* (not including null term)
*/
ssize_t
my_strcpy(char *dst, ssize_t dst_len, const char *src, ssize_t src_len)
{
if (dst_len <= 0)
return STRCPY_FAIL;
if (src_len == SQL_NULL_DATA)
{
dst[0] = '\0';
return STRCPY_NULL;
}
else if (src_len == SQL_NTS)
src_len = strlen(src);
if (src_len <= 0)
return STRCPY_FAIL;
else
{
if (src_len < dst_len)
{
memcpy(dst, src, src_len);
dst[src_len] = '\0';
}
else
{
memcpy(dst, src, dst_len - 1);
dst[dst_len - 1] = '\0'; /* truncated */
return STRCPY_TRUNCATED;
}
}
return strlen(dst);
}
/*
* strncpy copies up to len characters, and doesn't terminate
* the destination string if src has len characters or more.
* instead, I want it to copy up to len-1 characters and always
* terminate the destination string.
*/
size_t
strncpy_null(char *dst, const char *src, ssize_t len)
{
int i;
if (NULL != dst && len > 0)
{
for (i = 0; src[i] && i < len - 1; i++)
dst[i] = src[i];
dst[i] = '\0';
}
else
return 0;
if (src[i])
return strlen(src);
return i;
}
/*------
* Create a null terminated string (handling the SQL_NTS thing):
* 1. If buf is supplied, place the string in there
* (assumes enough space) and return buf.
* 2. If buf is not supplied, malloc space and return this string
*------
*/
char *
make_string(const SQLCHAR *s, SQLINTEGER len, char *buf, size_t bufsize)
{
size_t length;
char *str;
if (!s || SQL_NULL_DATA == len)
return NULL;
if (len >= 0)
length =len;
else if (SQL_NTS == len)
length = strlen((char *) s);
else
{
MYLOG(0, "invalid length=" FORMAT_INTEGER "\n", len);
return NULL;
}
if (buf)
{
strncpy_null(buf, (char *) s, bufsize > length ? length + 1 : bufsize);
return buf;
}
MYLOG(DETAIL_LOG_LEVEL, "malloc size=" FORMAT_SIZE_T "\n", length);
str = malloc(length + 1);
MYLOG(DETAIL_LOG_LEVEL, "str=%p\n", str);
if (!str)
return NULL;
strncpy_null(str, (char *) s, length + 1);
return str;
}
char *
my_trim(char *s)
{
char *last;
for (last = s + strlen(s) - 1; last >= s; last--)
{
if (*last == ' ')
*last = '\0';
else
break;
}
return s;
}
/*
* snprintfcat is a extension to snprintf
* It add format to buf at given pos
*/
#ifdef POSIX_SNPRINTF_REQUIRED
static posix_vsnprintf(char *str, size_t size, const char *format, va_list ap);
#define vsnprintf posix_vsnprintf
#endif /* POSIX_SNPRINTF_REQUIRED */
int
snprintfcat(char *buf, size_t size, const char *format, ...)
{
int len;
size_t pos = strlen(buf);
va_list arglist;
va_start(arglist, format);
len = vsnprintf(buf + pos, size - pos, format, arglist);
va_end(arglist);
return len + pos;
}
/*
* snprintf_len is a extension to snprintf
* It returns strlen of buf every time (not -1 when truncated)
*/
size_t
snprintf_len(char *buf, size_t size, const char *format, ...)
{
ssize_t len;
va_list arglist;
va_start(arglist, format);
if ((len = vsnprintf(buf, size, format, arglist)) < 0)
len = size;
va_end(arglist);
return len;
}
/*
* Windows doesn't have snprintf(). It has _snprintf() which is similar,
* but it behaves differently wrt. truncation. This is a compatibility
* function that uses _snprintf() to provide POSIX snprintf() behavior.
*
* Our strategy, if the output doesn't fit, is to create a temporary buffer
* and call _snprintf() on that. If it still doesn't fit, enlarge the buffer
* and repeat.
*/
#ifdef POSIX_SNPRINTF_REQUIRED
static int
posix_vsnprintf(char *str, size_t size, const char *format, va_list ap)
{
int len;
char *tmp;
size_t newsize;
len = _vsnprintf(str, size, format, ap);
if (len < 0)
{
if (size == 0)
newsize = 100;
else
newsize = size;
do
{
newsize *= 2;
tmp = malloc(newsize);
if (!tmp)
return -1;
len = _vsnprintf(tmp, newsize, format, ap);
if (len >= 0)
memcpy(str, tmp, size);
free(tmp);
} while (len < 0);
}
if (len >= size && size > 0)
{
/* Ensure the buffer is NULL-terminated */
str[size - 1] = '\0';
}
return len;
}
int
posix_snprintf(char *buf, size_t size, const char *format, ...)
{
int len;
va_list arglist;
va_start(arglist, format);
len = posix_vsnprintf(buf, size, format, arglist);
va_end(arglist);
return len;
}
#endif /* POSIX_SNPRINTF_REQUIRED */
#ifndef HAVE_STRLCAT
size_t
strlcat(char *dst, const char *src, size_t size)
{
size_t ttllen;
char *pd = dst;
const char *ps= src;
for (ttllen = 0; ttllen < size; ttllen++, pd++)
{
if (0 == *pd)
break;
}
if (ttllen >= size - 1)
return ttllen + strlen(src);
for (; ttllen < size - 1; ttllen++, pd++, ps++)
{
if (0 == (*pd = *ps))
return ttllen;
}
*pd = 0;
for (; *ps; ttllen++, ps++)
;
return ttllen;
}
#endif /* HAVE_STRLCAT */
/*
* Proprly quote and escape a possibly schema-qualified table name.
*/
char *
quote_table(const pgNAME schema, const pgNAME table, char *buf, int buf_size)
{
const char *ptr;
int i;
i = 0;
if (NAME_IS_VALID(schema))
{
buf[i++] = '"';
for (ptr = SAFE_NAME(schema); *ptr != '\0' && i < buf_size - 6; ptr++)
{
buf[i++] = *ptr;
if (*ptr == '"')
buf[i++] = '"'; /* escape quotes by doubling them */
}
buf[i++] = '"';
buf[i++] = '.';
}
buf[i++] = '"';
for (ptr = SAFE_NAME(table); *ptr != '\0' && i < buf_size - 3; ptr++)
{
buf[i++] = *ptr;
if (*ptr == '"')
buf[i++] = '"'; /* escape quotes by doubling them */
}
buf[i++] = '"';
buf[i] = '\0';
return buf;
}