1 /***************************************************************************
2 * Copyright (C) 2007 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
8 * Copyright (C) 2008 by Spencer Oliver *
9 * spen@spen-soft.co.uk *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program; if not, write to the *
23 * Free Software Foundation, Inc., *
24 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
25 ***************************************************************************/
31 #include "configuration.h"
34 static inline int fileio_open_local(struct fileio
*fileio
)
38 switch (fileio
->access
)
41 strcpy(file_access
, "r");
44 strcpy(file_access
, "w");
46 case FILEIO_READWRITE
:
47 strcpy(file_access
, "w+");
50 strcpy(file_access
, "a");
52 case FILEIO_APPENDREAD
:
53 strcpy(file_access
, "a+");
56 LOG_ERROR("BUG: access neither read, write nor readwrite");
57 return ERROR_INVALID_ARGUMENTS
;
60 /* win32 always opens in binary mode */
62 if (fileio
->type
== FILEIO_BINARY
)
65 strcat(file_access
, "b");
68 if (!(fileio
->file
= open_file_from_path (fileio
->url
, file_access
)))
70 LOG_ERROR("couldn't open %s", fileio
->url
);
71 return ERROR_FILEIO_OPERATION_FAILED
;
74 if ((fileio
->access
!= FILEIO_WRITE
) || (fileio
->access
== FILEIO_READWRITE
))
76 /* NB! Here we use fseek() instead of stat(), since stat is a
77 * more advanced operation that might not apply to e.g. a disk path
78 * that refers to e.g. a tftp client */
81 result
= fseek(fileio
->file
, 0, SEEK_END
);
83 fileio
->size
= ftell(fileio
->file
);
85 result2
= fseek(fileio
->file
, 0, SEEK_SET
);
87 if ((fileio
->size
< 0)||(result
< 0)||(result2
< 0))
90 return ERROR_FILEIO_OPERATION_FAILED
;
101 int fileio_open(struct fileio
*fileio
, const char *url
, enum fileio_access access
, enum fileio_type type
)
103 int retval
= ERROR_OK
;
106 fileio
->access
= access
;
107 fileio
->url
= strdup(url
);
109 retval
= fileio_open_local(fileio
);
114 static inline int fileio_close_local(struct fileio
*fileio
)
117 if ((retval
= fclose(fileio
->file
)) != 0)
121 LOG_ERROR("BUG: fileio_local->file not a valid file descriptor");
125 LOG_ERROR("couldn't close %s: %s", fileio
->url
, strerror(errno
));
128 return ERROR_FILEIO_OPERATION_FAILED
;
134 int fileio_close(struct fileio
*fileio
)
138 retval
= fileio_close_local(fileio
);
140 free((void*)fileio
->url
);
146 int fileio_seek(struct fileio
*fileio
, size_t position
)
149 if ((retval
= fseek(fileio
->file
, position
, SEEK_SET
)) != 0)
151 LOG_ERROR("couldn't seek file %s: %s", fileio
->url
, strerror(errno
));
152 return ERROR_FILEIO_OPERATION_FAILED
;
158 static int fileio_local_read(struct fileio
*fileio
,
159 size_t size
, void *buffer
, size_t *size_read
)
161 ssize_t retval
= fread(buffer
, 1, size
, fileio
->file
);
162 *size_read
= (retval
>= 0) ? retval
: 0;
163 return (retval
< 0) ? retval
: ERROR_OK
;
166 int fileio_read(struct fileio
*fileio
, size_t size
, void *buffer
,
169 return fileio_local_read(fileio
, size
, buffer
, size_read
);
172 int fileio_read_u32(struct fileio
*fileio
, uint32_t *data
)
176 int retval
= fileio_local_read(fileio
, sizeof(uint32_t), buf
, &size_read
);
177 if (ERROR_OK
== retval
&& sizeof(uint32_t) != size_read
)
179 if (ERROR_OK
== retval
)
180 *data
= be_to_h_u32(buf
);
184 static int fileio_local_fgets(struct fileio
*fileio
,
185 size_t size
, void *buffer
)
187 if (fgets(buffer
, size
, fileio
->file
) == NULL
)
188 return ERROR_FILEIO_OPERATION_FAILED
;
193 int fileio_fgets(struct fileio
*fileio
, size_t size
, void *buffer
)
195 return fileio_local_fgets(fileio
, size
, buffer
);
198 static int fileio_local_write(struct fileio
*fileio
,
199 size_t size
, const void *buffer
, size_t *size_written
)
201 ssize_t retval
= fwrite(buffer
, 1, size
, fileio
->file
);
202 *size_written
= (retval
>= 0) ? retval
: 0;
203 return (retval
< 0) ? retval
: ERROR_OK
;
206 int fileio_write(struct fileio
*fileio
,
207 size_t size
, const void *buffer
, size_t *size_written
)
209 int retval
= fileio_local_write(fileio
, size
, buffer
, size_written
);
210 if (retval
== ERROR_OK
)
211 fileio
->size
+= *size_written
;
215 int fileio_write_u32(struct fileio
*fileio
, uint32_t data
)
218 h_u32_to_be(buf
, data
);
221 int retval
= fileio_write(fileio
, 4, buf
, &size_written
);
222 if (ERROR_OK
== retval
&& size_written
!= sizeof(uint32_t))