Index: ossp-pkg/xds/docs/xds.pod RCS File: /v/ossp/cvs/ossp-pkg/xds/docs/Attic/xds.pod,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/xds/docs/Attic/xds.pod,v' | diff -u /dev/null - -L'ossp-pkg/xds/docs/xds.pod' 2>/dev/null --- ossp-pkg/xds/docs/xds.pod +++ - 2025-04-04 22:40:15.739191572 +0200 @@ -0,0 +1,134 @@ +=pod + +=head1 NAME + +xds - eXtensible Data Serialization + +=head1 SYNOPSIS + + +=head1 DESCRIPTION + +=over 4 + +=item xds_t* B(xds_mode_t I); + +Valid settings for I are B and B. If +successful, a valid handle is returned -- B otherwise. If the +routine fails, the system variable B is set apropriately. + +=item void B(xds_t* I); + +Free all internally allocated resources associated with this context. +I must be a handle obtained by calling B. + +=item int B(xds_t* I, const char* I, xds_engine_t I, void* I); + +Register the function I as formatting engine in context I +under the name I. The function must have the following +prototype: + + int my_engine(xds_t* xds, void* engine_context, + void* buffer, size_t buffer_size, + va_list args); + +It must gather its values from I and encode/decode them into +I. The encoded/decoded representation must not take up more +than I byte of memory, because that's the maximum I can +hold. If the buffer is too small, I must return +B. In case of no error, I must return the +number of bytes it has written to the buffer. (Note that all xds error +defines are smaller than >0.) The variable I is passed +through to the function every time it is called; it is not touched in +any way by the xds library. + +A valid name I for a callback function consists of an arbitrary +number of characters from the class [a-zA-Z0-9_-]. + +=item int B(xds_t* I, const char* I); + +Remove encoding/decoding engine I from context I. The +function will return B if successful and +B if I is not a registered engine. + +=item int B(xds_t* I, xds_scope_t I, void* I, size_t I); + +Encoding mode: Set internal buffer used in context I to +I. The buffer has a capacity of I byte. I +may be set to B or B. A "loaned" buffer is one +that is owned by the application; xds will use it, but it will not +B the buffer nor will it try to B it if it's too small. +A buffer given to xds as a "gift" is henceforth owned by xds and may +be Bd or Bed as the library sees fit. If I is +B, I must be a pointer obtained from calling the +B API. Calling B with a I of B +will cause the xds library to allocate a buffer of its own. +I is ignored in this case. + +Decoding mode: I contains the encoded representation of the +data to be used for following B calls. The encoded data is +I byte long. Unlike in encoding mode, such a buffer is +not modified, hence there is no need to extend the buffer. If I +is set to B, the library will B I when +the context is destroyed. + +B returns one of the following codes signifying success +or failure: B (everything alright), B (failed +to allocate new internal buffers), and B +(arguments don't make sense). + +=item int B(xds_t* I, xds_scope_t flag, void** buffer, size_t* buffer_size); + +This routine will write the address and size of the internal buffer in +context I to I and I. The I parameter +determines who owns the buffer after that; setting I to +B means that the buffer is owned by the xds library and that +the user may not rely on its contents still being there after another +xds library function call. Furthermore, calling B will +flush the registered buffer, meaning that coming B calls +will start at the beginning and potentially overwrite the buffer +contents. + +Setting I to B means that the returned buffer is owned +by the application programmer from now on, it is no longer modified or +used in any way by the library. The application must B the +buffer when it's not needed anymore. + +=item int B(xds_t* I, const char* I, ...); + +The B function call will encode an arbitrary number of values +into the chosen representation. The syntax is very similar to +B: As parameters, it requires the I handle obtained from +B, a format string I describing the following value +parameters, and an arbitrary number of actual values. + +The format string lists the names of the callback functions to be used +in order to format the values; it has the format "name name ...". The +names are delimited by any number of characters any of which is not +part of the character set allowed for function names here. Hence, you +can delimit the names by blanks, tabs, dollar signs or pretty much +anyting your want. + +B will return either B (everything OK), +B (failed allocating memory for intenal buffering), +B (can't expand internal buffer because it's owned +by the application), B (parameters don't make +sense), B (specified callback can't handle this +data type), and B (unknown call back name used +in I). + +=item int B(xds_t* I, const char* I, ...); + +Like B, only the other way round. + +=item int B(xds_t* I, const char* I, va_list I); + +See B. + +=item int B(xds_t* I, const char* I, va_list I); + +See B. + +=back + +=cut