Skip to content

New home for low-level Rust components of the Carmen geocoding engine

Notifications You must be signed in to change notification settings

headwaymaps/carmen-core

This branch is 290 commits ahead of LevyForchh/carmen-core:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

53ba4d2 · Nov 8, 2021
Jul 22, 2021
Jun 5, 2019
Jul 12, 2021
Nov 8, 2021
Jun 6, 2019
Jul 23, 2020
Nov 8, 2021
May 2, 2019
May 1, 2019
Feb 15, 2021
Apr 22, 2019
Apr 16, 2021
Jul 23, 2020
Jul 23, 2020
Jan 9, 2020
Feb 16, 2021
Aug 19, 2019
Nov 8, 2021
Jul 21, 2020
Jun 30, 2021

Repository files navigation

codecov

carmen-core

Carmen-core is a backend storage library for Carmen written in Rust. This repository contains both a Rust library (in rust-src) and a Javascript wrapper around that library (in index.js and native).

Development

Rust

The latest stable version of Rust to build this project.

To install rust, follow instructions at https://www.rust-lang.org/tools/install .

To compile, run:

cargo build

To run Rust tests, run:

cargo test

JS bindings

As per above, the current stable Rust release must be installed to work on the Node bindings.

To get started, run:

yarn install

which will download all Javascript dependencies and, if one is available, download a prebuilt binary of the current version of the library from S3 for your platform.

If you make local changes, you can build locally using:

yarn build

Note that carmen-core requires node-gyp, which only works with python 2. If you use pyenv to manage python versions, the .python-version file checked into this repo should be sufficient. Otherwise, try the instructions in this comment (modified to use yarn):

brew install python@2
# follow the instructions printed after installing `python@2` to get python 2 on your PATH
# e.g. echo 'export PATH="/usr/local/opt/python@2/bin:$PATH"' >> ~/.bashrc
yarn config set python python2.7

To run Javascript tests, run:

yarn test

Publishing

This project includes script/publish.sh, which publishes built binaries of the Javascript bindings of carmen-core. Generally, this script will be run automatically from Travis, and can be triggered with a special commit message.

Once you're ready to publish a binary (either a release or a development version):

  • If a release-ready version, merge your branch into master
  • Update the version number in package.json (for development versions, add a -[your-branch-name]-1 tag after the number)
  • Commit your changes with a commit message that includes [publish binary]
  • Push and wait for Travis to run; the Javascript builders should include information about publishing builds at the end of the build log

Benching

This project uses Criterion benchmarks. Criterion is a statistics-driven benchmarking library that generates visual reports with gnuplot. To enable the report generation, make sure you have gnuplot installed (brew install gnuplot on a mac).

To run benchmarks:

cargo bench

Html reports will be generated in target/criterion/report/index.html

Criterion will measure the statistical significance of the difference between two different bench runs, so to measure the impact of a change, you can checkout master, run a bench, and then check out a feature branch and run a bench. Note: the results are sensitive to other resource usage on your machine. For more accurate results, run in an isolated environment.

About

New home for low-level Rust components of the Carmen geocoding engine

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 88.7%
  • JavaScript 10.4%
  • Shell 0.9%