py/modio: Initial implementation of io.BufferedWriter class.
Just .write() method implemented currently.
This commit is contained in:
parent
3dbd2ee926
commit
5d93dfbc2c
72
py/modio.c
72
py/modio.c
@ -24,13 +24,82 @@
|
|||||||
* THE SOFTWARE.
|
* THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "py/runtime.h"
|
||||||
#include "py/builtin.h"
|
#include "py/builtin.h"
|
||||||
|
#include "py/stream.h"
|
||||||
|
|
||||||
#if MICROPY_PY_IO
|
#if MICROPY_PY_IO
|
||||||
|
|
||||||
extern const mp_obj_type_t mp_type_fileio;
|
extern const mp_obj_type_t mp_type_fileio;
|
||||||
extern const mp_obj_type_t mp_type_textio;
|
extern const mp_obj_type_t mp_type_textio;
|
||||||
|
|
||||||
|
#if MICROPY_PY_IO_BUFFEREDWRITER
|
||||||
|
typedef struct _mp_obj_bufwriter_t {
|
||||||
|
mp_obj_base_t base;
|
||||||
|
mp_obj_t stream;
|
||||||
|
size_t alloc;
|
||||||
|
size_t len;
|
||||||
|
byte buf[0];
|
||||||
|
} mp_obj_bufwriter_t;
|
||||||
|
|
||||||
|
STATIC mp_obj_t bufwriter_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
||||||
|
mp_arg_check_num(n_args, n_kw, 2, 2, false);
|
||||||
|
size_t alloc = mp_obj_get_int(args[1]);
|
||||||
|
mp_obj_bufwriter_t *o = m_new_obj_var(mp_obj_bufwriter_t, byte, alloc);
|
||||||
|
o->base.type = type;
|
||||||
|
o->stream = args[0];
|
||||||
|
o->alloc = alloc;
|
||||||
|
o->len = 0;
|
||||||
|
return o;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC mp_uint_t bufwriter_write(mp_obj_t self_in, const void *buf, mp_uint_t size, int *errcode) {
|
||||||
|
mp_obj_bufwriter_t *self = MP_OBJ_TO_PTR(self_in);
|
||||||
|
|
||||||
|
mp_uint_t org_size = size;
|
||||||
|
|
||||||
|
while (size > 0) {
|
||||||
|
mp_uint_t rem = self->alloc - self->len;
|
||||||
|
if (size < rem) {
|
||||||
|
memcpy(self->buf + self->len, buf, size);
|
||||||
|
self->len += size;
|
||||||
|
return org_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
memcpy(self->buf + self->len, buf, rem);
|
||||||
|
buf = (byte*)buf + rem;
|
||||||
|
size -= rem;
|
||||||
|
mp_uint_t out_sz = mp_stream_writeall(self->stream, self->buf, self->alloc, errcode);
|
||||||
|
if (out_sz == MP_STREAM_ERROR) {
|
||||||
|
return MP_STREAM_ERROR;
|
||||||
|
}
|
||||||
|
self->len = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return org_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
STATIC const mp_map_elem_t bufwriter_locals_dict_table[] = {
|
||||||
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_write), (mp_obj_t)&mp_stream_write_obj },
|
||||||
|
};
|
||||||
|
STATIC MP_DEFINE_CONST_DICT(bufwriter_locals_dict, bufwriter_locals_dict_table);
|
||||||
|
|
||||||
|
STATIC const mp_stream_p_t bufwriter_stream_p = {
|
||||||
|
.write = bufwriter_write,
|
||||||
|
};
|
||||||
|
|
||||||
|
STATIC const mp_obj_type_t bufwriter_type = {
|
||||||
|
{ &mp_type_type },
|
||||||
|
.name = MP_QSTR_BufferedWriter,
|
||||||
|
.make_new = bufwriter_make_new,
|
||||||
|
.stream_p = &bufwriter_stream_p,
|
||||||
|
.locals_dict = (mp_obj_t)&bufwriter_locals_dict,
|
||||||
|
};
|
||||||
|
#endif // MICROPY_PY_IO_BUFFEREDWRITER
|
||||||
|
|
||||||
STATIC const mp_rom_map_elem_t mp_module_io_globals_table[] = {
|
STATIC const mp_rom_map_elem_t mp_module_io_globals_table[] = {
|
||||||
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR__io) },
|
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR__io) },
|
||||||
// Note: mp_builtin_open_obj should be defined by port, it's not
|
// Note: mp_builtin_open_obj should be defined by port, it's not
|
||||||
@ -46,6 +115,9 @@ STATIC const mp_rom_map_elem_t mp_module_io_globals_table[] = {
|
|||||||
#if MICROPY_PY_IO_BYTESIO
|
#if MICROPY_PY_IO_BYTESIO
|
||||||
{ MP_ROM_QSTR(MP_QSTR_BytesIO), MP_ROM_PTR(&mp_type_bytesio) },
|
{ MP_ROM_QSTR(MP_QSTR_BytesIO), MP_ROM_PTR(&mp_type_bytesio) },
|
||||||
#endif
|
#endif
|
||||||
|
#if MICROPY_PY_IO_BUFFEREDWRITER
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_BufferedWriter), MP_ROM_PTR(&bufwriter_type) },
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
STATIC MP_DEFINE_CONST_DICT(mp_module_io_globals, mp_module_io_globals_table);
|
STATIC MP_DEFINE_CONST_DICT(mp_module_io_globals, mp_module_io_globals_table);
|
||||||
|
@ -747,6 +747,11 @@ typedef double mp_float_t;
|
|||||||
#define MICROPY_PY_IO_BYTESIO (1)
|
#define MICROPY_PY_IO_BYTESIO (1)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Whether to provide "io.BufferedWriter" class
|
||||||
|
#ifndef MICROPY_PY_IO_BUFFEREDWRITER
|
||||||
|
#define MICROPY_PY_IO_BUFFEREDWRITER (0)
|
||||||
|
#endif
|
||||||
|
|
||||||
// Whether to provide "struct" module
|
// Whether to provide "struct" module
|
||||||
#ifndef MICROPY_PY_STRUCT
|
#ifndef MICROPY_PY_STRUCT
|
||||||
#define MICROPY_PY_STRUCT (1)
|
#define MICROPY_PY_STRUCT (1)
|
||||||
|
@ -607,6 +607,9 @@ Q(file)
|
|||||||
Q(mode)
|
Q(mode)
|
||||||
Q(r)
|
Q(r)
|
||||||
Q(encoding)
|
Q(encoding)
|
||||||
|
#if MICROPY_PY_IO_BUFFEREDWRITER
|
||||||
|
Q(BufferedWriter)
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if MICROPY_PY_GC
|
#if MICROPY_PY_GC
|
||||||
|
Loading…
Reference in New Issue
Block a user