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
GitLab 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
a17755ee
Commit
a17755ee
authored
Dec 24, 2015
by
Dave Hylands
Committed by
Damien George
Jan 19, 2016
Browse files
Options
Downloads
Patches
Plain Diff
py: Add ustruct.pack_into and unpack_from
parent
ac16cc9a
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
py/modstruct.c
+75
-19
75 additions, 19 deletions
py/modstruct.c
py/qstrdefs.h
+2
-0
2 additions, 0 deletions
py/qstrdefs.h
tests/basics/struct1.py
+41
-0
41 additions, 0 deletions
tests/basics/struct1.py
with
118 additions
and
19 deletions
py/modstruct.c
+
75
−
19
View file @
a17755ee
...
@@ -132,22 +132,45 @@ STATIC mp_obj_t struct_calcsize(mp_obj_t fmt_in) {
...
@@ -132,22 +132,45 @@ STATIC mp_obj_t struct_calcsize(mp_obj_t fmt_in) {
}
}
MP_DEFINE_CONST_FUN_OBJ_1
(
struct_calcsize_obj
,
struct_calcsize
);
MP_DEFINE_CONST_FUN_OBJ_1
(
struct_calcsize_obj
,
struct_calcsize
);
STATIC
mp_obj_t
struct_unpack
(
mp_obj_t
fmt_in
,
mp_obj_t
data_in
)
{
STATIC
mp_obj_t
struct_unpack_from
(
size_t
n_args
,
const
mp_obj_t
*
args
)
{
// TODO: "The buffer must contain exactly the amount of data required by the format (len(bytes) must equal calcsize(fmt))."
// unpack requires that the buffer be exactly the right size.
const
char
*
fmt
=
mp_obj_str_get_str
(
fmt_in
);
// unpack_from requires that the buffer be "big enough".
// Since we implement unpack and unpack_from using the same function
// we relax the "exact" requirement, and only implement "big enough".
const
char
*
fmt
=
mp_obj_str_get_str
(
args
[
0
]);
char
fmt_type
=
get_fmt_type
(
&
fmt
);
char
fmt_type
=
get_fmt_type
(
&
fmt
);
uint
size
=
calcsize_items
(
fmt
);
uint
num_items
=
calcsize_items
(
fmt
);
mp_obj_tuple_t
*
res
=
MP_OBJ_TO_PTR
(
mp_obj_new_tuple
(
size
,
NULL
));
mp_obj_tuple_t
*
res
=
MP_OBJ_TO_PTR
(
mp_obj_new_tuple
(
num_items
,
NULL
));
mp_buffer_info_t
bufinfo
;
mp_buffer_info_t
bufinfo
;
mp_get_buffer_raise
(
data_in
,
&
bufinfo
,
MP_BUFFER_READ
);
mp_get_buffer_raise
(
args
[
1
]
,
&
bufinfo
,
MP_BUFFER_READ
);
byte
*
p
=
bufinfo
.
buf
;
byte
*
p
=
bufinfo
.
buf
;
byte
*
end_p
=
&
p
[
bufinfo
.
len
];
mp_int_t
offset
=
0
;
for
(
uint
i
=
0
;
i
<
size
;)
{
if
(
n_args
>
2
)
{
// offset arg provided
offset
=
mp_obj_get_int
(
args
[
2
]);
if
(
offset
<
0
)
{
// negative offsets are relative to the end of the buffer
offset
=
bufinfo
.
len
+
offset
;
if
(
offset
<
0
)
{
nlr_raise
(
mp_obj_new_exception_msg
(
&
mp_type_ValueError
,
"buffer too small"
));
}
}
p
+=
offset
;
}
for
(
uint
i
=
0
;
i
<
num_items
;)
{
if
(
*
fmt
==
'\0'
)
{
break
;
}
mp_uint_t
sz
=
1
;
mp_uint_t
sz
=
1
;
if
(
unichar_isdigit
(
*
fmt
))
{
if
(
unichar_isdigit
(
*
fmt
))
{
sz
=
get_fmt_num
(
&
fmt
);
sz
=
get_fmt_num
(
&
fmt
);
}
}
if
(
p
+
sz
>
end_p
)
{
nlr_raise
(
mp_obj_new_exception_msg
(
&
mp_type_ValueError
,
"buffer too small"
));
}
mp_obj_t
item
;
mp_obj_t
item
;
if
(
*
fmt
==
's'
)
{
if
(
*
fmt
==
's'
)
{
item
=
mp_obj_new_bytes
(
p
,
sz
);
item
=
mp_obj_new_bytes
(
p
,
sz
);
...
@@ -163,23 +186,24 @@ STATIC mp_obj_t struct_unpack(mp_obj_t fmt_in, mp_obj_t data_in) {
...
@@ -163,23 +186,24 @@ STATIC mp_obj_t struct_unpack(mp_obj_t fmt_in, mp_obj_t data_in) {
}
}
return
MP_OBJ_FROM_PTR
(
res
);
return
MP_OBJ_FROM_PTR
(
res
);
}
}
MP_DEFINE_CONST_FUN_OBJ_
2
(
struct_unpack_
obj
,
struct_unpack
);
MP_DEFINE_CONST_FUN_OBJ_
VAR_BETWEEN
(
struct_unpack_
from_obj
,
2
,
3
,
struct_unpack
_from
);
STATIC
mp_obj_t
struct_pack
(
size_t
n_args
,
const
mp_obj_t
*
args
)
{
STATIC
void
struct_pack_into_internal
(
mp_obj_t
fmt_in
,
byte
*
p
,
byte
*
end_p
,
size_t
n_args
,
const
mp_obj_t
*
args
)
{
// TODO: "The arguments must match the values required by the format exactly."
const
char
*
fmt
=
mp_obj_str_get_str
(
fmt_in
);
const
char
*
fmt
=
mp_obj_str_get_str
(
args
[
0
]);
char
fmt_type
=
get_fmt_type
(
&
fmt
);
char
fmt_type
=
get_fmt_type
(
&
fmt
);
mp_int_t
size
=
MP_OBJ_SMALL_INT_VALUE
(
struct_calcsize
(
args
[
0
]));
vstr_t
vstr
;
vstr_init_len
(
&
vstr
,
size
);
byte
*
p
=
(
byte
*
)
vstr
.
buf
;
memset
(
p
,
0
,
size
);
for
(
mp_uint_t
i
=
1
;
i
<
n_args
;)
{
size_t
i
;
for
(
i
=
0
;
i
<
n_args
;)
{
mp_uint_t
sz
=
1
;
mp_uint_t
sz
=
1
;
if
(
*
fmt
==
'\0'
)
{
break
;
}
if
(
unichar_isdigit
(
*
fmt
))
{
if
(
unichar_isdigit
(
*
fmt
))
{
sz
=
get_fmt_num
(
&
fmt
);
sz
=
get_fmt_num
(
&
fmt
);
}
}
if
(
p
+
sz
>
end_p
)
{
nlr_raise
(
mp_obj_new_exception_msg
(
&
mp_type_ValueError
,
"buffer too small"
));
}
if
(
*
fmt
==
's'
)
{
if
(
*
fmt
==
's'
)
{
mp_buffer_info_t
bufinfo
;
mp_buffer_info_t
bufinfo
;
...
@@ -198,16 +222,48 @@ STATIC mp_obj_t struct_pack(size_t n_args, const mp_obj_t *args) {
...
@@ -198,16 +222,48 @@ STATIC mp_obj_t struct_pack(size_t n_args, const mp_obj_t *args) {
}
}
fmt
++
;
fmt
++
;
}
}
}
STATIC
mp_obj_t
struct_pack
(
size_t
n_args
,
const
mp_obj_t
*
args
)
{
// TODO: "The arguments must match the values required by the format exactly."
mp_int_t
size
=
MP_OBJ_SMALL_INT_VALUE
(
struct_calcsize
(
args
[
0
]));
vstr_t
vstr
;
vstr_init_len
(
&
vstr
,
size
);
byte
*
p
=
(
byte
*
)
vstr
.
buf
;
memset
(
p
,
0
,
size
);
byte
*
end_p
=
&
p
[
size
];
struct_pack_into_internal
(
args
[
0
],
p
,
end_p
,
n_args
-
1
,
&
args
[
1
]);
return
mp_obj_new_str_from_vstr
(
&
mp_type_bytes
,
&
vstr
);
return
mp_obj_new_str_from_vstr
(
&
mp_type_bytes
,
&
vstr
);
}
}
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN
(
struct_pack_obj
,
1
,
MP_OBJ_FUN_ARGS_MAX
,
struct_pack
);
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN
(
struct_pack_obj
,
1
,
MP_OBJ_FUN_ARGS_MAX
,
struct_pack
);
STATIC
mp_obj_t
struct_pack_into
(
size_t
n_args
,
const
mp_obj_t
*
args
)
{
mp_buffer_info_t
bufinfo
;
mp_get_buffer_raise
(
args
[
1
],
&
bufinfo
,
MP_BUFFER_WRITE
);
mp_int_t
offset
=
mp_obj_get_int
(
args
[
2
]);
if
(
offset
<
0
)
{
// negative offsets are relative to the end of the buffer
offset
=
(
mp_int_t
)
bufinfo
.
len
+
offset
;
if
(
offset
<
0
)
{
nlr_raise
(
mp_obj_new_exception_msg
(
&
mp_type_ValueError
,
"buffer too small"
));
}
}
byte
*
p
=
(
byte
*
)
bufinfo
.
buf
;
byte
*
end_p
=
&
p
[
bufinfo
.
len
];
p
+=
offset
;
struct_pack_into_internal
(
args
[
0
],
p
,
end_p
,
n_args
-
3
,
&
args
[
3
]);
return
mp_const_none
;
}
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN
(
struct_pack_into_obj
,
3
,
MP_OBJ_FUN_ARGS_MAX
,
struct_pack_into
);
STATIC
const
mp_rom_map_elem_t
mp_module_struct_globals_table
[]
=
{
STATIC
const
mp_rom_map_elem_t
mp_module_struct_globals_table
[]
=
{
{
MP_ROM_QSTR
(
MP_QSTR___name__
),
MP_ROM_QSTR
(
MP_QSTR_ustruct
)
},
{
MP_ROM_QSTR
(
MP_QSTR___name__
),
MP_ROM_QSTR
(
MP_QSTR_ustruct
)
},
{
MP_ROM_QSTR
(
MP_QSTR_calcsize
),
MP_ROM_PTR
(
&
struct_calcsize_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_calcsize
),
MP_ROM_PTR
(
&
struct_calcsize_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_pack
),
MP_ROM_PTR
(
&
struct_pack_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_pack
),
MP_ROM_PTR
(
&
struct_pack_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_unpack
),
MP_ROM_PTR
(
&
struct_unpack_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_pack_into
),
MP_ROM_PTR
(
&
struct_pack_into_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_unpack
),
MP_ROM_PTR
(
&
struct_unpack_from_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_unpack_from
),
MP_ROM_PTR
(
&
struct_unpack_from_obj
)
},
};
};
STATIC
MP_DEFINE_CONST_DICT
(
mp_module_struct_globals
,
mp_module_struct_globals_table
);
STATIC
MP_DEFINE_CONST_DICT
(
mp_module_struct_globals
,
mp_module_struct_globals_table
);
...
...
This diff is collapsed.
Click to expand it.
py/qstrdefs.h
+
2
−
0
View file @
a17755ee
...
@@ -491,7 +491,9 @@ Q(print_exception)
...
@@ -491,7 +491,9 @@ Q(print_exception)
Q
(
struct
)
Q
(
struct
)
Q
(
ustruct
)
Q
(
ustruct
)
Q
(
pack
)
Q
(
pack
)
Q
(
pack_into
)
Q
(
unpack
)
Q
(
unpack
)
Q
(
unpack_from
)
Q
(
calcsize
)
Q
(
calcsize
)
#endif
#endif
...
...
This diff is collapsed.
Click to expand it.
tests/basics/struct1.py
+
41
−
0
View file @
a17755ee
...
@@ -66,3 +66,44 @@ except TypeError:
...
@@ -66,3 +66,44 @@ except TypeError:
# but later were implemented for all.
# but later were implemented for all.
print
(
struct
.
unpack
(
"
<3B2h
"
,
b
"
foo
\x12\x34\xff\xff
"
))
print
(
struct
.
unpack
(
"
<3B2h
"
,
b
"
foo
\x12\x34\xff\xff
"
))
print
(
struct
.
pack
(
"
<3B
"
,
1
,
2
,
3
))
print
(
struct
.
pack
(
"
<3B
"
,
1
,
2
,
3
))
# pack_into
buf
=
bytearray
(
b
'
>>>123<<<
'
)
struct
.
pack_into
(
'
<bbb
'
,
buf
,
3
,
0x41
,
0x42
,
0x43
)
print
(
buf
)
struct
.
pack_into
(
'
<bbb
'
,
buf
,
-
6
,
0x44
,
0x45
,
0x46
)
print
(
buf
)
try
:
struct
.
pack_into
(
'
<bbb
'
,
buf
,
7
,
0x41
,
0x42
,
0x43
)
except
:
print
(
'
struct.error
'
)
try
:
struct
.
pack_into
(
'
<bbb
'
,
buf
,
-
10
,
0x41
,
0x42
,
0x43
)
except
:
print
(
'
struct.error
'
)
# unpack_from
buf
=
b
'
0123456789
'
print
(
struct
.
unpack_from
(
'
<b
'
,
buf
,
4
))
print
(
struct
.
unpack_from
(
'
<b
'
,
buf
,
-
4
))
try
:
print
(
struct
.
unpack_from
(
'
<b
'
,
buf
,
10
))
except
:
print
(
'
struct.error
'
)
try
:
print
(
struct
.
unpack_from
(
'
<b
'
,
buf
,
-
11
))
except
:
print
(
'
struct.error
'
)
# pack with too many args, not checked by uPy
#try:
# print(struct.pack('ii', 1, 2, 3))
#except:
# print('struct.error')
# pack with too few args, not checked by uPy
#try:
# print(struct.pack('ii', 1))
#except:
# print('struct.error')
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