unix/fiss

lib/libbio/bio.3 in master
Repositories | Summary | Log | Files | LICENSE

bio.3 (6833B) download


  1.deEX
  2.ift .ft5
  3.nf
  4..
  5.deEE
  6.ft1
  7.fi
  8..
  9.TH BIO 3
 10.SH NAME
 11Bopen, Bfdopen, Binit, Binits, Brdline, Brdstr, Bgetc, Bgetrune, Bgetd, Bungetc, Bungetrune, Bread, Bseek, Boffset, Bfildes, Blinelen, Bputc, Bputrune, Bprint, Bvprint, Bwrite, Bflush, Bterm, Bbuffered \- buffered input/output
 12.SH SYNOPSIS
 13.ta \w'\fLBiobuf* 'u
 14.B #include <utf.h>
 15.br
 16.B #include <fmt.h>
 17.br
 18.B #include <bio.h>
 19.PP
 20.B
 21Biobuf*	Bopen(char *file, int mode)
 22.PP
 23.B
 24Biobuf*	Bfdopen(int fd, int mode)
 25.PP
 26.B
 27int	Binit(Biobuf *bp, int fd, int mode)
 28.PP
 29.B
 30int	Binits(Biobufhdr *bp, int fd, int mode, uchar *buf, int size)
 31.PP
 32.B
 33int	Bterm(Biobufhdr *bp)
 34.PP
 35.B
 36int	Bprint(Biobufhdr *bp, char *format, ...)
 37.PP
 38.B
 39int	Bvprint(Biobufhdr *bp, char *format, va_list arglist);
 40.PP
 41.B
 42void*	Brdline(Biobufhdr *bp, int delim)
 43.PP
 44.B
 45char*	Brdstr(Biobufhdr *bp, int delim, int nulldelim)
 46.PP
 47.B
 48int	Blinelen(Biobufhdr *bp)
 49.PP
 50.B
 51vlong	Boffset(Biobufhdr *bp)
 52.PP
 53.B
 54int	Bfildes(Biobufhdr *bp)
 55.PP
 56.B
 57int	Bgetc(Biobufhdr *bp)
 58.PP
 59.B
 60long	Bgetrune(Biobufhdr *bp)
 61.PP
 62.B
 63int	Bgetd(Biobufhdr *bp, double *d)
 64.PP
 65.B
 66int	Bungetc(Biobufhdr *bp)
 67.PP
 68.B
 69int	Bungetrune(Biobufhdr *bp)
 70.PP
 71.B
 72vlong	Bseek(Biobufhdr *bp, vlong n, int type)
 73.PP
 74.B
 75int	Bputc(Biobufhdr *bp, int c)
 76.PP
 77.B
 78int	Bputrune(Biobufhdr *bp, long c)
 79.PP
 80.B
 81long	Bread(Biobufhdr *bp, void *addr, long nbytes)
 82.PP
 83.B
 84long	Bwrite(Biobufhdr *bp, void *addr, long nbytes)
 85.PP
 86.B
 87int	Bflush(Biobufhdr *bp)
 88.PP
 89.B
 90int	Bbuffered(Biobufhdr *bp)
 91.PP
 92.SH DESCRIPTION
 93These routines implement fast buffered I/O.
 94I/O on different file descriptors is independent.
 95.PP
 96.I Bopen
 97opens
 98.I file
 99for mode
