pg 1.2.3 → 1.6.1

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.
Files changed (135) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +986 -0
  4. data/Gemfile +23 -0
  5. data/README-Windows.rdoc +1 -1
  6. data/README.ja.md +300 -0
  7. data/README.md +327 -0
  8. data/Rakefile +123 -144
  9. data/certs/ged.pem +24 -0
  10. data/certs/kanis@comcard.de.pem +20 -0
  11. data/certs/larskanis-2022.pem +26 -0
  12. data/certs/larskanis-2023.pem +24 -0
  13. data/certs/larskanis-2024.pem +24 -0
  14. data/ext/errorcodes.def +16 -5
  15. data/ext/errorcodes.rb +0 -0
  16. data/ext/errorcodes.txt +5 -5
  17. data/ext/extconf.rb +259 -33
  18. data/ext/gvl_wrappers.c +17 -2
  19. data/ext/gvl_wrappers.h +56 -0
  20. data/ext/pg.c +89 -63
  21. data/ext/pg.h +31 -8
  22. data/ext/pg_binary_decoder.c +232 -1
  23. data/ext/pg_binary_encoder.c +428 -1
  24. data/ext/pg_cancel_connection.c +360 -0
  25. data/ext/pg_coder.c +148 -36
  26. data/ext/pg_connection.c +1365 -817
  27. data/ext/pg_copy_coder.c +360 -38
  28. data/ext/pg_errors.c +1 -1
  29. data/ext/pg_record_coder.c +56 -25
  30. data/ext/pg_result.c +187 -76
  31. data/ext/pg_text_decoder.c +32 -11
  32. data/ext/pg_text_encoder.c +65 -33
  33. data/ext/pg_tuple.c +84 -61
  34. data/ext/pg_type_map.c +44 -10
  35. data/ext/pg_type_map_all_strings.c +17 -3
  36. data/ext/pg_type_map_by_class.c +54 -27
  37. data/ext/pg_type_map_by_column.c +74 -31
  38. data/ext/pg_type_map_by_mri_type.c +48 -19
  39. data/ext/pg_type_map_by_oid.c +61 -27
  40. data/ext/pg_type_map_in_ruby.c +55 -21
  41. data/ext/pg_util.c +2 -2
  42. data/lib/pg/basic_type_map_based_on_result.rb +67 -0
  43. data/lib/pg/basic_type_map_for_queries.rb +206 -0
  44. data/lib/pg/basic_type_map_for_results.rb +104 -0
  45. data/lib/pg/basic_type_registry.rb +311 -0
  46. data/lib/pg/binary_decoder/date.rb +9 -0
  47. data/lib/pg/binary_decoder/timestamp.rb +26 -0
  48. data/lib/pg/binary_encoder/timestamp.rb +20 -0
  49. data/lib/pg/cancel_connection.rb +53 -0
  50. data/lib/pg/coder.rb +18 -14
  51. data/lib/pg/connection.rb +894 -91
  52. data/lib/pg/exceptions.rb +20 -1
  53. data/lib/pg/text_decoder/date.rb +21 -0
  54. data/lib/pg/text_decoder/inet.rb +9 -0
  55. data/lib/pg/text_decoder/json.rb +17 -0
  56. data/lib/pg/text_decoder/numeric.rb +9 -0
  57. data/lib/pg/text_decoder/timestamp.rb +30 -0
  58. data/lib/pg/text_encoder/date.rb +13 -0
  59. data/lib/pg/text_encoder/inet.rb +31 -0
  60. data/lib/pg/text_encoder/json.rb +17 -0
  61. data/lib/pg/text_encoder/numeric.rb +9 -0
  62. data/lib/pg/text_encoder/timestamp.rb +24 -0
  63. data/lib/pg/version.rb +4 -0
  64. data/lib/pg.rb +109 -39
  65. data/misc/openssl-pg-segfault.rb +31 -0
  66. data/misc/postgres/History.txt +9 -0
  67. data/misc/postgres/Manifest.txt +5 -0
  68. data/misc/postgres/README.txt +21 -0
  69. data/misc/postgres/Rakefile +21 -0
  70. data/misc/postgres/lib/postgres.rb +16 -0
  71. data/misc/ruby-pg/History.txt +9 -0
  72. data/misc/ruby-pg/Manifest.txt +5 -0
  73. data/misc/ruby-pg/README.txt +21 -0
  74. data/misc/ruby-pg/Rakefile +21 -0
  75. data/misc/ruby-pg/lib/ruby/pg.rb +16 -0
  76. data/misc/yugabyte/Dockerfile +9 -0
  77. data/misc/yugabyte/docker-compose.yml +28 -0
  78. data/misc/yugabyte/pg-test.rb +45 -0
  79. data/pg.gemspec +38 -0
  80. data/ports/patches/krb5/1.21.3/0001-Allow-static-linking-krb5-library.patch +30 -0
  81. data/ports/patches/openssl/3.5.1/0001-aarch64-mingw.patch +21 -0
  82. data/ports/patches/postgresql/17.5/0001-Use-workaround-of-__builtin_setjmp-only-on-MINGW-on-.patch +42 -0
  83. data/ports/patches/postgresql/17.5/0001-libpq-Process-buffered-SSL-read-bytes-to-support-rec.patch +52 -0
  84. data/rakelib/pg_gem_helper.rb +64 -0
  85. data/rakelib/task_extension.rb +46 -0
  86. data/sample/array_insert.rb +20 -0
  87. data/sample/async_api.rb +102 -0
  88. data/sample/async_copyto.rb +39 -0
  89. data/sample/async_mixed.rb +56 -0
  90. data/sample/check_conn.rb +21 -0
  91. data/sample/copydata.rb +71 -0
  92. data/sample/copyfrom.rb +81 -0
  93. data/sample/copyto.rb +19 -0
  94. data/sample/cursor.rb +21 -0
  95. data/sample/disk_usage_report.rb +177 -0
  96. data/sample/issue-119.rb +94 -0
  97. data/sample/losample.rb +69 -0
  98. data/sample/minimal-testcase.rb +17 -0
  99. data/sample/notify_wait.rb +72 -0
  100. data/sample/pg_statistics.rb +285 -0
  101. data/sample/replication_monitor.rb +222 -0
  102. data/sample/test_binary_values.rb +33 -0
  103. data/sample/wal_shipper.rb +434 -0
  104. data/sample/warehouse_partitions.rb +311 -0
  105. data.tar.gz.sig +0 -0
  106. metadata +139 -213
  107. metadata.gz.sig +0 -0
  108. data/.gemtest +0 -0
  109. data/ChangeLog +0 -0
  110. data/History.rdoc +0 -578
  111. data/Manifest.txt +0 -73
  112. data/README.ja.rdoc +0 -13
  113. data/README.rdoc +0 -213
  114. data/Rakefile.cross +0 -299
  115. data/lib/pg/basic_type_mapping.rb +0 -522
  116. data/lib/pg/binary_decoder.rb +0 -23
  117. data/lib/pg/constants.rb +0 -12
  118. data/lib/pg/text_decoder.rb +0 -46
  119. data/lib/pg/text_encoder.rb +0 -59
  120. data/spec/data/expected_trace.out +0 -26
  121. data/spec/data/random_binary_data +0 -0
  122. data/spec/helpers.rb +0 -380
  123. data/spec/pg/basic_type_mapping_spec.rb +0 -630
  124. data/spec/pg/connection_spec.rb +0 -1949
  125. data/spec/pg/connection_sync_spec.rb +0 -41
  126. data/spec/pg/result_spec.rb +0 -681
  127. data/spec/pg/tuple_spec.rb +0 -333
  128. data/spec/pg/type_map_by_class_spec.rb +0 -138
  129. data/spec/pg/type_map_by_column_spec.rb +0 -226
  130. data/spec/pg/type_map_by_mri_type_spec.rb +0 -136
  131. data/spec/pg/type_map_by_oid_spec.rb +0 -149
  132. data/spec/pg/type_map_in_ruby_spec.rb +0 -164
  133. data/spec/pg/type_map_spec.rb +0 -22
  134. data/spec/pg/type_spec.rb +0 -1123
  135. data/spec/pg_spec.rb +0 -50
