Module: Twilic::Core::InteropFixtures
- Defined in:
- lib/twilic/core/interop_fixtures.rb
Defined Under Namespace
Classes: InteropFrame
Class Method Summary collapse
- .assert_interop_codec_decode(codec, label, frame) ⇒ Object
- .assert_interop_session_decode(codec, label, frame) ⇒ Object
- .decode_interop_hex(hex) ⇒ Object
- .emit_interop_fixtures(out) ⇒ Object
- .emit_interop_frame(out, stream, label, bytes) ⇒ Object
- .emit_interop_message(out, stream, label, codec, message) ⇒ Object
- .emit_interop_value(out, stream, label, codec, value) ⇒ Object
- .interop_bitpack_control_payload ⇒ Object
- .interop_expect_codec_value(label) ⇒ Object
- .interop_expect_codec_value?(label) ⇒ Boolean
- .interop_expect_control_payload(label) ⇒ Object
- .interop_expect_control_payload?(label) ⇒ Boolean
- .interop_expect_control_stream_codec(label) ⇒ Object
- .interop_fse_control_payload ⇒ Object
- .interop_hex_nibble(ch) ⇒ Object
- .interop_huffman_control_payload ⇒ Object
- .interop_id_name_map(id, name) ⇒ Object
- .interop_id_name_role_map(id, name, role) ⇒ Object
- .interop_make_i64_array(length, start) ⇒ Object
- .interop_make_user_rows(names) ⇒ Object
- .parse_interop_frame_line(line) ⇒ Object
- .parse_interop_frames(input) ⇒ Object
- .replay_codec_state(frames, stop_label) ⇒ Object
- .reset_encode_shape_observation(codec, keys) ⇒ Object
Class Method Details
.assert_interop_codec_decode(codec, label, frame) ⇒ Object
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 259 260 261 262 263 264 265 266 267 |
# File 'lib/twilic/core/interop_fixtures.rb', line 233 def assert_interop_codec_decode(codec, label, frame) case label when "base_snapshot" msg = codec.(frame) raise "expected base snapshot message" unless msg.kind == Model::MessageKind::BASE_SNAPSHOT && msg.base_snapshot raise "base_id: got #{msg.base_snapshot.base_id} want 77" unless msg.base_snapshot.base_id == 77 payload = msg.base_snapshot.payload unless payload.kind == Model::MessageKind::SCALAR && payload.scalar&.kind == Model::ValueKind::I64 && payload.scalar.i64 == 42 raise "base snapshot payload mismatch" end return end _payload, ok = interop_expect_control_payload(label) if ok msg = codec.(frame) raise "expected control stream message" unless msg.kind == Model::MessageKind::CONTROL_STREAM && msg.control_stream raise "control stream payload empty for #{label}" if msg.control_stream.payload.empty? want_codec, codec_ok = interop_expect_control_stream_codec(label) if codec_ok && msg.control_stream.codec != want_codec raise "control stream codec mismatch for #{label}" end return end expected, ok = interop_expect_codec_value(label) raise "no codec expectation for label #{label.inspect}" unless ok got = codec.decode_value(frame) raise "decoded value mismatch for #{label}" unless Model.equal(got, expected) end |
.assert_interop_session_decode(codec, label, frame) ⇒ Object
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
# File 'lib/twilic/core/interop_fixtures.rb', line 269 def assert_interop_session_decode(codec, label, frame) case label when "session_base_array" got = codec.decode_value(frame) want = Model.array_value(interop_make_i64_array(100, 0)) raise "session_base_array value mismatch" unless Model.equal(got, want) when "session_patch_one_change" msg = codec.(frame) want_arr = interop_make_i64_array(100, 0) want_arr[0] = Model.i64_value(10_000) want = Model.array_value(want_arr) case msg.kind when Model::MessageKind::STATE_PATCH return when Model::MessageKind::TYPED_VECTOR raise "session_patch_one_change: missing typed vector" unless msg.typed_vector got = Protocol.send(:typed_vector_to_value, msg.typed_vector) raise "session_patch_one_change typed vector mismatch" unless Model.equal(got, want) when Model::MessageKind::ARRAY got = Model.array_value(msg.array) raise "session_patch_one_change array mismatch" unless Model.equal(got, want) else raise "session_patch_one_change: unexpected kind #{msg.kind}" end when "session_patch_many_changes", "session_micro_batch_first", "session_micro_batch_second" msg = codec.(frame) case label when "session_patch_many_changes" unless [Model::MessageKind::STATE_PATCH, Model::MessageKind::TYPED_VECTOR, Model::MessageKind::ARRAY].include?(msg.kind) raise "expected patch or array message, got #{msg.kind}" end when "session_micro_batch_first", "session_micro_batch_second" unless msg.kind == Model::MessageKind::TEMPLATE_BATCH && msg.template_batch raise "expected template batch message, got #{msg.kind}" end raise "expected 4 rows, got #{msg.template_batch.count}" unless msg.template_batch.count == 4 end else if label.start_with?("session_patch_iter_") msg = codec.(frame) unless [Model::MessageKind::STATE_PATCH, Model::MessageKind::TYPED_VECTOR, Model::MessageKind::ARRAY].include?(msg.kind) raise "#{label}: expected patch or array message, got #{msg.kind}" end return end raise "no session expectation for label #{label.inspect}" end end |
.decode_interop_hex(hex) ⇒ Object
169 170 171 172 173 174 175 |
# File 'lib/twilic/core/interop_fixtures.rb', line 169 def decode_interop_hex(hex) raise "invalid hex length" unless hex.length.even? hex.chars.each_slice(2).map do |hi, lo| (interop_hex_nibble(hi) << 4) | interop_hex_nibble(lo) end.pack("C*") end |
.emit_interop_fixtures(out) ⇒ Object
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 |
# File 'lib/twilic/core/interop_fixtures.rb', line 52 def emit_interop_fixtures(out) codec = Protocol::TwilicCodec.new alpha = Model.string_value("alpha") emit_interop_value(out, "codec", "scalar_string", codec, alpha) map_two = interop_id_name_map(1, "alice") emit_interop_value(out, "codec", "map_two_fields_first", codec, map_two) reset_encode_shape_observation(codec, %w[id name]) emit_interop_value(out, "codec", "map_two_fields_second", codec, map_two) map_three = interop_id_name_role_map(1, "alice", "admin") emit_interop_value(out, "codec", "map_three_fields_first", codec, map_three) reset_encode_shape_observation(codec, %w[id name role]) emit_interop_value(out, "codec", "map_three_fields_second", codec, map_three) 8.times do |i| dynamic = interop_id_name_map(10 + i, "user-#{i}") emit_interop_value(out, "codec", "bulk_map_#{i}", codec, dynamic) end scalar = Model.i64_value(42) base_snapshot = Model.( kind: Model::MessageKind::BASE_SNAPSHOT, base_snapshot: Model::BaseSnapshotMessage.new( base_id: 77, schema_or_shape_ref: 0, payload: Model.(kind: Model::MessageKind::SCALAR, scalar: scalar) ) ) (out, "codec", "base_snapshot", codec, base_snapshot) enc = Protocol::SessionEncoder.new(Session::SessionOptions.default) base_array = Model.array_value(interop_make_i64_array(100, 0)) base_bytes = enc.encode(base_array) emit_interop_frame(out, "session", "session_base_array", base_bytes) one_change_arr = interop_make_i64_array(100, 0) one_change_arr[0] = Model.i64_value(10_000) one_change = Model.array_value(one_change_arr) one_patch = enc.encode_patch(one_change) emit_interop_frame(out, "session", "session_patch_one_change", one_patch) 4.times do |step| iter_arr = interop_make_i64_array(100, 0) iter_arr[step] = Model.i64_value(20_000 + step) iterative = Model.array_value(iter_arr) bytes = enc.encode_patch(iterative) emit_interop_frame(out, "session", "session_patch_iter_#{step}", bytes) end many_arr = interop_make_i64_array(100, 0) 12.times { |idx| many_arr[idx] = Model.i64_value(10_000 + idx) } many_change = Model.array_value(many_arr) many_patch = enc.encode_patch(many_change) emit_interop_frame(out, "session", "session_patch_many_changes", many_patch) rows1 = interop_make_user_rows(%w[a b c d]) micro_first = enc.encode_micro_batch(rows1) emit_interop_frame(out, "session", "session_micro_batch_first", micro_first) rows2 = interop_make_user_rows(%w[aa bb cc dd]) micro_second = enc.encode_micro_batch(rows2) emit_interop_frame(out, "session", "session_micro_batch_second", micro_second) end |
.emit_interop_frame(out, stream, label, bytes) ⇒ Object
128 129 130 131 132 133 134 135 136 137 |
# File 'lib/twilic/core/interop_fixtures.rb', line 128 def emit_interop_frame(out, stream, label, bytes) hex = "0123456789abcdef" encoded = bytes.each_byte.map { |b| hex[b >> 4] + hex[b & 0x0f] }.join frame = "#{stream}|#{label}|#{encoded}\n" if out.respond_to?(:<<) out << frame else out.write(frame) end end |
.emit_interop_message(out, stream, label, codec, message) ⇒ Object
123 124 125 126 |
# File 'lib/twilic/core/interop_fixtures.rb', line 123 def (out, stream, label, codec, ) bytes = codec.() emit_interop_frame(out, stream, label, bytes) end |
.emit_interop_value(out, stream, label, codec, value) ⇒ Object
118 119 120 121 |
# File 'lib/twilic/core/interop_fixtures.rb', line 118 def emit_interop_value(out, stream, label, codec, value) bytes = codec.encode_value(value) emit_interop_frame(out, stream, label, bytes) end |
.interop_bitpack_control_payload ⇒ Object
35 36 37 |
# File 'lib/twilic/core/interop_fixtures.rb', line 35 def interop_bitpack_control_payload Array.new(512) { |i| i.even? ? 0 : 1 }.pack("C*") end |
.interop_expect_codec_value(label) ⇒ Object
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'lib/twilic/core/interop_fixtures.rb', line 187 def interop_expect_codec_value(label) case label when "scalar_string" [Model.string_value("alpha"), true] else if label.start_with?("map_two_fields_") [interop_id_name_map(1, "alice"), true] elsif label.start_with?("map_three_fields_") [interop_id_name_role_map(1, "alice", "admin"), true] elsif label.start_with?("bulk_map_") idx = label.delete_prefix("bulk_map_").to_i [interop_id_name_map(10 + idx, "user-#{idx}"), true] else [nil, false] end end end |
.interop_expect_codec_value?(label) ⇒ Boolean
205 206 207 |
# File 'lib/twilic/core/interop_fixtures.rb', line 205 def interop_expect_codec_value?(label) interop_expect_codec_value(label)[1] end |
.interop_expect_control_payload(label) ⇒ Object
219 220 221 222 223 224 225 226 227 |
# File 'lib/twilic/core/interop_fixtures.rb', line 219 def interop_expect_control_payload(label) case label when "control_stream_bitpack" then [interop_bitpack_control_payload, true] when "control_stream_huffman" then [interop_huffman_control_payload, true] when "control_stream_fse" then [interop_fse_control_payload, true] else [nil, false] end end |
.interop_expect_control_payload?(label) ⇒ Boolean
229 230 231 |
# File 'lib/twilic/core/interop_fixtures.rb', line 229 def interop_expect_control_payload?(label) interop_expect_control_payload(label)[1] end |
.interop_expect_control_stream_codec(label) ⇒ Object
209 210 211 212 213 214 215 216 217 |
# File 'lib/twilic/core/interop_fixtures.rb', line 209 def interop_expect_control_stream_codec(label) case label when "control_stream_bitpack" then [Model::ControlStreamCodec::BITPACK, true] when "control_stream_huffman" then [Model::ControlStreamCodec::HUFFMAN, true] when "control_stream_fse" then [Model::ControlStreamCodec::FSE, true] else [nil, false] end end |
.interop_fse_control_payload ⇒ Object
43 44 45 |
# File 'lib/twilic/core/interop_fixtures.rb', line 43 def interop_fse_control_payload Array.new(512) { |i| i % 4 }.pack("C*") end |
.interop_hex_nibble(ch) ⇒ Object
177 178 179 180 181 182 183 184 185 |
# File 'lib/twilic/core/interop_fixtures.rb', line 177 def interop_hex_nibble(ch) case ch when "0".."9" then ch.ord - "0".ord when "a".."f" then ch.ord - "a".ord + 10 when "A".."F" then ch.ord - "A".ord + 10 else raise "invalid hex" end end |
.interop_huffman_control_payload ⇒ Object
39 40 41 |
# File 'lib/twilic/core/interop_fixtures.rb', line 39 def interop_huffman_control_payload Array.new(512, 7).pack("C*") end |
.interop_id_name_map(id, name) ⇒ Object
13 14 15 |
# File 'lib/twilic/core/interop_fixtures.rb', line 13 def interop_id_name_map(id, name) Model.map_value("id" => Model.u64_value(id), "name" => Model.string_value(name)) end |
.interop_id_name_role_map(id, name, role) ⇒ Object
17 18 19 20 21 22 23 |
# File 'lib/twilic/core/interop_fixtures.rb', line 17 def interop_id_name_role_map(id, name, role) Model.map_value( "id" => Model.u64_value(id), "name" => Model.string_value(name), "role" => Model.string_value(role) ) end |
.interop_make_i64_array(length, start) ⇒ Object
25 26 27 |
# File 'lib/twilic/core/interop_fixtures.rb', line 25 def interop_make_i64_array(length, start) Array.new(length) { |i| Model.i64_value(start + i) } end |
.interop_make_user_rows(names) ⇒ Object
29 30 31 32 33 |
# File 'lib/twilic/core/interop_fixtures.rb', line 29 def interop_make_user_rows(names) names.each_with_index.map do |name, i| Model.map_value("id" => Model.u64_value(i + 1), "name" => Model.string_value(name)) end end |
.parse_interop_frame_line(line) ⇒ Object
158 159 160 161 162 163 164 165 166 167 |
# File 'lib/twilic/core/interop_fixtures.rb', line 158 def parse_interop_frame_line(line) first = line.index("|") raise "invalid frame" if first.nil? || first <= 0 rest = line[(first + 1)..] second = rest.index("|") raise "invalid frame" if second.nil? || second <= 0 [line[0...first], rest[0...second], rest[(second + 1)..]] end |
.parse_interop_frames(input) ⇒ Object
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'lib/twilic/core/interop_fixtures.rb', line 139 def parse_interop_frames(input) frames = [] input.each_line.with_index do |raw_line, line_no| line = raw_line.strip next if line.empty? begin stream, label, hex = parse_interop_frame_line(line) bytes = decode_interop_hex(hex) frames << InteropFrame.new(stream: stream, label: label, hex: hex, bytes: bytes) rescue StandardError => e raise "line #{line_no + 1}: #{e.}" end end raise "no fixture frames found" if frames.empty? frames end |
.replay_codec_state(frames, stop_label) ⇒ Object
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 |
# File 'lib/twilic/core/interop_fixtures.rb', line 321 def replay_codec_state(frames, stop_label) iso = Protocol::TwilicCodec.new frames.each do |prior| next unless prior.stream == "codec" break if prior.label == stop_label _payload, ok = interop_expect_control_payload(prior.label) if ok || prior.label == "base_snapshot" iso.(prior.bytes) next end _expected, value_ok = interop_expect_codec_value(prior.label) iso.decode_value(prior.bytes) if value_ok end iso end |
.reset_encode_shape_observation(codec, keys) ⇒ Object
47 48 49 50 |
# File 'lib/twilic/core/interop_fixtures.rb', line 47 def reset_encode_shape_observation(codec, keys) key = codec.shape_key(keys) codec.state.encode_shape_observations.delete(key) end |