-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Use pybind11 in ttconv module #25253
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,157 +5,80 @@ | |
|
||
Python wrapper for TrueType conversion library in ../ttconv. | ||
*/ | ||
#define PY_SSIZE_T_CLEAN | ||
#include "mplutils.h" | ||
|
||
#include <Python.h> | ||
#include <pybind11/pybind11.h> | ||
#include "ttconv/pprdrv.h" | ||
#include "py_exceptions.h" | ||
#include <vector> | ||
#include <cassert> | ||
|
||
namespace py = pybind11; | ||
|
||
/** | ||
* An implementation of TTStreamWriter that writes to a Python | ||
* file-like object. | ||
*/ | ||
class PythonFileWriter : public TTStreamWriter | ||
{ | ||
PyObject *_write_method; | ||
py::function _write_method; | ||
|
||
public: | ||
PythonFileWriter() | ||
{ | ||
_write_method = NULL; | ||
} | ||
|
||
~PythonFileWriter() | ||
{ | ||
Py_XDECREF(_write_method); | ||
} | ||
|
||
void set(PyObject *write_method) | ||
{ | ||
Py_XDECREF(_write_method); | ||
_write_method = write_method; | ||
Py_XINCREF(_write_method); | ||
} | ||
PythonFileWriter(py::object& file_object) | ||
: _write_method(file_object.attr("write")) {} | ||
|
||
virtual void write(const char *a) | ||
{ | ||
PyObject *result = NULL; | ||
if (_write_method) { | ||
PyObject *decoded = NULL; | ||
decoded = PyUnicode_DecodeLatin1(a, strlen(a), ""); | ||
if (decoded == NULL) { | ||
throw py::exception(); | ||
} | ||
result = PyObject_CallFunctionObjArgs(_write_method, decoded, NULL); | ||
Py_DECREF(decoded); | ||
if (!result) { | ||
throw py::exception(); | ||
} | ||
Py_DECREF(result); | ||
PyObject* decoded = PyUnicode_DecodeLatin1(a, strlen(a), ""); | ||
if (decoded == NULL) { | ||
throw py::error_already_set(); | ||
} | ||
_write_method(py::handle(decoded)); | ||
Py_DECREF(decoded); | ||
} | ||
}; | ||
|
||
int fileobject_to_PythonFileWriter(PyObject *object, void *address) | ||
static void convert_ttf_to_ps( | ||
const char *filename, | ||
py::object &output, | ||
int fonttype, | ||
py::iterable* glyph_ids) | ||
{ | ||
PythonFileWriter *file_writer = (PythonFileWriter *)address; | ||
PythonFileWriter output_(output); | ||
|
||
PyObject *write_method = PyObject_GetAttrString(object, "write"); | ||
if (write_method == NULL || !PyCallable_Check(write_method)) { | ||
PyErr_SetString(PyExc_TypeError, "Expected a file-like object with a write method."); | ||
return 0; | ||
} | ||
|
||
file_writer->set(write_method); | ||
Py_DECREF(write_method); | ||
|
||
return 1; | ||
} | ||
|
||
int pyiterable_to_vector_int(PyObject *object, void *address) | ||
{ | ||
std::vector<int> *result = (std::vector<int> *)address; | ||
|
||
PyObject *iterator = PyObject_GetIter(object); | ||
if (!iterator) { | ||
return 0; | ||
} | ||
|
||
PyObject *item; | ||
while ((item = PyIter_Next(iterator))) { | ||
long value = PyLong_AsLong(item); | ||
Py_DECREF(item); | ||
if (value == -1 && PyErr_Occurred()) { | ||
return 0; | ||
std::vector<int> glyph_ids_; | ||
if (glyph_ids) { | ||
for (py::handle glyph_id: *glyph_ids) { | ||
glyph_ids_.push_back(glyph_id.cast<int>()); | ||
} | ||
result->push_back((int)value); | ||
} | ||
|
||
Py_DECREF(iterator); | ||
|
||
return 1; | ||
} | ||
|
||
static PyObject *convert_ttf_to_ps(PyObject *self, PyObject *args, PyObject *kwds) | ||
{ | ||
const char *filename; | ||
PythonFileWriter output; | ||
int fonttype; | ||
std::vector<int> glyph_ids; | ||
|
||
static const char *kwlist[] = { "filename", "output", "fonttype", "glyph_ids", NULL }; | ||
if (!PyArg_ParseTupleAndKeywords(args, | ||
kwds, | ||
"yO&i|O&:convert_ttf_to_ps", | ||
(char **)kwlist, | ||
&filename, | ||
fileobject_to_PythonFileWriter, | ||
&output, | ||
&fonttype, | ||
pyiterable_to_vector_int, | ||
&glyph_ids)) { | ||
return NULL; | ||
} | ||
|
||
if (fonttype != 3 && fonttype != 42) { | ||
PyErr_SetString(PyExc_ValueError, | ||
"fonttype must be either 3 (raw Postscript) or 42 " | ||
"(embedded Truetype)"); | ||
return NULL; | ||
throw py::value_error( | ||
"fonttype must be either 3 (raw Postscript) or 42 (embedded Truetype)"); | ||
} | ||
|
||
try | ||
{ | ||
insert_ttfont(filename, output, (font_type_enum)fonttype, glyph_ids); | ||
insert_ttfont(filename, output_, static_cast<font_type_enum>(fonttype), glyph_ids_); | ||
} | ||
catch (TTException &e) | ||
{ | ||
PyErr_SetString(PyExc_RuntimeError, e.getMessage()); | ||
return NULL; | ||
} | ||
catch (const py::exception &) | ||
{ | ||
return NULL; | ||
throw std::runtime_error(e.getMessage()); | ||
} | ||
catch (...) | ||
{ | ||
PyErr_SetString(PyExc_RuntimeError, "Unknown C++ exception"); | ||
return NULL; | ||
throw std::runtime_error("Unknown C++ exception"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This catch all isn't really needed as |
||
} | ||
|
||
Py_INCREF(Py_None); | ||
return Py_None; | ||
} | ||
|
||
static PyMethodDef ttconv_methods[] = | ||
{ | ||
{ | ||
"convert_ttf_to_ps", (PyCFunction)convert_ttf_to_ps, METH_VARARGS | METH_KEYWORDS, | ||
"convert_ttf_to_ps(filename, output, fonttype, glyph_ids)\n" | ||
"\n" | ||
PYBIND11_MODULE(_ttconv, m) { | ||
m.doc() = "Module to handle converting and subsetting TrueType " | ||
"fonts to Postscript Type 3, Postscript Type 42 and " | ||
"Pdf Type 3 fonts."; | ||
m.def("convert_ttf_to_ps", &convert_ttf_to_ps, | ||
py::arg("filename"), | ||
py::arg("output"), | ||
py::arg("fonttype"), | ||
py::arg("glyph_ids") = py::none(), | ||
"Converts the Truetype font into a Type 3 or Type 42 Postscript font, " | ||
"optionally subsetting the font to only the desired set of characters.\n" | ||
"\n" | ||
|
@@ -169,25 +92,5 @@ static PyMethodDef ttconv_methods[] = | |
"subsetting to a Type 3 font. If glyph_ids is not provided or is None, " | ||
"then all glyphs will be included. If any of the glyphs specified are " | ||
"composite glyphs, then the component glyphs will also be included." | ||
}, | ||
{0, 0, 0, 0} /* Sentinel */ | ||
}; | ||
|
||
static const char *module_docstring = | ||
"Module to handle converting and subsetting TrueType " | ||
"fonts to Postscript Type 3, Postscript Type 42 and " | ||
"Pdf Type 3 fonts."; | ||
|
||
static PyModuleDef ttconv_module = { | ||
PyModuleDef_HEAD_INIT, | ||
"ttconv", | ||
module_docstring, | ||
-1, | ||
ttconv_methods, | ||
}; | ||
|
||
PyMODINIT_FUNC | ||
PyInit__ttconv(void) | ||
{ | ||
return PyModule_Create(&ttconv_module); | ||
); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am concerned that we don't exercise this line in the test suite as it would be good to confirm that
TTException
s propagate throughpybind11
as expected. But given that we've evidently never had such a test it doesn't have to be done here, it can be punted to "future work".