Sha256: 5e6f67f72880cdc6180ce207b045e37b0f8c60f3f770a713ae8a919113b42808
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 KB
Contents
# frozen_string_literal: true module TJSON class DataType # Base class of integer types class Integer < Scalar def encode(int) # Integers are serialized as strings to sidestep the limits of some JSON parsers int.to_s end end # Signed 64-bit integer class SignedInt < Integer def tag "i" end def decode(str) raise TJSON::TypeError, "expected String, got #{str.class}: #{str.inspect}" unless str.is_a?(::String) raise TJSON::ParseError, "invalid integer: #{str.inspect}" unless str =~ /\A\-?(0|[1-9][0-9]*)\z/ result = Integer(str, 10) raise TJSON::ParseError, "oversized integer: #{result}" if result > 9_223_372_036_854_775_807 raise TJSON::ParseError, "undersized integer: #{result}" if result < -9_223_372_036_854_775_808 result end end # Unsigned 64-bit integer class UnsignedInt < Integer def tag "u" end def decode(str) raise TJSON::TypeError, "expected String, got #{str.class}: #{str.inspect}" unless str.is_a?(::String) raise TJSON::ParseError, "invalid integer: #{str.inspect}" unless str =~ /\A(0|[1-9][0-9]*)\z/ result = Integer(str, 10) raise TJSON::ParseError, "oversized integer: #{result}" if result > 18_446_744_073_709_551_615 result end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tjson-0.5.0 | lib/tjson/datatype/integer.rb |