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
|
# File 'lib/aerospike/command/touch_command.rb', line 41
def parse_result
begin
@conn.read(@data_buffer, 8)
rescue => e
Aerospike.logger.error("parse result error: #{e}")
raise e
end
compressed_sz = compressed_size
if compressed_sz
begin
@conn.read(@data_buffer, 8)
@conn.read(@data_buffer, sz - 8)
uncompressed = Zlib.inflate(@data_buffer.buf)
@data_buffer = Buffer.new(-1, uncompressed)
rescue => e
Aerospike.logger.error("parse result error: #{e}")
raise e
end
else
begin
bytes_read = @conn.read(@data_buffer, MSG_TOTAL_HEADER_SIZE - 8, 8)
rescue => e
Aerospike.logger.error("parse result error: #{e}")
raise e
end
end
result_code = @data_buffer.read(13).ord & 0xFF
return if result_code == 0
if result_code == Aerospike::ResultCode::FILTERED_OUT
if @policy.fail_on_filtered_out
raise Aerospike::Exceptions::Aerospike.new(result_code, nil, [@node])
end
return
end
raise Aerospike::Exceptions::Aerospike.new(result_code, nil, [@node])
end
|