Skip to content

Fork overview, and thoughts to improve basis for chance of upstreaming #1

Open
@mara004

Description

See below for an overview of this fork. Note, this writeup is a non-exhaustive work in progress.

This information may be valuable for working towards a basis that could be merged back into upstream at some point, though this seems fairly hypothetical for the near term, given time constraints, and mismatched design intents (e.g. relating to backwards compatibility).

However, this fork of ctypesgen may be a good starting point for any active future development, with a significantly overhauled code base that should be nicer to work with.

Selection of improvements from this fork

small, self-contained fixes have usually been submitted upstream and may have been merged

Points to consider

  • Restoring implicit UTF-8 string encoding/decoding as optional?

    ctypesgen originally did implicit UTF-8 encoding/decoding of in/out strings.
    While that tends to be bad practice and callers had better handle strings explicitly instead, it would seem reasonable to retain an optional backward compatibility layer for existing callers.
    I also imagine it might be convenient for a library that consistently uses UTF-8 for everything.

    Adding the old string classes back is certainly not an option for us. However, it may be possible to create a lean replacement. See Make string auto-conversion optional & use leaner strings classes ctypesgen/ctypesgen#177 for a suggestion (copy below), or String seems incorrect ctypesgen/ctypesgen#77 (comment) for an alternative draft by @olsonse.
    Note that in/out must be handled in a single class.

  • Mixed calling conventions

    We do not currently support mixed calling conventions (both cdecl and windows-only stdcall functions in one binary). Our fork dropped this while rewriting the library loader, because it does not match the API layer of ctypes and would need a template to handle, which the assumably low relevance did not seem to justify. The previous implementation was a bit dirty, too: In case of a pure stdcall library, a cdecl handle would be opened anyway, and binary variables would be taken from the cdecl one.
    If there is a real-world use case, this could be added back.

  • Removal of support for multiple libraries in one bindings file

    This feature was a significant complexity burden in some code areas, including pollution around symbols in printer/output code. For now we decided to remove it - callers can use --no-embed-preamble and --link-modules to create separate bindings files. This also encourages individual/explicit rather than unified loader config.

    See also Recognize structs from common header files in different wrapper modules ctypesgen/ctypesgen#86 (comment) for some alternative considerations.

Other notes

  • Shifts in design intent: We would prefer to stick with plain ctypes as much as possible and avoid cluttering the bindings with custom wrappers.

  • CLI: We changed the command-line interface from action=append to action=extend and nargs=+/*. This implied switching headers from positional to flag argument to avoid confusion/interference with flags that take multiple arguments. There are more CLI changes not listed here, see diff for details.

Done tasks

  • Restored test suite usability by adapting to fork changes.
  • Restored macro guards as opt-out

Footnotes

  1. Quoting from the commit in question "Fun fact: It seems like ctypesgen prior to this change added the complie_libdirs to the runtime library loader. Further, relative paths (I think) were never correctly interpreted relative to the file's directory, but to the user's CWD, which is useless and could even cause unexpected behavior. So runtime_libdirs = ["."] didn't work, but the fallback below [commented with] 'then we search the directory where the generated python interface is stored' captured."

  2. Note, this is meant for use with inherently ABI correct packaging only

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions