Lichen

templates/progops.h

606:e6d60706c5a0
2017-02-20 Paul Boddie Merged changes from the default branch. method-wrapper-for-context
     1 /* Operations depending on program specifics.     2      3 Copyright (C) 2015, 2016, 2017 Paul Boddie <paul@boddie.org.uk>     4      5 This program is free software; you can redistribute it and/or modify it under     6 the terms of the GNU General Public License as published by the Free Software     7 Foundation; either version 3 of the License, or (at your option) any later     8 version.     9     10 This program is distributed in the hope that it will be useful, but WITHOUT    11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS    12 FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more    13 details.    14     15 You should have received a copy of the GNU General Public License along with    16 this program.  If not, see <http://www.gnu.org/licenses/>.    17 */    18     19 #ifndef __PROGOPS_H__    20 #define __PROGOPS_H__    21     22 #include <stdlib.h> /* size_t */    23 #include "types.h"    24     25 /* Generic instantiation operations, defining common members. */    26     27 __attr __new(const __table *table, __ref cls, size_t size);    28 __attr __new_wrapper(__ref context, __attr attr);    29     30 /* Generic internal data allocation. */    31     32 __fragment *__new_fragment(unsigned int n);    33     34 void __newdata_sequence(__attr args[], unsigned int number);    35     36 #ifdef __HAVE___builtins___dict_dict    37 void __newdata_mapping(__attr args[], unsigned int number);    38 #endif /* __HAVE___builtins___dict_dict */    39     40 /* Helpers for raising errors within common operations. */    41     42 void __raise_eof_error();    43     44 void __raise_io_error(__attr value);    45     46 void __raise_memory_error();    47     48 void __raise_os_error(__attr value, __attr arg);    49     50 void __raise_overflow_error();    51     52 void __raise_zero_division_error();    53     54 void __raise_type_error();    55     56 /* Helper for raising exception instances. */    57     58 __attr __ensure_instance(__attr arg);    59     60 /* Generic invocation operations. */    61     62 __attr __invoke(__attr callable, int always_callable,    63                 unsigned int nkwargs, __param kwcodes[], __attr kwargs[],    64                 unsigned int nargs, __attr args[]);    65     66 /* Error routines. */    67     68 __attr __unbound_method(__attr args[]);    69     70 /* Generic operations depending on specific program details. */    71     72 void __SETDEFAULT(__ref obj, int pos, __attr value);    73     74 __attr __GETDEFAULT(__ref obj, int pos);    75     76 int __BOOL(__attr attr);    77     78 /* Convenience definitions. */    79     80 #define __NEWINSTANCE(__CLS) __new(&__InstanceTable_##__CLS, &__CLS, sizeof(__obj_##__CLS))    81 #define __ISINSTANCE(__ATTR, __TYPE) __BOOL(__fn_native_introspection_isinstance((__attr[]) {__NULL, __ATTR, __TYPE}))    82     83 #endif /* __PROGOPS_H__ */