1<html> 2<head> 3<title>libsm sm_io general overview</title> 4</head> 5<body> 6<a href="index.html">Back to libsm overview</a> 7<center> 8<h1>libsm sm_io general overview</h1> 9<br> $Id: io.html,v 1.3 2001-03-17 03:22:50 gshapiro Exp $ 10</center> 11<h2> Introduction </h2> 12<p> 13The <i>sm_io</i> portion of the <i>libsm</i> library is similar to 14the <i>stdio</i> library. It is derived from the Chris Torek version 15of the <i>stdio</i> library (BSD). There are some key differences 16described below between <i>sm_io</i> and <i>stdio</i> but many 17similarities will be noticed. 18</p> 19<p> 20A key difference between <i>stdio</i> and <i>sm_io</i> is that the 21functional code that does the open, close, read, write, etc. on a file 22can be different for different files. For example, with <i>stdio</i> 23the functional code (read, write) is either the default supplied in the 24library or a "programmer specified" set of functions set via 25<i>sm_io_open()</i>. Whichever set of functions are specified <b>all</b> 26open's, read's, write's, etc use the same set of functions. In contrast, with 27<i>sm_io</i> a different set of functions can be specified with each 28active file for read's, write's, etc. These different function sets 29are identified as <b>file types</b> (see <tt>sm_io_open()</tt>). Each function 30set can handle the actions directly, pass the action request to 31another function set or do some work before passing it on to another function 32set. The setting of a function set for a file type can be done for 33a file type at any time (even after the type is open). 34</p> 35<p> 36A second difference is the use of <a href="rpool.html"><b>rpools</b></a>. 37An <b>rpool</b> is specified with the opening of a file 38(<tt>sm_io_open()</tt>). 39This allows of a file to be associated with an rpool so that when the 40rpool is released the open file will be closed; the <tt>sm_io_open()</tt> 41registers that <tt>sm_io_close()</tt> should be called when the rpool is 42released. 43</p> 44<p> 45A third difference is that the I/O functions take a <i>timeout</i> 46argument. This allows the setting of a maximum amount of time allowable 47for the I/O to be completed. This means the calling program does not need 48to setup it's own timeout mechanism. NOTE: SIGALRM's should not be 49active in the calling program when an I/O function with a <i>timeout</i> 50is used. 51</p> 52<p> 53When converting source code from <i>stdio</i> to <i>sm_io</i> be 54very careful to NOTE: the arguments to functions have been rationalized. 55That is, unlike <i>stdio</i>, all <i>sm_io</i> functions that 56take a file pointer (SM_FILE_T *) argument have the file pointer 57as the first argument. Also not all functions with <i>stdio</i> have 58an identical matching <i>sm_io</i> API: the API list has been thinned 59since a number of <i>stdio</i> API's overlapped in functionality. 60Remember many functions also have a <i>timeout</i> argument added. 61</p> 62<p> 63When a file is going to be opened, the file type is included with 64<tt>sm_io_open()</tt>. 65A file type is either one automatically included with the <i>sm_io</i> 66library or one created by the program at runtime. 67File types can be either buffered or unbuffered. When buffered the buffering 68is either the builtin <i>sm_io</i> buffering or as done by the file type. 69File types can be disk files, strings, TCP/IP connections or whatever 70your imagination can come up with that can be read and/or written to. 71</p> 72<p> 73Information about a particular file type or pointer can be obtained or set with 74the <i>sm_io</i> "info" functions. 75The <tt>sm_io_setinfo()</tt> and <tt>sm_io_getinfo()</tt> functions work on 76an active file pointer. 77</p> 78<h2>Include files</h2> 79<p> 80There is one main include file for use with sm_io: <i>io.h</i>. Since the 81use of <b>rpools</b> is specified with <tt>sm_io_open()</tt> an 82<b>rpool</b> may 83be created and thus <i>rpool.h</i> may need to be included as well 84(before io.h). 85</p> 86<pre> 87#include <rpool.h> 88#include <io.h> 89</pre> 90 91<h2>Functions/API's</h2> 92<p> 93Below is a list of the functions for <i>sm_io</i> listed in 94alphabetical order. Currently these functions return error codes 95and set errno when appropriate. These (may?/will?) change to 96raising exceptions later. 97</p> 98<pre> 99<a href="#sm_io_autoflush">SM_FILE_T *sm_io_autoflush(SM_FILE_T *fp, SM_FILE_T *)</a> 100 101<a href="#sm_io_automode">void sm_io_automode(SM_FILE_T *fp, SM_FILE_T *)</a> 102 103<a href="#defaultapi">void sm_io_clearerr(SM_FILE_T *fp)</a> 104 105<a href="#sm_io_close">int sm_io_close(SM_FILE_T *fp, int timeout)</a> 106 107<a href="#defaultapi">int sm_io_dup(SM_FILE_T *fp)</a> 108 109<a href="#defaultapi">int sm_io_eof(SM_FILE_T *fp)</a> 110 111<a href="#defaultapi">int sm_io_error(SM_FILE_T *fp)</a> 112 113<a href="#defaultapi">char * sm_io_fgets(SM_FILE_T *fp, int timeout, char *buf, int n)</a> 114 115<a href="#defaultapi">int sm_io_flush(SM_FILE_T *fp, int timeout)</a> 116 117<a href="#sm_io_fopen">int sm_io_fopen(char *pathname, int flags [, MODE_T mode])</a> 118 119<a href="#defaultapi">int sm_io_fprintf(SM_FILE_T *fp, int timeout, const char *fmt, ...)</a> 120 121<a href="#defaultapi">int sm_io_fputs(s, int, SM_FILE_T *fp)</a> 122 123<a href="#defaultapi">int sm_io_fscanf(SM_FILE_T *fp, int timeout, char const *fmt, ...) </a> 124 125<a href="#defaultapi">int sm_io_getc(SM_FILE_T *fp, int timeout)</a> 126 127<a href="#sm_io_getinfo">void sm_io_getinfo(SM_FILE_T *sfp, int what, void *valp)</a> 128 129<a href="#sm_io_open">SM_FILE_T * sm_io_open(SM_FILE_T type, int timeout, void *info, int flags, void *rpool)</a> 130 131<a href="#defaultapi">int sm_io_purge(SM_FILE_T *fp)</a> 132 133<a href="#defaultapi">int sm_io_putc(SM_FILE_T *fp, int timeout, int c)</a> 134 135<a href="#defaultapi">size_t sm_io_read(SM_FILE_T *fp, int timeout, char *buf, size_t size)</a> 136 137<a href="#sm_io_reopen">SM_FILE_T * sm_io_open(SM_FILE_T type, int timeout, void *info, int flags, void *rpool)</a> 138 139<a href="#defaultapi">void sm_io_rewind(SM_FILE_T *fp, int timeout)</a> 140 141<a href="#defaultapi">int sm_io_seek(SM_FILE_T *fp, off_t offset, int timeout, int whence)</a> 142 143<a href="#sm_io_setinfo">void sm_io_setinfo(SM_FILE_T *sfp, int what, void *valp)</a> 144 145<a href="#defaultapi">int sm_io_setvbuf(SM_FILE_T *fp, int timeout, char *buf, int mode, size_t size)</a> 146 147<a href="#defaultapi">int sm_io_sscanf(const char *str, char const *fmt, ...)</a> 148 149<a href="#defaultapi">long sm_io_tell(SM_FILE_T *fp, int timeout)</a> 150 151<a href="#defaultapi">int sm_io_ungetc(SM_FILE_T *fp, int timeout, int c)</a> 152 153<a href="#defaultapi">size_t sm_io_write(SM_FILE_T *fp, int timeout, char *buf, size_t size)</a> 154 155<a href="#defaultapi">int sm_snprintf(char *str, size_t n, char const *fmt, ...)</a> 156 157</pre> 158<h2><a name="timeouts">Timeouts</a></h2> 159<p> 160For many of the functions a <i>timeout</i> argument is given. This limits 161the amount of time allowed for the function to complete. There are three 162pre-defined values: 163<menu> 164<li> 165SM_TIME_DEFAULT - timeout using the default setting for this file type 166</li> 167<li> 168SM_TIME_FOREVER - timeout will take forever; blocks until task completed 169</li> 170<li> 171SM_TIME_IMMEDIATE - timeout (virtually) now 172</li> 173</menu> 174</p> 175<p> 176A function caller can also specify a positive integer value in milliseconds. 177A function will return with <i>errno</i> set to EINVAL if a bad value 178is given for <i>timeout</i>. 179When a function times out the function returns in error with <i>errno</i> 180set to <b>EAGAIN</b>. In the future this may change to an exception being 181thrown. 182</p> 183<h2>Function Descriptions</h2> 184<dl> 185<!-- SM_IO_FOPEN --> 186<p></p> 187<dt><tt><a name="sm_io_fopen"> 188SM_FILE_T * 189<br> 190sm_io_fopen(char *pathname, int flags) 191<br> 192SM_FILE_T * 193<br> 194sm_io_fopen(char *pathname, int flags, MODE_T mode) 195</a></tt></dt> 196<dd> 197Open the file named by <tt>pathname</tt>, and associate a stream with it. 198The arguments are the same as for the <tt>open(2)</tt> system call. 199<br> 200If memory could not be allocated, an exception is raised. 201If successful, an <tt>SM_FILE_T</tt> pointer is returned. 202Otherwise, <tt>NULL</tt> is returned and <tt>errno</tt> is set. 203<!-- SM_IO_OPEN --> 204<p></p> 205<dt><tt><a name="sm_io_open"> 206SM_FILE_T * 207<br> 208sm_io_open(const SM_FILE_T *type, int timeout, const void *info, int flags, void *rpool) 209</a></tt></dt> 210<dd> 211Opens a file by <i>type</i> directed by <i>info</i>. <i>Type</i> is a filled-in 212SM_FILE_T structure from the following builtin list 213(<a href="#builtins"><b>descriptions below</b></a>) 214or one specified by the program. 215<menu> 216<li> 217SmFtString 218</li> 219<li> 220SmFtStdio 221</li> 222<li> 223SmFtStdiofd 224</li> 225<li> 226smioin <b>*</b> 227</li> 228<li> 229smioout <b>*</b> 230</li> 231<li> 232smioerr <b>*</b> 233</li> 234<li> 235smiostdin <b>*</b> 236</li> 237<li> 238smiostdout <b>*</b> 239</li> 240<li> 241smiostderr <b>*</b> 242</li> 243<li> 244SmFtSyslog 245</li> 246</menu> 247<br> 248The above list of file types are already appropriately filled in. Those marked 249with a "<b>*</b>" are already open and may be used directly and immediately. 250For program specified types, to set the <i>type</i> argument easily and with minimal error the macro 251<b>SM_IO_SET_TYPE</b> should be used. The SM_FILE_T structure is fairly 252large, but only a small portion of it need to be initialized for a new 253type. 254See also <a href="#writefunctions">"Writing Functions for a File Type"</a>. 255<menu> 256<pre> 257SM_IO_SET_TYPE(type, name, open, close, read, write, seek, get, set, timeout) 258</pre> 259</menu> 260<br> 261<i>Timeout</i> is set as described in the <a href="#timeouts"><b>Timeouts</b></a> 262section. 263<br> 264<i>Info</i> is information that describes for the file type what is 265to be opened and any associated information. 266For a disk file this would be a file path; with a TCP 267connection this could be an a structure containing an IP address and port. 268<br><i>Flags</i> is a 269set of sm_io flags that describes how the file is to be interacted with: 270<menu> 271<li> 272SM_IO_RDWR - read and write 273</li> 274<li> 275SM_IO_RDONLY - read only 276</li> 277<li> 278SM_IO_WRONLY - write only 279</li> 280<li> 281SM_IO_APPEND - allow write to EOF only 282</li> 283<li> 284SM_IO_APPENDRW - allow read-write from EOF only 285</li> 286<li> 287SM_IO_RDWRTR - read and write with truncation of file first 288</li> 289</menu> 290<i>Rpool</i> is the address of the rpool that this open is to be associated 291with. When the rpool is released then the close function for this 292file type will be automatically called to close the file for cleanup. 293If NULL is specified for <i>rpool</i> then the close function is not 294associated (attached) to an rpool. 295<br> 296On cannot allocate memory, an exception is raised. 297If the <i>type</i> is invalid, <tt>sm_io_open</tt> will abort the process. 298On success an SM_FILE_T * pointer is returned. 299On failure the NULL pointer is returned and errno is set. 300</dd> 301<!-- SM_IO_SETINFO --> 302<p></p> 303<dt><tt><a name="sm_io_setinfo"> 304int 305<br> 306sm_io_setinfo(SM_FILE_T *sfp, int what, void *valp) 307</a></tt></dt> 308<dd> 309For the open file <i>sfp</i> set the indicated information (<i>what</i>) 310to the new value <i>(valp</i>). 311This will make the change for this SM_FILE_T only. The file 312type that <i>sfp</i> originally belonged to will still be 313configured the same way (this is to prevent side-effect 314to other open's of the same file type, particularly with threads). 315The value of <i>what</i> will be file-type dependent since this function 316is one of the per file type setable functions. 317One value for <i>what</i> that is valid for all file types is 318SM_WHAT_VECTORS. This sets the currently open file with a new function 319vector set for open, close, etc. The new values are taken from <i>valp</i> 320a SM_FILE_T filled in by the used via the macro SM_IO_SET_TYPE 321(see and <a href="#writefunctions"> 322"Writing Functions for a File Type"</a> for more information). 323<br> 324On success 0 (zero) is returned. On failure -1 is returned and errno is set. 325</dd> 326<!-- SM_IO_GETINFO --> 327<p></p> 328<dt><tt><a name="sm_io_getinfo"> 329int 330<br> 331sm_io_getinfo(SM_FILE_T *sfp, int what, void *valp) 332</a></tt></dt> 333<dd> 334For the open file <i>sfp</i> get the indicated information (<i>what</i>) 335and place the result in <i>(valp</i>). 336This will obtain information for SM_FILE_T only and may be different than 337the information for the file type it was originally opened as. 338The value of <i>what</i> will be file type dependent since this function 339is one of the per file type setable functions. 340One value for <i>what</i> that is valid for all file types is 341SM_WHAT_VECTORS. This gets from the currently open file a copy of 342the function vectors and stores them in <i>valp</i> a SM_FILE_T 343(see <a href="#writefunctions"> 344"Writing Functions for a File Type"</a> for more information). 345<br> 346On success 0 (zero) is returned. On failure -1 is returned and errno is set. 347</dd> 348<!-- SM_IO_AUTOFLUSH --> 349<p></p> 350<dt><tt><a name="sm_io_autoflush"> 351void 352<br> 353sm_io_autoflush(SM_FILE_T *fp1, *SM_FILE_T fp2) 354</a></tt></dt> 355<dd> 356Associate a read of <i>fp1</i> with a data flush for <i>fp2</i>. If a read 357of <i>fp1</i> discovers that there is no data available to be read, then 358<i>fp2</i> will have it's data buffer flushed for writable data. It is 359assumed that <i>fp1</i> is open for reading and <i>fp2</i> is open 360for writing. 361<br> 362On return the old file pointer associated with <i>fp1</i> for flushing 363is returned. A return of NULL is no an error; this merely indicates no 364previous association. 365</dd> 366<!-- SM_IO_AUTOMODE --> 367<p></p> 368<dt><tt><a name="sm_io_automode"> 369void 370<br> 371sm_io_automode(SM_FILE_T *fp1, *SM_FILE_T fp2) 372<dt> 373</a></tt></dt> 374<dd> 375Associate the two file pointers for blocking/non-blocking mode changes. 376In the handling of timeouts <i>sm_io</i> may need to switch the mode of 377a file between blocking and non-blocking. If the underlying file descriptor 378has been duplicated with <tt>dup(2)</tt> and these descriptors are used 379by <i>sm_io</i> (for example with an SmFtStdiofd file type), then this API 380should be called to associate them. Otherwise odd behavior (i.e. errors) 381may result that is not consistently reproducible nor easily identifiable. 382</dd> 383<!-- SM_IO_CLOSE --> 384<p></p> 385<dt><tt><a name="sm_io_close"> 386int 387<br> 388sm_io_close(SM_FILE_T *sfp, int timeout) 389</a></tt></dt> 390<dd> 391Release all resources (file handles, memory, etc.) associated with 392the open SM_FILE_T <i>sfp</i>. If buffering is active then the 393buffer is flushed before any resources are released. 394<i>Timeout</i> is set as described in the <a href="#timeouts"><b>Timeouts</b></a> 395section. 396The first resources released after buffer flushing will be the 397buffer itself. Then the <b>close</b> function specified in the 398file type at open will be called. It is the responsibility 399of the <b>close</b> function to release any file type 400specific resources allocated and to call <tt>sm_io_close()</tt> 401for the next file type layer(s) that the current file type uses (if any). 402<br> 403On success 0 (zero) is returned. On failure SM_IO_EOF is returned and 404errno is set. 405</dd> 406</dl> 407<h2> 408<a name="builtins">Description of Builtin File Types</a> 409</h2> 410<p> 411There are several builtin file types as mentioned in <tt>sm_io_open()</tt>. 412More file types may be added later. 413</p> 414<dl> 415<p></p> 416<dt><tt>SmFtString</tt></dt> 417<dd> 418Operates on a character string. <i>SmFtString</i> is a file type only. 419The string starts at the location 0 (zero) 420and ends at the last character. A read will obtain the requested 421number of characters if available; else as many as possible. A read 422will not terminate the read characters with a NULL ('\0'). A write 423will place the number of requested characters at the current location. 424To append to a string either the pointer must currently be at the end 425of the string or a seek done to position the pointer. The file type 426handles the space needed for the string. Thus space needed for the 427string will be grown automagically without the user worrying about 428space management. 429</dd> 430<dt><tt>SmFtStdio</tt></dt> 431<dd> 432A predefined SM_FILE_T structure with function vectors pointing to 433functions that result in the file-type behaving as the system stdio 434normally does. The <i>info</i> portion of the <tt>sm_io_open</tt> 435is the path of the file to be opened. Note that this file type 436does not interact with the system's stdio. Thus a program mixing system 437stdio and sm_io stdio (SmFtStdio) will result in uncoordinated input 438and output. 439</dd> 440<dt><tt>SmFtStdiofd</tt></dt> 441<dd> 442A predefined SM_FILE_T structure with function vectors pointing to 443functions that result in the file-type behaving as the system stdio 444normally does. The <i>info</i> portion of the <tt>sm_io_open</tt> 445is a file descriptor (the value returned by open(2)). Note that this file type 446does not interact with the system's stdio. Thus a program mixing system 447stdio and sm_io stdio (SmFtStdio) will result in uncoordinated input 448and output. 449</dd> 450<dt><tt>smioin</tt></dt> 451<dt><tt>smioout</tt></dt> 452<dt><tt>smioerr</tt></dt> 453<dd> 454The three types <i>smioin</i>, <i>smioout</i> and <i>smioerr</i> are grouped 455together. These three types 456perform in the same manner as <b>stdio</b>'s <i>stdin</i>, <i>stdout</i> 457and <i>stderr</i>. These types are both the names and the file pointers. 458They are already open when a program starts (unless the parent explicitly 459closed file descriptors 0, 1 and 2). 460Thus <tt>sm_io_open()</tt> should never be called for these types: 461the named file pointers should be used directly. 462<i>Smioin</i> and <i>smioout</i> are buffered 463by default. <i>Smioerr</i> is not buffered by default. Calls to <b>stdio</b> 464are safe to make when using these three<b>sm_io</b> file pointers. 465There is no interaction between <b>sm_io</b> and <b>stdio</b>. Hence, 466due to buffering, the sequence of input and output data from both <b>sm_io</b> 467and <b>stdio</b> at the same time may appear unordered. For 468coordination between <b>sm_io</b> and <b>stdio</b> use the three 469file pointers below (<i>smiostdin, smiostdout, smiostderr</i>). 470</dd> 471<dt><tt>smiostdin</tt></dt> 472<dt><tt>smiostdout</tt></dt> 473<dt><tt>smiostderr</tt></dt> 474<dd> 475The three types <i>smiostdin</i>, <i>smioostdut</i> and <i>smiostderr</i> 476are grouped together. These three types 477perform in the same manner as <b>stdio</b>'s <i>stdin</i>, <i>stdout</i> 478and <i>stderr</i>. These types are both the names and file pointers. 479They are already open when a program starts (unless the parent explicitly 480close file descriptors 0, 1 and 2). 481Thus <tt>sm_io_open()</tt> should 482never be called: the named file pointers should be used directly. 483Calls to <b>stdio</b> are safe to make when using these three<b>sm_io</b> 484file pointers though no code is shared between the two libaries. 485However, the input and output between <i>sm_io</i> and <i>stdio</i> is 486coordinated for these three file pointers: <i>smiostdin</i>, 487<i>smiostdout</i> and <i>smiostderr</i> are layered on-top-of 488the system's <i>stdio</i>. 489<i>Smiostdin</i>, <i>smiostdout</i> 490and <i>Smiostderr</i> are not buffered by default. 491Hence, due to buffering in <i>stdio</i> only, the sequence of input and 492output data from both <b>sm_io</b> and <b>stdio</b> at the same time will 493appear ordered. If <i>sm_io</i> buffering is turned on then the 494input and output can appear unordered or lost. 495</dd> 496<dt><tt>SmFtSyslog</tt></dt> 497<dd> 498This opens the channel to the system log. Reads are not allowed. Writes 499cannot be undone once they have left the <i>sm_io</i> buffer. 500The man pages for <tt>syslog(3)</tt> should be read for information 501on syslog. 502</dd> 503</dl> 504<p></p> 505<hr> 506<p></p> 507<h2> 508<a name="writefunctions"> 509Writing Functions for a File Type 510</a> 511</h2> 512<p> 513When writing functions to create a file type a function needs to 514be created for each function vector in the SM_FILE_T structure 515that will be passed to <tt>sm_io_open()</tt> or <tt>sm_io_setinfo()</tt>. 516Otherwise the setting will be rejected and <i>errno</i> set to EINVAL. 517Each function should accept and handle the number and types of arguments as 518described in the portion of the SM_FILE_T structure shown below: 519</p> 520<pre> 521 int (*open) __P((SM_FILE_T *fp, const void *, int flags, 522 const void *rpool)); 523 int (*close) __P((SM_FILE_T *fp)); 524 int (*read) __P((SM_FILE_T *fp, char *buf, size_t size)); 525 int (*write) __P((SM_FILE_T *fp, const char *buf, size_t size)); 526 off_t (*seek) __P((SM_FILE_T *fp, off_t offset, int whence)); 527 int (*getinfo) __P((SM_FILE_T *fp, int what, void *valp)); 528 int (*setinfo) __P((SM_FILE_T *fp, int what, void *valp)); 529</pre> 530<p> 531The macro SM_IO_SET_TYPE should be used to initialized an SM_FILE_T as a file 532type for an <tt>sm_io_open()</tt>: 533<menu> 534<pre> 535SM_IO_SET_TYPE(type, name, open, close, read, write, seek, get, set, timeout) 536</pre> 537<br> 538where: 539<menu> 540<li> 541type - is the SM_FILE_T being filled-in 542</li> 543<li> 544name - a human readable character string for human identification purposes 545</li> 546<li> 547open - the vector to the open function 548</li> 549<li> 550close - the vector to the close function 551</li> 552<li> 553read - the vector to the read function 554</li> 555<li> 556write - the vector to the write function 557</li> 558<li> 559seek - the vector to the seek function 560</li> 561<li> 562set - the vector to the set function 563</li> 564<li> 565get - the vector to the get function 566</li> 567<li> 568timeout - the default to be used for a timeout when SM_TIME_DEFAULT specified 569</li> 570</menu> 571</menu> 572You should avoid trying to change or use the other structure members of the 573SM_FILE_T. The file pointer content (internal structure members) of an active 574file should only be set and observed with the "info" functions. 575The two exceptions to the above statement are the structure members 576<i>cookie</i> and <i>ival</i>. <i>Cookie</i> is of type <tt>void *</tt> 577while <i>ival</i> is of type <tt>int</tt>. These two structure members exist 578specificly for your created file type to use. The <i>sm_io</i> functions 579will not change or set these two structure members; only specific file type 580will change or set these variables. 581</p> 582<p> 583For maintaining information privately about status for a file type the 584information should be encapsulated in a <i>cookie</i>. A <i>cookie</i> 585is an opaque type that contains information that is only known to 586the file type layer itself. The <i>sm_io</i> package will know 587nothing about the contents of the <i>cookie</i>; <i>sm_io</i> only 588maintains the location of the <i>cookie</i> so that it may be passed 589to the functions of a file type. It is up to the file type to 590determine what to do with the <i>cookie</i>. It is the responsibility 591of the file type's open to create the cookie and point the SM_FILE_T's 592<i>cookie</i> at the address of the cookie. 593It is the responsibility of close to clean up 594any resources that the cookie and instance of the file type have used. 595</p> 596<p> 597For the <i>cookie</i> to be passed to all members of a function type 598cleanly the location of the cookie must assigned during 599the call to open. The file type functions should not attempt to 600maintain the <i>cookie</i> internally since the file type may have 601serveral instances (file pointers). 602</p> 603<p> 604The SM_FILE_T's member <i>ival</i> may be used in a manner similar to 605<i>cookie</i>. It is not to be used for maintaining the file's offset 606or access status (other members do that). It is intended as a "light" 607reference. 608</p> 609<p> 610The file type vector functions are called by the <tt>sm_io_*()</tt> 611functions after <i>sm_io</i> processing has occurred. The <i>sm_io</i> 612processing validates SM_FILE_T's and may then handle the call entirely 613itself or pass the request to the file type vector functions. 614</p> 615<p> 616All of the "int" functions should return -1 (minus one) on failure 617and 0 (zero) or greater on success. <i>Errno</i> should be set to 618provide diagnostic information to the caller if it has not already 619been set by another function the file type function used. 620</p> 621<p> 622Examples are a wonderful manner of clarifying details. Below is an example 623of an open function. 624</p> 625<p> 626This shows the setup. 627<menu> 628<pre> 629SM_FILE_T *fp; 630SM_FILE_T SM_IO_SET_TYPE(vector, "my_type", myopen, myclose, myread, mywrite, 631 myseek, myget, myset, SM_TIME_FOREVER); 632 633fp = sm_io_open(&vector, 1000, "data", SM_IO_RDONLY, NULL); 634 635if (fp == NULL) 636 return(-1); 637</pre> 638The above code open's a file of type "my_type". The <i>info</i> is set 639to a string "data". "data" may be the name of a file or have some special 640meaning to the file type. For sake of the example, we will have it be 641the name of a file in the home directory of the user running the program. 642Now the only file type function that is dependent on this information 643will be the open function. 644<br> 645We have also specified read-only access (SM_IO_RDONLY) and that no <i>rpool</i> 646will be used. The <i>timeout</i> has been set to 1000 milliseconds which 647directs that the file and all associated setup should be done within 6481000 milliseconds or return that the function erred (with errno==EAGAIN). 649<pre> 650int myopen(fp, info, flags, rpools) 651 SM_FILE_T *fp; 652 const void *info; 653 int flags; 654 void *rpool; 655{ 656 /* 657 ** now we could do the open raw (i.e with read(2)), but we will 658 ** use file layering instead. We will use the <i>stdio</i> file 659 ** type (different than the system's stdio). 660 */ 661 struct passwd *pw; 662 char path[PATH_MAX]; 663 664 pw = getpwuid(getuid()); 665 sm_io_snprintf(path, PATH_MAX, "%s/%s", pw->pw_dir, info); 666 667 /* 668 ** Okay. Now the path pass-in has been prefixed with the 669 ** user's HOME directory. We'll call the regular stdio (SmFtStdio) 670 ** now to handle the rest of the open. 671 */ 672 fp->cookie = sm_io_open(SmFtStdio, path, flags, rpools); 673 if (fp->cookie == NULL) 674 return(-1) /* errno set by sm_io_open call */ 675 else 676 return(0); 677} 678</pre> 679Later on when a write is performed the function <tt>mywrite</tt> will 680be invoked. To match the above <tt>myopen</tt>, <tt>mywrite</tt> could 681be written as: 682<pre> 683int mywrite(fp, buf, size) 684 SM_FILE_T *fp; 685 char *buf; 686 size_t size; 687{ 688 /* 689 ** As an example, we can change, modify, refuse, filter, etc. 690 ** the content being passed through before we ask the SmFtStdio 691 ** to do the actual write. 692 ** This example is very simple and contrived, but this keeps it 693 ** clear. 694 */ 695 if (size == 0) 696 return(0); /* why waste the cycles? */ 697 if (*buf == 'X') 698 *buf = 'Y'; 699 700 /* 701 ** Note that the file pointer passed to the next level is the 702 ** one that was stored in the cookie during the open. 703 */ 704 return(sm_io_write(fp->cookie, buf, size)); 705} 706</pre> 707As a thought-exercise for the fair reader: how would you modify the 708above two functions to make a "tee". That is the program will call 709<tt>sm_io_open</tt> or <tt>sm_io_write</tt> and two or more files will 710be opened and written to. (Hint: create a cookie to hold two or more 711file pointers). 712</menu> 713</p> 714<p></p> 715<hr> 716<br> 717<hr> 718<p></p> 719<center> 720<h1> 721<a name="defaultapi"> 722libsm sm_io default API definition 723</a> 724</h1> 725</center> 726<h2> Introduction </h2> 727<p> 728A number of <i>sm_io</i> API's perform similar to their <i>stdio</i> 729counterparts (same name as when the "sm_io_" is removed). 730One difference between <i>sm_io</i> and <i>stdio</i> functions is that 731if a "file pointer" (FILE/SM_FILE_T) 732is one of the arguments for the function, then it is now the first 733argument. <i>Sm_io</i> is standardized so that when a file pointer is 734one of the arguments to function then it will always be the first 735argument. Many of the <i>sm_io</i> function take a <i>timeout</i> 736argument (see <a href="#timeouts"><b>Timeouts</b></a>). 737</p> 738<p> 739The API you have selected is one of these. Please consult the 740appropriate <i>stdio</i> man page for now. 741</p> 742 743</body> 744</html> 745