Class: PG::CopyCoder

Inherits:
Coder
  • Object
show all
Defined in:
ext/pg_copy_coder.c,
lib/pg/coder.rb,
ext/pg_copy_coder.c

Overview

This is the base class for all type cast classes for COPY data,

Direct Known Subclasses

CopyDecoder, CopyEncoder

Constant Summary

Constants inherited from Coder

PG::Coder::FORMAT_ERROR_MASK, PG::Coder::FORMAT_ERROR_TO_PARTIAL, PG::Coder::FORMAT_ERROR_TO_RAISE, PG::Coder::FORMAT_ERROR_TO_STRING, PG::Coder::TIMESTAMP_APP_LOCAL, PG::Coder::TIMESTAMP_APP_UTC, PG::Coder::TIMESTAMP_DB_LOCAL, PG::Coder::TIMESTAMP_DB_UTC

Instance Attribute Summary

Attributes inherited from Coder

#name

Instance Method Summary collapse

Methods inherited from Coder

#==, #dup, #flags, #flags=, #format, #format=, #initialize, #inspect, #inspect_short, #marshal_dump, #marshal_load, #oid, #oid=

Constructor Details

This class inherits a constructor from PG::Coder

Instance Method Details

#delimiterString

The character that separates columns within each row (line) of the file.

Returns:

  • (String)


109
110
111
112
113
114
# File 'ext/pg_copy_coder.c', line 109

static VALUE
pg_copycoder_delimiter_get(VALUE self)
{
	t_pg_copycoder *this = RTYPEDDATA_DATA(self);
	return rb_str_new(&this->delimiter, 1);
}

#delimiter=(String) ⇒ Object

Specifies the character that separates columns within each row (line) of the file. The default is a tab character in text format, a comma in CSV format. This must be a single one-byte character. This option is ignored when using binary format.



92
93
94
95
96
97
98
99
100
101
# File 'ext/pg_copy_coder.c', line 92

static VALUE
pg_copycoder_delimiter_set(VALUE self, VALUE delimiter)
{
	t_pg_copycoder *this = RTYPEDDATA_DATA(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;
}

#null_stringObject

The string that represents a null value.



134
135
136
137
138
139
# File 'ext/pg_copy_coder.c', line 134

static VALUE
pg_copycoder_null_string_get(VALUE self)
{
	t_pg_copycoder *this = RTYPEDDATA_DATA(self);
	return this->null_string;
}

#null_string=(null_string) ⇒ Object

Specifies the string that represents a null value. The default is \N (backslash-N) in text format, and an unquoted empty string in CSV 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.



122
123
124
125
126
127
128
129
# File 'ext/pg_copy_coder.c', line 122

static VALUE
pg_copycoder_null_string_set(VALUE self, VALUE null_string)
{
	t_pg_copycoder *this = RTYPEDDATA_DATA(self);
	StringValue(null_string);
	this->null_string = null_string;
	return null_string;
}

#to_hObject



88
89
90
91
92
93
94
# File 'lib/pg/coder.rb', line 88

def to_h
	super.merge!({
		type_map: type_map,
		delimiter: delimiter,
		null_string: null_string,
	})
end

#type_mapPG::TypeMap

The PG::TypeMap that will be used for encoding and decoding of columns.

Returns:



172
173
174
175
176
177
178
# File 'ext/pg_copy_coder.c', line 172

static VALUE
pg_copycoder_type_map_get(VALUE self)
{
	t_pg_copycoder *this = RTYPEDDATA_DATA( self );

	return this->typemap;
}

#type_map=(map) ⇒ Object

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.



152
153
154
155
156
157
158
159
160
161
162
163
164
# File 'ext/pg_copy_coder.c', line 152

static VALUE
pg_copycoder_type_map_set(VALUE self, VALUE type_map)
{
	t_pg_copycoder *this = RTYPEDDATA_DATA( 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 ) );
	}
	this->typemap = type_map;

	return type_map;
}