📄 readwrite.c
字号:
/* ==================================================================== * The Apache Software License, Version 1.1 * * Copyright (c) 2000-2001 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 4. The names "Apache" and "Apache Software Foundation" must * not be used to endorse or promote products derived from this * software without prior written permission. For written * permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache", * nor may "Apache" appear in their name, without prior written * permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. */#define INCL_DOS#define INCL_DOSERRORS#include "fileio.h"#include "apr_file_io.h"#include "apr_lib.h"#include "apr_strings.h"#include <malloc.h>apr_status_t apr_file_read(apr_file_t *thefile, void *buf, apr_size_t *nbytes){ ULONG rc = 0; ULONG bytesread; if (!thefile->isopen) { *nbytes = 0; return APR_EBADF; } if (thefile->buffered) { char *pos = (char *)buf; ULONG blocksize; ULONG size = *nbytes; apr_lock_acquire(thefile->mutex); if (thefile->direction == 1) { apr_file_flush(thefile); thefile->bufpos = 0; thefile->direction = 0; thefile->dataRead = 0; } while (rc == 0 && size > 0) { if (thefile->bufpos >= thefile->dataRead) { rc = DosRead(thefile->filedes, thefile->buffer, APR_FILE_BUFSIZE, &thefile->dataRead ); if (thefile->dataRead == 0) { if (rc == 0) thefile->eof_hit = TRUE; break; } thefile->filePtr += thefile->dataRead; thefile->bufpos = 0; } blocksize = size > thefile->dataRead - thefile->bufpos ? thefile->dataRead - thefile->bufpos : size; memcpy(pos, thefile->buffer + thefile->bufpos, blocksize); thefile->bufpos += blocksize; pos += blocksize; size -= blocksize; } *nbytes = rc == 0 ? pos - (char *)buf : 0; apr_lock_release(thefile->mutex); return APR_OS2_STATUS(rc); } else { if (thefile->pipe) DosResetEventSem(thefile->pipeSem, &rc); rc = DosRead(thefile->filedes, buf, *nbytes, &bytesread); if (rc == ERROR_NO_DATA && thefile->timeout != 0) { int rcwait = DosWaitEventSem(thefile->pipeSem, thefile->timeout >= 0 ? thefile->timeout / 1000 : SEM_INDEFINITE_WAIT); if (rcwait == 0) rc = DosRead(thefile->filedes, buf, *nbytes, &bytesread); } if (rc) { *nbytes = 0; return APR_OS2_STATUS(rc); } *nbytes = bytesread; if (bytesread == 0) { thefile->eof_hit = TRUE; } return APR_SUCCESS; }}apr_status_t apr_file_write(apr_file_t *thefile, const void *buf, apr_size_t *nbytes){ ULONG rc = 0; ULONG byteswritten; if (!thefile->isopen) { *nbytes = 0; return APR_EBADF; } if (thefile->buffered) { char *pos = (char *)buf; int blocksize; int size = *nbytes; apr_lock_acquire(thefile->mutex); if ( thefile->direction == 0 ) { // Position file pointer for writing at the offset we are logically reading from ULONG offset = thefile->filePtr - thefile->dataRead + thefile->bufpos; if (offset != thefile->filePtr) DosSetFilePtr(thefile->filedes, offset, FILE_BEGIN, &thefile->filePtr ); thefile->bufpos = thefile->dataRead = 0; thefile->direction = 1; } while (rc == 0 && size > 0) { if (thefile->bufpos == APR_FILE_BUFSIZE) // write buffer is full rc = apr_file_flush(thefile); blocksize = size > APR_FILE_BUFSIZE - thefile->bufpos ? APR_FILE_BUFSIZE - thefile->bufpos : size; memcpy(thefile->buffer + thefile->bufpos, pos, blocksize); thefile->bufpos += blocksize; pos += blocksize; size -= blocksize; } apr_lock_release(thefile->mutex); return APR_OS2_STATUS(rc); } else { rc = DosWrite(thefile->filedes, buf, *nbytes, &byteswritten); if (rc) { *nbytes = 0; return APR_OS2_STATUS(rc); } *nbytes = byteswritten; return APR_SUCCESS; }}#ifdef HAVE_WRITEVapr_status_t apr_file_writev(apr_file_t *thefile, const struct iovec *vec, apr_size_t nvec, apr_size_t *nbytes){ int bytes; if ((bytes = writev(thefile->filedes, vec, nvec)) < 0) { *nbytes = 0; return errno; } else { *nbytes = bytes; return APR_SUCCESS; }}#endifapr_status_t apr_file_putc(char ch, apr_file_t *thefile){ ULONG rc; ULONG byteswritten; if (!thefile->isopen) { return APR_EBADF; } rc = DosWrite(thefile->filedes, &ch, 1, &byteswritten); if (rc) { return APR_OS2_STATUS(rc); } return APR_SUCCESS;}apr_status_t apr_file_ungetc(char ch, apr_file_t *thefile){ apr_off_t offset = -1; return apr_file_seek(thefile, APR_CUR, &offset);}apr_status_t apr_file_getc(char *ch, apr_file_t *thefile){ ULONG rc; apr_size_t bytesread; if (!thefile->isopen) { return APR_EBADF; } bytesread = 1; rc = apr_file_read(thefile, ch, &bytesread); if (rc) { return rc; } if (bytesread == 0) { thefile->eof_hit = TRUE; return APR_EOF; } return APR_SUCCESS;}apr_status_t apr_file_puts(const char *str, apr_file_t *thefile){ apr_size_t len; len = strlen(str); return apr_file_write(thefile, str, &len); }apr_status_t apr_file_flush(apr_file_t *thefile){ if (thefile->buffered) { ULONG written = 0; int rc = 0; if (thefile->direction == 1 && thefile->bufpos) { rc = DosWrite(thefile->filedes, thefile->buffer, thefile->bufpos, &written); thefile->filePtr += written; if (rc == 0) thefile->bufpos = 0; } return APR_OS2_STATUS(rc); } else { /* There isn't anything to do if we aren't buffering the output * so just return success. */ return APR_SUCCESS; }}apr_status_t apr_file_gets(char *str, int len, apr_file_t *thefile){ size_t readlen; apr_status_t rv = APR_SUCCESS; int i; for (i = 0; i < len-1; i++) { readlen = 1; rv = apr_file_read(thefile, str+i, &readlen); if (readlen != 1) { rv = APR_EOF; break; } if (str[i] == '\r' || str[i] == '\x1A') i--; else if (str[i] == '\n') break; } str[i] = 0; return rv;}APR_DECLARE(int) apr_file_printf(apr_file_t *fptr, const char *format, ...){ int cc; va_list ap; char *buf; int len; buf = malloc(HUGE_STRING_LEN); if (buf == NULL) { return 0; } va_start(ap, format); len = apr_vsnprintf(buf, HUGE_STRING_LEN, format, ap); cc = apr_file_puts(buf, fptr); va_end(ap); free(buf); return (cc == APR_SUCCESS) ? len : -1;}apr_status_t apr_file_check_read(apr_file_t *fd){ int rc; if (!fd->pipe) return APR_SUCCESS; /* Not a pipe, assume no waiting */ rc = DosWaitEventSem(fd->pipeSem, SEM_IMMEDIATE_RETURN); if (rc == ERROR_TIMEOUT) return APR_TIMEUP; return APR_OS2_STATUS(rc);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -