Class: Qrack::Transport::Buffer
- Inherits:
-
Object
- Object
- Qrack::Transport::Buffer
- Defined in:
- lib/qrack/transport/buffer08.rb
Instance Attribute Summary collapse
-
#pos ⇒ Object
readonly
Returns the value of attribute pos.
Instance Method Summary collapse
- #<<(data) ⇒ Object
- #_read(size, pack = nil) ⇒ Object
- #_write(data, pack = nil) ⇒ Object
- #data ⇒ Object (also: #contents, #to_s)
- #empty? ⇒ Boolean
- #extract ⇒ Object
-
#initialize(data = '') ⇒ Buffer
constructor
A new instance of Buffer.
- #length ⇒ Object
- #read(*types) ⇒ Object
- #read_properties(*types) ⇒ Object
- #rewind ⇒ Object
- #write(type, data) ⇒ Object
Constructor Details
#initialize(data = '') ⇒ Buffer
Returns a new instance of Buffer.
17 18 19 20 |
# File 'lib/qrack/transport/buffer08.rb', line 17 def initialize data = '' @data = data @pos = 0 end |
Instance Attribute Details
#pos ⇒ Object (readonly)
Returns the value of attribute pos.
22 23 24 |
# File 'lib/qrack/transport/buffer08.rb', line 22 def pos @pos end |
Instance Method Details
#<<(data) ⇒ Object
30 31 32 33 |
# File 'lib/qrack/transport/buffer08.rb', line 30 def << data @data << data.to_s self end |
#_read(size, pack = nil) ⇒ Object
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
# File 'lib/qrack/transport/buffer08.rb', line 270 def _read(size, pack = nil) if @data.is_a?(Qrack::Client) raw = @data.read(size) return raw if raw.nil? or pack.nil? return raw.unpack(pack).first end if @pos + size > length raise Qrack::BufferOverflowError else data = @data[@pos,size] @data[@pos,size] = '' if pack data = data.unpack(pack) data = data.pop if data.size == 1 end data end end |
#_write(data, pack = nil) ⇒ Object
290 291 292 293 294 |
# File 'lib/qrack/transport/buffer08.rb', line 290 def _write data, pack = nil data = [*data].pack(pack) if pack @data[@pos,0] = data @pos += data.bytesize end |
#data ⇒ Object Also known as: contents, to_s
24 25 26 |
# File 'lib/qrack/transport/buffer08.rb', line 24 def data @data.clone end |
#empty? ⇒ Boolean
39 40 41 |
# File 'lib/qrack/transport/buffer08.rb', line 39 def empty? pos == length end |
#extract ⇒ Object
260 261 262 263 264 265 266 267 268 |
# File 'lib/qrack/transport/buffer08.rb', line 260 def extract begin cur_data, cur_pos = @data.clone, @pos yield self rescue Qrack::BufferOverflowError @data, @pos = cur_data, cur_pos nil end end |
#length ⇒ Object
35 36 37 |
# File 'lib/qrack/transport/buffer08.rb', line 35 def length @data.bytesize end |
#read(*types) ⇒ Object
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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/qrack/transport/buffer08.rb', line 84 def read *types if types.first == :properties return read_properties(*types) end values = types.map do |type| case type when :octet _read(1, 'C') when :short _read(2, 'n') when :long _read(4, 'N') when :longlong upper, lower = _read(8, 'NN') upper << 32 | lower when :shortstr _read read(:octet) when :longstr _read read(:long) when :timestamp Time.at read(:longlong) when :table t = Hash.new table = Buffer.new(read(:longstr)) until table.empty? key, type = table.read(:shortstr, :octet) key = key.intern t[key] ||= case type when 83 # 'S' table.read(:longstr) when 73 # 'I' table.read(:long) when 68 # 'D' exp = table.read(:octet) num = table.read(:long) num / 10.0**exp when 84 # 'T' table.read(:timestamp) when 70 # 'F' table.read(:table) when 65 # 'A' table.read(:array) when 108 # 'l' table.read(:longlong) when 116 # 't' table.read(:octet) end end t when :bit if (@bits ||= []).empty? val = read(:octet) @bits = (0..7).map{|i| (val & (1 << i)) != 0 } end @bits.shift when :array a = Array.new array = Buffer.new(read(:longstr)) until array.empty? type = array.read(:octet) a << case type when 70 # 'F' array.read(:table) end end a else raise Qrack::InvalidTypeError, "Cannot read data of type #{type}" end end types.size == 1 ? values.first : values end |
#read_properties(*types) ⇒ Object
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 |
# File 'lib/qrack/transport/buffer08.rb', line 47 def read_properties *types types.shift if types.first == :properties i = 0 values = [] while props = read(:short) (0..14).each do |n| # no more property types break unless types[i] # if flag is set if props & (1<<(15-n)) != 0 if types[i] == :bit # bit values exist in flags only values << true else # save type name for later reading values << types[i] end else # property not set or is false bit values << (types[i] == :bit ? false : nil) end i+=1 end # bit(0) == 0 means no more property flags break unless props & 1 == 1 end values.map do |value| value.is_a?(Symbol) ? read(value) : value end end |
#rewind ⇒ Object
43 44 45 |
# File 'lib/qrack/transport/buffer08.rb', line 43 def rewind @pos = 0 end |
#write(type, data) ⇒ Object
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
# File 'lib/qrack/transport/buffer08.rb', line 164 def write type, data case type when :octet _write(data, 'C') when :short _write(data, 'n') when :long _write(data, 'N') when :longlong lower = data & 0xffffffff upper = (data & ~0xffffffff) >> 32 _write([upper, lower], 'NN') when :shortstr data = (data || '').to_s _write([data.bytesize, data], 'Ca*') when :longstr if data.is_a? Hash write(:table, data) else data = (data || '').to_s _write([data.bytesize, data], 'Na*') end when :timestamp write(:longlong, data.to_i) when :table data ||= {} write :longstr, (data.inject(Buffer.new) do |table, (key, value)| table.write(:shortstr, key.to_s) case value when String table.write(:octet, 83) # 'S' table.write(:longstr, value.to_s) when Fixnum table.write(:octet, 73) # 'I' table.write(:long, value) when Float table.write(:octet, 68) # 'D' # XXX there's gotta be a better way to do this.. exp = value.to_s.split('.').last.bytesize num = value * 10**exp table.write(:octet, exp) table.write(:long, num) when Time table.write(:octet, 84) # 'T' table.write(:timestamp, value) when Hash table.write(:octet, 70) # 'F' table.write(:table, value) end table end) when :bit [*data].to_enum(:each_slice, 8).each{|bits| write(:octet, bits.enum_with_index.inject(0){ |byte, (bit, i)| byte |= (1 << i) if bit byte }) } when :properties values = [] data.enum_with_index.inject(0) do |short, ((type, value), i)| n = i % 15 last = i+1 == data.size if (n == 0 and i != 0) or last if data.size > i+1 short |= (1 << 0) elsif last and value values << [type,value] short |= 1<<(15-n) end write(:short, short) short = 0 end if value and !last values << [type,value] short |= 1<<(15-n) end short end values.each do |type, value| write(type, value) unless type == :bit end else raise Qrack::InvalidTypeError, "Cannot write data of type #{type}" end self end |