-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathhexdump.cr
44 lines (40 loc) · 1.36 KB
/
hexdump.cr
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
# IO object that prints an hexadecimal dump of all transferred data.
#
# Especially useful for debugging binary protocols on an IO, to understand
# better when and how data is sent or received.
#
# By default `IO::Hexdump` won't print anything; you must specify which of
# `read`, `write` or both you want to print.
#
# Example:
# ```
# require "io/hexdump"
# socket = IO::Memory.new("abc")
# io = IO::Hexdump.new(socket, output: STDERR, read: true)
# ```
#
# When data is read from *io* it will print something akin to the following on
# STDERR:
# ```text
# 00000000 50 52 49 20 2a 20 48 54 54 50 2f 32 2e 30 0d 0a PRI * HTTP/2.0..
# 00000010 0d 0a 53 4d 0d 0a 0d 0a ..SM....
# 00000000 00 00 00 04 ....
# 00000000 00 .
# 00000000 00 00 00 00 ....
# ```
class IO::Hexdump < IO
def initialize(@io : IO, @output : IO = STDERR, @read = false, @write = false)
end
def read(buf : Bytes) : Int32
@io.read(buf).tap do |read_bytes|
buf[0, read_bytes].hexdump(@output) if @read && read_bytes
end
end
def write(buf : Bytes) : Nil
return if buf.empty?
@io.write(buf).tap do
buf.hexdump(@output) if @write
end
end
delegate :peek, :close, :closed?, :flush, :tty?, :pos, :pos=, :seek, to: @io
end