pg 0.18.3 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data/.appveyor.yml +36 -0
- data/.gems +6 -0
- data/.github/workflows/binary-gems.yml +86 -0
- data/.github/workflows/source-gem.yml +129 -0
- data/.gitignore +13 -0
- data/.hgsigs +34 -0
- data/.hgtags +41 -0
- data/.irbrc +23 -0
- data/.pryrc +23 -0
- data/.tm_properties +21 -0
- data/.travis.yml +49 -0
- data/BSDL +2 -2
- data/Gemfile +14 -0
- data/History.rdoc +448 -4
- data/Manifest.txt +8 -21
- data/README-Windows.rdoc +4 -4
- data/README.ja.rdoc +1 -2
- data/README.rdoc +69 -17
- data/Rakefile +33 -135
- data/Rakefile.cross +70 -69
- data/certs/ged.pem +24 -0
- data/certs/larskanis-2022.pem +26 -0
- data/ext/errorcodes.def +109 -0
- data/ext/errorcodes.rb +1 -1
- data/ext/errorcodes.txt +35 -2
- data/ext/extconf.rb +120 -54
- data/ext/gvl_wrappers.c +8 -0
- data/ext/gvl_wrappers.h +44 -33
- data/ext/pg.c +213 -171
- data/ext/pg.h +92 -98
- data/ext/pg_binary_decoder.c +84 -15
- data/ext/pg_binary_encoder.c +24 -21
- data/ext/pg_coder.c +175 -39
- data/ext/pg_connection.c +1730 -1135
- data/ext/pg_copy_coder.c +94 -27
- data/ext/pg_record_coder.c +521 -0
- data/ext/pg_result.c +640 -221
- data/ext/pg_text_decoder.c +608 -40
- data/ext/pg_text_encoder.c +253 -99
- data/ext/pg_tuple.c +569 -0
- data/ext/pg_type_map.c +61 -21
- data/ext/pg_type_map_all_strings.c +19 -5
- data/ext/pg_type_map_by_class.c +54 -24
- data/ext/pg_type_map_by_column.c +79 -40
- data/ext/pg_type_map_by_mri_type.c +48 -19
- data/ext/pg_type_map_by_oid.c +55 -25
- data/ext/pg_type_map_in_ruby.c +51 -20
- data/ext/{util.c → pg_util.c} +12 -12
- data/ext/{util.h → pg_util.h} +2 -2
- data/lib/pg/basic_type_map_based_on_result.rb +47 -0
- data/lib/pg/basic_type_map_for_queries.rb +193 -0
- data/lib/pg/basic_type_map_for_results.rb +81 -0
- data/lib/pg/basic_type_registry.rb +301 -0
- data/lib/pg/binary_decoder.rb +23 -0
- data/lib/pg/coder.rb +24 -3
- data/lib/pg/connection.rb +723 -65
- data/lib/pg/constants.rb +2 -1
- data/lib/pg/exceptions.rb +9 -2
- data/lib/pg/result.rb +24 -7
- data/lib/pg/text_decoder.rb +24 -22
- data/lib/pg/text_encoder.rb +40 -8
- data/lib/pg/tuple.rb +30 -0
- data/lib/pg/type_map_by_column.rb +3 -2
- data/lib/pg/version.rb +4 -0
- data/lib/pg.rb +61 -36
- data/misc/openssl-pg-segfault.rb +31 -0
- data/misc/postgres/History.txt +9 -0
- data/misc/postgres/Manifest.txt +5 -0
- data/misc/postgres/README.txt +21 -0
- data/misc/postgres/Rakefile +21 -0
- data/misc/postgres/lib/postgres.rb +16 -0
- data/misc/ruby-pg/History.txt +9 -0
- data/misc/ruby-pg/Manifest.txt +5 -0
- data/misc/ruby-pg/README.txt +21 -0
- data/misc/ruby-pg/Rakefile +21 -0
- data/misc/ruby-pg/lib/ruby/pg.rb +16 -0
- data/pg.gemspec +32 -0
- data/rakelib/task_extension.rb +46 -0
- data/sample/array_insert.rb +1 -1
- data/sample/async_api.rb +4 -8
- data/sample/async_copyto.rb +1 -1
- data/sample/async_mixed.rb +1 -1
- data/sample/check_conn.rb +1 -1
- data/sample/copydata.rb +71 -0
- data/sample/copyfrom.rb +1 -1
- data/sample/copyto.rb +1 -1
- data/sample/cursor.rb +1 -1
- data/sample/disk_usage_report.rb +6 -15
- data/sample/issue-119.rb +2 -2
- data/sample/losample.rb +1 -1
- data/sample/minimal-testcase.rb +2 -2
- data/sample/notify_wait.rb +1 -1
- data/sample/pg_statistics.rb +6 -15
- data/sample/replication_monitor.rb +9 -18
- data/sample/test_binary_values.rb +1 -1
- data/sample/wal_shipper.rb +2 -2
- data/sample/warehouse_partitions.rb +8 -17
- data.tar.gz.sig +0 -0
- metadata +80 -230
- metadata.gz.sig +0 -0
- data/ChangeLog +0 -5804
- data/lib/pg/basic_type_mapping.rb +0 -399
- data/spec/data/expected_trace.out +0 -26
- data/spec/data/random_binary_data +0 -0
- data/spec/helpers.rb +0 -355
- data/spec/pg/basic_type_mapping_spec.rb +0 -251
- data/spec/pg/connection_spec.rb +0 -1538
- data/spec/pg/result_spec.rb +0 -449
- data/spec/pg/type_map_by_class_spec.rb +0 -138
- data/spec/pg/type_map_by_column_spec.rb +0 -222
- data/spec/pg/type_map_by_mri_type_spec.rb +0 -136
- data/spec/pg/type_map_by_oid_spec.rb +0 -149
- data/spec/pg/type_map_in_ruby_spec.rb +0 -164
- data/spec/pg/type_map_spec.rb +0 -22
- data/spec/pg/type_spec.rb +0 -690
- data/spec/pg_spec.rb +0 -50
data/ext/pg_text_decoder.c
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* pg_text_decoder.c - PG::TextDecoder module
|
|
3
|
-
* $Id
|
|
3
|
+
* $Id$
|
|
4
4
|
*
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
* assigns a decoder function.
|
|
13
13
|
*
|
|
14
14
|
* Signature of all type cast decoders is:
|
|
15
|
-
* VALUE decoder_function(t_pg_coder *this, char *val, int len, int tuple, int field, int enc_idx)
|
|
15
|
+
* VALUE decoder_function(t_pg_coder *this, const char *val, int len, int tuple, int field, int enc_idx)
|
|
16
16
|
*
|
|
17
17
|
* Params:
|
|
18
18
|
* this - The data part of the coder object that belongs to the decoder function.
|
|
19
|
-
* val, len - The text or binary data to decode.
|
|
20
|
-
*
|
|
21
|
-
* only by the callee.
|
|
19
|
+
* val, len - The text or binary data to decode.
|
|
20
|
+
* The caller ensures, that text data (format=0) is zero terminated so that val[len]=0.
|
|
21
|
+
* The memory should be used read-only by the callee.
|
|
22
22
|
* tuple - Row of the value within the result set.
|
|
23
23
|
* field - Column of the value within the result set.
|
|
24
24
|
* enc_idx - Index of the Encoding that any output String should get assigned.
|
|
@@ -28,13 +28,39 @@
|
|
|
28
28
|
*
|
|
29
29
|
*/
|
|
30
30
|
|
|
31
|
+
#include "ruby/version.h"
|
|
31
32
|
#include "pg.h"
|
|
32
|
-
#include "
|
|
33
|
+
#include "pg_util.h"
|
|
34
|
+
#ifdef HAVE_INTTYPES_H
|
|
33
35
|
#include <inttypes.h>
|
|
36
|
+
#endif
|
|
37
|
+
#include <ctype.h>
|
|
38
|
+
#include <time.h>
|
|
39
|
+
#if !defined(_WIN32)
|
|
40
|
+
#include <arpa/inet.h>
|
|
41
|
+
#include <sys/socket.h>
|
|
42
|
+
#endif
|
|
43
|
+
#include <string.h>
|
|
34
44
|
|
|
35
45
|
VALUE rb_mPG_TextDecoder;
|
|
36
46
|
static ID s_id_decode;
|
|
37
|
-
|
|
47
|
+
static ID s_id_Rational;
|
|
48
|
+
static ID s_id_new;
|
|
49
|
+
static ID s_id_utc;
|
|
50
|
+
static ID s_id_getlocal;
|
|
51
|
+
static ID s_id_BigDecimal;
|
|
52
|
+
|
|
53
|
+
static VALUE s_IPAddr;
|
|
54
|
+
static VALUE s_vmasks4;
|
|
55
|
+
static VALUE s_vmasks6;
|
|
56
|
+
static VALUE s_nan, s_pos_inf, s_neg_inf;
|
|
57
|
+
static int use_ipaddr_alloc;
|
|
58
|
+
static ID s_id_lshift;
|
|
59
|
+
static ID s_id_add;
|
|
60
|
+
static ID s_id_mask;
|
|
61
|
+
static ID s_ivar_family;
|
|
62
|
+
static ID s_ivar_addr;
|
|
63
|
+
static ID s_ivar_mask_addr;
|
|
38
64
|
|
|
39
65
|
/*
|
|
40
66
|
* Document-class: PG::TextDecoder::Boolean < PG::SimpleDecoder
|
|
@@ -44,7 +70,7 @@ static ID s_id_decode;
|
|
|
44
70
|
*
|
|
45
71
|
*/
|
|
46
72
|
static VALUE
|
|
47
|
-
pg_text_dec_boolean(t_pg_coder *conv, char *val, int len, int tuple, int field, int enc_idx)
|
|
73
|
+
pg_text_dec_boolean(t_pg_coder *conv, const char *val, int len, int tuple, int field, int enc_idx)
|
|
48
74
|
{
|
|
49
75
|
if (len < 1) {
|
|
50
76
|
rb_raise( rb_eTypeError, "wrong data for text boolean converter in tuple %d field %d", tuple, field);
|
|
@@ -61,9 +87,9 @@ pg_text_dec_boolean(t_pg_coder *conv, char *val, int len, int tuple, int field,
|
|
|
61
87
|
*
|
|
62
88
|
*/
|
|
63
89
|
VALUE
|
|
64
|
-
pg_text_dec_string(t_pg_coder *conv, char *val, int len, int tuple, int field, int enc_idx)
|
|
90
|
+
pg_text_dec_string(t_pg_coder *conv, const char *val, int len, int tuple, int field, int enc_idx)
|
|
65
91
|
{
|
|
66
|
-
VALUE ret =
|
|
92
|
+
VALUE ret = rb_str_new( val, len );
|
|
67
93
|
PG_ENCODING_SET_NOCHECK( ret, enc_idx );
|
|
68
94
|
return ret;
|
|
69
95
|
}
|
|
@@ -76,7 +102,7 @@ pg_text_dec_string(t_pg_coder *conv, char *val, int len, int tuple, int field, i
|
|
|
76
102
|
*
|
|
77
103
|
*/
|
|
78
104
|
static VALUE
|
|
79
|
-
pg_text_dec_integer(t_pg_coder *conv, char *val, int len, int tuple, int field, int enc_idx)
|
|
105
|
+
pg_text_dec_integer(t_pg_coder *conv, const char *val, int len, int tuple, int field, int enc_idx)
|
|
80
106
|
{
|
|
81
107
|
long i;
|
|
82
108
|
int max_len;
|
|
@@ -101,7 +127,7 @@ pg_text_dec_integer(t_pg_coder *conv, char *val, int len, int tuple, int field,
|
|
|
101
127
|
* conn.exec("select generate_series(1,1000000)").values }
|
|
102
128
|
* end
|
|
103
129
|
*/
|
|
104
|
-
char *val_pos = val;
|
|
130
|
+
const char *val_pos = val;
|
|
105
131
|
char digit = *val_pos;
|
|
106
132
|
int neg;
|
|
107
133
|
int error = 0;
|
|
@@ -132,6 +158,19 @@ pg_text_dec_integer(t_pg_coder *conv, char *val, int len, int tuple, int field,
|
|
|
132
158
|
return rb_cstr2inum(val, 10);
|
|
133
159
|
}
|
|
134
160
|
|
|
161
|
+
/*
|
|
162
|
+
* Document-class: PG::TextDecoder::Numeric < PG::SimpleDecoder
|
|
163
|
+
*
|
|
164
|
+
* This is a decoder class for conversion of PostgreSQL numeric types
|
|
165
|
+
* to Ruby BigDecimal objects.
|
|
166
|
+
*
|
|
167
|
+
*/
|
|
168
|
+
static VALUE
|
|
169
|
+
pg_text_dec_numeric(t_pg_coder *conv, const char *val, int len, int tuple, int field, int enc_idx)
|
|
170
|
+
{
|
|
171
|
+
return rb_funcall(rb_cObject, s_id_BigDecimal, 1, rb_str_new(val, len));
|
|
172
|
+
}
|
|
173
|
+
|
|
135
174
|
/*
|
|
136
175
|
* Document-class: PG::TextDecoder::Float < PG::SimpleDecoder
|
|
137
176
|
*
|
|
@@ -140,9 +179,37 @@ pg_text_dec_integer(t_pg_coder *conv, char *val, int len, int tuple, int field,
|
|
|
140
179
|
*
|
|
141
180
|
*/
|
|
142
181
|
static VALUE
|
|
143
|
-
pg_text_dec_float(t_pg_coder *conv, char *val, int len, int tuple, int field, int enc_idx)
|
|
182
|
+
pg_text_dec_float(t_pg_coder *conv, const char *val, int len, int tuple, int field, int enc_idx)
|
|
144
183
|
{
|
|
145
|
-
|
|
184
|
+
switch(*val) {
|
|
185
|
+
case 'N':
|
|
186
|
+
return s_nan;
|
|
187
|
+
case 'I':
|
|
188
|
+
return s_pos_inf;
|
|
189
|
+
case '-':
|
|
190
|
+
if (val[1] == 'I') {
|
|
191
|
+
return s_neg_inf;
|
|
192
|
+
} else {
|
|
193
|
+
return rb_float_new(rb_cstr_to_dbl(val, Qfalse));
|
|
194
|
+
}
|
|
195
|
+
default:
|
|
196
|
+
return rb_float_new(rb_cstr_to_dbl(val, Qfalse));
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
struct pg_blob_initialization {
|
|
201
|
+
char *blob_string;
|
|
202
|
+
size_t length;
|
|
203
|
+
};
|
|
204
|
+
|
|
205
|
+
static VALUE pg_create_blob(VALUE v) {
|
|
206
|
+
struct pg_blob_initialization *bi = (struct pg_blob_initialization *)v;
|
|
207
|
+
return rb_str_new(bi->blob_string, bi->length);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
static VALUE pg_pq_freemem(VALUE mem) {
|
|
211
|
+
PQfreemem((void *)mem);
|
|
212
|
+
return Qfalse;
|
|
146
213
|
}
|
|
147
214
|
|
|
148
215
|
/*
|
|
@@ -153,18 +220,54 @@ pg_text_dec_float(t_pg_coder *conv, char *val, int len, int tuple, int field, in
|
|
|
153
220
|
*
|
|
154
221
|
*/
|
|
155
222
|
static VALUE
|
|
156
|
-
pg_text_dec_bytea(t_pg_coder *conv, char *val, int len, int tuple, int field, int enc_idx)
|
|
223
|
+
pg_text_dec_bytea(t_pg_coder *conv, const char *val, int len, int tuple, int field, int enc_idx)
|
|
157
224
|
{
|
|
158
|
-
|
|
159
|
-
size_t to_len;
|
|
160
|
-
VALUE ret;
|
|
225
|
+
struct pg_blob_initialization bi;
|
|
161
226
|
|
|
162
|
-
|
|
227
|
+
bi.blob_string = (char *)PQunescapeBytea((unsigned char*)val, &bi.length);
|
|
228
|
+
if (bi.blob_string == NULL) {
|
|
229
|
+
rb_raise(rb_eNoMemError, "PQunescapeBytea failure: probably not enough memory");
|
|
230
|
+
}
|
|
231
|
+
return rb_ensure(pg_create_blob, (VALUE)&bi, pg_pq_freemem, (VALUE)bi.blob_string);
|
|
232
|
+
}
|
|
163
233
|
|
|
164
|
-
|
|
165
|
-
|
|
234
|
+
/*
|
|
235
|
+
* array_isspace() --- a non-locale-dependent isspace()
|
|
236
|
+
*
|
|
237
|
+
* We used to use isspace() for parsing array values, but that has
|
|
238
|
+
* undesirable results: an array value might be silently interpreted
|
|
239
|
+
* differently depending on the locale setting. Now we just hard-wire
|
|
240
|
+
* the traditional ASCII definition of isspace().
|
|
241
|
+
*/
|
|
242
|
+
static int
|
|
243
|
+
array_isspace(char ch)
|
|
244
|
+
{
|
|
245
|
+
if (ch == ' ' ||
|
|
246
|
+
ch == '\t' ||
|
|
247
|
+
ch == '\n' ||
|
|
248
|
+
ch == '\r' ||
|
|
249
|
+
ch == '\v' ||
|
|
250
|
+
ch == '\f')
|
|
251
|
+
return 1;
|
|
252
|
+
return 0;
|
|
253
|
+
}
|
|
166
254
|
|
|
167
|
-
|
|
255
|
+
static int
|
|
256
|
+
array_isdim(char ch)
|
|
257
|
+
{
|
|
258
|
+
if ( (ch >= '0' && ch <= '9') ||
|
|
259
|
+
(ch == '-') ||
|
|
260
|
+
(ch == '+') ||
|
|
261
|
+
(ch == ':') )
|
|
262
|
+
return 1;
|
|
263
|
+
return 0;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
static void
|
|
267
|
+
array_parser_error(t_pg_composite_coder *this, const char *text){
|
|
268
|
+
if( (this->comp.flags & PG_CODER_FORMAT_ERROR_MASK) == PG_CODER_FORMAT_ERROR_TO_RAISE ){
|
|
269
|
+
rb_raise( rb_eTypeError, "%s", text );
|
|
270
|
+
}
|
|
168
271
|
}
|
|
169
272
|
|
|
170
273
|
/*
|
|
@@ -172,7 +275,7 @@ pg_text_dec_bytea(t_pg_coder *conv, char *val, int len, int tuple, int field, in
|
|
|
172
275
|
* https://github.com/dockyard/pg_array_parser
|
|
173
276
|
*/
|
|
174
277
|
static VALUE
|
|
175
|
-
|
|
278
|
+
read_array_without_dim(t_pg_composite_coder *this, int *index, const char *c_pg_array_string, int array_string_length, char *word, int enc_idx, int tuple, int field, t_pg_coder_dec_func dec_func)
|
|
176
279
|
{
|
|
177
280
|
/* Return value: array */
|
|
178
281
|
VALUE array;
|
|
@@ -196,7 +299,7 @@ read_array(t_pg_composite_coder *this, int *index, char *c_pg_array_string, int
|
|
|
196
299
|
|
|
197
300
|
/* Special case the empty array, so it doesn't need to be handled manually inside
|
|
198
301
|
* the loop. */
|
|
199
|
-
if(((*index) < array_string_length) && c_pg_array_string[
|
|
302
|
+
if(((*index) < array_string_length) && c_pg_array_string[*index] == '}')
|
|
200
303
|
{
|
|
201
304
|
return array;
|
|
202
305
|
}
|
|
@@ -236,10 +339,17 @@ read_array(t_pg_composite_coder *this, int *index, char *c_pg_array_string, int
|
|
|
236
339
|
}
|
|
237
340
|
else if(c == '{')
|
|
238
341
|
{
|
|
342
|
+
VALUE subarray;
|
|
239
343
|
(*index)++;
|
|
240
|
-
|
|
344
|
+
subarray = read_array_without_dim(this, index, c_pg_array_string, array_string_length, word, enc_idx, tuple, field, dec_func);
|
|
345
|
+
rb_ary_push(array, subarray);
|
|
241
346
|
escapeNext = 1;
|
|
242
347
|
}
|
|
348
|
+
else if(c == 0)
|
|
349
|
+
{
|
|
350
|
+
array_parser_error( this, "premature end of the array string" );
|
|
351
|
+
return array;
|
|
352
|
+
}
|
|
243
353
|
else
|
|
244
354
|
{
|
|
245
355
|
word[word_index] = c;
|
|
@@ -266,30 +376,112 @@ read_array(t_pg_composite_coder *this, int *index, char *c_pg_array_string, int
|
|
|
266
376
|
}
|
|
267
377
|
}
|
|
268
378
|
|
|
379
|
+
array_parser_error( this, "premature end of the array string" );
|
|
269
380
|
return array;
|
|
270
381
|
}
|
|
271
382
|
|
|
272
383
|
/*
|
|
273
384
|
* Document-class: PG::TextDecoder::Array < PG::CompositeDecoder
|
|
274
385
|
*
|
|
275
|
-
* This is
|
|
386
|
+
* This is a decoder class for PostgreSQL array types.
|
|
387
|
+
*
|
|
388
|
+
* It returns an Array with possibly an arbitrary number of sub-Arrays.
|
|
389
|
+
* All values are decoded according to the #elements_type accessor.
|
|
390
|
+
* Sub-arrays are decoded recursively.
|
|
276
391
|
*
|
|
277
|
-
*
|
|
278
|
-
*
|
|
392
|
+
* This decoder simply ignores any dimension decorations preceding the array values.
|
|
393
|
+
* It returns all array values as regular ruby Array with a zero based index, regardless of the index given in the dimension decoration.
|
|
394
|
+
*
|
|
395
|
+
* An array decoder which respects dimension decorations is waiting to be implemented.
|
|
279
396
|
*
|
|
280
397
|
*/
|
|
281
398
|
static VALUE
|
|
282
|
-
pg_text_dec_array(t_pg_coder *conv, char *
|
|
399
|
+
pg_text_dec_array(t_pg_coder *conv, const char *c_pg_array_string, int array_string_length, int tuple, int field, int enc_idx)
|
|
283
400
|
{
|
|
401
|
+
int index = 0;
|
|
402
|
+
int ndim = 0;
|
|
403
|
+
VALUE ret;
|
|
284
404
|
t_pg_composite_coder *this = (t_pg_composite_coder *)conv;
|
|
285
|
-
|
|
286
|
-
/*
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
405
|
+
|
|
406
|
+
/*
|
|
407
|
+
* If the input string starts with dimension info, read and use that.
|
|
408
|
+
* Otherwise, we require the input to be in curly-brace style, and we
|
|
409
|
+
* prescan the input to determine dimensions.
|
|
410
|
+
*
|
|
411
|
+
* Dimension info takes the form of one or more [n] or [m:n] items. The
|
|
412
|
+
* outer loop iterates once per dimension item.
|
|
413
|
+
*/
|
|
414
|
+
for (;;)
|
|
415
|
+
{
|
|
416
|
+
/*
|
|
417
|
+
* Note: we currently allow whitespace between, but not within,
|
|
418
|
+
* dimension items.
|
|
419
|
+
*/
|
|
420
|
+
while (array_isspace(c_pg_array_string[index]))
|
|
421
|
+
index++;
|
|
422
|
+
if (c_pg_array_string[index] != '[')
|
|
423
|
+
break; /* no more dimension items */
|
|
424
|
+
index++;
|
|
425
|
+
|
|
426
|
+
while (array_isdim(c_pg_array_string[index]))
|
|
427
|
+
index++;
|
|
428
|
+
|
|
429
|
+
if (c_pg_array_string[index] != ']'){
|
|
430
|
+
array_parser_error( this, "missing \"]\" in array dimensions");
|
|
431
|
+
break;
|
|
432
|
+
}
|
|
433
|
+
index++;
|
|
434
|
+
|
|
435
|
+
ndim++;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
if (ndim == 0)
|
|
439
|
+
{
|
|
440
|
+
/* No array dimensions */
|
|
441
|
+
}
|
|
442
|
+
else
|
|
443
|
+
{
|
|
444
|
+
/* If array dimensions are given, expect '=' operator */
|
|
445
|
+
if (c_pg_array_string[index] != '=') {
|
|
446
|
+
array_parser_error( this, "missing assignment operator");
|
|
447
|
+
index-=2; /* jump back to before "]" so that we don't break behavior to pg < 1.1 */
|
|
448
|
+
}
|
|
449
|
+
index++;
|
|
450
|
+
|
|
451
|
+
while (array_isspace(c_pg_array_string[index]))
|
|
452
|
+
index++;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
if (c_pg_array_string[index] != '{')
|
|
456
|
+
array_parser_error( this, "array value must start with \"{\" or dimension information");
|
|
457
|
+
index++;
|
|
458
|
+
|
|
459
|
+
if ( index < array_string_length && c_pg_array_string[index] == '}' ) {
|
|
460
|
+
/* avoid buffer allocation for empty array */
|
|
461
|
+
ret = rb_ary_new();
|
|
462
|
+
} else {
|
|
463
|
+
t_pg_coder_dec_func dec_func = pg_coder_dec_func(this->elem, 0);
|
|
464
|
+
/* create a buffer of the same length, as that will be the worst case */
|
|
465
|
+
VALUE buf = rb_str_new(NULL, array_string_length);
|
|
466
|
+
char *word = RSTRING_PTR(buf);
|
|
467
|
+
|
|
468
|
+
ret = read_array_without_dim(this, &index, c_pg_array_string, array_string_length, word, enc_idx, tuple, field, dec_func);
|
|
469
|
+
|
|
470
|
+
RB_GC_GUARD(buf);
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
if (c_pg_array_string[index] != '}' )
|
|
474
|
+
array_parser_error( this, "array value must end with \"}\"");
|
|
475
|
+
index++;
|
|
476
|
+
|
|
477
|
+
/* only whitespace is allowed after the closing brace */
|
|
478
|
+
for(;index < array_string_length; ++index)
|
|
479
|
+
{
|
|
480
|
+
if (!array_isspace(c_pg_array_string[index]))
|
|
481
|
+
array_parser_error( this, "malformed array literal: Junk after closing right brace.");
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
return ret;
|
|
293
485
|
}
|
|
294
486
|
|
|
295
487
|
/*
|
|
@@ -303,7 +495,7 @@ pg_text_dec_array(t_pg_coder *conv, char *val, int len, int tuple, int field, in
|
|
|
303
495
|
*
|
|
304
496
|
*/
|
|
305
497
|
static VALUE
|
|
306
|
-
pg_text_dec_identifier(t_pg_coder *conv, char *val, int len, int tuple, int field, int enc_idx)
|
|
498
|
+
pg_text_dec_identifier(t_pg_coder *conv, const char *val, int len, int tuple, int field, int enc_idx)
|
|
307
499
|
{
|
|
308
500
|
/* Return value: array */
|
|
309
501
|
VALUE array;
|
|
@@ -365,13 +557,13 @@ pg_text_dec_identifier(t_pg_coder *conv, char *val, int len, int tuple, int fiel
|
|
|
365
557
|
*
|
|
366
558
|
*/
|
|
367
559
|
static VALUE
|
|
368
|
-
pg_text_dec_from_base64(t_pg_coder *conv, char *val, int len, int tuple, int field, int enc_idx)
|
|
560
|
+
pg_text_dec_from_base64(t_pg_coder *conv, const char *val, int len, int tuple, int field, int enc_idx)
|
|
369
561
|
{
|
|
370
562
|
t_pg_composite_coder *this = (t_pg_composite_coder *)conv;
|
|
371
563
|
t_pg_coder_dec_func dec_func = pg_coder_dec_func(this->elem, this->comp.format);
|
|
372
564
|
int decoded_len;
|
|
373
565
|
/* create a buffer of the expected decoded length */
|
|
374
|
-
VALUE out_value =
|
|
566
|
+
VALUE out_value = rb_str_new(NULL, BASE64_DECODED_SIZE(len));
|
|
375
567
|
|
|
376
568
|
decoded_len = base64_decode( RSTRING_PTR(out_value), val, len );
|
|
377
569
|
rb_str_set_len(out_value, decoded_len);
|
|
@@ -390,10 +582,380 @@ pg_text_dec_from_base64(t_pg_coder *conv, char *val, int len, int tuple, int fie
|
|
|
390
582
|
return out_value;
|
|
391
583
|
}
|
|
392
584
|
|
|
585
|
+
static inline int char_to_digit(char c)
|
|
586
|
+
{
|
|
587
|
+
return c - '0';
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
static int str2_to_int(const char *str)
|
|
591
|
+
{
|
|
592
|
+
return char_to_digit(str[0]) * 10
|
|
593
|
+
+ char_to_digit(str[1]);
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
static int parse_year(const char **str) {
|
|
597
|
+
int year = 0;
|
|
598
|
+
int i;
|
|
599
|
+
const char * p = *str;
|
|
600
|
+
|
|
601
|
+
for(i = 0; isdigit(*p) && i < 7; i++, p++) {
|
|
602
|
+
year = 10 * year + char_to_digit(*p);
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
*str = p;
|
|
606
|
+
return year;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
#define TZ_NEG 1
|
|
610
|
+
#define TZ_POS 2
|
|
611
|
+
|
|
612
|
+
/*
|
|
613
|
+
* Document-class: PG::TextDecoder::Timestamp < PG::SimpleDecoder
|
|
614
|
+
*
|
|
615
|
+
* This is a decoder class for conversion of PostgreSQL text timestamps
|
|
616
|
+
* to Ruby Time objects.
|
|
617
|
+
*
|
|
618
|
+
* The following flags can be used to specify time interpretation when no timezone is given:
|
|
619
|
+
* * +PG::Coder::TIMESTAMP_DB_UTC+ : Interpret timestamp as UTC time (default)
|
|
620
|
+
* * +PG::Coder::TIMESTAMP_DB_LOCAL+ : Interpret timestamp as local time
|
|
621
|
+
* * +PG::Coder::TIMESTAMP_APP_UTC+ : Return timestamp as UTC time (default)
|
|
622
|
+
* * +PG::Coder::TIMESTAMP_APP_LOCAL+ : Return timestamp as local time
|
|
623
|
+
*
|
|
624
|
+
* Example:
|
|
625
|
+
* deco = PG::TextDecoder::Timestamp.new(flags: PG::Coder::TIMESTAMP_DB_UTC | PG::Coder::TIMESTAMP_APP_LOCAL)
|
|
626
|
+
* deco.decode("2000-01-01 00:00:00") # => 2000-01-01 01:00:00 +0100
|
|
627
|
+
* deco.decode("2000-01-01 00:00:00.123-06") # => 2000-01-01 00:00:00 -0600
|
|
628
|
+
*/
|
|
629
|
+
static VALUE pg_text_dec_timestamp(t_pg_coder *conv, const char *val, int len, int tuple, int field, int enc_idx)
|
|
630
|
+
{
|
|
631
|
+
const char *str = val;
|
|
632
|
+
int year, mon, day;
|
|
633
|
+
int hour, min, sec;
|
|
634
|
+
int nsec = 0;
|
|
635
|
+
int tz_given = 0;
|
|
636
|
+
int tz_hour = 0;
|
|
637
|
+
int tz_min = 0;
|
|
638
|
+
int tz_sec = 0;
|
|
639
|
+
|
|
640
|
+
year = parse_year(&str);
|
|
641
|
+
|
|
642
|
+
if ( year > 0
|
|
643
|
+
&& str[0] == '-' && isdigit(str[1]) && isdigit(str[2])
|
|
644
|
+
&& str[3] == '-' && isdigit(str[4]) && isdigit(str[5])
|
|
645
|
+
&& str[6] == ' ' && isdigit(str[7]) && isdigit(str[8])
|
|
646
|
+
&& str[9] == ':' && isdigit(str[10]) && isdigit(str[11])
|
|
647
|
+
&& str[12] == ':' && isdigit(str[13]) && isdigit(str[14])
|
|
648
|
+
) {
|
|
649
|
+
|
|
650
|
+
mon = str2_to_int(str+1); str += 3;
|
|
651
|
+
day = str2_to_int(str+1); str += 3;
|
|
652
|
+
hour = str2_to_int(str+1); str += 3;
|
|
653
|
+
min = str2_to_int(str+1); str += 3;
|
|
654
|
+
sec = str2_to_int(str+1); str += 3;
|
|
655
|
+
|
|
656
|
+
if (str[0] == '.' && isdigit(str[1])) {
|
|
657
|
+
/* nano second part, up to 9 digits */
|
|
658
|
+
static const int coef[9] = {
|
|
659
|
+
100000000, 10000000, 1000000,
|
|
660
|
+
100000, 10000, 1000, 100, 10, 1
|
|
661
|
+
};
|
|
662
|
+
int i;
|
|
663
|
+
|
|
664
|
+
str++;
|
|
665
|
+
for (i = 0; i < 9 && isdigit(*str); i++)
|
|
666
|
+
{
|
|
667
|
+
nsec += coef[i] * char_to_digit(*str++);
|
|
668
|
+
}
|
|
669
|
+
/* consume digits smaller than nsec */
|
|
670
|
+
while(isdigit(*str)) str++;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
if ((str[0] == '+' || str[0] == '-') && isdigit(str[1]) && isdigit(str[2])) {
|
|
674
|
+
tz_given = str[0] == '-' ? TZ_NEG : TZ_POS;
|
|
675
|
+
tz_hour = str2_to_int(str+1); str += 3;
|
|
676
|
+
|
|
677
|
+
if (str[0] == ':' && isdigit(str[1]) && isdigit(str[2]))
|
|
678
|
+
{
|
|
679
|
+
tz_min = str2_to_int(str+1); str += 3;
|
|
680
|
+
}
|
|
681
|
+
if (str[0] == ':' && isdigit(str[1]) && isdigit(str[2]))
|
|
682
|
+
{
|
|
683
|
+
tz_sec = str2_to_int(str+1); str += 3;
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
if (str[0] == ' ' && str[1] == 'B' && str[2] == 'C') {
|
|
688
|
+
year = -year + 1;
|
|
689
|
+
str += 3;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
if (*str == '\0') { /* must have consumed all the string */
|
|
693
|
+
VALUE sec_value;
|
|
694
|
+
VALUE gmt_offset_value;
|
|
695
|
+
VALUE res;
|
|
696
|
+
|
|
697
|
+
#if (RUBY_API_VERSION_MAJOR > 2 || (RUBY_API_VERSION_MAJOR == 2 && RUBY_API_VERSION_MINOR >= 3)) && defined(HAVE_TIMEGM)
|
|
698
|
+
/* Fast path for time conversion */
|
|
699
|
+
struct tm tm;
|
|
700
|
+
struct timespec ts;
|
|
701
|
+
tm.tm_year = year - 1900;
|
|
702
|
+
tm.tm_mon = mon - 1;
|
|
703
|
+
tm.tm_mday = day;
|
|
704
|
+
tm.tm_hour = hour;
|
|
705
|
+
tm.tm_min = min;
|
|
706
|
+
tm.tm_sec = sec;
|
|
707
|
+
tm.tm_isdst = -1;
|
|
708
|
+
|
|
709
|
+
if (tz_given) {
|
|
710
|
+
/* with timezone */
|
|
711
|
+
time_t time = timegm(&tm);
|
|
712
|
+
if (time != -1){
|
|
713
|
+
int gmt_offset;
|
|
714
|
+
|
|
715
|
+
gmt_offset = tz_hour * 3600 + tz_min * 60 + tz_sec;
|
|
716
|
+
if (tz_given == TZ_NEG)
|
|
717
|
+
{
|
|
718
|
+
gmt_offset = - gmt_offset;
|
|
719
|
+
}
|
|
720
|
+
ts.tv_sec = time - gmt_offset;
|
|
721
|
+
ts.tv_nsec = nsec;
|
|
722
|
+
return rb_time_timespec_new(&ts, gmt_offset);
|
|
723
|
+
}
|
|
724
|
+
} else {
|
|
725
|
+
/* without timezone */
|
|
726
|
+
time_t time;
|
|
727
|
+
|
|
728
|
+
if( conv->flags & PG_CODER_TIMESTAMP_DB_LOCAL ) {
|
|
729
|
+
time = mktime(&tm);
|
|
730
|
+
} else {
|
|
731
|
+
time = timegm(&tm);
|
|
732
|
+
}
|
|
733
|
+
if (time != -1){
|
|
734
|
+
ts.tv_sec = time;
|
|
735
|
+
ts.tv_nsec = nsec;
|
|
736
|
+
return rb_time_timespec_new(&ts, conv->flags & PG_CODER_TIMESTAMP_APP_LOCAL ? INT_MAX : INT_MAX-1);
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
/* Some libc implementations fail to convert certain values,
|
|
740
|
+
* so that we fall through to the slow path.
|
|
741
|
+
*/
|
|
742
|
+
#endif
|
|
743
|
+
if (nsec) {
|
|
744
|
+
int sec_numerator = sec * 1000000 + nsec / 1000;
|
|
745
|
+
int sec_denominator = 1000000;
|
|
746
|
+
sec_value = rb_funcall(Qnil, s_id_Rational, 2,
|
|
747
|
+
INT2NUM(sec_numerator), INT2NUM(sec_denominator));
|
|
748
|
+
} else {
|
|
749
|
+
sec_value = INT2NUM(sec);
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
if (tz_given) {
|
|
753
|
+
/* with timezone */
|
|
754
|
+
int gmt_offset;
|
|
755
|
+
|
|
756
|
+
gmt_offset = tz_hour * 3600 + tz_min * 60 + tz_sec;
|
|
757
|
+
if (tz_given == TZ_NEG)
|
|
758
|
+
{
|
|
759
|
+
gmt_offset = - gmt_offset;
|
|
760
|
+
}
|
|
761
|
+
gmt_offset_value = INT2NUM(gmt_offset);
|
|
762
|
+
} else {
|
|
763
|
+
/* without timezone */
|
|
764
|
+
gmt_offset_value = conv->flags & PG_CODER_TIMESTAMP_DB_LOCAL ? Qnil : INT2NUM(0);
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
res = rb_funcall(rb_cTime, s_id_new, 7,
|
|
768
|
+
INT2NUM(year),
|
|
769
|
+
INT2NUM(mon),
|
|
770
|
+
INT2NUM(day),
|
|
771
|
+
INT2NUM(hour),
|
|
772
|
+
INT2NUM(min),
|
|
773
|
+
sec_value,
|
|
774
|
+
gmt_offset_value);
|
|
775
|
+
|
|
776
|
+
if (tz_given) {
|
|
777
|
+
/* with timezone */
|
|
778
|
+
return res;
|
|
779
|
+
} else {
|
|
780
|
+
/* without timezone */
|
|
781
|
+
if( (conv->flags & PG_CODER_TIMESTAMP_DB_LOCAL) && (conv->flags & PG_CODER_TIMESTAMP_APP_LOCAL) ) {
|
|
782
|
+
return res;
|
|
783
|
+
} else if( conv->flags & PG_CODER_TIMESTAMP_APP_LOCAL ) {
|
|
784
|
+
return rb_funcall(res, s_id_getlocal, 0);
|
|
785
|
+
} else {
|
|
786
|
+
return rb_funcall(res, s_id_utc, 0);
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
/* fall through to string conversion */
|
|
793
|
+
return pg_text_dec_string(conv, val, len, tuple, field, enc_idx);
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
/*
|
|
797
|
+
* Document-class: PG::TextDecoder::Inet < PG::SimpleDecoder
|
|
798
|
+
*
|
|
799
|
+
* This is a decoder class for conversion of PostgreSQL inet type
|
|
800
|
+
* to Ruby IPAddr values.
|
|
801
|
+
*
|
|
802
|
+
*/
|
|
803
|
+
static VALUE
|
|
804
|
+
pg_text_dec_inet(t_pg_coder *conv, const char *val, int len, int tuple, int field, int enc_idx)
|
|
805
|
+
{
|
|
806
|
+
VALUE ip;
|
|
807
|
+
#if defined(_WIN32)
|
|
808
|
+
ip = rb_str_new(val, len);
|
|
809
|
+
ip = rb_class_new_instance(1, &ip, s_IPAddr);
|
|
810
|
+
#else
|
|
811
|
+
VALUE ip_int;
|
|
812
|
+
VALUE vmasks;
|
|
813
|
+
char dst[16];
|
|
814
|
+
char buf[64];
|
|
815
|
+
int af = strchr(val, '.') ? AF_INET : AF_INET6;
|
|
816
|
+
int mask = -1;
|
|
817
|
+
|
|
818
|
+
if (len >= 64) {
|
|
819
|
+
rb_raise(rb_eTypeError, "too long data for text inet converter in tuple %d field %d", tuple, field);
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
if (len >= 4) {
|
|
823
|
+
if (val[len-2] == '/') {
|
|
824
|
+
mask = val[len-1] - '0';
|
|
825
|
+
memcpy(buf, val, len-2);
|
|
826
|
+
buf[len-2] = '\0';
|
|
827
|
+
val = buf;
|
|
828
|
+
} else if (val[len-3] == '/') {
|
|
829
|
+
mask = (val[len-2]- '0')*10 + val[len-1] - '0';
|
|
830
|
+
memcpy(buf, val, len-3);
|
|
831
|
+
buf[len-3] = '\0';
|
|
832
|
+
val = buf;
|
|
833
|
+
} else if (val[len-4] == '/') {
|
|
834
|
+
mask = (val[len-3]- '0')*100 + (val[len-2]- '0')*10 + val[len-1] - '0';
|
|
835
|
+
memcpy(buf, val, len-4);
|
|
836
|
+
buf[len-4] = '\0';
|
|
837
|
+
val = buf;
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
if (1 != inet_pton(af, val, dst)) {
|
|
842
|
+
rb_raise(rb_eTypeError, "wrong data for text inet converter in tuple %d field %d val", tuple, field);
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
if (af == AF_INET) {
|
|
846
|
+
unsigned int ip_int_native;
|
|
847
|
+
|
|
848
|
+
if (mask == -1) {
|
|
849
|
+
mask = 32;
|
|
850
|
+
} else if (mask < 0 || mask > 32) {
|
|
851
|
+
rb_raise(rb_eTypeError, "invalid mask for IPv4: %d", mask);
|
|
852
|
+
}
|
|
853
|
+
vmasks = s_vmasks4;
|
|
854
|
+
|
|
855
|
+
ip_int_native = read_nbo32(dst);
|
|
856
|
+
|
|
857
|
+
/* Work around broken IPAddr behavior of converting portion
|
|
858
|
+
of address after netmask to 0 */
|
|
859
|
+
switch (mask) {
|
|
860
|
+
case 0:
|
|
861
|
+
ip_int_native = 0;
|
|
862
|
+
break;
|
|
863
|
+
case 32:
|
|
864
|
+
/* nothing to do */
|
|
865
|
+
break;
|
|
866
|
+
default:
|
|
867
|
+
ip_int_native &= ~((1UL<<(32-mask))-1);
|
|
868
|
+
break;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
ip_int = UINT2NUM(ip_int_native);
|
|
872
|
+
} else {
|
|
873
|
+
unsigned long long * dstllp = (unsigned long long *)dst;
|
|
874
|
+
unsigned long long ip_int_native1;
|
|
875
|
+
unsigned long long ip_int_native2;
|
|
876
|
+
|
|
877
|
+
if (mask == -1) {
|
|
878
|
+
mask = 128;
|
|
879
|
+
} else if (mask < 0 || mask > 128) {
|
|
880
|
+
rb_raise(rb_eTypeError, "invalid mask for IPv6: %d", mask);
|
|
881
|
+
}
|
|
882
|
+
vmasks = s_vmasks6;
|
|
883
|
+
|
|
884
|
+
ip_int_native1 = read_nbo64(dstllp);
|
|
885
|
+
dstllp++;
|
|
886
|
+
ip_int_native2 = read_nbo64(dstllp);
|
|
887
|
+
|
|
888
|
+
if (mask == 128) {
|
|
889
|
+
/* nothing to do */
|
|
890
|
+
} else if (mask == 64) {
|
|
891
|
+
ip_int_native2 = 0;
|
|
892
|
+
} else if (mask == 0) {
|
|
893
|
+
ip_int_native1 = 0;
|
|
894
|
+
ip_int_native2 = 0;
|
|
895
|
+
} else if (mask < 64) {
|
|
896
|
+
ip_int_native1 &= ~((1ULL<<(64-mask))-1);
|
|
897
|
+
ip_int_native2 = 0;
|
|
898
|
+
} else {
|
|
899
|
+
ip_int_native2 &= ~((1ULL<<(128-mask))-1);
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
/* 4 Bignum allocations */
|
|
903
|
+
ip_int = ULL2NUM(ip_int_native1);
|
|
904
|
+
ip_int = rb_funcall(ip_int, s_id_lshift, 1, INT2NUM(64));
|
|
905
|
+
ip_int = rb_funcall(ip_int, s_id_add, 1, ULL2NUM(ip_int_native2));
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
if (use_ipaddr_alloc) {
|
|
909
|
+
ip = rb_obj_alloc(s_IPAddr);
|
|
910
|
+
rb_ivar_set(ip, s_ivar_family, INT2NUM(af));
|
|
911
|
+
rb_ivar_set(ip, s_ivar_addr, ip_int);
|
|
912
|
+
rb_ivar_set(ip, s_ivar_mask_addr, RARRAY_AREF(vmasks, mask));
|
|
913
|
+
} else {
|
|
914
|
+
VALUE ip_args[2];
|
|
915
|
+
ip_args[0] = ip_int;
|
|
916
|
+
ip_args[1] = INT2NUM(af);
|
|
917
|
+
ip = rb_class_new_instance(2, ip_args, s_IPAddr);
|
|
918
|
+
ip = rb_funcall(ip, s_id_mask, 1, INT2NUM(mask));
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
#endif
|
|
922
|
+
return ip;
|
|
923
|
+
}
|
|
924
|
+
|
|
393
925
|
void
|
|
394
926
|
init_pg_text_decoder()
|
|
395
927
|
{
|
|
928
|
+
rb_require("ipaddr");
|
|
929
|
+
s_IPAddr = rb_funcall(rb_cObject, rb_intern("const_get"), 1, rb_str_new2("IPAddr"));
|
|
930
|
+
rb_global_variable(&s_IPAddr);
|
|
931
|
+
s_ivar_family = rb_intern("@family");
|
|
932
|
+
s_ivar_addr = rb_intern("@addr");
|
|
933
|
+
s_ivar_mask_addr = rb_intern("@mask_addr");
|
|
934
|
+
s_id_lshift = rb_intern("<<");
|
|
935
|
+
s_id_add = rb_intern("+");
|
|
936
|
+
s_id_mask = rb_intern("mask");
|
|
937
|
+
|
|
938
|
+
use_ipaddr_alloc = RTEST(rb_eval_string("IPAddr.new.instance_variables.sort == [:@addr, :@family, :@mask_addr]"));
|
|
939
|
+
|
|
940
|
+
s_vmasks4 = rb_eval_string("a = [0]*33; a[0] = 0; a[32] = 0xffffffff; 31.downto(1){|i| a[i] = a[i+1] - (1 << (31 - i))}; a.freeze");
|
|
941
|
+
rb_global_variable(&s_vmasks4);
|
|
942
|
+
s_vmasks6 = rb_eval_string("a = [0]*129; a[0] = 0; a[128] = 0xffffffffffffffffffffffffffffffff; 127.downto(1){|i| a[i] = a[i+1] - (1 << (127 - i))}; a.freeze");
|
|
943
|
+
rb_global_variable(&s_vmasks6);
|
|
944
|
+
|
|
396
945
|
s_id_decode = rb_intern("decode");
|
|
946
|
+
s_id_Rational = rb_intern("Rational");
|
|
947
|
+
s_id_new = rb_intern("new");
|
|
948
|
+
s_id_utc = rb_intern("utc");
|
|
949
|
+
s_id_getlocal = rb_intern("getlocal");
|
|
950
|
+
|
|
951
|
+
rb_require("bigdecimal");
|
|
952
|
+
s_id_BigDecimal = rb_intern("BigDecimal");
|
|
953
|
+
s_nan = rb_eval_string("0.0/0.0");
|
|
954
|
+
rb_global_variable(&s_nan);
|
|
955
|
+
s_pos_inf = rb_eval_string("1.0/0.0");
|
|
956
|
+
rb_global_variable(&s_pos_inf);
|
|
957
|
+
s_neg_inf = rb_eval_string("-1.0/0.0");
|
|
958
|
+
rb_global_variable(&s_neg_inf);
|
|
397
959
|
|
|
398
960
|
/* This module encapsulates all decoder classes with text input format */
|
|
399
961
|
rb_mPG_TextDecoder = rb_define_module_under( rb_mPG, "TextDecoder" );
|
|
@@ -405,12 +967,18 @@ init_pg_text_decoder()
|
|
|
405
967
|
pg_define_coder( "Integer", pg_text_dec_integer, rb_cPG_SimpleDecoder, rb_mPG_TextDecoder );
|
|
406
968
|
/* dummy = rb_define_class_under( rb_mPG_TextDecoder, "Float", rb_cPG_SimpleDecoder ); */
|
|
407
969
|
pg_define_coder( "Float", pg_text_dec_float, rb_cPG_SimpleDecoder, rb_mPG_TextDecoder );
|
|
970
|
+
/* dummy = rb_define_class_under( rb_mPG_TextDecoder, "Numeric", rb_cPG_SimpleDecoder ); */
|
|
971
|
+
pg_define_coder( "Numeric", pg_text_dec_numeric, rb_cPG_SimpleDecoder, rb_mPG_TextDecoder );
|
|
408
972
|
/* dummy = rb_define_class_under( rb_mPG_TextDecoder, "String", rb_cPG_SimpleDecoder ); */
|
|
409
973
|
pg_define_coder( "String", pg_text_dec_string, rb_cPG_SimpleDecoder, rb_mPG_TextDecoder );
|
|
410
974
|
/* dummy = rb_define_class_under( rb_mPG_TextDecoder, "Bytea", rb_cPG_SimpleDecoder ); */
|
|
411
975
|
pg_define_coder( "Bytea", pg_text_dec_bytea, rb_cPG_SimpleDecoder, rb_mPG_TextDecoder );
|
|
412
976
|
/* dummy = rb_define_class_under( rb_mPG_TextDecoder, "Identifier", rb_cPG_SimpleDecoder ); */
|
|
413
977
|
pg_define_coder( "Identifier", pg_text_dec_identifier, rb_cPG_SimpleDecoder, rb_mPG_TextDecoder );
|
|
978
|
+
/* dummy = rb_define_class_under( rb_mPG_TextDecoder, "Timestamp", rb_cPG_SimpleDecoder ); */
|
|
979
|
+
pg_define_coder( "Timestamp", pg_text_dec_timestamp, rb_cPG_SimpleDecoder, rb_mPG_TextDecoder);
|
|
980
|
+
/* dummy = rb_define_class_under( rb_mPG_TextDecoder, "Inet", rb_cPG_SimpleDecoder ); */
|
|
981
|
+
pg_define_coder( "Inet", pg_text_dec_inet, rb_cPG_SimpleDecoder, rb_mPG_TextDecoder);
|
|
414
982
|
|
|
415
983
|
/* dummy = rb_define_class_under( rb_mPG_TextDecoder, "Array", rb_cPG_CompositeDecoder ); */
|
|
416
984
|
pg_define_coder( "Array", pg_text_dec_array, rb_cPG_CompositeDecoder, rb_mPG_TextDecoder );
|