diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-14 18:25:12 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-02 20:44:53 -0600 |
commit | f41d9a88c07226d107b56873bdbc801e484b524e (patch) | |
tree | 1c5e6a02c99066c74e281f461b68bd5ae0298fb8 /lib9p/protogen/c.py | |
parent | 8b7f4ae67bca75e1d2e9429805011f3044941cac (diff) |
lib9p: Have all IDL-defined types implement fmt_formatter
Diffstat (limited to 'lib9p/protogen/c.py')
-rw-r--r-- | lib9p/protogen/c.py | 13 |
1 files changed, 12 insertions, 1 deletions
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 *******************************************************************/ |