Index: ossp-pkg/sa/sa.pod RCS File: /v/ossp/cvs/ossp-pkg/sa/sa.pod,v rcsdiff -q -kk '-r1.12' '-r1.13' -u '/v/ossp/cvs/ossp-pkg/sa/sa.pod,v' 2>/dev/null --- sa.pod 2001/10/10 09:21:27 1.12 +++ sa.pod 2001/10/10 19:32:57 1.13 @@ -101,55 +101,76 @@ =head1 DESCRIPTION -B is an abstraction library for the Unix socket interface -featuring stream and datagram oriented communication over Unix Domain -and Internet Domain sockets. +B is an abstraction library for the Unix I networking +interface featuring stream and datagram oriented communication over +I and I (TCP and UDP) sockets. It provides the following key features: =over 4 +=item B + +Although there are various Open Source libraries available which provide +a similar abstraction approach, they all either lack important features +or unfortunately depend on other companion libraries. B fills +this gap by providing all important features (see following points) as a +stand-alone and fully self-contained library. This way B can be +trivially embedded as a sub-library into other libraries. It especially +provides additional support for namespace-safe embedding of its API in +order to avoid symbol conflicts (see C in F). + =item B
-Most of the uglyness in the Unix socket API is the necessarity to have -to deal with the various address structures (C) +Most of the uglyness in the Unix I API is the necessarity to +have to deal with the various address structures (C) which exist because of both the different communication types and addressing schemes. B fully hides this by providing an abstract -and opaque address type (C) together with four utility -functions which allow one to convert from the traditional C or URI specification to the C and vice versa. +and opaque address type (C) together with utility functions +which allow one to convert from the traditional C or +URI specification to the C and vice versa without having to +deal with special cases related to the underlying particular C. B support I and both IPv4 and IPv6 +I addressing. =item B -Some other subtle details in the socket API make the life hard in -practice: C and C. These two types originally were -(and on some platforms still are) plain integers or unsigned integers -while POSIX later introduced own types for them. This is nasty, because -for full backward compatibility and type-correct API usage, every +Some other subtle details in the Unix I API make the life hard +in practice: C and C. These two types originally +were (and on some platforms still are) plain integers or unsigned +integers while POSIX later introduced own types for them (and even +revised these types after some time again). This is nasty, because +for 100% type-correct API usage (especially important on 64-bit +machines where pointers to different integer types make trouble), every application has to check whether the newer types exists and if not provide own definitions which map to the still actually used integer -type on the underlying platform. B hides all this in its API. +type on the underlying platform. B hides most of this in its +API and for C provides a backward-compatibility definition. +Instead of C it uses C because B does not use +traditional Unix return code semantics. =item B -Each I/O function in B is aware of a central timeout (set -by sa_timeout(3)), i.e., all I/O operations return C -and C set to C if this timeout expired before the -operation was able to succeed. This allows one to easily program -less-blocking network services. +Each I/O function in B is aware of timeouts (set by +sa_timeout()), i.e., all I/O operations return C if the +timeout expired before the I/O operation was able to succeed. This +allows one to easily program less-blocking network services. B internally implements these timeouts either through the +C feature on more modern I implementations +or through traditional select(2). This way high performance is achieved +on modern platforms while the full functionality still is available on +older platforms. =item B If B is used for stream communication, internally all I/O operations can be performed through input and/or output buffers (set -by sa_buffers(3)) for achieving higher I/O performance by doing I/O -operations on larger aggregated messages. - -=item B - -If B is used for stream communication, for convinience reasons -line-oriented reading (sa_readln(3)) and formated writing (sa_writef(3)) -is provided, modelled after STDIO's fgets(3) and fprintf(3). +by sa_buffer()) for achieving higher I/O performance by doing I/O +operations on larger aggregated messages and with less system calls. +Additionally if B is used for stream communication, for +convinience reasons line-oriented reading (sa_readln()) and formatted +writing (sa_writef()) is provided, modelled after STDIO's fgets(3) and +fprintf(3). Both features fully leverage from the I/O buffering. =back @@ -188,8 +209,12 @@ =item sa_rc_t B(sa_addr_t **I); +Create a socket address abstraction object. + =item sa_rc_t B(sa_addr_t *I); +Destroy a socket address abstraction object. + =back =head2 Address Operations @@ -198,14 +223,36 @@ =item sa_rc_t B(sa_addr_t *I, const char *I, ...); +Import an address by converting from an URI specification +to the corresponding address abstraction. The supported URI +syntax is: "CI" for I addresses and +"CIC<:>I" for I addresses. +I can be an absolute or relative file path to an existing or +not-existing file. I can be an IPv4 address in dotted decimal +notation (C<127.0.0.1>), an IPv6 address in colon-seperated (optionally +shortended) hexadecimal notation (C<::1>) or a to-be-resolved hostname +(C). I has to be a decimal port in the +range C<1>...C<65535>. + =item sa_rc_t B(sa_addr_t *I, const struct sockaddr *I, socklen_t I); +Import an address by converting from a tranditional C object to the +corresponding address abstraction. + =item sa_rc_t B(sa_addr_t *I, char **I); +Export an address by converting from the +address abstraction to the corresponding URI specification. + =item sa_rc_t B(sa_addr_t *I, struct sockaddr **I, socklen_t *I); +Export an address by converting from the +address abstraction to the corresponding traditional C object. + =item sa_rc_t B(sa_addr_t *I, sa_addr_t *I, size_t I); +Match two address abstractions + =back =head2 Socket Object Operations