Sha256: 5091b030f523d99ad5aa1abc92c832633a2ab6cac9c616971efddafd70925f7e

Contents?: true

Size: 1.5 KB

Versions: 1

Compression:

Stored size: 1.5 KB

Contents

module DCell
  # A proxy object for a mailbox that delivers messages to the real mailbox on
  # a remote node on a server far, far away...
  class MailboxProxy
    class InvalidNodeError < StandardError; end

    def initialize(node_id, mailbox_id)
      raise ArgumentError, "no mailbox_id given" unless mailbox_id
     
      @node_id = node_id
      @node = Node[node_id]
      raise ArgumentError, "invalid node_id given" unless @node
      
      @mailbox_id = mailbox_id
    end

    # name@host style address
    def address
      "#{@mailbox_id}@#{@node_id}"
    end

    def inspect
      "#<DCell::MailboxProxy:0x#{object_id.to_s(16)} #{address}>"
    end

    # Send a message to the mailbox
    def <<(message)
      @node.send_message! Message::Relay.new(self, message)
    end

    # Is the remote mailbox still alive?
    def alive?
      true # FIXME: hax!
    end

    # Custom marshaller for compatibility with Celluloid::Mailbox marshalling
    def _dump(level)
      "#{@mailbox_id}@#{@node_id}"
    end

    # Loader for custom marshal format
    def self._load(string)
      mailbox_id, node_id = string.split("@")

      if DCell.id == node_id
        # If we're on the local node, find the real mailbox
        mailbox = DCell::Router.find mailbox_id
        raise "tried to unmarshal dead Celluloid::Mailbox: #{mailbox_id}" unless mailbox
        mailbox
      else
        # Create a proxy to the mailbox on the remote node
        DCell::MailboxProxy.new(node_id, mailbox_id)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dcell-0.12.0.pre lib/dcell/mailbox_proxy.rb