forked from gozfree/gear-lib
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfio.c
186 lines (176 loc) · 4.65 KB
/
fio.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/******************************************************************************
* Copyright (C) 2014-2018 Zhifeng Gong <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with libraries; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
******************************************************************************/
#include "libfile.h"
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#define MAX_RETRY_CNT (3)
static struct file_desc *fio_open(const char *path, file_open_mode_t mode)
{
struct file_desc *file = (struct file_desc *)calloc(1,
sizeof(struct file_desc));
if (!file) {
printf("malloc failed:%d %s\n", errno, strerror(errno));
return NULL;
}
const char *flags = NULL;
switch(mode) {
case F_RDONLY:
flags = "r";
break;
case F_WRONLY:
flags = "w";
break;
case F_RDWR:
flags = "r+";
break;
case F_CREATE:
flags = "w+";
break;
case F_WRCLEAR:
flags = "w+";
break;
case F_APPEND:
flags = "a+";
break;
default:
printf("unsupport file mode!\n");
break;
}
file->fp = fopen(path, flags);
if (!file->fp) {
printf("fopen %s failed:%d %s\n", path, errno, strerror(errno));
free(file);
return NULL;
}
file->name = strdup(path);
return file;
}
static ssize_t fio_read(struct file_desc *file, void *buf, size_t len)
{
int n;
char *p = (char *)buf;
size_t left = len;
size_t step = 1024*1024;
int cnt = 0;
if (file == NULL || buf == NULL || len == 0) {
printf("%s paraments invalid!\n", __func__);
return -1;
}
FILE *fp = file->fp;
while (left > 0) {
if (left < step)
step = left;
n = fread((void *)p, 1, step, fp);
if (n > 0) {
p += n;
left -= n;
continue;
} else {
if (0 != feof(fp)) {
clearerr(fp);
break;
} else {
if (++cnt > MAX_RETRY_CNT)
break;
continue;
}
}
}
return (len - left);
}
static ssize_t fio_write(struct file_desc *file, const void *buf, size_t len)
{
ssize_t n;
char *p = (char *)buf;
int retry = 0;
if (file == NULL || buf == NULL || len == 0) {
printf("%s paraments invalid!\n", __func__);
return -1;
}
FILE *fp = file->fp;
size_t step = 1024 * 1024;
size_t left = len;
while (left > 0) {
if (left < step)
step = left;
n = fwrite((void *)p, 1, step, fp);
if (n > 0) {
p += n;
left -= n;
continue;
} else {
if (errno == EINTR || errno == EAGAIN) {
if (++retry > MAX_RETRY_CNT) {
printf("reach max retry\n");
break;
}
continue;
} else {
printf("write failed:%d %s\n", errno, strerror(errno));
break;
}
}
}
return (len - left);
}
static off_t fio_seek(struct file_desc *file, off_t offset, int whence)
{
if (!file) {
return -1;
}
return fseek(file->fp, offset, whence);
}
static int fio_sync(struct file_desc *file)
{
if (!file) {
return -1;
}
return fflush(file->fp);
}
static size_t fio_size(struct file_desc *file)
{
long size;
if (!file) {
return 0;
}
long tmp = ftell(file->fp);
fseek(file->fp, 0L, SEEK_END);
size = ftell(file->fp);
fseek(file->fp, tmp, SEEK_SET);
return (size_t)size;
}
static void fio_close(struct file_desc *file)
{
if (file) {
fclose(file->fp);
free(file->name);
free(file);
}
}
struct file_ops fio_ops = {
.open = fio_open,
.write = fio_write,
.read = fio_read,
.seek = fio_seek,
.sync = fio_sync,
.size = fio_size,
.close = fio_close,
};