You are looking at historical revision 16160 of this page. It may differ significantly from its current revision.

remote-mailbox

Documentation

Purports to provide an API for sending and receiving remote messages. This egg attempts to duplicate the mailbox egg semantics across an IP connection.

Common Parameters

default-remote-mailbox-tcp-port

[procedure] (default-remote-mailbox-tcp-port [TCP-PORT])

The standard port number to establish a remote mailbox connection. Defaults to 63001.

default-remote-mailbox-hostname

[procedure] (default-remote-mailbox-hostname [HOST-NHAME])

The host name to establish a remote mailbox connection. Defaults to "localhost".

Client

(require-extension remote-mailbox-client)

default-remote-mailbox-serializer

[procedure] (default-remote-mailbox-serializer [PROCEDURE])

The optional serialize failure handler procedure. Must be #f or an procedure/1.

default-remote-mailbox-connect

[procedure] (default-remote-mailbox-connect [PROCEDURE])

The procedure used to establish network connections for a remote mailbox. Defaults to tcp-connect and must be signature-compatible.

remote-mailbox

[procedure] (remote-mailbox NAME [#:hostname HOSTNAME] [#:tcp-port TCP-PORT] [#:connect CONNECT])

Returns a unique remote-mailbox object for the specified NAME.

HOSTNAME
A string. Defaults to (default-remote-mailbox-tcp-port).
TCP-PORT
A fixnum in [0 65535] or #f. Defaults to (default-remote-mailbox-hostname).
CONNECT
A procedure. Defaults to (default-remote-mailbox-connect).

When TCP-PORT is #f the HOSTNAME must contain the port or service.

remote-mailbox?

[procedure] (remote-mailbox? OBJECT)

Is the OBJECT a valid remote-mailbox?

remote-mailbox-name

[procedure] (remote-mailbox-name REMOTE-MAILBOX)

Returns the REMOTE-MAILBOX name.

default-remote-mailbox-hostname

[procedure] (default-remote-mailbox-hostname REMOTE-MAILBOX)

Returns the REMOTE-MAILBOX hostname.

remote-mailbox-tcp-port

[procedure] (remote-mailbox-tcp-port REMOTE-MAILBOX)

Returns the REMOTE-MAILBOX tcp-port.

remote-mailbox-connected?

[procedure] (remote-mailbox-connected? REMOTE-MAILBOX)

Is the REMOTE-MAILBOX connected? (Has it been used?)

remote-mailbox-send!

[procedure] (remote-mailbox-send! REMOTE-MAILBOX OBJECT [SERIALIZER])

Transmit the OBJECT to the REMOTE-MAILBOX, using the SERIALIZER, which defaults to (default-remote-mailbox-serializer).

drop-remote-mailbox!

[procedure] (drop-remote-mailbox! REMOTE-MAILBOX)

Invalidate and forget the REMOTE-MAILBOX.

drop-all-remote-mailboxes

[procedure] (drop-remote-mailboxes!)

Invalidate and forget all the remote mailboxes. Performs a reset to the initial state.

Server

(require-extension remote-mailbox-server)

default-remote-mailbox-deserializer

[procedure] (default-remote-mailbox-deserializer [PROCEDURE])

The optional deserialize failure handler procedure. Must be #f or a procedure/2.

default-remote-mailbox-listen

[procedure] (default-remote-mailbox-listen [PROCEDURE])

The procedure used to establish network connections for a remote mailbox. Defaults to tcp-listen and must be signature-compatible.

default-remote-mailbox-auto-create?

[procedure] (default-remote-mailbox-auto-create? [AUTO-CREATE?])

Automatically create local-mailbox? Defaults to #t.

make-remote-mailbox-server

[procedure] (make-remote-mailbox-server [#:name NAME] [#:tcp-port TCP-PORT] [#:listen LISTEN] [#:request-limit REQUEST-LIMIT] [#:deserializer DESERIALIZER] [#:auto-create? AUTO-CREATE?] [#:debug DEBUG])

Creates and returns a remote-mailbox-server. Uses make-tcp-server to create a server procedure. The server threads spawned by this procedure are continuously processing remote mailbox sends until the connection is closed.)

NAME
Defaults to remote-mailbox-server:#
TCP-PORT
Defaults to (default-remote-mailbox-tcp-port)
LISTEN
Defaults to (default-remote-mailbox-listen)
DESERIALIZER
Defaults to (default-remote-mailbox-deserializer)
REQUEST-LIMIT
The tcp-server upper limit for currently executing requests. Defaults to 10000.
AUTO-CREATE?
Automatically create local-mailbox. Defaults to #t
DEBUG
Print tcp diagnostics with DEBUG prefix when truw. Defaults to #f

make-remote-mailbox-server-thread

[procedure] (make-remote-mailbox-server-thread REMOTE-MAILBOX-SERVER)

Returns a thread that, when started, will run the REMOTE-MAILBOX-SERVER.

remote-mailbox-server?

[procedure] (remote-mailbox-server? OBJECT)

Is the OBJECT a remote-mailbox-server?

remote-mailbox-server-name

[procedure] (remote-mailbox-server-name REMOTE-MAILBOX-SERVER)

Returns the name of the specified REMOTE-MAILBOX-SERVER.

remote-mailbox-server-auto-create?

[procedure] (remote-mailbox-server-auto-create? REMOTE-MAILBOX-SERVER)

remote-mailbox-server-deserializer

[procedure] (remote-mailbox-server-deserializer REMOTE-MAILBOX-SERVER)

remote-mailbox-server-listener

[procedure] (remote-mailbox-server-listener REMOTE-MAILBOX-SERVER)

Returns the listener object for the specified REMOTE-MAILBOX-SERVER.

remote-mailbox-server-request-limit

[procedure] (remote-mailbox-server-request-limit REMOTE-MAILBOX-SERVER)

remote-mailbox-server-debug

[procedure] (remote-mailbox-server-debug REMOTE-MAILBOX-SERVER)

remote-mailbox-server-start!

[procedure] (remote-mailbox-server-start! REMOTE-MAILBOX-SERVER)

Starts the server in a thread continuously processing remote mailbox sends until the connection is closed.

Returns the started thread.

remote-mailbox-server-run!

[procedure] (remote-mailbox-server-run! REMOTE-MAILBOX-SERVER)

Starts the server continuously processing remote mailbox sends until the connection is closed.

local-mailbox/server

[procedure] (local-mailbox/server REMOTE-MAILBOX-SERVER NAME)

Returns the mailbox of NAME for REMOTE-MAILBOX-SERVER (a mailbox object as returned by the procedure make-mailbox). Returns #f should the mailbox not exist.

Should the mailbox not exist it will be created if the REMOTE-MAILBOX-SERVER has a true AUTO-CREATE? flag.

To receive remote messages:

(mailbox-receive! (local-mailbox/server REMOTE-MAILBOX-SERVER NAME))
<enscript>

==== drop-local-mailbox!/server

<procedure>(drop-local-mailbox!/server REMOTE-MAILBOX-SERVER NAME)</procedure>

Forget the server's mailbox.

==== local-mailbox-names/server

<procedure>(local-mailbox-names/server REMOTE-MAILBOX-SERVER)</procedure>

Returns a list of all the mailboxes created for the server.

==== local-mailbox

<procedure>(local-mailbox NAME [DEBUG])</procedure>

This is a convenience interface and only recommended for the simplest of
situations.

When {{NAME}} is:

; default-remote-mailbox-server-thread : returns the thread for the default server.
; default-remote-mailbox-server : returns the default server record.
; <other symbol> : returns the mailbox for {{NAME}}.

The {{DEBUG}} argument is passed on to {{tcp-server}} which will print tcp
diagnostics with {{DEBUG}} as a prefix. The other parameters to
{{make-remote-mailbox-server}} are defaulted.

The default server is created and run in a separate thread upon the first call.

To receive remote messages:
<enscript language=scheme>
(mailbox-receive! (local-mailbox NAME))

local-mailbox-start!

[procedure] (local-mailbox-start! [DEBUG])

What local-mailbox does upon the first invocation.

local-mailbox-server

[procedure] (local-mailbox-server) => REMOTE-MAILBOX-SERVER

The remote-mailbox-server object for local-mailbox.

local-mailbox-thread

[procedure] (local-mailbox-thread) => THREAD

The thread object for local-mailbox.

Usage

Examples

Notes

Requirements

tcp-server s11n mailbox miscmacros synch lookup-table type-errors

Bugs and Limitations

Author

kon lovett

Version history

2.0.0
Initial Chicken 4 release.

License

Copyright (C) 2009 Kon Lovett. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ASIS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.