Symbolic

Symbolic is a library written in Rust which is used at Sentry to implement symbolication of native stack traces, sourcemap handling for minified JavaScript and more. It consists of multiple largely independent crates which are bundled together into a C and Python library so it can be used independently of Rust.

What's in the package

Currently it provides the following functionality:

Symbolic comes as a python

Rust Usage

Add symbolic as a dependency to your Cargo.toml. You will most likely want to activate some of the features:

Python Usage

Symbolic is hosted on PyPI. It comes as a library with prebuilt wheels for linux and macOS. On other operating systems or when using as rust library, you need to build symbolic manually. It should be compatible with both Python 2 and Python 3.

The python library ships all of the above features in a flat module:

```python from symbolic import Archive

fat = Archive.open('/path/to/object') obj = fat.getobject(arch = 'x8664') print 'object debug id: {}' % obj.debug_id ```

C Bindings

Symbolic also offers C bindings, which allow for FFI into arbitrary languages. Have a look at the the Symbolic C-ABI readme for more information.

Source Crates

A lot of functionality exposed by this library come from independent Rust crates for better use:

Additionally we use the following C++ libraries to fill in gaps:

Building and Development

To build the Rust crate, we require the latest stable Rust, as well as a C++11 compiler. The crate is split into a workspace with multiple features, so when running building or running tests always make sure to pass the --all and --all-features flags.

```bash

Check whether the crate compiles

cargo check --all --all-features

Run Rust tests

cargo test --all --all-features ```

We use rustfmt and clippy from the latest stable channel for code formatting and linting. To make sure that these tools are set up correctly and running with the right configuration, use the following make targets:

```bash

Format the entire codebase

make format

Run clippy on the entire codebase

make lint ```

Most likely, new functionality also needs to be added to the Python package. This first requires to expose new functions in the C ABI. For this, refer to the Symbolic C-ABI readme.

We highly recommend to develop and test the python package in a virtual environment. Once the ABI has been updated and tested, ensure the virtualenv is active and install the package, which builds the native library. There are two ways to install this:

```bash

Install the release build, recommended:

pip install --editable ./py

Install the debug build, faster installation but much slower runtime:

SYMBOLIC_DEBUG=1 pip install --editable ./py ```

For testing, we use ubiquitous pytest. Again, ensure that your virtualenv is active and the latest version of the native library has been installed. Then, run:

```bash

Run tests manually

pytest ./py/tests

Creates a new virtualenv, installs the release build and runs tests:

make pytest ```

License

Symbolic is licensed under the MIT license. It uses some Apache2 licensed code from Apple for the Swift demangling.