123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- /* Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include "fspr_arch_file_io.h"
- #include "fspr_file_io.h"
- #include "fspr_lib.h"
- #include "fspr_portable.h"
- #include "fspr_strings.h"
- #include "fspr_arch_inherit.h"
- #include <string.h>
- fspr_status_t fspr_file_cleanup(void *thefile)
- {
- fspr_file_t *file = thefile;
- return fspr_file_close(file);
- }
- APR_DECLARE(fspr_status_t) fspr_file_open(fspr_file_t **new, const char *fname, fspr_int32_t flag, fspr_fileperms_t perm, fspr_pool_t *pool)
- {
- int oflags = 0;
- int mflags = OPEN_FLAGS_FAIL_ON_ERROR|OPEN_SHARE_DENYNONE;
- int rv;
- ULONG action;
- fspr_file_t *dafile = (fspr_file_t *)fspr_palloc(pool, sizeof(fspr_file_t));
- dafile->pool = pool;
- dafile->isopen = FALSE;
- dafile->eof_hit = FALSE;
- dafile->buffer = NULL;
- dafile->flags = flag;
- dafile->blocking = BLK_ON;
-
- if ((flag & APR_READ) && (flag & APR_WRITE)) {
- mflags |= OPEN_ACCESS_READWRITE;
- } else if (flag & APR_READ) {
- mflags |= OPEN_ACCESS_READONLY;
- } else if (flag & APR_WRITE) {
- mflags |= OPEN_ACCESS_WRITEONLY;
- } else {
- dafile->filedes = -1;
- return APR_EACCES;
- }
- dafile->buffered = (flag & APR_BUFFERED) > 0;
- if (dafile->buffered) {
- dafile->buffer = fspr_palloc(pool, APR_FILE_BUFSIZE);
- rv = fspr_thread_mutex_create(&dafile->mutex, 0, pool);
- if (rv)
- return rv;
- }
- if (flag & APR_CREATE) {
- oflags |= OPEN_ACTION_CREATE_IF_NEW;
- if (!(flag & APR_EXCL) && !(flag & APR_TRUNCATE)) {
- oflags |= OPEN_ACTION_OPEN_IF_EXISTS;
- }
- }
-
- if ((flag & APR_EXCL) && !(flag & APR_CREATE))
- return APR_EACCES;
- if (flag & APR_TRUNCATE) {
- oflags |= OPEN_ACTION_REPLACE_IF_EXISTS;
- } else if ((oflags & 0xFF) == 0) {
- oflags |= OPEN_ACTION_OPEN_IF_EXISTS;
- }
-
- rv = DosOpen(fname, &(dafile->filedes), &action, 0, 0, oflags, mflags, NULL);
-
- if (rv == 0 && (flag & APR_APPEND)) {
- ULONG newptr;
- rv = DosSetFilePtr(dafile->filedes, 0, FILE_END, &newptr );
-
- if (rv)
- DosClose(dafile->filedes);
- }
-
- if (rv != 0)
- return APR_FROM_OS_ERROR(rv);
-
- dafile->isopen = TRUE;
- dafile->fname = fspr_pstrdup(pool, fname);
- dafile->filePtr = 0;
- dafile->bufpos = 0;
- dafile->dataRead = 0;
- dafile->direction = 0;
- dafile->pipe = FALSE;
- if (!(flag & APR_FILE_NOCLEANUP)) {
- fspr_pool_cleanup_register(dafile->pool, dafile, fspr_file_cleanup, fspr_file_cleanup);
- }
- *new = dafile;
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_file_close(fspr_file_t *file)
- {
- ULONG rc;
- fspr_status_t status;
-
- if (file && file->isopen) {
- fspr_file_flush(file);
- rc = DosClose(file->filedes);
-
- if (rc == 0) {
- file->isopen = FALSE;
- status = APR_SUCCESS;
- if (file->flags & APR_DELONCLOSE) {
- status = APR_FROM_OS_ERROR(DosDelete(file->fname));
- }
- } else {
- return APR_FROM_OS_ERROR(rc);
- }
- }
- if (file->buffered)
- fspr_thread_mutex_destroy(file->mutex);
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_file_remove(const char *path, fspr_pool_t *pool)
- {
- ULONG rc = DosDelete(path);
- return APR_FROM_OS_ERROR(rc);
- }
- APR_DECLARE(fspr_status_t) fspr_file_rename(const char *from_path, const char *to_path,
- fspr_pool_t *p)
- {
- ULONG rc = DosMove(from_path, to_path);
- if (rc == ERROR_ACCESS_DENIED || rc == ERROR_ALREADY_EXISTS) {
- rc = DosDelete(to_path);
- if (rc == 0 || rc == ERROR_FILE_NOT_FOUND) {
- rc = DosMove(from_path, to_path);
- }
- }
- return APR_FROM_OS_ERROR(rc);
- }
- APR_DECLARE(fspr_status_t) fspr_os_file_get(fspr_os_file_t *thefile, fspr_file_t *file)
- {
- *thefile = file->filedes;
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_os_file_put(fspr_file_t **file, fspr_os_file_t *thefile, fspr_int32_t flags, fspr_pool_t *pool)
- {
- fspr_os_file_t *dafile = thefile;
- (*file) = fspr_palloc(pool, sizeof(fspr_file_t));
- (*file)->pool = pool;
- (*file)->filedes = *dafile;
- (*file)->isopen = TRUE;
- (*file)->eof_hit = FALSE;
- (*file)->flags = flags;
- (*file)->pipe = FALSE;
- (*file)->buffered = (flags & APR_BUFFERED) > 0;
- if ((*file)->buffered) {
- fspr_status_t rv;
- (*file)->buffer = fspr_palloc(pool, APR_FILE_BUFSIZE);
- rv = fspr_thread_mutex_create(&(*file)->mutex, 0, pool);
- if (rv)
- return rv;
- }
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_file_eof(fspr_file_t *fptr)
- {
- if (!fptr->isopen || fptr->eof_hit == 1) {
- return APR_EOF;
- }
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_file_open_stderr(fspr_file_t **thefile, fspr_pool_t *pool)
- {
- fspr_os_file_t fd = 2;
- return fspr_os_file_put(thefile, &fd, 0, pool);
- }
- APR_DECLARE(fspr_status_t) fspr_file_open_stdout(fspr_file_t **thefile, fspr_pool_t *pool)
- {
- fspr_os_file_t fd = 1;
- return fspr_os_file_put(thefile, &fd, 0, pool);
- }
- APR_DECLARE(fspr_status_t) fspr_file_open_stdin(fspr_file_t **thefile, fspr_pool_t *pool)
- {
- fspr_os_file_t fd = 0;
- return fspr_os_file_put(thefile, &fd, 0, pool);
- }
- APR_POOL_IMPLEMENT_ACCESSOR(file);
- APR_IMPLEMENT_INHERIT_SET(file, flags, pool, fspr_file_cleanup)
- APR_IMPLEMENT_INHERIT_UNSET(file, flags, pool, fspr_file_cleanup)
|