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 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921
|
/*
* pg_copycoder.c - PG::Coder class extension
*
*/
#include "pg.h"
#include "pg_util.h"
#define ISOCTAL(c) (((c) >= '0') && ((c) <= '7'))
#define OCTVALUE(c) ((c) - '0')
VALUE rb_cPG_CopyCoder;
VALUE rb_cPG_CopyEncoder;
VALUE rb_cPG_CopyDecoder;
typedef struct {
t_pg_coder comp;
VALUE typemap;
VALUE null_string;
char delimiter;
} t_pg_copycoder;
static void
pg_copycoder_mark( void *_this )
{
t_pg_copycoder *this = (t_pg_copycoder *)_this;
rb_gc_mark_movable(this->typemap);
rb_gc_mark_movable(this->null_string);
}
static size_t
pg_copycoder_memsize( const void *_this )
{
const t_pg_copycoder *this = (const t_pg_copycoder *)_this;
return sizeof(*this);
}
static void
pg_copycoder_compact( void *_this )
{
t_pg_copycoder *this = (t_pg_copycoder *)_this;
pg_coder_compact(&this->comp);
pg_gc_location(this->typemap);
pg_gc_location(this->null_string);
}
static const rb_data_type_t pg_copycoder_type = {
"PG::CopyCoder",
{
pg_copycoder_mark,
RUBY_TYPED_DEFAULT_FREE,
pg_copycoder_memsize,
pg_copycoder_compact,
},
&pg_coder_type,
0,
RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | PG_RUBY_TYPED_FROZEN_SHAREABLE,
};
static VALUE
pg_copycoder_encoder_allocate( VALUE klass )
{
t_pg_copycoder *this;
VALUE self = TypedData_Make_Struct( klass, t_pg_copycoder, &pg_copycoder_type, this );
pg_coder_init_encoder( self );
RB_OBJ_WRITE(self, &this->typemap, pg_typemap_all_strings);
this->delimiter = '\t';
RB_OBJ_WRITE(self, &this->null_string, rb_str_new_cstr("\\N"));
return self;
}
static VALUE
pg_copycoder_decoder_allocate( VALUE klass )
{
t_pg_copycoder *this;
VALUE self = TypedData_Make_Struct( klass, t_pg_copycoder, &pg_copycoder_type, this );
pg_coder_init_decoder( self );
RB_OBJ_WRITE(self, &this->typemap, pg_typemap_all_strings);
this->delimiter = '\t';
RB_OBJ_WRITE(self, &this->null_string, rb_str_new_cstr("\\N"));
return self;
}
/*
* call-seq:
* coder.delimiter = String
*
* Specifies the character that separates columns within each row (line) of the file.
* The default is a tab character in text format.
* This must be a single one-byte character.
*
* This option is ignored when using binary format.
*/
static VALUE
pg_copycoder_delimiter_set(VALUE self, VALUE delimiter)
{
t_pg_copycoder *this = RTYPEDDATA_DATA(self);
rb_check_frozen(self);
StringValue(delimiter);
if(RSTRING_LEN(delimiter) != 1)
rb_raise( rb_eArgError, "delimiter size must be one byte");
this->delimiter = *RSTRING_PTR(delimiter);
return delimiter;
}
/*
* call-seq:
* coder.delimiter -> String
*
* The character that separates columns within each row (line) of the file.
*/
static VALUE
pg_copycoder_delimiter_get(VALUE self)
{
t_pg_copycoder *this = RTYPEDDATA_DATA(self);
return rb_str_new(&this->delimiter, 1);
}
/*
* Specifies the string that represents a null value.
* The default is \\N (backslash-N) in text format.
* You might prefer an empty string even in text format for cases where you don't want to distinguish nulls from empty strings.
*
* This option is ignored when using binary format.
*/
static VALUE
pg_copycoder_null_string_set(VALUE self, VALUE null_string)
{
t_pg_copycoder *this = RTYPEDDATA_DATA(self);
rb_check_frozen(self);
StringValue(null_string);
RB_OBJ_WRITE(self, &this->null_string, null_string);
return null_string;
}
/*
* The string that represents a null value.
*/
static VALUE
pg_copycoder_null_string_get(VALUE self)
{
t_pg_copycoder *this = RTYPEDDATA_DATA(self);
return this->null_string;
}
/*
* call-seq:
* coder.type_map = map
*
* Defines how single columns are encoded or decoded.
* +map+ must be a kind of PG::TypeMap .
*
* Defaults to a PG::TypeMapAllStrings , so that PG::TextEncoder::String respectively
* PG::TextDecoder::String is used for encoding/decoding of each column.
*
*/
static VALUE
pg_copycoder_type_map_set(VALUE self, VALUE type_map)
{
t_pg_copycoder *this = RTYPEDDATA_DATA( self );
rb_check_frozen(self);
if ( !rb_obj_is_kind_of(type_map, rb_cTypeMap) ){
rb_raise( rb_eTypeError, "wrong elements type %s (expected some kind of PG::TypeMap)",
rb_obj_classname( type_map ) );
}
RB_OBJ_WRITE(self, &this->typemap, type_map);
return type_map;
}
/*
* call-seq:
* coder.type_map -> PG::TypeMap
*
* The PG::TypeMap that will be used for encoding and decoding of columns.
*/
static VALUE
pg_copycoder_type_map_get(VALUE self)
{
t_pg_copycoder *this = RTYPEDDATA_DATA( self );
return this->typemap;
}
/*
* Document-class: PG::TextEncoder::CopyRow < PG::CopyEncoder
*
* This class encodes one row of arbitrary columns for transmission as COPY data in text format.
* See the {COPY command}[http://www.postgresql.org/docs/current/static/sql-copy.html]
* for description of the format.
*
* It is intended to be used in conjunction with PG::Connection#put_copy_data .
*
* The columns are expected as Array of values. The single values are encoded as defined
* in the assigned #type_map. If no type_map was assigned, all values are converted to
* strings by PG::TextEncoder::String.
*
* Example with default type map ( TypeMapAllStrings ):
* conn.exec "create table my_table (a text,b int,c bool)"
* enco = PG::TextEncoder::CopyRow.new
* conn.copy_data "COPY my_table FROM STDIN", enco do
* conn.put_copy_data ["astring", 7, false]
* conn.put_copy_data ["string2", 42, true]
* end
* This creates +my_table+ and inserts two rows.
*
* It is possible to manually assign a type encoder for each column per PG::TypeMapByColumn,
* or to make use of PG::BasicTypeMapBasedOnResult to assign them based on the table OIDs.
*
* See also PG::TextDecoder::CopyRow for the decoding direction with
* PG::Connection#get_copy_data .
* And see PG::BinaryEncoder::CopyRow for an encoder of the COPY binary format.
*/
static int
pg_text_enc_copy_row(t_pg_coder *conv, VALUE value, char *out, VALUE *intermediate, int enc_idx)
{
t_pg_copycoder *this = (t_pg_copycoder *)conv;
t_pg_coder_enc_func enc_func;
static t_pg_coder *p_elem_coder;
int i;
t_typemap *p_typemap;
char *current_out;
char *end_capa_ptr;
p_typemap = RTYPEDDATA_DATA( this->typemap );
p_typemap->funcs.fit_to_query( this->typemap, value );
/* Allocate a new string with embedded capacity and realloc exponential when needed. */
PG_RB_STR_NEW( *intermediate, current_out, end_capa_ptr );
PG_ENCODING_SET_NOCHECK(*intermediate, enc_idx);
for( i=0; i<RARRAY_LEN(value); i++){
char *ptr1;
char *ptr2;
int strlen;
int backslashes;
VALUE subint;
VALUE entry;
entry = rb_ary_entry(value, i);
if( i > 0 ){
PG_RB_STR_ENSURE_CAPA( *intermediate, 1, current_out, end_capa_ptr );
*current_out++ = this->delimiter;
}
switch(TYPE(entry)){
case T_NIL:
PG_RB_STR_ENSURE_CAPA( *intermediate, RSTRING_LEN(this->null_string), current_out, end_capa_ptr );
memcpy( current_out, RSTRING_PTR(this->null_string), RSTRING_LEN(this->null_string) );
current_out += RSTRING_LEN(this->null_string);
break;
default:
p_elem_coder = p_typemap->funcs.typecast_query_param(p_typemap, entry, i);
enc_func = pg_coder_enc_func(p_elem_coder);
/* 1st pass for retiving the required memory space */
strlen = enc_func(p_elem_coder, entry, NULL, &subint, enc_idx);
if( strlen == -1 ){
/* we can directly use String value in subint */
strlen = RSTRING_LENINT(subint);
/* size of string assuming the worst case, that every character must be escaped. */
PG_RB_STR_ENSURE_CAPA( *intermediate, strlen * 2, current_out, end_capa_ptr );
/* Copy string from subint with backslash escaping */
for(ptr1 = RSTRING_PTR(subint); ptr1 < RSTRING_PTR(subint) + strlen; ptr1++) {
/* Escape backslash itself, newline, carriage return, and the current delimiter character. */
if(*ptr1 == '\\' || *ptr1 == '\n' || *ptr1 == '\r' || *ptr1 == this->delimiter){
*current_out++ = '\\';
}
*current_out++ = *ptr1;
}
} else {
/* 2nd pass for writing the data to prepared buffer */
/* size of string assuming the worst case, that every character must be escaped. */
PG_RB_STR_ENSURE_CAPA( *intermediate, strlen * 2, current_out, end_capa_ptr );
/* Place the unescaped string at current output position. */
strlen = enc_func(p_elem_coder, entry, current_out, &subint, enc_idx);
ptr1 = current_out;
ptr2 = current_out + strlen;
/* count required backlashs */
for(backslashes = 0; ptr1 != ptr2; ptr1++) {
/* Escape backslash itself, newline, carriage return, and the current delimiter character. */
if(*ptr1 == '\\' || *ptr1 == '\n' || *ptr1 == '\r' || *ptr1 == this->delimiter){
backslashes++;
}
}
ptr1 = current_out + strlen;
ptr2 = current_out + strlen + backslashes;
current_out = ptr2;
/* Then store the escaped string on the final position, walking
* right to left, until all backslashes are placed. */
while( ptr1 != ptr2 ) {
*--ptr2 = *--ptr1;
if(*ptr1 == '\\' || *ptr1 == '\n' || *ptr1 == '\r' || *ptr1 == this->delimiter){
*--ptr2 = '\\';
}
}
}
}
}
PG_RB_STR_ENSURE_CAPA( *intermediate, 1, current_out, end_capa_ptr );
*current_out++ = '\n';
rb_str_set_len( *intermediate, current_out - RSTRING_PTR(*intermediate) );
return -1;
}
/*
* Document-class: PG::BinaryEncoder::CopyRow < PG::CopyEncoder
*
* This class encodes one row of arbitrary columns for transmission as COPY data in binary format.
* See the {COPY command}[http://www.postgresql.org/docs/current/static/sql-copy.html]
* for description of the format.
*
* It is intended to be used in conjunction with PG::Connection#put_copy_data .
*
* The columns are expected as Array of values. The single values are encoded as defined
* in the assigned #type_map. If no type_map was assigned, all values are converted to
* strings by PG::BinaryEncoder::String.
*
* Example with default type map ( TypeMapAllStrings ):
* conn.exec "create table my_table (a text,b int,c bool)"
* enco = PG::BinaryEncoder::CopyRow.new
* conn.copy_data "COPY my_table FROM STDIN WITH (FORMAT binary)", enco do
* conn.put_copy_data ["astring", "\x00\x00\x00\a", "\x00"]
* conn.put_copy_data ["string2", "\x00\x00\x00*", "\x01"]
* end
* This creates +my_table+ and inserts two rows with binary fields.
*
* The binary format is less portable and less readable than the text format.
* It is therefore recommended to either manually assign a type encoder for each column per PG::TypeMapByColumn,
* or to make use of PG::BasicTypeMapBasedOnResult to assign them based on the table OIDs.
*
* Manually assigning a type encoder works per type map like so:
*
* conn.exec "create table my_table (a text,b int,c bool)"
* tm = PG::TypeMapByColumn.new( [
* PG::BinaryEncoder::String.new,
* PG::BinaryEncoder::Int4.new,
* PG::BinaryEncoder::Boolean.new] )
* enco = PG::BinaryEncoder::CopyRow.new( type_map: tm )
* conn.copy_data "COPY my_table FROM STDIN WITH (FORMAT binary)", enco do
* conn.put_copy_data ["astring", 7, false]
* conn.put_copy_data ["string2", 42, true]
* end
*
* See also PG::BinaryDecoder::CopyRow for the decoding direction with
* PG::Connection#get_copy_data .
* And see PG::TextEncoder::CopyRow for an encoder of the COPY text format.
*/
static int
pg_bin_enc_copy_row(t_pg_coder *conv, VALUE value, char *out, VALUE *intermediate, int enc_idx)
{
t_pg_copycoder *this = (t_pg_copycoder *)conv;
int i;
t_typemap *p_typemap;
char *current_out;
char *end_capa_ptr;
p_typemap = RTYPEDDATA_DATA( this->typemap );
p_typemap->funcs.fit_to_query( this->typemap, value );
/* Allocate a new string with embedded capacity and realloc exponential when needed. */
PG_RB_STR_NEW( *intermediate, current_out, end_capa_ptr );
PG_ENCODING_SET_NOCHECK(*intermediate, enc_idx);
/* 2 bytes for number of fields */
PG_RB_STR_ENSURE_CAPA( *intermediate, 2, current_out, end_capa_ptr );
write_nbo16(RARRAY_LEN(value), current_out);
current_out += 2;
for( i=0; i<RARRAY_LEN(value); i++){
int strlen;
VALUE subint;
VALUE entry;
t_pg_coder_enc_func enc_func;
static t_pg_coder *p_elem_coder;
entry = rb_ary_entry(value, i);
switch(TYPE(entry)){
case T_NIL:
/* 4 bytes for -1 indicating a NULL value */
PG_RB_STR_ENSURE_CAPA( *intermediate, 4, current_out, end_capa_ptr );
write_nbo32(-1, current_out);
current_out += 4;
break;
default:
p_elem_coder = p_typemap->funcs.typecast_query_param(p_typemap, entry, i);
enc_func = pg_coder_enc_func(p_elem_coder);
/* 1st pass for retiving the required memory space */
strlen = enc_func(p_elem_coder, entry, NULL, &subint, enc_idx);
if( strlen == -1 ){
/* we can directly use String value in subint */
strlen = RSTRING_LENINT(subint);
PG_RB_STR_ENSURE_CAPA( *intermediate, 4 + strlen, current_out, end_capa_ptr );
/* 4 bytes length */
write_nbo32(strlen, current_out);
current_out += 4;
memcpy( current_out, RSTRING_PTR(subint), strlen );
current_out += strlen;
} else {
/* 2nd pass for writing the data to prepared buffer */
PG_RB_STR_ENSURE_CAPA( *intermediate, 4 + strlen, current_out, end_capa_ptr );
/* 4 bytes length */
write_nbo32(strlen, current_out);
current_out += 4;
/* Place the string at current output position. */
strlen = enc_func(p_elem_coder, entry, current_out, &subint, enc_idx);
current_out += strlen;
}
}
}
rb_str_set_len( *intermediate, current_out - RSTRING_PTR(*intermediate) );
return -1;
}
/*
* Return decimal value for a hexadecimal digit
*/
static int
GetDecimalFromHex(char hex)
{
if (hex >= '0' && hex <= '9')
return hex - '0';
else if (hex >= 'a' && hex <= 'f')
return hex - 'a' + 10;
else if (hex >= 'A' && hex <= 'F')
return hex - 'A' + 10;
else
return -1;
}
/*
* Document-class: PG::TextDecoder::CopyRow < PG::CopyDecoder
*
* This class decodes one row of arbitrary columns received as COPY data in text format.
* See the {COPY command}[http://www.postgresql.org/docs/current/static/sql-copy.html]
* for description of the format.
*
* It is intended to be used in conjunction with PG::Connection#get_copy_data .
*
* The columns are retrieved as Array of values. The single values are decoded as defined
* in the assigned #type_map. If no type_map was assigned, all values are converted to
* strings by PG::TextDecoder::String.
*
* Example with default type map ( TypeMapAllStrings ):
* conn.exec("CREATE TABLE my_table AS VALUES('astring', 7, FALSE), ('string2', 42, TRUE) ")
*
* deco = PG::TextDecoder::CopyRow.new
* conn.copy_data "COPY my_table TO STDOUT", deco do
* while row=conn.get_copy_data
* p row
* end
* end
* This prints all rows of +my_table+ :
* ["astring", "7", "f"]
* ["string2", "42", "t"]
*
* Example with column based type map:
* tm = PG::TypeMapByColumn.new( [
* PG::TextDecoder::String.new,
* PG::TextDecoder::Integer.new,
* PG::TextDecoder::Boolean.new] )
* deco = PG::TextDecoder::CopyRow.new( type_map: tm )
* conn.copy_data "COPY my_table TO STDOUT", deco do
* while row=conn.get_copy_data
* p row
* end
* end
* This prints the rows with type casted columns:
* ["astring", 7, false]
* ["string2", 42, true]
*
* Instead of manually assigning a type decoder for each column, PG::BasicTypeMapForResults
* can be used to assign them based on the table OIDs.
*
* See also PG::TextEncoder::CopyRow for the encoding direction with
* PG::Connection#put_copy_data .
* And see PG::BinaryDecoder::CopyRow for a decoder of the COPY binary format.
*/
/*
* Parse the current line into separate attributes (fields),
* performing de-escaping as needed.
*
* All fields are gathered into a ruby Array. The de-escaped field data is written
* into to a ruby String. This object is reused for non string columns.
* For String columns the field value is directly used as return value and no
* reuse of the memory is done.
*
* The parser is thankfully borrowed from the PostgreSQL sources:
* src/backend/commands/copy.c
*/
static VALUE
pg_text_dec_copy_row(t_pg_coder *conv, const char *input_line, int len, int _tuple, int _field, int enc_idx)
{
t_pg_copycoder *this = (t_pg_copycoder *)conv;
/* Return value: array */
VALUE array;
/* Current field */
VALUE field_str;
char delimc = this->delimiter;
int fieldno;
int expected_fields;
char *output_ptr;
const char *cur_ptr;
const char *line_end_ptr;
char *end_capa_ptr;
t_typemap *p_typemap;
p_typemap = RTYPEDDATA_DATA( this->typemap );
expected_fields = p_typemap->funcs.fit_to_copy_get( this->typemap );
/* The received input string will probably have this->nfields fields. */
array = rb_ary_new2(expected_fields);
/* Allocate a new string with embedded capacity and realloc later with
* exponential growing size when needed. */
PG_RB_STR_NEW( field_str, output_ptr, end_capa_ptr );
/* set pointer variables for loop */
cur_ptr = input_line;
line_end_ptr = input_line + len;
/* Outer loop iterates over fields */
fieldno = 0;
for (;;)
{
int found_delim = 0;
const char *start_ptr;
const char *end_ptr;
long input_len;
/* Remember start of field on input side */
start_ptr = cur_ptr;
/*
* Scan data for field.
*
* Note that in this loop, we are scanning to locate the end of field
* and also speculatively performing de-escaping. Once we find the
* end-of-field, we can match the raw field contents against the null
* marker string. Only after that comparison fails do we know that
* de-escaping is actually the right thing to do; therefore we *must
* not* throw any syntax errors before we've done the null-marker
* check.
*/
for (;;)
{
/* The current character in the input string. */
char c;
end_ptr = cur_ptr;
if (cur_ptr >= line_end_ptr)
break;
c = *cur_ptr++;
if (c == delimc){
found_delim = 1;
break;
}
if (c == '\n'){
break;
}
if (c == '\\'){
if (cur_ptr >= line_end_ptr)
break;
c = *cur_ptr++;
switch (c){
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
{
/* handle \013 */
int val;
val = OCTVALUE(c);
if (cur_ptr < line_end_ptr)
{
c = *cur_ptr;
if (ISOCTAL(c))
{
cur_ptr++;
val = (val << 3) + OCTVALUE(c);
if (cur_ptr < line_end_ptr)
{
c = *cur_ptr;
if (ISOCTAL(c))
{
cur_ptr++;
val = (val << 3) + OCTVALUE(c);
}
}
}
}
c = val & 0377;
}
break;
case 'x':
/* Handle \x3F */
if (cur_ptr < line_end_ptr)
{
char hexchar = *cur_ptr;
int val = GetDecimalFromHex(hexchar);;
if (val >= 0)
{
cur_ptr++;
if (cur_ptr < line_end_ptr)
{
int val2;
hexchar = *cur_ptr;
val2 = GetDecimalFromHex(hexchar);
if (val2 >= 0)
{
cur_ptr++;
val = (val << 4) + val2;
}
}
c = val & 0xff;
}
}
break;
case 'b':
c = '\b';
break;
case 'f':
c = '\f';
break;
case 'n':
c = '\n';
break;
case 'r':
c = '\r';
break;
case 't':
c = '\t';
break;
case 'v':
c = '\v';
break;
/*
* in all other cases, take the char after '\'
* literally
*/
}
}
PG_RB_STR_ENSURE_CAPA( field_str, 1, output_ptr, end_capa_ptr );
/* Add c to output string */
*output_ptr++ = c;
}
if (!found_delim && cur_ptr < line_end_ptr)
rb_raise( rb_eArgError, "trailing data after linefeed at position: %ld", (long)(cur_ptr - input_line) + 1 );
/* Check whether raw input matched null marker */
input_len = end_ptr - start_ptr;
if (input_len == RSTRING_LEN(this->null_string) &&
strncmp(start_ptr, RSTRING_PTR(this->null_string), input_len) == 0) {
rb_ary_push(array, Qnil);
} else {
VALUE field_value;
rb_str_set_len( field_str, output_ptr - RSTRING_PTR(field_str) );
field_value = p_typemap->funcs.typecast_copy_get( p_typemap, field_str, fieldno, 0, enc_idx );
rb_ary_push(array, field_value);
if( field_value == field_str ){
/* Our output string will be send to the user, so we can not reuse
* it for the next field. */
PG_RB_STR_NEW( field_str, output_ptr, end_capa_ptr );
}
}
/* Reset the pointer to the start of the output/buffer string. */
output_ptr = RSTRING_PTR(field_str);
fieldno++;
/* Done if we hit EOL instead of a delim */
if (!found_delim)
break;
}
return array;
}
static const char BinarySignature[11] = "PGCOPY\n\377\r\n\0";
/*
* Document-class: PG::BinaryDecoder::CopyRow < PG::CopyDecoder
*
* This class decodes one row of arbitrary columns received as COPY data in binary format.
* See the {COPY command}[http://www.postgresql.org/docs/current/static/sql-copy.html]
* for description of the format.
*
* It is intended to be used in conjunction with PG::Connection#get_copy_data .
*
* The columns are retrieved as Array of values. The single values are decoded as defined
* in the assigned #type_map. If no type_map was assigned, all values are converted to
* strings by PG::BinaryDecoder::String.
*
* Example with default type map ( TypeMapAllStrings ):
* conn.exec("CREATE TABLE my_table AS VALUES('astring', 7, FALSE), ('string2', 42, TRUE) ")
*
* deco = PG::BinaryDecoder::CopyRow.new
* conn.copy_data "COPY my_table TO STDOUT WITH (FORMAT binary)", deco do
* while row=conn.get_copy_data
* p row
* end
* end
* This prints all rows of +my_table+ in binary format:
* ["astring", "\x00\x00\x00\a", "\x00"]
* ["string2", "\x00\x00\x00*", "\x01"]
*
* Example with column based type map:
* tm = PG::TypeMapByColumn.new( [
* PG::BinaryDecoder::String.new,
* PG::BinaryDecoder::Integer.new,
* PG::BinaryDecoder::Boolean.new] )
* deco = PG::BinaryDecoder::CopyRow.new( type_map: tm )
* conn.copy_data "COPY my_table TO STDOUT WITH (FORMAT binary)", deco do
* while row=conn.get_copy_data
* p row
* end
* end
* This prints the rows with type casted columns:
* ["astring", 7, false]
* ["string2", 42, true]
*
* Instead of manually assigning a type decoder for each column, PG::BasicTypeMapForResults
* can be used to assign them based on the table OIDs.
*
* See also PG::BinaryEncoder::CopyRow for the encoding direction with
* PG::Connection#put_copy_data .
* And see PG::TextDecoder::CopyRow for a decoder of the COPY text format.
*/
static VALUE
pg_bin_dec_copy_row(t_pg_coder *conv, const char *input_line, int len, int _tuple, int _field, int enc_idx)
{
t_pg_copycoder *this = (t_pg_copycoder *)conv;
/* Return value: array */
VALUE array;
/* Current field */
VALUE field_str;
int nfields;
int expected_fields;
int fieldno;
char *output_ptr;
const char *cur_ptr;
const char *line_end_ptr;
char *end_capa_ptr;
t_typemap *p_typemap;
p_typemap = RTYPEDDATA_DATA( this->typemap );
expected_fields = p_typemap->funcs.fit_to_copy_get( this->typemap );
/* Allocate a new string with embedded capacity and realloc later with
* exponential growing size when needed. */
PG_RB_STR_NEW( field_str, output_ptr, end_capa_ptr );
/* set pointer variables for loop */
cur_ptr = input_line;
line_end_ptr = input_line + len;
if (line_end_ptr - cur_ptr >= 11 && memcmp(cur_ptr, BinarySignature, 11) == 0){
/* binary COPY header signature detected -> just drop it */
int ext_bytes;
cur_ptr += 11;
/* read flags */
if (line_end_ptr - cur_ptr < 4 ) goto length_error;
cur_ptr += 4;
/* read header extensions */
if (line_end_ptr - cur_ptr < 4 ) goto length_error;
ext_bytes = read_nbo32(cur_ptr);
if (ext_bytes < 0) goto length_error;
cur_ptr += 4;
if (line_end_ptr - cur_ptr < ext_bytes ) goto length_error;
cur_ptr += ext_bytes;
}
/* read row header */
if (line_end_ptr - cur_ptr < 2 ) goto length_error;
nfields = read_nbo16(cur_ptr);
cur_ptr += 2;
/* COPY data trailer? */
if (nfields < 0) {
if (nfields != -1) goto length_error;
array = Qnil;
} else {
array = rb_ary_new2(expected_fields);
for( fieldno = 0; fieldno < nfields; fieldno++){
long input_len;
/* read field size */
if (line_end_ptr - cur_ptr < 4 ) goto length_error;
input_len = read_nbo32(cur_ptr);
cur_ptr += 4;
if (input_len < 0) {
if (input_len != -1) goto length_error;
/* NULL indicator */
rb_ary_push(array, Qnil);
} else {
VALUE field_value;
if (line_end_ptr - cur_ptr < input_len ) goto length_error;
/* copy input data to field_str */
PG_RB_STR_ENSURE_CAPA( field_str, input_len, output_ptr, end_capa_ptr );
memcpy(output_ptr, cur_ptr, input_len);
cur_ptr += input_len;
output_ptr += input_len;
/* convert field_str through the type map */
rb_str_set_len( field_str, output_ptr - RSTRING_PTR(field_str) );
field_value = p_typemap->funcs.typecast_copy_get( p_typemap, field_str, fieldno, 1, enc_idx );
rb_ary_push(array, field_value);
if( field_value == field_str ){
/* Our output string will be send to the user, so we can not reuse
* it for the next field. */
PG_RB_STR_NEW( field_str, output_ptr, end_capa_ptr );
}
}
/* Reset the pointer to the start of the output/buffer string. */
output_ptr = RSTRING_PTR(field_str);
}
}
if (cur_ptr < line_end_ptr)
rb_raise( rb_eArgError, "trailing data after row data at position: %ld", (long)(cur_ptr - input_line) + 1 );
return array;
length_error:
rb_raise( rb_eArgError, "premature end of COPY data at position: %ld", (long)(cur_ptr - input_line) + 1 );
}
void
init_pg_copycoder(void)
{
VALUE coder;
/* Document-class: PG::CopyCoder < PG::Coder
*
* This is the base class for all type cast classes for COPY data,
*/
rb_cPG_CopyCoder = rb_define_class_under( rb_mPG, "CopyCoder", rb_cPG_Coder );
rb_define_method( rb_cPG_CopyCoder, "type_map=", pg_copycoder_type_map_set, 1 );
rb_define_method( rb_cPG_CopyCoder, "type_map", pg_copycoder_type_map_get, 0 );
rb_define_method( rb_cPG_CopyCoder, "delimiter=", pg_copycoder_delimiter_set, 1 );
rb_define_method( rb_cPG_CopyCoder, "delimiter", pg_copycoder_delimiter_get, 0 );
rb_define_method( rb_cPG_CopyCoder, "null_string=", pg_copycoder_null_string_set, 1 );
rb_define_method( rb_cPG_CopyCoder, "null_string", pg_copycoder_null_string_get, 0 );
/* Document-class: PG::CopyEncoder < PG::CopyCoder */
rb_cPG_CopyEncoder = rb_define_class_under( rb_mPG, "CopyEncoder", rb_cPG_CopyCoder );
rb_define_alloc_func( rb_cPG_CopyEncoder, pg_copycoder_encoder_allocate );
/* Document-class: PG::CopyDecoder < PG::CopyCoder */
rb_cPG_CopyDecoder = rb_define_class_under( rb_mPG, "CopyDecoder", rb_cPG_CopyCoder );
rb_define_alloc_func( rb_cPG_CopyDecoder, pg_copycoder_decoder_allocate );
/* Make RDoc aware of the encoder classes... */
/* rb_mPG_TextEncoder = rb_define_module_under( rb_mPG, "TextEncoder" ); */
/* dummy = rb_define_class_under( rb_mPG_TextEncoder, "CopyRow", rb_cPG_CopyEncoder ); */
coder = pg_define_coder( "CopyRow", pg_text_enc_copy_row, rb_cPG_CopyEncoder, rb_mPG_TextEncoder );
rb_include_module( coder, rb_mPG_BinaryFormatting );
/* rb_mPG_BinaryEncoder = rb_define_module_under( rb_mPG, "BinaryEncoder" ); */
/* dummy = rb_define_class_under( rb_mPG_BinaryEncoder, "CopyRow", rb_cPG_CopyEncoder ); */
pg_define_coder( "CopyRow", pg_bin_enc_copy_row, rb_cPG_CopyEncoder, rb_mPG_BinaryEncoder );
/* rb_mPG_TextDecoder = rb_define_module_under( rb_mPG, "TextDecoder" ); */
/* dummy = rb_define_class_under( rb_mPG_TextDecoder, "CopyRow", rb_cPG_CopyDecoder ); */
coder = pg_define_coder( "CopyRow", pg_text_dec_copy_row, rb_cPG_CopyDecoder, rb_mPG_TextDecoder );
/* Although CopyRow is a text decoder, data can contain zero bytes and are not zero terminated.
* They are handled like binaries. So format is set to 1 (binary). */
rb_include_module( coder, rb_mPG_BinaryFormatting );
/* rb_mPG_BinaryDecoder = rb_define_module_under( rb_mPG, "BinaryDecoder" ); */
/* dummy = rb_define_class_under( rb_mPG_BinaryDecoder, "CopyRow", rb_cPG_CopyDecoder ); */
pg_define_coder( "CopyRow", pg_bin_dec_copy_row, rb_cPG_CopyDecoder, rb_mPG_BinaryDecoder );
}
|