2014-05-03 22:27:38 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-04-04 14:08:23 +00:00
|
|
|
#include <stdlib.h>
|
2013-12-21 18:17:45 +00:00
|
|
|
|
2014-05-02 14:47:01 +00:00
|
|
|
#include "mpconfig.h"
|
2013-12-21 18:17:45 +00:00
|
|
|
#include "nlr.h"
|
|
|
|
#include "misc.h"
|
2014-01-21 21:40:13 +00:00
|
|
|
#include "qstr.h"
|
2013-12-21 18:17:45 +00:00
|
|
|
#include "obj.h"
|
2014-01-23 18:27:51 +00:00
|
|
|
#include "runtime0.h"
|
2014-01-04 20:21:15 +00:00
|
|
|
#include "runtime.h"
|
2013-12-21 18:17:45 +00:00
|
|
|
|
|
|
|
typedef struct _mp_obj_bool_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
bool value;
|
|
|
|
} mp_obj_bool_t;
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC void bool_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) {
|
2013-12-21 18:17:45 +00:00
|
|
|
mp_obj_bool_t *self = self_in;
|
|
|
|
if (self->value) {
|
|
|
|
print(env, "True");
|
|
|
|
} else {
|
|
|
|
print(env, "False");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t bool_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_obj_t *args) {
|
2014-05-11 17:37:21 +00:00
|
|
|
mp_arg_check_num(n_args, n_kw, 0, 1, false);
|
2014-01-18 14:10:48 +00:00
|
|
|
|
2014-01-04 20:21:15 +00:00
|
|
|
switch (n_args) {
|
2014-05-11 17:37:21 +00:00
|
|
|
case 0:
|
|
|
|
return mp_const_false;
|
|
|
|
case 1:
|
|
|
|
default: // must be 0 or 1
|
|
|
|
if (mp_obj_is_true(args[0])) { return mp_const_true; } else { return mp_const_false; }
|
2014-01-04 20:21:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t bool_unary_op(int op, mp_obj_t o_in) {
|
2014-07-03 12:25:24 +00:00
|
|
|
mp_int_t value = ((mp_obj_bool_t*)o_in)->value;
|
2014-01-23 18:27:51 +00:00
|
|
|
switch (op) {
|
2014-03-30 12:35:08 +00:00
|
|
|
case MP_UNARY_OP_BOOL: return o_in;
|
|
|
|
case MP_UNARY_OP_POSITIVE: return MP_OBJ_NEW_SMALL_INT(value);
|
|
|
|
case MP_UNARY_OP_NEGATIVE: return MP_OBJ_NEW_SMALL_INT(-value);
|
|
|
|
case MP_UNARY_OP_INVERT:
|
2014-01-23 18:27:51 +00:00
|
|
|
default: // no other cases
|
|
|
|
return MP_OBJ_NEW_SMALL_INT(~value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-04 14:08:23 +00:00
|
|
|
STATIC mp_obj_t bool_binary_op(int op, mp_obj_t lhs_in, mp_obj_t rhs_in) {
|
|
|
|
if (MP_BINARY_OP_OR <= op && op <= MP_BINARY_OP_NOT_EQUAL) {
|
2014-07-03 12:25:24 +00:00
|
|
|
return mp_binary_op(op, MP_OBJ_NEW_SMALL_INT((mp_int_t)mp_obj_is_true(lhs_in)), rhs_in);
|
2014-04-04 14:08:23 +00:00
|
|
|
}
|
2014-05-21 18:42:43 +00:00
|
|
|
return MP_OBJ_NULL; // op not supported
|
2014-04-04 14:08:23 +00:00
|
|
|
}
|
|
|
|
|
2014-03-29 13:15:08 +00:00
|
|
|
const mp_obj_type_t mp_type_bool = {
|
2014-02-15 16:10:44 +00:00
|
|
|
{ &mp_type_type },
|
2014-02-15 11:34:50 +00:00
|
|
|
.name = MP_QSTR_bool,
|
2014-01-07 15:58:30 +00:00
|
|
|
.print = bool_print,
|
|
|
|
.make_new = bool_make_new,
|
2014-01-23 18:27:51 +00:00
|
|
|
.unary_op = bool_unary_op,
|
2014-04-04 14:08:23 +00:00
|
|
|
.binary_op = bool_binary_op,
|
2013-12-21 18:17:45 +00:00
|
|
|
};
|
|
|
|
|
2014-03-29 13:15:08 +00:00
|
|
|
const mp_obj_bool_t mp_const_false_obj = {{&mp_type_bool}, false};
|
|
|
|
const mp_obj_bool_t mp_const_true_obj = {{&mp_type_bool}, true};
|