Skip to content

Instantly share code, notes, and snippets.

@chengscott
Forked from jserv/pyc.py
Created July 20, 2019 09:45
Show Gist options
  • Save chengscott/cb84dad5f9c7ed4cbbf2277462a4e1bf to your computer and use it in GitHub Desktop.
Save chengscott/cb84dad5f9c7ed4cbbf2277462a4e1bf to your computer and use it in GitHub Desktop.
import atexit
import ctypes
import os
import shlex
import sys
import tempfile
CMD_C_TO_SO = '{compiler} -shared -o {output} {input} {libraries}'
class C:
def __init__(self, code, *shared_libs):
self.library = None
self._compile(code, shared_libs)
def _compile(self, code, libs):
# Dump the C code into a temporary file, and run the compiler
with tempfile.NamedTemporaryFile(mode='w', prefix='PYC', suffix='.c',
delete=False) as temp_c_file:
temp_c_file_name = temp_c_file.name
temp_c_file.write(code)
temp_c_file.flush()
# Run the compiler one more time to generate a shared library
so_file_name = tempfile.mktemp(prefix='PYC', suffix='.so')
library_cmd = ' '.join('-l' + lib for lib in libs)
os.system(CMD_C_TO_SO.format(compiler="gcc",
output=shlex.quote(so_file_name),
input=shlex.quote(temp_c_file_name),
libraries=library_cmd))
# Punt to ctypes so that we can get a loadable library we built
self.library = ctypes.cdll.LoadLibrary(so_file_name)
# Ensure that we clean up the temp files when the program is exiting
atexit.register(lambda: os.remove(so_file_name))
def __getitem__(self, func):
if self.library is None:
assert False, "How did C.__getitem__ get called without loading the library?"
return getattr(self.library, func)
if __name__ == '__main__':
mylib = C('''
int factorial(int x) {
int ret = 1;
for (; x > 1; x--)
ret *= x;
return ret;
}
''')
factorial = mylib['factorial']
print('15! =', factorial(15))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment