2 * Copyright (c) 2000-2001, 2005, 2006 Sendmail, Inc. and its suppliers.
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * By using this file, you agree to the terms and conditions set
11 * forth in the LICENSE file which can be found at the top level of
12 * the sendmail distribution.
15 #pragma ident "%Z%%M% %I% %E% SMI"
18 SM_RCSID("@(#)$Id: fflush.c,v 1.45 2006/03/03 22:25:00 ca Exp $")
26 #include <sm/assert.h>
27 #include <sm/setjmp.h>
32 ** SM_IO_FLUSH -- flush the buffer for a 'fp' to the "file"
34 ** Flush a single file. We don't allow this function to flush
35 ** all open files when fp==NULL any longer.
38 ** fp -- the file pointer buffer to flush
39 ** timeout -- time to complete the flush
42 ** Failure: SM_IO_EOF and sets errno
47 sm_io_flush(fp
, timeout
)
48 register SM_FILE_T
*fp
;
49 int SM_NONVOLATILE timeout
;
54 SM_REQUIRE_ISA(fp
, SmFileMagic
);
56 if ((fp
->f_flags
& (SMWR
| SMRW
)) == 0)
59 ** The file is not opened for writing, so it cannot be flushed
60 ** (writable means SMWR [write] or SMRW [read/write].
67 SM_CONVERT_TIME(fp
, fd
, timeout
, &to
);
69 /* Now do the flush */
70 return sm_flush(fp
, (int *) &timeout
);
74 ** SM_FLUSH -- perform the actual flush
76 ** Assumes that 'fp' has been validated before this function called.
79 ** fp -- file pointer to be flushed
80 ** timeout -- max time allowed for flush (milliseconds)
84 ** Failure: SM_IO_EOF and errno set
87 ** timeout will get updated with the time remaining (if any)
92 register SM_FILE_T
*fp
;
95 register unsigned char *p
;
99 SM_REQUIRE_ISA(fp
, SmFileMagic
);
111 if ((p
= fp
->f_bf
.smb_base
) == NULL
)
114 n
= fp
->f_p
- p
; /* write this much */
116 if ((fd
= sm_io_getinfo(fp
, SM_IO_WHAT_FD
, NULL
)) == -1)
118 /* can't get an fd, likely internal 'fake' fp */
124 ** Set these immediately to avoid problems with longjmp and to allow
125 ** exchange buffering (via setvbuf) in user write function.
129 fp
->f_w
= t
& (SMLBF
|SMNBF
) ? 0 : fp
->f_bf
.smb_size
; /* implies SMFBF */
131 for (; n
> 0; n
-= t
, p
+= t
)
133 errno
= 0; /* needed to ensure EOF correctly found */
135 /* Call the file type's write function */
136 t
= (*fp
->f_write
)(fp
, (char *)p
, n
);
139 if (t
== 0 && errno
== 0)
140 break; /* EOF found */
142 if (IS_IO_ERROR(fd
, t
, *timeout
))
144 fp
->f_flags
|= SMERR
;
146 /* errno set by fp->f_write */
149 SM_IO_WR_TIMEOUT(fp
, fd
, *timeout
);