152 lines
6.1 KiB
C
152 lines
6.1 KiB
C
|
/*
|
||
|
* This file is part of the CircuitPython project, https://github.com/adafruit/circuitpython
|
||
|
*
|
||
|
* The MIT License (MIT)
|
||
|
*
|
||
|
* Copyright (c) 2021 Jeff Epler
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
#include "shared-bindings/qrio/__init__.h"
|
||
|
#include "shared-bindings/qrio/QRDecoder.h"
|
||
|
#include "shared-module/qrio/QRDecoder.h"
|
||
|
|
||
|
#include "py/obj.h"
|
||
|
#include "py/objproperty.h"
|
||
|
#include "py/enum.h"
|
||
|
|
||
|
//| class QRDecoder:
|
||
|
//|
|
||
|
//| def __init__(self, width: int, height: int) -> None:
|
||
|
//| """Construct a QRDecoder object"""
|
||
|
//|
|
||
|
|
||
|
STATIC mp_obj_t qrio_qrdecoder_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
|
||
|
enum { ARG_width, ARG_height };
|
||
|
static const mp_arg_t allowed_args[] = {
|
||
|
{ MP_QSTR_width, MP_ARG_INT | MP_ARG_REQUIRED, {.u_int = 0} },
|
||
|
{ MP_QSTR_height, MP_ARG_INT | MP_ARG_REQUIRED, {.u_int = 0} },
|
||
|
};
|
||
|
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
|
||
|
mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
|
||
|
|
||
|
qrio_qrdecoder_obj_t *self = m_new_obj(qrio_qrdecoder_obj_t);
|
||
|
self->base.type = &qrio_qrdecoder_type_obj;
|
||
|
shared_module_qrio_qrdecoder_construct(self, args[ARG_width].u_int, args[ARG_height].u_int);
|
||
|
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
//| def decode(self, buffer: ReadableBuffer) -> List[qrinfo]:
|
||
|
//| """Decode zero or more QR codes from the given image in L8 format"""
|
||
|
//|
|
||
|
STATIC mp_obj_t qrio_qrdecoder_decode(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
|
||
|
qrio_qrdecoder_obj_t *self = MP_OBJ_TO_PTR(pos_args[0]);
|
||
|
|
||
|
enum { ARG_buffer, ARG_pixel_policy };
|
||
|
static const mp_arg_t allowed_args[] = {
|
||
|
{ MP_QSTR_buffer, MP_ARG_OBJ | MP_ARG_REQUIRED, {.u_int = 0} },
|
||
|
{ MP_QSTR_pixel_policy, MP_ARG_OBJ, {.u_int = 0} },
|
||
|
};
|
||
|
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
|
||
|
mp_arg_parse_all(n_args - 1, pos_args + 1, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
|
||
|
|
||
|
mp_buffer_info_t bufinfo;
|
||
|
mp_get_buffer_raise(args[ARG_buffer].u_obj, &bufinfo, MP_BUFFER_READ);
|
||
|
|
||
|
int width = shared_module_qrio_qrdecoder_get_width(self);
|
||
|
int height = shared_module_qrio_qrdecoder_get_height(self);
|
||
|
|
||
|
// verify that the buffer is big enough
|
||
|
int sz = width * height;
|
||
|
qrio_pixel_policy_t policy = cp_enum_value(&qrio_pixel_policy_type, args[ARG_pixel_policy].u_obj);
|
||
|
if (policy != QRIO_EVERY_BYTE) {
|
||
|
sz *= 2;
|
||
|
}
|
||
|
mp_get_index(mp_obj_get_type(args[ARG_buffer].u_obj), bufinfo.len, MP_OBJ_NEW_SMALL_INT(sz - 1), false);
|
||
|
|
||
|
return shared_module_qrio_qrdecoder_decode(self, &bufinfo, policy);
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_KW(qrio_qrdecoder_decode_obj, 2, qrio_qrdecoder_decode);
|
||
|
|
||
|
//| width: int
|
||
|
//| """The width of image the decoder expects"""
|
||
|
//|
|
||
|
STATIC mp_obj_t qrio_qrdecoder_get_width(mp_obj_t self_in) {
|
||
|
qrio_qrdecoder_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
return mp_obj_new_int(shared_module_qrio_qrdecoder_get_width(self));
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_1(qrio_qrdecoder_get_width_obj, qrio_qrdecoder_get_width);
|
||
|
|
||
|
STATIC mp_obj_t qrio_qrdecoder_set_width(mp_obj_t self_in, mp_obj_t width_in) {
|
||
|
qrio_qrdecoder_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
int width = mp_obj_get_int(width_in);
|
||
|
shared_module_qrio_qrdecoder_set_width(self, width);
|
||
|
return mp_const_none;
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_2(qrio_qrdecoder_set_width_obj, qrio_qrdecoder_set_width);
|
||
|
|
||
|
const mp_obj_property_t qrio_qrdecoder_width_obj = {
|
||
|
.base.type = &mp_type_property,
|
||
|
.proxy = {(mp_obj_t)&qrio_qrdecoder_get_width_obj,
|
||
|
(mp_obj_t)&qrio_qrdecoder_set_width_obj,
|
||
|
MP_ROM_NONE},
|
||
|
};
|
||
|
|
||
|
//| height: int
|
||
|
//| """The height of image the decoder expects"""
|
||
|
//|
|
||
|
STATIC mp_obj_t qrio_qrdecoder_get_height(mp_obj_t self_in) {
|
||
|
qrio_qrdecoder_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
return mp_obj_new_int(shared_module_qrio_qrdecoder_get_height(self));
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_1(qrio_qrdecoder_get_height_obj, qrio_qrdecoder_get_height);
|
||
|
|
||
|
STATIC mp_obj_t qrio_qrdecoder_set_height(mp_obj_t self_in, mp_obj_t height_in) {
|
||
|
qrio_qrdecoder_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
int height = mp_obj_get_int(height_in);
|
||
|
shared_module_qrio_qrdecoder_set_height(self, height);
|
||
|
return mp_const_none;
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_2(qrio_qrdecoder_set_height_obj, qrio_qrdecoder_set_height);
|
||
|
|
||
|
const mp_obj_property_t qrio_qrdecoder_height_obj = {
|
||
|
.base.type = &mp_type_property,
|
||
|
.proxy = {(mp_obj_t)&qrio_qrdecoder_get_height_obj,
|
||
|
(mp_obj_t)&qrio_qrdecoder_set_height_obj,
|
||
|
MP_ROM_NONE},
|
||
|
};
|
||
|
|
||
|
STATIC const mp_rom_map_elem_t qrio_qrdecoder_locals_table[] = {
|
||
|
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_QRDecoder) },
|
||
|
{ MP_ROM_QSTR(MP_QSTR_width), MP_ROM_PTR(&qrio_qrdecoder_width_obj) },
|
||
|
{ MP_ROM_QSTR(MP_QSTR_height), MP_ROM_PTR(&qrio_qrdecoder_height_obj) },
|
||
|
{ MP_ROM_QSTR(MP_QSTR_decode), MP_ROM_PTR(&qrio_qrdecoder_decode_obj) },
|
||
|
};
|
||
|
|
||
|
STATIC MP_DEFINE_CONST_DICT(qrio_qrdecoder_locals, qrio_qrdecoder_locals_table);
|
||
|
|
||
|
const mp_obj_type_t qrio_qrdecoder_type_obj = {
|
||
|
{ &mp_type_type },
|
||
|
.name = MP_QSTR_QRDecoder,
|
||
|
.make_new = qrio_qrdecoder_make_new,
|
||
|
.locals_dict = (mp_obj_dict_t *)&qrio_qrdecoder_locals,
|
||
|
};
|