Skip to main content

An extended set of Python bindings for libclang

Project description

https://travis-ci.org/pybee/sealang.svg?branch=master

Sealang is an improved set of Python bindings for libclang.

The upstream maintainers of libclang have not been especially responsive to patches that address issues like Python 3 compatibility, and the significant omissions in the API (such as extracting literals and operators).

This package is a fork of the official Python bindings for libclang, patched to correct these problems.

Installation

To compile Sealang, you’ll need to:

  1. Install LLVM (with clang)

  2. Set some environment variables

  3. Install Sealang

The exact commands needed will vary between platforms.

OS X

Although OS X provides Clang, it doesn’t provide all the development headers, so you’ll need to . Homebrew is the easiest way to do this. Follow the installation instructions on the Homebrew homepage; once you’ve got Homebrew installed, you can run:

$ brew install llvm --with-clang --with-asan

to get a working install of llvm with clang.

Then, you’ll need to set the following environment variables:

$ export LLVM_HOME=/usr/local/opt/llvm
$ export DYLD_LIBRARY_PATH=$LLVM_HOME/lib

Lastly, you can install Sealang:

$ pip install sealang

Ubuntu 14.04 (Trusty)

To compile under Ubuntu 14.04 (Trusty), you’ll need to get an updated version of LLVM:

$ sudo apt-get install libclang-3.6 clang-3.6 -y

Then, you’ll need to set the following environment variables:

$ export LLVM_HOME=/usr/lib/llvm-3.6
$ export LD_LIBRARY_PATH=$LLVM_HOME/lib

Lastly, you can install Sealang:

$ pip install sealang

Other platforms

The instructions for installing on other platforms should be analogous. If you develop build instructions for a platform, please submit a pull request.

Usage

Sealang provides a superset of the functionality provided by libclang. Those features are:

  • Cursor objects have 4 additional attributes:

    • literal - the value of a literal expression. Available on IntegerLiteral, FloatingLiteral, StringLiteral, CharacterLiteral, and CXXBooleanLiteral nodes.

    • operator - the printable version of an operator. Only available on BinaryOperator, UnaryOperator, and CompoundAssignOperator cursor nodes.

    • binary_operator - an enumeration value describing a BinaryOperator or CompoundAssignOperator node.

    • unary_operator - an enumeration value describing a UnaryOperator node.

  • BinaryOperator - An enumeration for the types of binary operators:

    • BinaryOperator.INVALID

    • BinaryOperator.PTRMEMD

    • BinaryOperator.PTRMEMI

    • BinaryOperator.MUL

    • BinaryOperator.DIV

    • BinaryOperator.REM

    • BinaryOperator.ADD

    • BinaryOperator.SUB

    • BinaryOperator.SHL

    • BinaryOperator.SHR

    • BinaryOperator.LT

    • BinaryOperator.GT

    • BinaryOperator.LE

    • BinaryOperator.GE

    • BinaryOperator.EQ

    • BinaryOperator.NE

    • BinaryOperator.AND

    • BinaryOperator.XOR

    • BinaryOperator.OR

    • BinaryOperator.LAND

    • BinaryOperator.LOR

    • BinaryOperator.ASSIGN

    • BinaryOperator.MULASSIGN

    • BinaryOperator.DIVASSIGN

    • BinaryOperator.REMASSIGN

    • BinaryOperator.ADDASSIGN

    • BinaryOperator.SUBASSIGN

    • BinaryOperator.SHLASSIGN

    • BinaryOperator.SHRASSIGN

    • BinaryOperator.ANDASSIGN

    • BinaryOperator.XORASSIGN

    • BinaryOperator.ORASSIGN

    • BinaryOperator.COMMA

    • BinaryOperator.UNKNOWN

  • UnaryOperator - An enumeration for the types of binary operators:

    • UnaryOperator.INVALID

    • UnaryOperator.POSTINC

    • UnaryOperator.POSTDEC

    • UnaryOperator.PREINC

    • UnaryOperator.PREDEC

    • UnaryOperator.ADDROF

    • UnaryOperator.DEREF

    • UnaryOperator.PLUS

    • UnaryOperator.MINUS

    • UnaryOperator.NOT

    • UnaryOperator.LNOT

    • UnaryOperator.REAL

    • UnaryOperator.IMAG

    • UnaryOperator.EXTENSION

    • UnaryOperator.UNKNOWN

How it works

Sealang is a bit of a nasty hack. libclang is a set of C bindings to a C++ API; Python ctypes are then used to wrap the C API. However, while the C++ API is quite rich, libclang is less so.

Sealang bridges this gap by providing C wrappers around the C++ calls that provide the useful functionality. This library of C functions is wrapped up as a Python C module for delivery purposes - this C module contains no exposed Python objects or methods, but because it’s a module, the underlying compiled sealang.so file is easy to find. ctypes are then used to expose the sealang wrapper functions;

Internally, Sealang reproduces some minor pieces of the libclang API; these are methods (such as the string creation and manipulation methods) that aren’t exposed as symbols for third-party use.

All this functionality is potentially a candidate to be passed upstream to libclang.

Relationship to Clang

This project aims to mirror what is currently available in the Python bindings to libclang. The version number for this project is drawn from the version and SVN revision of the official clang repository.

Any changes made upstream to libclang will be mirrored here; any changes made here will, where possible, be pushed upstream to libclang.

Community

Sealang is part of the BeeWare suite. You can talk to the community through:

Contributing

If you experience problems with Sealang, log them on GitHub. If you want to contribute code, please fork the code and submit a pull request.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sealang-3.9.dev259750.tar.gz (49.2 kB view details)

Uploaded Source

Built Distributions

sealang-3.9.dev259750-cp34-cp34m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.4m macOS 10.9+ x86-64

sealang-3.9.dev259750-cp27-none-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7 macOS 10.9+ x86-64

File details

Details for the file sealang-3.9.dev259750.tar.gz.

File metadata

File hashes

Hashes for sealang-3.9.dev259750.tar.gz
Algorithm Hash digest
SHA256 396bf5c23ad5615b2e6a3866435fe4d7e17920bb00cfa80fc24ac737cd444960
MD5 ab08839da6edad10b5f5b3cb1899fd25
BLAKE2b-256 50f6dbae5a114494f2d7dc4a3a410f8bed187ef9a30856d3e10fb60ef7a2ce79

See more details on using hashes here.

File details

Details for the file sealang-3.9.dev259750-cp34-cp34m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sealang-3.9.dev259750-cp34-cp34m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b23ec8ca60ac5a50044c93a9225fcb0c45523db5ebd558e687aeb8959acd818f
MD5 df866575947479a487a0bc55e5cd99ca
BLAKE2b-256 9947ba1491ecc86ede4b8c46e6044ca1a00705d383a5c695390e0c077ec3fca5

See more details on using hashes here.

File details

Details for the file sealang-3.9.dev259750-cp27-none-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sealang-3.9.dev259750-cp27-none-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a6ac1365578c90022bb5af56520b476442e96264cc5696996a3aa94e804d2d7
MD5 bb833c1571ff77a1280585a8a0f3f8aa
BLAKE2b-256 02a8f4e643d0af6a40c5a57fc5be0a3db6a88aab0a1dacf2af0dd3c802fd0ac1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page