From f41d9a88c07226d107b56873bdbc801e484b524e Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Fri, 14 Mar 2025 18:25:12 -0600 Subject: lib9p: Have all IDL-defined types implement fmt_formatter --- lib9p/protogen/c.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'lib9p/protogen/c.py') diff --git a/lib9p/protogen/c.py b/lib9p/protogen/c.py index b36e817..722db7f 100644 --- a/lib9p/protogen/c.py +++ b/lib9p/protogen/c.py @@ -7,7 +7,7 @@ import sys import idl -from . import c9util, c_marshal, c_unmarshal, c_validate, cutil +from . import c9util, c_format, c_marshal, c_unmarshal, c_validate, cutil # This strives to be "general-purpose" in that it just acts on the # *.9p inputs; but (unfortunately?) there are a few special-cases in @@ -36,6 +36,14 @@ def gen_c(versions: set[str], typs: list[idl.UserType]) -> str: #include "tables.h" #include "utf8.h" """ + # libobj vtables ########################################################### + ret += """ +/* libobj vtables *************************************************************/ +""" + for typ in typs: + ret += cutil.ifdef_push(1, c9util.ver_ifdef(typ.in_versions)) + ret += f"LO_IMPLEMENTATION_C(fmt_formatter, {c9util.typename(typ)}, {c9util.basename(typ)}, static);\n" + ret += cutil.ifdef_pop(0) # utilities ################################################################ ret += """ @@ -102,6 +110,9 @@ def gen_c(versions: set[str], typs: list[idl.UserType]) -> str: # marshal_* ################################################################ ret += c_marshal.gen_c_marshal(versions, typs) + # *_format ################################################################# + ret += c_format.gen_c_format(versions, typs) + # tables.h ################################################################# ret += """ /* tables.h *******************************************************************/ -- cgit v1.2.3-2-g168b From 46c24939e2e0f41f0719289cd3b491367cf3355e Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Wed, 2 Apr 2025 17:28:53 -0600 Subject: lib9p: Add lo_box_lib9p_msg_as_fmt_formatter() to tables --- lib9p/protogen/c.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib9p/protogen/c.py') diff --git a/lib9p/protogen/c.py b/lib9p/protogen/c.py index 722db7f..a6824ce 100644 --- a/lib9p/protogen/c.py +++ b/lib9p/protogen/c.py @@ -156,7 +156,12 @@ def gen_c(versions: set[str], typs: list[idl.UserType]) -> str: return ret ret += "\n" - ret += f"#define _MSG(typ) [{c9util.Ident('TYP_')}##typ] = {{.name=#typ}}\n" + ret += cutil.macro( + f"#define _MSG(typ) [{c9util.Ident('TYP_')}##typ] = {{\n" + f"\t\t.name = #typ,\n" + f"\t\t.box_as_fmt_formatter = (_box_as_fmt_formatter_fn_t)lo_box_{c9util.ident('msg_')}##typ##_as_fmt_formatter,\n" + f"\t}}\n" + ) ret += msg_table("_msg_tentry", "_table_msg", "_MSG", (0, 0x100, 1)) ret += "\n" -- cgit v1.2.3-2-g168b