digipres.club is part of the decentralized social network powered by Mastodon.

Administered by:

Server stats:

263
active users

Learn more

Foone🏳️‍⚧️

has anyone written a C struct to python struct-module compiler yet?

like I'd love to do "structcompile.py windows.h BITMAPV5HEADER" and have it output "<LLLHHLLLLLLLLLLLLLLLLLLLLLLLLLL"

@foone Not that I’ve seen but that would be amazing. I think the hard part is C is a pain to parse.

@funkylab @foone Okay I stand corrected. Then a simple version should be pretty easy to implement.

@jscarsbrook @foone sorry for sounding a bit grandiose there, but OK, let's do this in N toots; what I meant with "easy" is that the moment we read the header, all types are actually there, or the header is malformed. This is different than C++!

1. /tmp/test.h:
struct foo {
int a;
float b;
};

struct bar {
char foo[4];
struct foo baz;
};

2. our python script:

import clang.cindex
index = clang.cindex.Index.create()
#translation unit:
tu = index.parse("/tmp/test.h")

#… continued:

@funkylab @foone

Cool approach.

This kinda nerd-sniped me. I ended up using pycparser to implement it.

gist.github.com/Vbitz/ed748816

I tried it on my native macos headers but it barfed on the clang extensions.

This should do what @foone wanted but the code probably needs some fixes.

GistThanks @foone https://digipres.club/@foone/112045597251087750Thanks @foone https://digipres.club/@foone/112045597251087750 - structcompile.py

@jscarsbrook @foone

# … continued from prev toot
children = { child.displayname: child for child in tu.cursor.get_children() }

my_struct = children["bar"]
fields = list(my_struct.get_fields())
for field in fields:
print(f"field {field.displayname} offset {my_struct.get_field_offsetof()} size {field.get_size()}")

Of course, at this point, you might (or might not!) want to recursively check for fields, whether something is a bitfield and so on.

@foone Would Kaitai help? Structures are still represented in Kaitai's structure format, but you do get Python accessibility: doc.kaitai.io/lang_python.html

doc.kaitai.ioKaitai Struct: Python notes

@foone pretty simple, just:

def main(*args, **kwargs):
print("<LLLHHLLLLLLLLLLLLLLLLLLLLLLLLLL")

@pete @foone I feel pretty confident in my code on this one. I’m willing to live on the edge and not write tests.

@foone it depends what you are doing but I think cffi might be what you want?

@glyph @foone +1, you can definitely get close this way, although I don't know if there's any affordance for translation to the `struct` module's format language, the `native_table` that maps those doesn't seem to be exposed on the Python side (not that you couldn't just write the equivalent in Python, though)