aboutsummaryrefslogtreecommitdiffstats
path: root/filter/data.h
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2023-07-03 17:00:58 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2023-09-12 16:31:52 +0200
commitcc1099a04169b768cb4803686ee20423a6d3fede (patch)
tree2b13ebf140425dce022bab409d5f25ee496311e3 /filter/data.h
parentc696e3cb8e53229a438a8509a05e9d0ff27b8b4a (diff)
downloadbird-cc1099a04169b768cb4803686ee20423a6d3fede.tar.gz
Filter: Implement multiple dispatch for methods
- Extend method descriptors with type signature - Daisy chain method descriptors for the same symbol - Dispatch methods for same symbol based on type signature - Split add/delete/filter operations to multiple methods - Replace ad-hoc dispatch of old-style syntax with scope-based dispatch - Also change method->arg_num to count initial arg It still needs some improvements, like better handling of untyped expressions and better error reporting when no dispatch can be done. The multiple dispatch could also be extended to dispatch regular function-like expressions in a uniform way.
Diffstat (limited to 'filter/data.h')
-rw-r--r--filter/data.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/filter/data.h b/filter/data.h
index baa7114c..e136b65f 100644
--- a/filter/data.h
+++ b/filter/data.h
@@ -67,7 +67,9 @@ enum f_type {
struct f_method {
struct symbol *sym;
struct f_inst *(*new_inst)(struct f_inst *obj, struct f_inst *args);
+ const struct f_method *next;
uint arg_num;
+ enum f_type args_type[];
};
/* Filter value; size of this affects filter memory consumption */