data/ext/pg_copy_coder.c CHANGED
@@ -4,6 +4,7 @@
4
4
  */
5
5
 
6
6
  #include "pg.h"
7
+ #include "pg_util.h"
7
8
 
8
9
  #define ISOCTAL(c) (((c) >= '0') && ((c) <= '7'))
9
10
  #define OCTVALUE(c) ((c) - '0')
@@ -21,22 +22,51 @@ typedef struct {
21
22
 
22
23
 
23
24
  static void
24
- pg_copycoder_mark( t_pg_copycoder *this )
25
+ pg_copycoder_mark( void *_this )
25
26
  {
26
- pg_coder_mark(&this->comp);
27
- rb_gc_mark(this->typemap);
28
- rb_gc_mark(this->null_string);
27
+ t_pg_copycoder *this = (t_pg_copycoder *)_this;
28
+ rb_gc_mark_movable(this->typemap);
29
+ rb_gc_mark_movable(this->null_string);
29
30
  }
30
31
 
32
+ static size_t
33
+ pg_copycoder_memsize( const void *_this )
34
+ {
35
+ const t_pg_copycoder *this = (const t_pg_copycoder *)_this;
36
+ return sizeof(*this);
37
+ }
38
+
39
+ static void
40
+ pg_copycoder_compact( void *_this )
41
+ {
42
+ t_pg_copycoder *this = (t_pg_copycoder *)_this;
43
+ pg_coder_compact(&this->comp);
44
+ pg_gc_location(this->typemap);
45
+ pg_gc_location(this->null_string);
46
+ }
47
+
48
+ static const rb_data_type_t pg_copycoder_type = {
49
+ "PG::CopyCoder",
50
+ {
51
+ pg_copycoder_mark,
52
+ RUBY_TYPED_DEFAULT_FREE,
53
+ pg_copycoder_memsize,
54
+ pg_copycoder_compact,
55
+ },
56
+ &pg_coder_type,
57
+ 0,
58
+ RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | PG_RUBY_TYPED_FROZEN_SHAREABLE,
59
+ };
60
+
31
61
  static VALUE
32
62
  pg_copycoder_encoder_allocate( VALUE klass )
33
63
  {
34
64
  t_pg_copycoder *this;
35
- VALUE self = Data_Make_Struct( klass, t_pg_copycoder, pg_copycoder_mark, -1, this );
65
+ VALUE self = TypedData_Make_Struct( klass, t_pg_copycoder, &pg_copycoder_type, this );
36
66
  pg_coder_init_encoder( self );
37
- this->typemap = pg_typemap_all_strings;
67
+ RB_OBJ_WRITE(self, &this->typemap, pg_typemap_all_strings);
38
68
  this->delimiter = '\t';
39
- this->null_string = rb_str_new_cstr("\\N");
69
+ RB_OBJ_WRITE(self, &this->null_string, rb_str_new_cstr("\\N"));
40
70
  return self;
41
71
  }
42
72
 
@@ -44,11 +74,11 @@ static VALUE
44
74
  pg_copycoder_decoder_allocate( VALUE klass )
45
75
  {
46
76
  t_pg_copycoder *this;
47
- VALUE self = Data_Make_Struct( klass, t_pg_copycoder, pg_copycoder_mark, -1, this );
77
+ VALUE self = TypedData_Make_Struct( klass, t_pg_copycoder, &pg_copycoder_type, this );
48
78
  pg_coder_init_decoder( self );
49
- this->typemap = pg_typemap_all_strings;
79
+ RB_OBJ_WRITE(self, &this->typemap, pg_typemap_all_strings);
50
80
  this->delimiter = '\t';
51
- this->null_string = rb_str_new_cstr("\\N");
81
+ RB_OBJ_WRITE(self, &this->null_string, rb_str_new_cstr("\\N"));
52
82
  return self;
53
83
  }
54
84
 
@@ -57,13 +87,16 @@ pg_copycoder_decoder_allocate( VALUE klass )
57
87
  * coder.delimiter = String
58
88
  *
59
89
  * Specifies the character that separates columns within each row (line) of the file.
60
- * The default is a tab character in text format, a comma in CSV format.
61
- * This must be a single one-byte character. This option is ignored when using binary format.
90
+ * The default is a tab character in text format.
91
+ * This must be a single one-byte character.
92
+ *
93
+ * This option is ignored when using binary format.
62
94
  */
63
95
  static VALUE
64
96
  pg_copycoder_delimiter_set(VALUE self, VALUE delimiter)
65
97
  {
66
- t_pg_copycoder *this = DATA_PTR(self);
98
+ t_pg_copycoder *this = RTYPEDDATA_DATA(self);
99
+ rb_check_frozen(self);
67
100
  StringValue(delimiter);
68
101
  if(RSTRING_LEN(delimiter) != 1)
69
102
  rb_raise( rb_eArgError, "delimiter size must be one byte");
@@ -80,22 +113,24 @@ pg_copycoder_delimiter_set(VALUE self, VALUE delimiter)
80
113
  static VALUE
81
114
  pg_copycoder_delimiter_get(VALUE self)
82
115
  {
83
- t_pg_copycoder *this = DATA_PTR(self);
116
+ t_pg_copycoder *this = RTYPEDDATA_DATA(self);
84
117
  return rb_str_new(&this->delimiter, 1);
85
118
  }
86
119
 
87
120
  /*
88
- * Specifies the string that represents a null value. The default is \\N (backslash-N)
89
- * in text format, and an unquoted empty string in CSV format. You might prefer an
90
- * empty string even in text format for cases where you don't want to distinguish nulls
91
- * from empty strings. This option is ignored when using binary format.
121
+ * Specifies the string that represents a null value.
122
+ * The default is \\N (backslash-N) in text format.
123
+ * You might prefer an empty string even in text format for cases where you don't want to distinguish nulls from empty strings.
124
+ *
125
+ * This option is ignored when using binary format.
92
126
  */
93
127
  static VALUE
94
128
  pg_copycoder_null_string_set(VALUE self, VALUE null_string)
95
129
  {
96
- t_pg_copycoder *this = DATA_PTR(self);
130
+ t_pg_copycoder *this = RTYPEDDATA_DATA(self);
131
+ rb_check_frozen(self);
97
132
  StringValue(null_string);
98
- this->null_string = null_string;
133
+ RB_OBJ_WRITE(self, &this->null_string, null_string);
99
134
  return null_string;
100
135
  }
101
136
 
@@ -105,7 +140,7 @@ pg_copycoder_null_string_set(VALUE self, VALUE null_string)
105
140
  static VALUE
106
141
  pg_copycoder_null_string_get(VALUE self)
107
142
  {
108
- t_pg_copycoder *this = DATA_PTR(self);
143
+ t_pg_copycoder *this = RTYPEDDATA_DATA(self);
109
144
  return this->null_string;
110
145
  }
111
146
 
@@ -123,13 +158,14 @@ pg_copycoder_null_string_get(VALUE self)
123
158
  static VALUE
124
159
  pg_copycoder_type_map_set(VALUE self, VALUE type_map)
125
160
  {
126
- t_pg_copycoder *this = DATA_PTR( self );
161
+ t_pg_copycoder *this = RTYPEDDATA_DATA( self );
127
162
 
163
+ rb_check_frozen(self);
128
164
  if ( !rb_obj_is_kind_of(type_map, rb_cTypeMap) ){
129
165
  rb_raise( rb_eTypeError, "wrong elements type %s (expected some kind of PG::TypeMap)",
130
166
  rb_obj_classname( type_map ) );
131
167
  }
132
- this->typemap = type_map;
168
+ RB_OBJ_WRITE(self, &this->typemap, type_map);
133
169
 
134
170
  return type_map;
135
171
  }
@@ -143,7 +179,7 @@ pg_copycoder_type_map_set(VALUE self, VALUE type_map)
143
179
  static VALUE
144
180
  pg_copycoder_type_map_get(VALUE self)
145
181
  {
146
- t_pg_copycoder *this = DATA_PTR( self );
182
+ t_pg_copycoder *this = RTYPEDDATA_DATA( self );
147
183
 
148
184
  return this->typemap;
149
185
  }
@@ -176,6 +212,7 @@ pg_copycoder_type_map_get(VALUE self)
176
212
  *
177
213
  * See also PG::TextDecoder::CopyRow for the decoding direction with
178
214
  * PG::Connection#get_copy_data .
215
+ * And see PG::BinaryEncoder::CopyRow for an encoder of the COPY binary format.
179
216
  */
180
217
  static int
181
218
  pg_text_enc_copy_row(t_pg_coder *conv, VALUE value, char *out, VALUE *intermediate, int enc_idx)
@@ -188,7 +225,7 @@ pg_text_enc_copy_row(t_pg_coder *conv, VALUE value, char *out, VALUE *intermedia
188
225
  char *current_out;
189
226
  char *end_capa_ptr;
190
227
 
191
- p_typemap = DATA_PTR( this->typemap );
228
+ p_typemap = RTYPEDDATA_DATA( this->typemap );
192
229
  p_typemap->funcs.fit_to_query( this->typemap, value );
193
230
 
194
231
  /* Allocate a new string with embedded capacity and realloc exponential when needed. */
@@ -199,7 +236,7 @@ pg_text_enc_copy_row(t_pg_coder *conv, VALUE value, char *out, VALUE *intermedia
199
236
  char *ptr1;
200
237
  char *ptr2;
201
238
  int strlen;
202
- int backslashs;
239
+ int backslashes;
203
240
  VALUE subint;
204
241
  VALUE entry;
205
242
 
@@ -225,7 +262,7 @@ pg_text_enc_copy_row(t_pg_coder *conv, VALUE value, char *out, VALUE *intermedia
225
262
 
226
263
  if( strlen == -1 ){
227
264
  /* we can directly use String value in subint */
228
- strlen = RSTRING_LEN(subint);
265
+ strlen = RSTRING_LENINT(subint);
229
266
 
230
267
  /* size of string assuming the worst case, that every character must be escaped. */
231
268
  PG_RB_STR_ENSURE_CAPA( *intermediate, strlen * 2, current_out, end_capa_ptr );
@@ -250,19 +287,19 @@ pg_text_enc_copy_row(t_pg_coder *conv, VALUE value, char *out, VALUE *intermedia
250
287
  ptr2 = current_out + strlen;
251
288
 
252
289
  /* count required backlashs */
253
- for(backslashs = 0; ptr1 != ptr2; ptr1++) {
290
+ for(backslashes = 0; ptr1 != ptr2; ptr1++) {
254
291
  /* Escape backslash itself, newline, carriage return, and the current delimiter character. */
255
292
  if(*ptr1 == '\\' || *ptr1 == '\n' || *ptr1 == '\r' || *ptr1 == this->delimiter){
256
- backslashs++;
293
+ backslashes++;
257
294
  }
258
295
  }
259
296
 
260
297
  ptr1 = current_out + strlen;
261
- ptr2 = current_out + strlen + backslashs;
298
+ ptr2 = current_out + strlen + backslashes;
262
299
  current_out = ptr2;
263
300
 
264
301
  /* Then store the escaped string on the final position, walking
265
- * right to left, until all backslashs are placed. */
302
+ * right to left, until all backslashes are placed. */
266
303
  while( ptr1 != ptr2 ) {
267
304
  *--ptr2 = *--ptr1;
268
305
  if(*ptr1 == '\\' || *ptr1 == '\n' || *ptr1 == '\r' || *ptr1 == this->delimiter){
@@ -281,6 +318,124 @@ pg_text_enc_copy_row(t_pg_coder *conv, VALUE value, char *out, VALUE *intermedia
281
318
  }
282
319
 
283
320
 
321
+ /*
322
+ * Document-class: PG::BinaryEncoder::CopyRow < PG::CopyEncoder
323
+ *
324
+ * This class encodes one row of arbitrary columns for transmission as COPY data in binary format.
325
+ * See the {COPY command}[http://www.postgresql.org/docs/current/static/sql-copy.html]
326
+ * for description of the format.
327
+ *
328
+ * It is intended to be used in conjunction with PG::Connection#put_copy_data .
329
+ *
330
+ * The columns are expected as Array of values. The single values are encoded as defined
331
+ * in the assigned #type_map. If no type_map was assigned, all values are converted to
332
+ * strings by PG::BinaryEncoder::String.
333
+ *
334
+ * Example with default type map ( TypeMapAllStrings ):
335
+ * conn.exec "create table my_table (a text,b int,c bool)"
336
+ * enco = PG::BinaryEncoder::CopyRow.new
337
+ * conn.copy_data "COPY my_table FROM STDIN WITH (FORMAT binary)", enco do
338
+ * conn.put_copy_data ["astring", "\x00\x00\x00\a", "\x00"]
339
+ * conn.put_copy_data ["string2", "\x00\x00\x00*", "\x01"]
340
+ * end
341
+ * This creates +my_table+ and inserts two rows with binary fields.
342
+ *
343
+ * The binary format is less portable and less readable than the text format.
344
+ * It is therefore recommended to either manually assign a type encoder for each column per PG::TypeMapByColumn,
345
+ * or to make use of PG::BasicTypeMapBasedOnResult to assign them based on the table OIDs.
346
+ *
347
+ * Manually assigning a type encoder works per type map like so:
348
+ *
349
+ * conn.exec "create table my_table (a text,b int,c bool)"
350
+ * tm = PG::TypeMapByColumn.new( [
351
+ * PG::BinaryEncoder::String.new,
352
+ * PG::BinaryEncoder::Int4.new,
353
+ * PG::BinaryEncoder::Boolean.new] )
354
+ * enco = PG::BinaryEncoder::CopyRow.new( type_map: tm )
355
+ * conn.copy_data "COPY my_table FROM STDIN WITH (FORMAT binary)", enco do
356
+ * conn.put_copy_data ["astring", 7, false]
357
+ * conn.put_copy_data ["string2", 42, true]
358
+ * end
359
+ *
360
+ * See also PG::BinaryDecoder::CopyRow for the decoding direction with
361
+ * PG::Connection#get_copy_data .
362
+ * And see PG::TextEncoder::CopyRow for an encoder of the COPY text format.
363
+ */
364
+ static int
365
+ pg_bin_enc_copy_row(t_pg_coder *conv, VALUE value, char *out, VALUE *intermediate, int enc_idx)
366
+ {
367
+ t_pg_copycoder *this = (t_pg_copycoder *)conv;
368
+ int i;
369
+ t_typemap *p_typemap;
370
+ char *current_out;
371
+ char *end_capa_ptr;
372
+
373
+ p_typemap = RTYPEDDATA_DATA( this->typemap );
374
+ p_typemap->funcs.fit_to_query( this->typemap, value );
375
+
376
+ /* Allocate a new string with embedded capacity and realloc exponential when needed. */
377
+ PG_RB_STR_NEW( *intermediate, current_out, end_capa_ptr );
378
+ PG_ENCODING_SET_NOCHECK(*intermediate, enc_idx);
379
+
380
+ /* 2 bytes for number of fields */
381
+ PG_RB_STR_ENSURE_CAPA( *intermediate, 2, current_out, end_capa_ptr );
382
+ write_nbo16(RARRAY_LEN(value), current_out);
383
+ current_out += 2;
384
+
385
+ for( i=0; i<RARRAY_LEN(value); i++){
386
+ int strlen;
387
+ VALUE subint;
388
+ VALUE entry;
389
+ t_pg_coder_enc_func enc_func;
390
+ static t_pg_coder *p_elem_coder;
391
+
392
+ entry = rb_ary_entry(value, i);
393
+
394
+ switch(TYPE(entry)){
395
+ case T_NIL:
396
+ /* 4 bytes for -1 indicating a NULL value */
397
+ PG_RB_STR_ENSURE_CAPA( *intermediate, 4, current_out, end_capa_ptr );
398
+ write_nbo32(-1, current_out);
399
+ current_out += 4;
400
+ break;
401
+ default:
402
+ p_elem_coder = p_typemap->funcs.typecast_query_param(p_typemap, entry, i);
403
+ enc_func = pg_coder_enc_func(p_elem_coder);
404
+
405
+ /* 1st pass for retiving the required memory space */
406
+ strlen = enc_func(p_elem_coder, entry, NULL, &subint, enc_idx);
407
+
408
+ if( strlen == -1 ){
409
+ /* we can directly use String value in subint */
410
+ strlen = RSTRING_LENINT(subint);
411
+
412
+ PG_RB_STR_ENSURE_CAPA( *intermediate, 4 + strlen, current_out, end_capa_ptr );
413
+ /* 4 bytes length */
414
+ write_nbo32(strlen, current_out);
415
+ current_out += 4;
416
+
417
+ memcpy( current_out, RSTRING_PTR(subint), strlen );
418
+ current_out += strlen;
419
+ } else {
420
+ /* 2nd pass for writing the data to prepared buffer */
421
+ PG_RB_STR_ENSURE_CAPA( *intermediate, 4 + strlen, current_out, end_capa_ptr );
422
+ /* 4 bytes length */
423
+ write_nbo32(strlen, current_out);
424
+ current_out += 4;
425
+
426
+ /* Place the string at current output position. */
427
+ strlen = enc_func(p_elem_coder, entry, current_out, &subint, enc_idx);
428
+ current_out += strlen;
429
+ }
430
+ }
431
+ }
432
+
433
+ rb_str_set_len( *intermediate, current_out - RSTRING_PTR(*intermediate) );
434
+
435
+ return -1;
436
+ }
437
+
438
+
284
439
  /*
285
440
  * Return decimal value for a hexadecimal digit
286
441
  */
@@ -343,6 +498,7 @@ GetDecimalFromHex(char hex)
343
498
  *
344
499
  * See also PG::TextEncoder::CopyRow for the encoding direction with
345
500
  * PG::Connection#put_copy_data .
501
+ * And see PG::BinaryDecoder::CopyRow for a decoder of the COPY binary format.
346
502
  */
347
503
  /*
348
504
  * Parse the current line into separate attributes (fields),
@@ -376,7 +532,7 @@ pg_text_dec_copy_row(t_pg_coder *conv, const char *input_line, int len, int _tup
376
532
  char *end_capa_ptr;
377
533
  t_typemap *p_typemap;
378
534
 
379
- p_typemap = DATA_PTR( this->typemap );
535
+ p_typemap = RTYPEDDATA_DATA( this->typemap );
380
536
  expected_fields = p_typemap->funcs.fit_to_copy_get( this->typemap );
381
537
 
382
538
  /* The received input string will probably have this->nfields fields. */
@@ -397,7 +553,7 @@ pg_text_dec_copy_row(t_pg_coder *conv, const char *input_line, int len, int _tup
397
553
  int found_delim = 0;
398
554
  const char *start_ptr;
399
555
  const char *end_ptr;
400
- int input_len;
556
+ long input_len;
401
557
 
402
558
  /* Remember start of field on input side */
403
559
  start_ptr = cur_ptr;
@@ -562,9 +718,169 @@ pg_text_dec_copy_row(t_pg_coder *conv, const char *input_line, int len, int _tup
562
718
  }
563
719
 
564
720
 
721
+ static const char BinarySignature[11] = "PGCOPY\n\377\r\n\0";
722
+
723
+ /*
724
+ * Document-class: PG::BinaryDecoder::CopyRow < PG::CopyDecoder
725
+ *
726
+ * This class decodes one row of arbitrary columns received as COPY data in binary format.
727
+ * See the {COPY command}[http://www.postgresql.org/docs/current/static/sql-copy.html]
728
+ * for description of the format.
729
+ *
730
+ * It is intended to be used in conjunction with PG::Connection#get_copy_data .
731
+ *
732
+ * The columns are retrieved as Array of values. The single values are decoded as defined
733
+ * in the assigned #type_map. If no type_map was assigned, all values are converted to
734
+ * strings by PG::BinaryDecoder::String.
735
+ *
736
+ * Example with default type map ( TypeMapAllStrings ):
737
+ * conn.exec("CREATE TABLE my_table AS VALUES('astring', 7, FALSE), ('string2', 42, TRUE) ")
738
+ *
739
+ * deco = PG::BinaryDecoder::CopyRow.new
740
+ * conn.copy_data "COPY my_table TO STDOUT WITH (FORMAT binary)", deco do
741
+ * while row=conn.get_copy_data
742
+ * p row
743
+ * end
744
+ * end
745
+ * This prints all rows of +my_table+ in binary format:
746
+ * ["astring", "\x00\x00\x00\a", "\x00"]
747
+ * ["string2", "\x00\x00\x00*", "\x01"]
748
+ *
749
+ * Example with column based type map:
750
+ * tm = PG::TypeMapByColumn.new( [
751
+ * PG::BinaryDecoder::String.new,
752
+ * PG::BinaryDecoder::Integer.new,
753
+ * PG::BinaryDecoder::Boolean.new] )
754
+ * deco = PG::BinaryDecoder::CopyRow.new( type_map: tm )
755
+ * conn.copy_data "COPY my_table TO STDOUT WITH (FORMAT binary)", deco do
756
+ * while row=conn.get_copy_data
757
+ * p row
758
+ * end
759
+ * end
760
+ * This prints the rows with type casted columns:
761
+ * ["astring", 7, false]
762
+ * ["string2", 42, true]
763
+ *
764
+ * Instead of manually assigning a type decoder for each column, PG::BasicTypeMapForResults
765
+ * can be used to assign them based on the table OIDs.
766
+ *
767
+ * See also PG::BinaryEncoder::CopyRow for the encoding direction with
768
+ * PG::Connection#put_copy_data .
769
+ * And see PG::TextDecoder::CopyRow for a decoder of the COPY text format.
770
+ */
771
+ static VALUE
772
+ pg_bin_dec_copy_row(t_pg_coder *conv, const char *input_line, int len, int _tuple, int _field, int enc_idx)
773
+ {
774
+ t_pg_copycoder *this = (t_pg_copycoder *)conv;
775
+
776
+ /* Return value: array */
777
+ VALUE array;
778
+
779
+ /* Current field */
780
+ VALUE field_str;
781
+
782
+ int nfields;
783
+ int expected_fields;
784
+ int fieldno;
785
+ char *output_ptr;
786
+ const char *cur_ptr;
787
+ const char *line_end_ptr;
788
+ char *end_capa_ptr;
789
+ t_typemap *p_typemap;
790
+
791
+ p_typemap = RTYPEDDATA_DATA( this->typemap );
792
+ expected_fields = p_typemap->funcs.fit_to_copy_get( this->typemap );
793
+
794
+ /* Allocate a new string with embedded capacity and realloc later with
795
+ * exponential growing size when needed. */
796
+ PG_RB_STR_NEW( field_str, output_ptr, end_capa_ptr );
797
+
798
+ /* set pointer variables for loop */
799
+ cur_ptr = input_line;
800
+ line_end_ptr = input_line + len;
801
+
802
+ if (line_end_ptr - cur_ptr >= 11 && memcmp(cur_ptr, BinarySignature, 11) == 0){
803
+ /* binary COPY header signature detected -> just drop it */
804
+ int ext_bytes;
805
+ cur_ptr += 11;
806
+
807
+ /* read flags */
808
+ if (line_end_ptr - cur_ptr < 4 ) goto length_error;
809
+ cur_ptr += 4;
810
+
811
+ /* read header extensions */
812
+ if (line_end_ptr - cur_ptr < 4 ) goto length_error;
813
+ ext_bytes = read_nbo32(cur_ptr);
814
+ if (ext_bytes < 0) goto length_error;
815
+ cur_ptr += 4;
816
+ if (line_end_ptr - cur_ptr < ext_bytes ) goto length_error;
817
+ cur_ptr += ext_bytes;
818
+ }
819
+
820
+ /* read row header */
821
+ if (line_end_ptr - cur_ptr < 2 ) goto length_error;
822
+ nfields = read_nbo16(cur_ptr);
823
+ cur_ptr += 2;
824
+
825
+ /* COPY data trailer? */
826
+ if (nfields < 0) {
827
+ if (nfields != -1) goto length_error;
828
+ array = Qnil;
829
+ } else {
830
+ array = rb_ary_new2(expected_fields);
831
+
832
+ for( fieldno = 0; fieldno < nfields; fieldno++){
833
+ long input_len;
834
+
835
+ /* read field size */
836
+ if (line_end_ptr - cur_ptr < 4 ) goto length_error;
837
+ input_len = read_nbo32(cur_ptr);
838
+ cur_ptr += 4;
839
+
840
+ if (input_len < 0) {
841
+ if (input_len != -1) goto length_error;
842
+ /* NULL indicator */
843
+ rb_ary_push(array, Qnil);
844
+ } else {
845
+ VALUE field_value;
846
+ if (line_end_ptr - cur_ptr < input_len ) goto length_error;
847
+
848
+ /* copy input data to field_str */
849
+ PG_RB_STR_ENSURE_CAPA( field_str, input_len, output_ptr, end_capa_ptr );
850
+ memcpy(output_ptr, cur_ptr, input_len);
851
+ cur_ptr += input_len;
852
+ output_ptr += input_len;
853
+ /* convert field_str through the type map */
854
+ rb_str_set_len( field_str, output_ptr - RSTRING_PTR(field_str) );
855
+ field_value = p_typemap->funcs.typecast_copy_get( p_typemap, field_str, fieldno, 1, enc_idx );
856
+
857
+ rb_ary_push(array, field_value);
858
+
859
+ if( field_value == field_str ){
860
+ /* Our output string will be send to the user, so we can not reuse
861
+ * it for the next field. */
862
+ PG_RB_STR_NEW( field_str, output_ptr, end_capa_ptr );
863
+ }
864
+ }
865
+
866
+ /* Reset the pointer to the start of the output/buffer string. */
867
+ output_ptr = RSTRING_PTR(field_str);
868
+ }
869
+ }
870
+
871
+ if (cur_ptr < line_end_ptr)
872
+ rb_raise( rb_eArgError, "trailing data after row data at position: %ld", (long)(cur_ptr - input_line) + 1 );
873
+
874
+ return array;
875
+
876
+ length_error:
877
+ rb_raise( rb_eArgError, "premature end of COPY data at position: %ld", (long)(cur_ptr - input_line) + 1 );
878
+ }
879
+
565
880
  void
566
- init_pg_copycoder()
881
+ init_pg_copycoder(void)
567
882
  {
883
+ VALUE coder;
568
884
  /* Document-class: PG::CopyCoder < PG::Coder
569
885
  *
570
886
  * This is the base class for all type cast classes for COPY data,
@@ -587,13 +903,19 @@ init_pg_copycoder()
587
903
  /* Make RDoc aware of the encoder classes... */
588
904
  /* rb_mPG_TextEncoder = rb_define_module_under( rb_mPG, "TextEncoder" ); */
589
905
  /* dummy = rb_define_class_under( rb_mPG_TextEncoder, "CopyRow", rb_cPG_CopyEncoder ); */
590
- pg_define_coder( "CopyRow", pg_text_enc_copy_row, rb_cPG_CopyEncoder, rb_mPG_TextEncoder );
591
- rb_include_module( rb_cPG_CopyEncoder, rb_mPG_BinaryFormatting );
906
+ coder = pg_define_coder( "CopyRow", pg_text_enc_copy_row, rb_cPG_CopyEncoder, rb_mPG_TextEncoder );
907
+ rb_include_module( coder, rb_mPG_BinaryFormatting );
908
+ /* rb_mPG_BinaryEncoder = rb_define_module_under( rb_mPG, "BinaryEncoder" ); */
909
+ /* dummy = rb_define_class_under( rb_mPG_BinaryEncoder, "CopyRow", rb_cPG_CopyEncoder ); */
910
+ pg_define_coder( "CopyRow", pg_bin_enc_copy_row, rb_cPG_CopyEncoder, rb_mPG_BinaryEncoder );
592
911
 
593
912
  /* rb_mPG_TextDecoder = rb_define_module_under( rb_mPG, "TextDecoder" ); */
594
913
  /* dummy = rb_define_class_under( rb_mPG_TextDecoder, "CopyRow", rb_cPG_CopyDecoder ); */
595
- pg_define_coder( "CopyRow", pg_text_dec_copy_row, rb_cPG_CopyDecoder, rb_mPG_TextDecoder );
914
+ coder = pg_define_coder( "CopyRow", pg_text_dec_copy_row, rb_cPG_CopyDecoder, rb_mPG_TextDecoder );
596
915
  /* Although CopyRow is a text decoder, data can contain zero bytes and are not zero terminated.
597
916
  * They are handled like binaries. So format is set to 1 (binary). */
598
- rb_include_module( rb_cPG_CopyDecoder, rb_mPG_BinaryFormatting );
917
+ rb_include_module( coder, rb_mPG_BinaryFormatting );
918
+ /* rb_mPG_BinaryDecoder = rb_define_module_under( rb_mPG, "BinaryDecoder" ); */
919
+ /* dummy = rb_define_class_under( rb_mPG_BinaryDecoder, "CopyRow", rb_cPG_CopyDecoder ); */
920
+ pg_define_coder( "CopyRow", pg_bin_dec_copy_row, rb_cPG_CopyDecoder, rb_mPG_BinaryDecoder );
599
921
  }
data/ext/pg_errors.c CHANGED
@@ -70,7 +70,7 @@ lookup_error_class(const char *sqlstate)
70
70
  }
71
71
 
72
72
  void
73
- init_pg_errors()
73
+ init_pg_errors(void)
74
74
  {
75
75
  rb_hErrors = rb_hash_new();
76
76
  rb_define_const( rb_mPG, "ERROR_CLASSES", rb_hErrors );