Crystal bindings: (typed|untyped) message serialization.

master
Philippe Pittoli 2023-02-01 11:08:05 +01:00
parent 7904d5eef6
commit d2ab260255
1 changed files with 56 additions and 12 deletions

View File

@ -1,25 +1,69 @@
# TODO:
# TODO: tests.
# Serialization (and deserialization) doesn't refer to IPC format.
# IPC serialization format: 'length + value'
# IPCMessage serialization: 'value'
# 'Value' is:
# - simply the message payload for UntypedMessage
# - type (u8) + payload for TypedMessage
module IPCMessage
class UntypedMessage
@fd : Int32
@payload : Bytes
def initialize(@fd, string : String)
property payload : Bytes
def initialize(string : String)
@payload = Bytes.new string.to_unsafe, string.size
end
def initialize(@fd, @payload)
def initialize(@payload)
end
def self.deserialize(payload) : UntypedMessage
IPCMessage::UntypedMessage.new payload
end
def serialize
@payload
end
end
# WARNING: you can only have up to 256 types.
class TypedMessage < UntypedMessage
@type : UInt8? = nil
def initialize(fd, @type, string : String)
super fd, string
property type : UInt8? = nil
def initialize(@type, string : String)
super string
end
def initialize(fd, @type, payload)
super fd, payload
def initialize(@type, payload)
super payload
end
def initialize(fd, payload)
super fd, payload
def initialize(payload)
super payload
end
def self.deserialize(bytes : Bytes) : TypedMessage?
if bytes.size == 0
nil
else
type = bytes[0]
IPCMessage::TypedMessage.new type, bytes[1..]
end
end
def serialize
bytes = Bytes.new (1 + @payload.size)
type = @type
bytes[0] = type.nil? ? 0 : type
bytes[1..].copy_from @payload
bytes
end
end
end
# Send both typed and untyped messages.
class IPC
def schedule(fd : Int32, m : (IPCMessage::TypedMessage | IPCMessage::UntypedMessage))
payload = m.serialize
schedule fd, payload, payload.size
end
def write(fd : Int32, m : (IPCMessage::TypedMessage | IPCMessage::UntypedMessage))
payload = m.serialize
write fd, payload, payload.size
end
end