2020-06-03 18:40:05 -04:00
|
|
|
// SPDX-FileCopyrightText: 2014 MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors)
|
|
|
|
// SPDX-FileCopyrightText: Copyright (c) 2013-2017 Damien P. George
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: MIT
|
2017-01-26 23:10:09 -05:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2017-03-13 20:16:31 -04:00
|
|
|
#include "py/runtime.h"
|
2017-01-26 23:10:09 -05:00
|
|
|
#include "py/stream.h"
|
|
|
|
#include "py/reader.h"
|
|
|
|
#include "extmod/vfs.h"
|
|
|
|
|
|
|
|
#if MICROPY_READER_VFS
|
|
|
|
|
|
|
|
typedef struct _mp_reader_vfs_t {
|
|
|
|
mp_obj_t file;
|
|
|
|
uint16_t len;
|
|
|
|
uint16_t pos;
|
|
|
|
byte buf[24];
|
|
|
|
} mp_reader_vfs_t;
|
|
|
|
|
|
|
|
STATIC mp_uint_t mp_reader_vfs_readbyte(void *data) {
|
2021-03-15 09:57:36 -04:00
|
|
|
mp_reader_vfs_t *reader = (mp_reader_vfs_t *)data;
|
2017-01-26 23:10:09 -05:00
|
|
|
if (reader->pos >= reader->len) {
|
|
|
|
if (reader->len < sizeof(reader->buf)) {
|
|
|
|
return MP_READER_EOF;
|
|
|
|
} else {
|
|
|
|
int errcode;
|
|
|
|
reader->len = mp_stream_rw(reader->file, reader->buf, sizeof(reader->buf),
|
|
|
|
&errcode, MP_STREAM_RW_READ | MP_STREAM_RW_ONCE);
|
|
|
|
if (errcode != 0) {
|
|
|
|
// TODO handle errors properly
|
|
|
|
return MP_READER_EOF;
|
|
|
|
}
|
|
|
|
if (reader->len == 0) {
|
|
|
|
return MP_READER_EOF;
|
|
|
|
}
|
|
|
|
reader->pos = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return reader->buf[reader->pos++];
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC void mp_reader_vfs_close(void *data) {
|
2021-03-15 09:57:36 -04:00
|
|
|
mp_reader_vfs_t *reader = (mp_reader_vfs_t *)data;
|
2017-01-26 23:10:09 -05:00
|
|
|
mp_stream_close(reader->file);
|
|
|
|
m_del_obj(mp_reader_vfs_t, reader);
|
|
|
|
}
|
|
|
|
|
2017-03-13 20:16:31 -04:00
|
|
|
void mp_reader_new_file(mp_reader_t *reader, const char *filename) {
|
|
|
|
mp_reader_vfs_t *rf = m_new_obj(mp_reader_vfs_t);
|
extmod/vfs_reader: Fix mp_reader_new_file to open file in "rb" mode.
mp_reader_new_file() is used to read in files for importing, either .py or
.mpy files, for the lexer and persistent code loader respectively. In both
cases the file should be opened in raw bytes mode: the lexer handles
unicode characters itself, and .mpy files contain 8-bit bytes by nature.
Before this commit importing was working correctly because, although the
file was opened in text mode, all native filesystem implementations (POSIX,
FAT, LFS) would access the file in raw bytes mode via mp_stream_rw()
calling mp_stream_p_t.read(). So it was only an issue for non-native
filesystems, such as those implemented in Python. For Python-based
filesystem implementations, a call to mp_stream_rw() would go via IOBase
and then to readinto() at the Python level, and readinto() is only defined
on files opened in raw bytes mode.
Signed-off-by: Damien George <damien@micropython.org>
2020-08-08 01:39:56 -04:00
|
|
|
mp_obj_t args[2] = {
|
|
|
|
mp_obj_new_str(filename, strlen(filename)),
|
|
|
|
MP_OBJ_NEW_QSTR(MP_QSTR_rb),
|
|
|
|
};
|
|
|
|
rf->file = mp_vfs_open(MP_ARRAY_SIZE(args), &args[0], (mp_map_t *)&mp_const_empty_map);
|
2017-03-13 20:16:31 -04:00
|
|
|
int errcode;
|
|
|
|
rf->len = mp_stream_rw(rf->file, rf->buf, sizeof(rf->buf), &errcode, MP_STREAM_RW_READ | MP_STREAM_RW_ONCE);
|
|
|
|
if (errcode != 0) {
|
|
|
|
mp_raise_OSError(errcode);
|
2017-01-26 23:10:09 -05:00
|
|
|
}
|
|
|
|
rf->pos = 0;
|
|
|
|
reader->data = rf;
|
|
|
|
reader->readbyte = mp_reader_vfs_readbyte;
|
|
|
|
reader->close = mp_reader_vfs_close;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // MICROPY_READER_VFS
|