module Hydra #:nodoc: # Module that implemets methods that auto-serialize and deserialize messaging # objects. module MessagingIO # Read a Message from the input IO object. Automatically build # a message from the response and return it. # # IO.gets # => Hydra::Message # or subclass def gets raise IOError unless @reader message = @reader.gets return nil unless message return Message.build(eval(message.chomp)) end # Write a Message to the output IO object. It will automatically # serialize a Message object. # IO.write Hydra::Message.new def write(message) raise IOError unless @writer raise UnprocessableMessage unless message.is_a?(Hydra::Message) @writer.write(message.serialize+"\n") rescue Errno::EPIPE raise IOError end # Closes the IO object. def close @reader.close if @reader @writer.close if @writer end # IO will return this error if it cannot process a message. # For example, if you tried to write a string, it would fail, # because the string is not a message. class UnprocessableMessage < RuntimeError # Custom error message attr_accessor :message end end end