Home › One-to-many communication with sockets. tcllib
multiplexer
One-to-many communication with sockets.
literal type exactly as shown
argument replace with your value
?optional? may be omitted
Synopsis#
package require Tcl 8.5 9
package require logger
package require multiplexer ?0.3?
::multiplexer::create
${multiplexer_instance}::Init port
${multiplexer_instance}::Config key value
${multiplexer_instance}::AddFilter cmdprefix
cmdprefix data chan clientaddress clientport
${multiplexer_instance}::AddAccessFilter cmdprefix
cmdprefix chan clientaddress clientport
${multiplexer_instance}::AddExitFilter cmdprefix
cmdprefix chan clientaddress clientport
Description#
The multiplexer package provides a generic system for one-to-many communication utilizing sockets. For example, think of a chat system where one user sends a message which is then broadcast to all the other connected users.
It is possible to have different multiplexers running concurrently.
::multiplexer::create#-
The
createcommand creates a new multiplexer 'instance'. For example:set mp [::multiplexer::create]This instance can then be manipulated like so:
${mp}::Init 35100 ${multiplexer_instance}::Initport#-
This starts the multiplexer listening on the specified port.
${multiplexer_instance}::Configkey value#-
Use
Configto configure the multiplexer instance. Configuration options currently include: ${multiplexer_instance}::AddFiltercmdprefix#-
Command to add a filter for data that passes through the multiplexer instance. The registered cmdprefix is called when data arrives at a multiplexer instance. If there is more than one filter command registered at the instance they will be called in the order of registristation, and each filter will get the result of the preceding filter as its argument. The first filter gets the incoming data as its argument. The result returned by the last filter is the data which will be broadcast to all clients of the multiplexer instance. The command prefix is called as
cmdprefixdata chan clientaddress clientport#-
Takes the incoming data, modifies it, and returns that as its result. The last three arguments contain information about the client which sent the data to filter: The channel connecting us to the client, its ip-address, and its ip-port.
${multiplexer_instance}::AddAccessFiltercmdprefix#-
Command to add an access filter. The registered cmdprefix is called when a new client socket tries to connect to the multixer instance. If there is more than one access filter command registered at the instance they will be called in the order of registristation. If any of the called commands returns
-1the access to the multiplexer instance is denied and the client channel is closed immediately. Any other result grants the client access to the multiplexer instance. The command prefix is called ascmdprefixchan clientaddress clientport#-
The arguments contain information about the client which tries to connected to the instance: The channel connecting us to the client, its ip-address, and its ip-port.
${multiplexer_instance}::AddExitFiltercmdprefix#-
Adds filter to be run when client socket generates an EOF condition. The registered cmdprefix is called when a client socket of the multixer signals EOF. If there is more than one exit filter command registered at the instance they will be called in the order of registristation. Errors thrown by an exit filter are ignored, but logged. Any result returned by an exit filter is ignored. The command prefix is called as
cmdprefixchan clientaddress clientport#-
The arguments contain information about the client which signaled the EOF: The channel connecting us to the client, its ip-address, and its ip-port.
Bugs, ideas, feedback#
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category multiplexer of the Tcllib Trackers [http://core.tcl.tk/tcllib/reportlist]. Please also report any ideas for enhancements you may have for either package and/or documentation.
When proposing code changes, please provide unified diffs, i.e the output of diff -u.
Note further that attachments are strongly preferred over inlined patches. Attachments can be made by going to the Edit form of the ticket immediately after its creation, and then using the left-most button in the secondary navigation bar.
Category#
Programming tools