1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
Debugging
=========
pikepdf does a complex job in providing bindings from Python to a C++ library,
both of which have different ideas about how to manage memory. This page
documents some methods that may help should it be necessary to debug the Python
C++ extension (``pikepdf._qpdf``).
Enabling QPDF tracing
---------------------
Setting the environment variables ``TC_SCOPE=qpdf`` and
``TC_FILENAME=your_log_file.txt`` will cause libqpdf to log debug messages to the
designated file. For example:
.. code-block:: bash
env TC_SCOPE=qpdf TC_FILENAME=libqpdf_log.txt python my_pikepdf_script.py
Using gdb to debug C++ and Python
---------------------------------
Current versions of gdb can debug Python and C++ code simultaneously. See
the Python developer's guide on `gdb Support`_.
.. _gdb Support: https://devguide.python.org/gdb/
Compiling a debug build of QPDF
-------------------------------
It may be helpful to create a debug build of QPDF.
Download QPDF and compile a debug build:
.. code-block:: bash
# in QPDF source tree
cd $QPDF_SOURCE_TREE
cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
cmake --build build -j
Compile and link against QPDF source tree
-----------------------------------------
Build ``pikepdf._qpdf`` against the version of QPDF above, rather than the
system version:
.. code-block:: bash
env QPDF_SOURCE_TREE=<location of QPDF> \
QPDF_BUILD_LIBDIR=<directory containing libqpdf.so> \
python setup.py build_ext --inplace
The libqpdf.so file should be located in the ``libqpdf`` subdirectory of your cmake
build directory but may be in a subdirectory of that if you are using a
multi-configuration generator with cmake. In addition to building against the QPDF
source, you'll need to force your operating system to load the locally compiled
version of QPDF instead of the installed version:
.. code-block:: bash
# Linux
env LD_LIBRARY_PATH=<directory containing libqpdf.so> python ...
.. code-block:: bash
# macOS - may require disabling System Integrity Protection
env DYLD_LIBRARY_PATH=<directory containing libqpdf.so> python ...
On macOS you can make the library persistent by changing the name of the library
to use in pikepdf's binary extension module:
.. code-block:: bash
install_name_tool -change /usr/local/lib/libqpdf*.dylib \
$QPDF_BUILD_LIBDIR/libqpdf*.dylib \
src/pikepdf/_qpdf.cpython*.so
You can also run Python through a debugger (``gdb`` or ``lldb``) in this manner,
and you will have access to the source code for both pikepdf's C++ and QPDF.
Valgrind
--------
Valgrind may also be helpful - see the Python `documentation`_ for information
on setting up Python and Valgrind.
.. _documentation: https://github.com/python/cpython/blob/d5d33681c1cd1df7731eb0fb7c0f297bc2f114e6/Misc/README.valgrind
Profiling pikepdf
-----------------
The standard Python profiling tools in :mod:`cProfile` work fine for many
purposes but cannot explore inside pikepdf's C++ functions.
The `py-spy`_ program can effectively profile time spent in Python or executing
C++ code and demangle many C++ names to the appropriate symbols.
Happily it also does not require recompiling in any special mode, unless one
desires more symbol information than libqpdf or the C++ standard library exports.
For best results, use py-spy to generate speedscope files and use the `speedscope`_
application to view them. py-spy's SVG output is illegible due to long C++ template
names as of this writing.
To install profiling and use profiling software:
.. code-block:: bash
# From a virtual environment with pikepdf installed...
# Install
pip install py-spy
npm install -g speedscope # may need sudo to install this
# Run profile on a script that executes some pikepdf code we want to profile
py-spy record --native --format speedscope -o profile.speedscope -- python some_script.py
# View results (this will open a browser window)
speedscope profile.speedscope
To profile pikepdf's test suite, ensure that you run ``pytest -n0`` to disable
multiple CPU usage, since py-spy cannot trace inside child processes.
.. _py-spy: https://github.com/benfred/py-spy
.. _speedscope: https://github.com/jlfwong/speedscope
pymemtrace
----------
`pymemtrace`_ is another helpful tool for diagnosing memory leaks.
.. _pymemtrace: https://pymemtrace.readthedocs.io/en/latest/index.html
|