2014-05-03 22:27:38 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2016-02-14 22:16:46 +00:00
|
|
|
#include "py/mpconfig.h"
|
2016-02-15 08:39:56 +00:00
|
|
|
// *_ADHOC part is for cc3200 port which doesn't use general uPy
|
|
|
|
// infrastructure and instead duplicates code. TODO: Resolve.
|
|
|
|
#if MICROPY_FSUSERMOUNT || MICROPY_FSUSERMOUNT_ADHOC
|
2016-02-14 22:16:46 +00:00
|
|
|
|
2014-03-17 14:04:19 +00:00
|
|
|
#include <stdio.h>
|
2014-06-11 14:41:14 +00:00
|
|
|
#include <errno.h>
|
2014-03-17 14:04:19 +00:00
|
|
|
|
2015-01-01 21:06:20 +00:00
|
|
|
#include "py/nlr.h"
|
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "py/stream.h"
|
2016-10-07 03:14:41 +00:00
|
|
|
#include "py/mperrno.h"
|
2015-03-04 20:35:41 +00:00
|
|
|
#include "lib/fatfs/ff.h"
|
2016-02-14 22:16:46 +00:00
|
|
|
#include "extmod/vfs_fat_file.h"
|
2014-03-17 14:04:19 +00:00
|
|
|
|
2016-02-06 19:05:43 +00:00
|
|
|
#if MICROPY_VFS_FAT
|
|
|
|
#define mp_type_fileio fatfs_type_fileio
|
|
|
|
#define mp_type_textio fatfs_type_textio
|
|
|
|
#endif
|
|
|
|
|
2014-06-11 14:41:14 +00:00
|
|
|
extern const mp_obj_type_t mp_type_fileio;
|
|
|
|
extern const mp_obj_type_t mp_type_textio;
|
|
|
|
|
|
|
|
// this table converts from FRESULT to POSIX errno
|
2014-07-19 15:39:13 +00:00
|
|
|
const byte fresult_to_errno_table[20] = {
|
2014-06-11 14:41:14 +00:00
|
|
|
[FR_OK] = 0,
|
2016-10-07 03:14:41 +00:00
|
|
|
[FR_DISK_ERR] = MP_EIO,
|
|
|
|
[FR_INT_ERR] = MP_EIO,
|
|
|
|
[FR_NOT_READY] = MP_EBUSY,
|
|
|
|
[FR_NO_FILE] = MP_ENOENT,
|
|
|
|
[FR_NO_PATH] = MP_ENOENT,
|
|
|
|
[FR_INVALID_NAME] = MP_EINVAL,
|
|
|
|
[FR_DENIED] = MP_EACCES,
|
|
|
|
[FR_EXIST] = MP_EEXIST,
|
|
|
|
[FR_INVALID_OBJECT] = MP_EINVAL,
|
|
|
|
[FR_WRITE_PROTECTED] = MP_EROFS,
|
|
|
|
[FR_INVALID_DRIVE] = MP_ENODEV,
|
|
|
|
[FR_NOT_ENABLED] = MP_ENODEV,
|
|
|
|
[FR_NO_FILESYSTEM] = MP_ENODEV,
|
|
|
|
[FR_MKFS_ABORTED] = MP_EIO,
|
|
|
|
[FR_TIMEOUT] = MP_EIO,
|
|
|
|
[FR_LOCKED] = MP_EIO,
|
|
|
|
[FR_NOT_ENOUGH_CORE] = MP_ENOMEM,
|
|
|
|
[FR_TOO_MANY_OPEN_FILES] = MP_EMFILE,
|
|
|
|
[FR_INVALID_PARAMETER] = MP_EINVAL,
|
2014-06-11 14:41:14 +00:00
|
|
|
};
|
|
|
|
|
2014-03-17 14:04:19 +00:00
|
|
|
typedef struct _pyb_file_obj_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
FIL fp;
|
|
|
|
} pyb_file_obj_t;
|
|
|
|
|
2016-02-14 15:43:51 +00:00
|
|
|
STATIC void file_obj_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) {
|
|
|
|
(void)kind;
|
2016-03-14 22:41:14 +00:00
|
|
|
mp_printf(print, "<io.%s %p>", mp_obj_get_type_str(self_in), MP_OBJ_TO_PTR(self_in));
|
2014-03-17 14:04:19 +00:00
|
|
|
}
|
|
|
|
|
2014-07-27 21:38:58 +00:00
|
|
|
STATIC mp_uint_t file_obj_read(mp_obj_t self_in, void *buf, mp_uint_t size, int *errcode) {
|
2016-02-14 14:22:11 +00:00
|
|
|
pyb_file_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
2014-04-03 17:32:54 +00:00
|
|
|
UINT sz_out;
|
2014-06-11 14:41:14 +00:00
|
|
|
FRESULT res = f_read(&self->fp, buf, size, &sz_out);
|
|
|
|
if (res != FR_OK) {
|
|
|
|
*errcode = fresult_to_errno_table[res];
|
2014-07-27 21:38:58 +00:00
|
|
|
return MP_STREAM_ERROR;
|
2014-06-11 14:41:14 +00:00
|
|
|
}
|
2014-04-03 17:32:54 +00:00
|
|
|
return sz_out;
|
2014-03-17 14:04:19 +00:00
|
|
|
}
|
|
|
|
|
2014-07-27 21:38:58 +00:00
|
|
|
STATIC mp_uint_t file_obj_write(mp_obj_t self_in, const void *buf, mp_uint_t size, int *errcode) {
|
2016-02-14 14:22:11 +00:00
|
|
|
pyb_file_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
2014-04-03 17:32:54 +00:00
|
|
|
UINT sz_out;
|
2014-06-11 14:41:14 +00:00
|
|
|
FRESULT res = f_write(&self->fp, buf, size, &sz_out);
|
|
|
|
if (res != FR_OK) {
|
|
|
|
*errcode = fresult_to_errno_table[res];
|
2014-07-27 21:38:58 +00:00
|
|
|
return MP_STREAM_ERROR;
|
2014-06-11 14:41:14 +00:00
|
|
|
}
|
2015-05-22 03:16:42 +00:00
|
|
|
if (sz_out != size) {
|
|
|
|
// The FatFS documentation says that this means disk full.
|
2016-10-07 03:14:41 +00:00
|
|
|
*errcode = MP_ENOSPC;
|
2015-05-22 03:16:42 +00:00
|
|
|
return MP_STREAM_ERROR;
|
|
|
|
}
|
2014-04-03 17:32:54 +00:00
|
|
|
return sz_out;
|
2014-03-17 14:04:19 +00:00
|
|
|
}
|
|
|
|
|
2014-07-19 15:39:13 +00:00
|
|
|
|
2016-02-14 15:43:51 +00:00
|
|
|
STATIC mp_obj_t file_obj_close(mp_obj_t self_in) {
|
2016-02-14 14:22:11 +00:00
|
|
|
pyb_file_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
2016-10-24 01:59:20 +00:00
|
|
|
// if fs==NULL then the file is closed and in that case this method is a no-op
|
|
|
|
if (self->fp.fs != NULL) {
|
|
|
|
FRESULT res = f_close(&self->fp);
|
|
|
|
if (res != FR_OK) {
|
|
|
|
mp_raise_OSError(fresult_to_errno_table[res]);
|
|
|
|
}
|
2016-10-18 13:18:15 +00:00
|
|
|
}
|
2014-03-17 14:04:19 +00:00
|
|
|
return mp_const_none;
|
|
|
|
}
|
2014-04-03 17:32:54 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_1(file_obj_close_obj, file_obj_close);
|
|
|
|
|
2016-02-14 15:43:51 +00:00
|
|
|
STATIC mp_obj_t file_obj___exit__(size_t n_args, const mp_obj_t *args) {
|
|
|
|
(void)n_args;
|
2014-04-03 17:32:54 +00:00
|
|
|
return file_obj_close(args[0]);
|
|
|
|
}
|
2014-06-11 14:41:14 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(file_obj___exit___obj, 4, 4, file_obj___exit__);
|
|
|
|
|
2016-02-14 14:22:11 +00:00
|
|
|
STATIC mp_uint_t file_obj_ioctl(mp_obj_t o_in, mp_uint_t request, uintptr_t arg, int *errcode) {
|
|
|
|
pyb_file_obj_t *self = MP_OBJ_TO_PTR(o_in);
|
2014-06-11 14:41:14 +00:00
|
|
|
|
2014-11-16 22:16:14 +00:00
|
|
|
if (request == MP_STREAM_SEEK) {
|
2016-02-14 14:22:11 +00:00
|
|
|
struct mp_stream_seek_t *s = (struct mp_stream_seek_t*)(uintptr_t)arg;
|
2014-06-11 14:41:14 +00:00
|
|
|
|
2014-11-16 22:16:14 +00:00
|
|
|
switch (s->whence) {
|
|
|
|
case 0: // SEEK_SET
|
|
|
|
f_lseek(&self->fp, s->offset);
|
|
|
|
break;
|
2014-06-11 14:41:14 +00:00
|
|
|
|
2014-11-16 22:16:14 +00:00
|
|
|
case 1: // SEEK_CUR
|
|
|
|
if (s->offset != 0) {
|
2016-10-07 03:14:41 +00:00
|
|
|
*errcode = MP_EOPNOTSUPP;
|
2014-11-16 22:16:14 +00:00
|
|
|
return MP_STREAM_ERROR;
|
|
|
|
}
|
|
|
|
// no-operation
|
|
|
|
break;
|
2014-06-11 14:41:14 +00:00
|
|
|
|
2014-11-16 22:16:14 +00:00
|
|
|
case 2: // SEEK_END
|
|
|
|
f_lseek(&self->fp, f_size(&self->fp) + s->offset);
|
|
|
|
break;
|
|
|
|
}
|
2014-06-11 14:41:14 +00:00
|
|
|
|
2014-11-16 22:16:14 +00:00
|
|
|
s->offset = f_tell(&self->fp);
|
|
|
|
return 0;
|
2014-06-11 14:41:14 +00:00
|
|
|
|
2016-11-22 13:30:52 +00:00
|
|
|
} else if (request == MP_STREAM_FLUSH) {
|
|
|
|
FRESULT res = f_sync(&self->fp);
|
|
|
|
if (res != FR_OK) {
|
|
|
|
*errcode = fresult_to_errno_table[res];
|
|
|
|
return MP_STREAM_ERROR;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
2014-11-16 22:16:14 +00:00
|
|
|
} else {
|
2016-10-07 03:14:41 +00:00
|
|
|
*errcode = MP_EINVAL;
|
2014-11-16 22:16:14 +00:00
|
|
|
return MP_STREAM_ERROR;
|
|
|
|
}
|
2014-06-11 14:41:14 +00:00
|
|
|
}
|
|
|
|
|
2014-10-04 06:51:33 +00:00
|
|
|
// Note: encoding is ignored for now; it's also not a valid kwarg for CPython's FileIO,
|
|
|
|
// but by adding it here we can use one single mp_arg_t array for open() and FileIO's constructor
|
|
|
|
STATIC const mp_arg_t file_open_args[] = {
|
2016-02-14 14:22:11 +00:00
|
|
|
{ MP_QSTR_file, MP_ARG_OBJ | MP_ARG_REQUIRED, {.u_rom_obj = MP_ROM_PTR(&mp_const_none_obj)} },
|
2014-10-04 06:51:33 +00:00
|
|
|
{ MP_QSTR_mode, MP_ARG_OBJ, {.u_obj = MP_OBJ_NEW_QSTR(MP_QSTR_r)} },
|
2016-02-14 14:22:11 +00:00
|
|
|
{ MP_QSTR_encoding, MP_ARG_OBJ | MP_ARG_KW_ONLY, {.u_rom_obj = MP_ROM_PTR(&mp_const_none_obj)} },
|
2014-10-04 06:51:33 +00:00
|
|
|
};
|
|
|
|
#define FILE_OPEN_NUM_ARGS MP_ARRAY_SIZE(file_open_args)
|
2014-06-11 14:41:14 +00:00
|
|
|
|
2016-01-03 15:55:55 +00:00
|
|
|
STATIC mp_obj_t file_open(const mp_obj_type_t *type, mp_arg_val_t *args) {
|
2014-06-11 14:41:14 +00:00
|
|
|
int mode = 0;
|
2014-10-04 06:51:33 +00:00
|
|
|
const char *mode_s = mp_obj_str_get_str(args[1].u_obj);
|
|
|
|
// TODO make sure only one of r, w, x, a, and b, t are specified
|
|
|
|
while (*mode_s) {
|
|
|
|
switch (*mode_s++) {
|
|
|
|
case 'r':
|
|
|
|
mode |= FA_READ;
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
mode |= FA_WRITE | FA_CREATE_ALWAYS;
|
|
|
|
break;
|
|
|
|
case 'x':
|
|
|
|
mode |= FA_WRITE | FA_CREATE_NEW;
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
mode |= FA_WRITE | FA_OPEN_ALWAYS;
|
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
mode |= FA_READ | FA_WRITE;
|
|
|
|
break;
|
|
|
|
#if MICROPY_PY_IO_FILEIO
|
|
|
|
case 'b':
|
2016-01-03 15:55:55 +00:00
|
|
|
type = &mp_type_fileio;
|
2014-10-04 06:51:33 +00:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case 't':
|
2016-01-03 15:55:55 +00:00
|
|
|
type = &mp_type_textio;
|
2014-10-04 06:51:33 +00:00
|
|
|
break;
|
2014-06-11 14:41:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pyb_file_obj_t *o = m_new_obj_with_finaliser(pyb_file_obj_t);
|
|
|
|
o->base.type = type;
|
|
|
|
|
2014-10-04 06:51:33 +00:00
|
|
|
const char *fname = mp_obj_str_get_str(args[0].u_obj);
|
2014-06-11 14:41:14 +00:00
|
|
|
FRESULT res = f_open(&o->fp, fname, mode);
|
|
|
|
if (res != FR_OK) {
|
|
|
|
m_del_obj(pyb_file_obj_t, o);
|
2016-10-07 02:44:55 +00:00
|
|
|
mp_raise_OSError(fresult_to_errno_table[res]);
|
2014-06-11 14:41:14 +00:00
|
|
|
}
|
|
|
|
|
2014-06-11 15:01:52 +00:00
|
|
|
// for 'a' mode, we must begin at the end of the file
|
|
|
|
if ((mode & FA_OPEN_ALWAYS) != 0) {
|
|
|
|
f_lseek(&o->fp, f_size(&o->fp));
|
|
|
|
}
|
|
|
|
|
2016-02-14 14:22:11 +00:00
|
|
|
return MP_OBJ_FROM_PTR(o);
|
2014-06-11 14:41:14 +00:00
|
|
|
}
|
2014-03-17 14:04:19 +00:00
|
|
|
|
2016-02-14 14:22:11 +00:00
|
|
|
STATIC mp_obj_t file_obj_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
2014-10-04 06:51:33 +00:00
|
|
|
mp_arg_val_t arg_vals[FILE_OPEN_NUM_ARGS];
|
|
|
|
mp_arg_parse_all_kw_array(n_args, n_kw, args, FILE_OPEN_NUM_ARGS, file_open_args, arg_vals);
|
2016-01-03 15:55:55 +00:00
|
|
|
return file_open(type, arg_vals);
|
2014-10-04 06:51:33 +00:00
|
|
|
}
|
|
|
|
|
2014-03-17 14:04:19 +00:00
|
|
|
// TODO gc hook to close the file if not already closed
|
|
|
|
|
2016-02-14 14:22:11 +00:00
|
|
|
STATIC const mp_rom_map_elem_t rawfile_locals_dict_table[] = {
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_read), MP_ROM_PTR(&mp_stream_read_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_readinto), MP_ROM_PTR(&mp_stream_readinto_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_readline), MP_ROM_PTR(&mp_stream_unbuffered_readline_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_readlines), MP_ROM_PTR(&mp_stream_unbuffered_readlines_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_write), MP_ROM_PTR(&mp_stream_write_obj) },
|
2016-11-22 13:30:52 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_flush), MP_ROM_PTR(&mp_stream_flush_obj) },
|
2016-02-14 14:22:11 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_close), MP_ROM_PTR(&file_obj_close_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_seek), MP_ROM_PTR(&mp_stream_seek_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_tell), MP_ROM_PTR(&mp_stream_tell_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR___del__), MP_ROM_PTR(&file_obj_close_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR___enter__), MP_ROM_PTR(&mp_identity_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR___exit__), MP_ROM_PTR(&file_obj___exit___obj) },
|
2014-03-17 14:04:19 +00:00
|
|
|
};
|
|
|
|
|
2014-06-11 14:41:14 +00:00
|
|
|
STATIC MP_DEFINE_CONST_DICT(rawfile_locals_dict, rawfile_locals_dict_table);
|
2014-04-05 22:02:23 +00:00
|
|
|
|
2014-06-11 14:41:14 +00:00
|
|
|
#if MICROPY_PY_IO_FILEIO
|
|
|
|
STATIC const mp_stream_p_t fileio_stream_p = {
|
|
|
|
.read = file_obj_read,
|
|
|
|
.write = file_obj_write,
|
2014-11-16 22:16:14 +00:00
|
|
|
.ioctl = file_obj_ioctl,
|
2014-04-05 22:02:23 +00:00
|
|
|
};
|
|
|
|
|
2014-06-11 14:41:14 +00:00
|
|
|
const mp_obj_type_t mp_type_fileio = {
|
2014-03-17 14:04:19 +00:00
|
|
|
{ &mp_type_type },
|
2014-04-08 01:08:16 +00:00
|
|
|
.name = MP_QSTR_FileIO,
|
2014-03-17 14:04:19 +00:00
|
|
|
.print = file_obj_print,
|
2014-06-11 14:41:14 +00:00
|
|
|
.make_new = file_obj_make_new,
|
2014-04-03 17:32:54 +00:00
|
|
|
.getiter = mp_identity,
|
|
|
|
.iternext = mp_stream_unbuffered_iter,
|
2016-06-18 15:19:24 +00:00
|
|
|
.protocol = &fileio_stream_p,
|
2016-02-14 14:22:11 +00:00
|
|
|
.locals_dict = (mp_obj_dict_t*)&rawfile_locals_dict,
|
2014-03-17 14:04:19 +00:00
|
|
|
};
|
2014-06-11 14:41:14 +00:00
|
|
|
#endif
|
2014-03-17 14:04:19 +00:00
|
|
|
|
2014-06-11 14:41:14 +00:00
|
|
|
STATIC const mp_stream_p_t textio_stream_p = {
|
|
|
|
.read = file_obj_read,
|
|
|
|
.write = file_obj_write,
|
2014-11-16 23:56:37 +00:00
|
|
|
.ioctl = file_obj_ioctl,
|
2014-07-27 21:38:58 +00:00
|
|
|
.is_text = true,
|
2014-06-11 14:41:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const mp_obj_type_t mp_type_textio = {
|
|
|
|
{ &mp_type_type },
|
|
|
|
.name = MP_QSTR_TextIOWrapper,
|
|
|
|
.print = file_obj_print,
|
|
|
|
.make_new = file_obj_make_new,
|
|
|
|
.getiter = mp_identity,
|
|
|
|
.iternext = mp_stream_unbuffered_iter,
|
2016-06-18 15:19:24 +00:00
|
|
|
.protocol = &textio_stream_p,
|
2016-02-14 14:22:11 +00:00
|
|
|
.locals_dict = (mp_obj_dict_t*)&rawfile_locals_dict,
|
2014-06-11 14:41:14 +00:00
|
|
|
};
|
2014-03-17 14:04:19 +00:00
|
|
|
|
2014-04-03 17:32:54 +00:00
|
|
|
// Factory function for I/O stream classes
|
2016-02-06 19:02:34 +00:00
|
|
|
mp_obj_t fatfs_builtin_open(mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs) {
|
2014-10-04 06:51:33 +00:00
|
|
|
// TODO: analyze buffering args and instantiate appropriate type
|
|
|
|
mp_arg_val_t arg_vals[FILE_OPEN_NUM_ARGS];
|
|
|
|
mp_arg_parse_all(n_args, args, kwargs, FILE_OPEN_NUM_ARGS, file_open_args, arg_vals);
|
2016-01-03 15:55:55 +00:00
|
|
|
return file_open(&mp_type_textio, arg_vals);
|
2014-04-03 17:32:54 +00:00
|
|
|
}
|
2016-02-14 22:16:46 +00:00
|
|
|
|
|
|
|
#endif // MICROPY_FSUSERMOUNT
|