100.B O_RDONLY
101or creates for mode
102.BR O_WRONLY .
103It calls
104.IR malloc (3)
105to allocate a buffer.
106.PP
107.I Bfdopen
108allocates a buffer for the already-open file descriptor
109.I fd
110for mode
111.B O_RDONLY
112or
113.BR O_WRONLY .
114It calls
115.IR malloc (3)
116to allocate a buffer.
117.PP
118.I Binit
119initializes a standard size buffer, type
120.IR Biobuf ,
121with the open file descriptor passed in
122by the user.
123.I Binits
124initializes a non-standard size buffer, type
125.IR Biobufhdr ,
126with the open file descriptor,
127buffer area, and buffer size passed in
128by the user.
129.I Biobuf
130and
131.I Biobufhdr
132are related by the declaration:
133.IP
134.EX
135typedef struct Biobuf Biobuf;
136struct Biobuf
137{
138	Biobufhdr;
139	uchar b[Bungetsize+Bsize];
140};
141.EE
142.PP
143Arguments
144of types pointer to Biobuf and pointer to Biobufhdr
145can be used interchangeably in the following routines.
146.PP
147.IR Bopen ,
148.IR Binit ,
149or
150.I Binits
151should be called before any of the
152other routines on that buffer.
153.I Bfildes
154returns the integer file descriptor of the associated open file.
155.PP
156.I Bterm
157flushes the buffer for
158.IR bp .
159If the buffer was allocated by
160.IR Bopen ,
161the buffer is
162.I freed
163and the file is closed.
164.PP
165.I Brdline
166reads a string from the file associated with
167.I bp
168up to and including the first
169.I delim
170character.
171The delimiter character at the end of the line is
172not altered.
173.I Brdline
174returns a pointer to the start of the line or
175.L 0
176on end-of-file or read error.
177.I Blinelen
178returns the length (including the delimiter)
179of the most recent string returned by
180.IR Brdline .
181.PP
182.I Brdstr
183returns a
184.IR malloc (3)-allocated
185buffer containing the next line of input delimited by
186.IR delim ,
187terminated by a NUL (0) byte.
188Unlike
189.IR Brdline ,
190which returns when its buffer is full even if no delimiter has been found,
191.I Brdstr
192will return an arbitrarily long line in a single call.
193If
194.I nulldelim
195is set, the terminal delimiter will be overwritten with a NUL.
196After a successful call to
197.IR Brdstr ,
198the return value of
199.I Blinelen
200will be the length of the returned buffer, excluding the NUL.
201.PP
202.I Bgetc
203returns the next character from
204.IR bp ,
205or a negative value
206at end of file.
207.I Bungetc
208may be called immediately after
209.I Bgetc
210to allow the same character to be reread.
211.PP
212.I Bgetrune
213calls
214.I Bgetc
215to read the bytes of the next
216.SM UTF
217sequence in the input stream and returns the value of the rune
218represented by the sequence.
219It returns a negative value
220at end of file.
221.I Bungetrune
222may be called immediately after
223.I Bgetrune
224to allow the same
225.SM UTF
226sequence to be reread as either bytes or a rune.
227.I Bungetc
228and
229.I Bungetrune
230may back up a maximum of five bytes.
231.PP
232.I Bgetd
233uses
234.I fmtcharstod
235(see
236.IR fmtstrtod (3))
237and
238.I Bgetc
239to read the formatted
240floating-point number in the input stream,
241skipping initial blanks and tabs.
242The value is stored in
243.BR *d.
244.PP
245.I Bread
246reads
247.I nbytes
248of data from
249.I bp
250into memory starting at
251.IR addr .
252The number of bytes read is returned on success
253and a negative value is returned if a read error occurred.
254.PP
255.I Bseek
256applies
257.IR lseek (2)
258to
259.IR bp .
260It returns the new file offset.
261.I Boffset
262returns the file offset of the next character to be processed.
263.PP
264.I Bputc
265outputs the low order 8 bits of
266.I c
267on
268.IR bp .
269If this causes a
270.IR write
271to occur and there is an error,
272a negative value is returned.
273Otherwise, a zero is returned.
274.PP
275.I Bputrune
276calls
277.I Bputc
278to output the low order
27916 bits of
280.I c
281as a rune
282in
283.SM UTF
284format
285on the output stream.
286.PP
287.I Bprint
288is a buffered interface to
289.IR print (3).
290If this causes a
291.IR write
292to occur and there is an error,
293a negative value
294.RB ( Beof )
295is returned.
296Otherwise, the number of bytes output is returned.
297.I Bvprint
298does the same except it takes as argument a
299.B va_list
300parameter, so it can be called within a variadic function.
301.PP
302.I Bwrite
303outputs
304.I nbytes
305of data starting at
306.I addr
307to
308.IR bp .
309If this causes a
310.IR write
311to occur and there is an error,
312a negative value is returned.
313Otherwise, the number of bytes written is returned.
314.PP
315.I Bflush
316causes any buffered output associated with
317.I bp
318to be written.
319The return is as for
320.IR Bputc .
321.I Bflush
322is called on
323exit for every buffer still open
324for writing.
325.PP
326.I Bbuffered
327returns the number of bytes in the buffer.
328When reading, this is the number of bytes still available from the last
329read on the file; when writing, it is the number of bytes ready to be
330written.
331.SH SOURCE
332.B https://9fans.github.io/plan9port/unix
333.SH SEE ALSO
334.IR open (2),
335.IR print (3),
336.IR atexit (3),
337.IR utf (7),
338.SH DIAGNOSTICS
339.I Bio
340routines that return integers yield
341.B Beof
342if 
343.I bp
344is not the descriptor of an open file.
345.I Bopen
346returns zero if the file cannot be opened in the given mode.
347All routines set
348.I errstr
349on error.
350.SH BUGS
351.I Brdline
352returns an error on strings longer than the buffer associated
353with the file
354and also if the end-of-file is encountered
355before a delimiter.
356.I Blinelen
357will tell how many characters are available
358in these cases.
359In the case of a true end-of-file,
360.I Blinelen
361will return zero.
362At the cost of allocating a buffer,
363.I Brdstr
364sidesteps these issues.
365.PP
366The data returned by
367.I Brdline
368may be overwritten by calls to any other
369.I bio
370routine on the same
371.IR bp.