Sha256: 3b8e2232adf2795178feac164c92a6d36bc5168766f809c41b2f1fa31627f2a9

Contents?: true

Size: 1.18 KB

Versions: 12

Compression:

Stored size: 1.18 KB

Contents

#!/usr/bin/env ruby

require 'date'
require 'json'

module PG
	module TextDecoder
		class Date < SimpleDecoder
			ISO_DATE = /\A(\d{4})-(\d\d)-(\d\d)\z/

			def decode(string, tuple=nil, field=nil)
				if string =~ ISO_DATE
					::Date.new $1.to_i, $2.to_i, $3.to_i
				else
					string
				end
			end
		end

		class TimestampWithoutTimeZone < SimpleDecoder
			ISO_DATETIME_WITHOUT_TIMEZONE = /\A(\d{4})-(\d\d)-(\d\d) (\d\d):(\d\d):(\d\d)(\.\d+)?\z/

			def decode(string, tuple=nil, field=nil)
				if string =~ ISO_DATETIME_WITHOUT_TIMEZONE
					Time.new $1.to_i, $2.to_i, $3.to_i, $4.to_i, $5.to_i, "#{$6}#{$7}".to_r
				else
					string
				end
			end
		end

		class TimestampWithTimeZone < SimpleDecoder
			ISO_DATETIME_WITH_TIMEZONE = /\A(\d{4})-(\d\d)-(\d\d) (\d\d):(\d\d):(\d\d)(\.\d+)?([-\+]\d\d):?(\d\d)?:?(\d\d)?\z/

			def decode(string, tuple=nil, field=nil)
				if string =~ ISO_DATETIME_WITH_TIMEZONE
					Time.new $1.to_i, $2.to_i, $3.to_i, $4.to_i, $5.to_i, "#{$6}#{$7}".to_r, "#{$8}:#{$9 || '00'}:#{$10 || '00'}"
				else
					string
				end
			end
		end

		class JSON < SimpleDecoder
			def decode(string, tuple=nil, field=nil)
				::JSON.load(string)
			end
		end
	end
end # module PG

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
autocompl-0.2.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/pg-0.19.0/lib/pg/text_decoder.rb
pg-0.19.0-x86-mingw32 lib/pg/text_decoder.rb
pg-0.19.0-x64-mingw32 lib/pg/text_decoder.rb
pg-0.19.0 lib/pg/text_decoder.rb
pg-0.19.0.pre20160904200247-x86-mingw32 lib/pg/text_decoder.rb
pg-0.19.0.pre20160904200247-x64-mingw32 lib/pg/text_decoder.rb
pg-0.19.0.pre20160904200247 lib/pg/text_decoder.rb
pg-0.19.0.pre20160820113039-x86-mingw32 lib/pg/text_decoder.rb
pg-0.19.0.pre20160820113039-x64-mingw32 lib/pg/text_decoder.rb
pg-0.19.0.pre20160820113039 lib/pg/text_decoder.rb
pg-0.19.0.pre20160817083826-x86-mingw32 lib/pg/text_decoder.rb
pg-0.19.0.pre20160817083826-x64-mingw32 lib/pg/text_decoder.rb