avlcal

C++ Seat Availability Calculator Library

Summary

AvlCal aims at providing a clean API and a simple implementation (C++ library) of an Airline-related Seat Inventory Availability Calculation system. That library uses the Standard Airline IT C++ object model (https://github.com/airsim/stdair).

AvlCal makes an extensive use of existing open-source libraries for increased functionality, speed and accuracy. In particular the Boost (C++ Standard Extensions: https://www.boost.org) library is used.

AvlCal is the one of the components of the Travel Market Simulator (https://travel-sim.org). However, it may be used in a stand-alone mode.

Installation

On Fedora/CentOS/RedHat distribution

Just use DNF (or Yum on older distributions):

$ dnf -y install avlcal-devel avlcal-doc

You can also get the RPM packages (which may work on Linux distributions like Novel Suse and Mandriva) from the Fedora repository (e.g., for Fedora Rawhide, https://fr2.rpmfind.net/linux/RPM/fedora/devel/rawhide/x86_64/)

Building the library and test binary from Git repository

The Sourceforge Git repository may be cloned as following:

$ git clone git@github.com:airsim/avlcal.git avlcalgit # through SSH
$ git clone https://github.com/airsim/avlcal.git # if the firewall filters SSH
$ cd avlcalgit

Then, you need the following packages (Fedora/RedHat/CentOS names here, but names may vary according to distributions):

Building the library and test binary from the tarball

The latest stable source tarball (avlcal*.tar.gz or .bz2) can be found on GitHub: https://github.com/airsim/avlcal/releases

To customise the following to your environment, you can alter the path to the installation directory:

export INSTALL_BASEDIR="${HOME}/dev/deliveries"
export AVLCAL_VER="1.00.6"
export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=64"

Then, as usual:

Denis Arnaud