123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /* 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"
- static fspr_status_t setptr(fspr_file_t *thefile, fspr_off_t pos )
- {
- fspr_off_t newbufpos;
- fspr_status_t rv;
- if (thefile->direction == 1) {
- rv = fspr_file_flush(thefile);
- if (rv) {
- return rv;
- }
- thefile->bufpos = thefile->direction = thefile->dataRead = 0;
- }
- newbufpos = pos - (thefile->filePtr - thefile->dataRead);
- if (newbufpos >= 0 && newbufpos <= thefile->dataRead) {
- thefile->bufpos = newbufpos;
- rv = APR_SUCCESS;
- }
- else {
- if (lseek(thefile->filedes, pos, SEEK_SET) != -1) {
- thefile->bufpos = thefile->dataRead = 0;
- thefile->filePtr = pos;
- rv = APR_SUCCESS;
- }
- else {
- rv = errno;
- }
- }
- return rv;
- }
- APR_DECLARE(fspr_status_t) fspr_file_seek(fspr_file_t *thefile, fspr_seek_where_t where, fspr_off_t *offset)
- {
- fspr_off_t rv;
- thefile->eof_hit = 0;
- if (thefile->buffered) {
- int rc = EINVAL;
- fspr_finfo_t finfo;
- switch (where) {
- case APR_SET:
- rc = setptr(thefile, *offset);
- break;
- case APR_CUR:
- rc = setptr(thefile, thefile->filePtr - thefile->dataRead + thefile->bufpos + *offset);
- break;
- case APR_END:
- rc = fspr_file_info_get(&finfo, APR_FINFO_SIZE, thefile);
- if (rc == APR_SUCCESS)
- rc = setptr(thefile, finfo.size + *offset);
- break;
- }
- *offset = thefile->filePtr - thefile->dataRead + thefile->bufpos;
- return rc;
- }
- else {
- rv = lseek(thefile->filedes, *offset, where);
- if (rv == -1) {
- *offset = -1;
- return errno;
- }
- else {
- *offset = rv;
- return APR_SUCCESS;
- }
- }
- }
- fspr_status_t fspr_file_trunc(fspr_file_t *fp, fspr_off_t offset)
- {
- if (ftruncate(fp->filedes, offset) == -1) {
- return errno;
- }
- return setptr(fp, offset);
- }
|