-
Notifications
You must be signed in to change notification settings - Fork 339
/
Copy pathencoder.rb
126 lines (110 loc) · 2.82 KB
/
encoder.rb
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
require "stringio"
module Kafka
module Protocol
# An encoder wraps an IO object, making it easy to write specific data types
# to it.
class Encoder
# Initializes a new encoder.
#
# @param io [IO] an object that acts as an IO.
def initialize(io)
@io = io
@io.set_encoding(Encoding::BINARY)
end
# Writes bytes directly to the IO object.
#
# @param bytes [String]
# @return [nil]
def write(bytes)
@io.write(bytes)
nil
end
# Writes an 8-bit boolean to the IO object.
#
# @param boolean [Boolean]
# @return [nil]
def write_boolean(boolean)
write(boolean ? 0x1 : 0x0)
end
# Writes an 8-bit integer to the IO object.
#
# @param int [Integer]
# @return [nil]
def write_int8(int)
write([int].pack("C"))
end
# Writes a 16-bit integer to the IO object.
#
# @param int [Integer]
# @return [nil]
def write_int16(int)
write([int].pack("s>"))
end
# Writes a 32-bit integer to the IO object.
#
# @param int [Integer]
# @return [nil]
def write_int32(int)
write([int].pack("l>"))
end
# Writes a 64-bit integer to the IO object.
#
# @param int [Integer]
# @return [nil]
def write_int64(int)
write([int].pack("q>"))
end
# Writes an array to the IO object.
#
# Each item in the specified array will be yielded to the provided block;
# it's the responsibility of the block to write those items using the
# encoder.
#
# @param array [Array]
# @return [nil]
def write_array(array, &block)
if array.nil?
# An array can be null, which is different from it being empty.
write_int32(-1)
else
write_int32(array.size)
array.each(&block)
end
end
# Writes a string to the IO object.
#
# @param string [String]
# @return [nil]
def write_string(string)
if string.nil?
write_int16(-1)
else
write_int16(string.bytesize)
write(string)
end
end
# Writes a byte string to the IO object.
#
# @param bytes [String]
# @return [nil]
def write_bytes(bytes)
if bytes.nil?
write_int32(-1)
else
write_int32(bytes.bytesize)
write(bytes)
end
end
# Encodes an object into a new buffer.
#
# @param object [#encode] the object that will encode itself.
# @return [String] the encoded data.
def self.encode_with(object)
buffer = StringIO.new
encoder = new(buffer)
object.encode(encoder)
buffer.string
end
end
end
end