The package implements new kind of GAP input-output streams, called input-output TCP streams. Such streams are based on the functionality for the TCP/IP protocol usage provided by the GAP package IO, and may constitute an independent interest for GAP users.
Input-output TCP streams are intended to support all operations, implemented for streams in GAP. It is assumed that all existing code using streams should work with this kind of streams as well (please let us know, if you will notice that this is not the case!). We installed methods for input-output TCP streams to support the following operations: ViewObj
, PrintObj
, ReadByte
, ReadLine
, ReadAll
, WriteByte
, WriteLine
, WriteAll
, IsEndOfStream
, CloseStream
, FileDescriptorOfStream
, UNIXSelect
.
> IsInputOutputTCPStream | ( filter ) |
IsInputOutputTCPStream
is a subcategory of IsInputOutputStream
. Streams in the category IsInputOutputTCPStream
are created with the help of the function InputOutputTCPStream
(3.1-4) with one or two arguments dependently on whether they will be used in the client or server mode. Examples of their creation and usage will be given in subsequent sections.
> IsInputOutputTCPStreamRep | ( filter ) |
This is the representation that is used for streams in the category IsInputOutputTCPStream
.
> InputOutputTCPStream ( socket_descriptor ) | ( function ) |
Returns: stream
Returns a stream in the category IsInputOutputTCPStream
for the given socket descriptor that will be used to accept incoming connections. An example demonstrating this will be given after the next section.
However, the service provider much likely will create such stream automatically inside the function RunSCSCPserver
(5.2-1) rather then manually.
> InputOutputTCPStream ( hostname, port ) | ( function ) |
Returns: stream
Returns a stream in the category IsInputOutputTCPStream
that will be used by the client for communication with the specified server and port.
The following example demonstrates an interaction between client and server using input-output TCP stream, and shows how such streams are created in the function RunSCSCPserver
(5.2-1). It uses some functions from the IO package, see the IO manual for their description. Now we will show step by step what is happens on server and client (of course, if you will try this example, the numbers denoting descriptors may be different).
Firts, we will start two GAP sessions, one for the server, another one for the client. Now we enter the following commands on the server's side:
gap> sock := IO_socket( IO.PF_INET, IO.SOCK_STREAM, "tcp" ); 3 gap> lookup := IO_gethostbyname( "localhost" ); rec( name := "localhost", aliases := [ ], addrtype := 2, length := 4, addr := [ "\177\000\000\>" ] ) gap> port:=26133; 26133 gap> res := IO_bind( sock, IO_make_sockaddr_in( lookup.addr[1], port ) ); true gap> IO_listen( sock, 5 ); true gap> socket_descriptor := IO_accept( sock, IO_MakeIPAddressPort("0.0.0.0",0) ); |
After the last command you will not see the GAP prompt because the server starts to wait for an incoming connection. Now we go to the client's side and create an input-output TCP stream to the server. Here it can be created in one step:
gap> clientstream:=InputOutputTCPStream( "localhost", 26133 ); Creating a socket... Connecting to a remote socket via TCP/IP... |
Now we are trying to connect to the server, and as soon as the connection will be established, the stream will be created at the client side, and we will see the output and the new GAP prompt:
< input/output TCP stream to localhost > gap> |
On the server you will get the socket descriptor and then you will be able to create a stream from it:
4 gap> serverstream := InputOutputTCPStream( socket_descriptor ); < input/output TCP stream to socket > |
Now we can write to this stream on the client side and then read from it on the server side and backwards. First, write on the client:
gap> WriteLine( clientstream, "12345" ); true |
Now read and write on the server:
gap> ReadLine( serverstream ); "12345\n" gap> WriteLine( serverstream, "54321" ); true |
And finally we read on the client and close the stream:
gap> ReadLine( clientstream ); "54321\n" gap> CloseStream( clientstream ); |
and similarly close the stream on the server:
gap> CloseStream( serverstream ); |
generated by GAPDoc2HTML