Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
5d93dfbc
Commit
5d93dfbc
authored
9 years ago
by
Paul Sokolovsky
Browse files
Options
Downloads
Patches
Plain Diff
py/modio: Initial implementation of io.BufferedWriter class.
Just .write() method implemented currently.
parent
3dbd2ee9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
py/modio.c
+72
-0
72 additions, 0 deletions
py/modio.c
py/mpconfig.h
+5
-0
5 additions, 0 deletions
py/mpconfig.h
py/qstrdefs.h
+3
-0
3 additions, 0 deletions
py/qstrdefs.h
with
80 additions
and
0 deletions
py/modio.c
+
72
−
0
View file @
5d93dfbc
...
@@ -24,13 +24,82 @@
...
@@ -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[] = {
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
py/mpconfig.h
+
5
−
0
View file @
5d93dfbc
...
@@ -747,6 +747,11 @@ typedef double mp_float_t;
...
@@ -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)
...
...
This diff is collapsed.
Click to expand it.
py/qstrdefs.h
+
3
−
0
View file @
5d93dfbc
...
@@ -607,6 +607,9 @@ Q(file)
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment