Apache HTTPD
copy.c
Go to the documentation of this file.
1/* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements. See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "apr_arch_file_io.h"
18#include "apr_file_io.h"
19
21 const char *to_path,
25{
26 apr_file_t *s, *d;
28 apr_finfo_t finfo;
30
31 /* Open source file. */
33 if (status)
34 return status;
35
36 /* Maybe get its permissions. */
40 apr_file_close(s); /* toss any error */
41 return status;
42 }
43 perms = finfo.protection;
44 apr_file_perms_set(to_path, perms); /* ignore any failure */
45 }
46 else
48
49 /* Open dest file. */
51 if (status) {
52 apr_file_close(s); /* toss any error */
53 return status;
54 }
55
56#if BUFSIZ > APR_FILE_DEFAULT_BUFSIZE
57#define COPY_BUFSIZ BUFSIZ
58#else
59#define COPY_BUFSIZ APR_FILE_DEFAULT_BUFSIZE
60#endif
61
62 /* Copy bytes till the cows come home. */
63 while (1) {
64 char buf[COPY_BUFSIZ];
68
69 /* Read 'em. */
72 apr_file_close(s); /* toss any error */
73 apr_file_close(d); /* toss any error */
74 return read_err;
75 }
76
77 /* Write 'em. */
79 if (write_err) {
80 apr_file_close(s); /* toss any error */
81 apr_file_close(d); /* toss any error */
82 return write_err;
83 }
84
87 if (status) {
88 apr_file_close(d); /* toss any error */
89 return status;
90 }
91
92 /* return the results of this close: an error, or success */
93 return apr_file_close(d);
94 }
95 }
96 /* NOTREACHED */
97}
98
109
111 const char *to_path,
114{
117 perms,
118 pool);
119}
APR File I/O Handling.
apr_size_t const unsigned char unsigned int unsigned int d
Definition apr_siphash.h:72
const unsigned char * buf
Definition util_md5.h:50
#define APR_INCOMPLETE
Definition apr_errno.h:452
#define APR_STATUS_IS_EOF(s)
Definition apr_errno.h:567
const char apr_ssize_t int flags
Definition apr_encode.h:168
const void apr_status_t(*) apr_status_t(* APR_DECLARE)(void) apr_pool_pre_cleanup_register(apr_pool_t *p
Definition apr_pools.h:646
apr_size_t size
const char int apr_pool_t * pool
Definition apr_cstr.h:84
#define APR_SUCCESS
Definition apr_errno.h:225
int apr_status_t
Definition apr_errno.h:44
apr_int32_t apr_fileperms_t
const char apr_fileperms_t perms
const char * to_path
#define APR_FOPEN_TRUNCATE
Definition apr_file_io.h:58
#define APR_FOPEN_APPEND
Definition apr_file_io.h:57
#define APR_FOPEN_WRITE
Definition apr_file_io.h:55
#define APR_FOPEN_READ
Definition apr_file_io.h:54
#define APR_FOPEN_CREATE
Definition apr_file_io.h:56
#define APR_OS_DEFAULT
#define APR_FILE_SOURCE_PERMS
#define APR_FINFO_PROT
const char * s
Definition apr_strings.h:95
int int status
return NULL
Definition mod_so.c:359
apr_fileperms_t protection
static apr_status_t apr_file_transfer_contents(const char *from_path, const char *to_path, apr_int32_t flags, apr_fileperms_t to_perms, apr_pool_t *pool)
Definition copy.c:20
#define COPY_BUFSIZ