All Projects → Martchus → cpp-utilities

Martchus / cpp-utilities

Licence: GPL-2.0 License
Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities

Programming Languages

C++
36643 projects - #6 most used programming language
CMake
9771 projects
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to cpp-utilities

Argagg
A simple C++11 command line argument parser
Stars: ✭ 180 (+414.29%)
Mutual labels:  cmake, argument-parser
docopt.swift
A command-line interface description language and parser that will make you smile http://docopt.org/
Stars: ✭ 53 (+51.43%)
Mutual labels:  argument-parser
CmdLine2
Command line argument parser (C++14)
Stars: ✭ 18 (-48.57%)
Mutual labels:  argument-parser
theconf
Python Package for Managing Configurations
Stars: ✭ 35 (+0%)
Mutual labels:  argument-parser
docopt-ng
Humane command line arguments parser. Now with maintenance, typehints, and complete test coverage.
Stars: ✭ 94 (+168.57%)
Mutual labels:  argument-parser
option-parser
A Lightweight, header-only CLI option parser for C++
Stars: ✭ 16 (-54.29%)
Mutual labels:  argument-parser
google-options
Command line argument parsing library from the folks at Google (java).
Stars: ✭ 61 (+74.29%)
Mutual labels:  argument-parser
emock
🐞 下一代C/C++跨平台mock库 (Next generation cross-platform mock library for C/C++)
Stars: ✭ 73 (+108.57%)
Mutual labels:  cppunit
Console CommandLine
Full featured command line options and arguments parser.
Stars: ✭ 19 (-45.71%)
Mutual labels:  argument-parser
typed-argument-parser
Typed argument parser for Python
Stars: ✭ 259 (+640%)
Mutual labels:  argument-parser
Moderator
A simple, modular command line argument parser in Swift.
Stars: ✭ 19 (-45.71%)
Mutual labels:  argument-parser
ArgMacros.jl
Fast, flexible, macro-based, Julia package for parsing command line arguments.
Stars: ✭ 29 (-17.14%)
Mutual labels:  argument-parser
parse it
A python library for parsing multiple types of config files, envvars & command line arguments that takes the headache out of setting app configurations.
Stars: ✭ 86 (+145.71%)
Mutual labels:  argument-parser
vargs
Simple argument parsing library for V.
Stars: ✭ 36 (+2.86%)
Mutual labels:  argument-parser
go-getoptions
Fully featured Go (golang) command line option parser with built-in auto-completion support.
Stars: ✭ 41 (+17.14%)
Mutual labels:  argument-parser
argparse-to-class
Transform argparse into class format for Jupyter Notebook execution
Stars: ✭ 20 (-42.86%)
Mutual labels:  argument-parser
dropt
dropt is yet another C library for parsing command-line options.
Stars: ✭ 39 (+11.43%)
Mutual labels:  argument-parser
parseargs
Migrated to https://github.com/denoland/deno_std
Stars: ✭ 28 (-20%)
Mutual labels:  argument-parser
minimist2
TypeScript/JavaScript ES6 rewrite of popular Minimist argument parser
Stars: ✭ 20 (-42.86%)
Mutual labels:  argument-parser
cmd-ts
💻 A type-driven command line argument parser
Stars: ✭ 92 (+162.86%)
Mutual labels:  argument-parser

C++ utilities

Useful C++ classes and routines such as argument parser, IO and conversion utilities.

Features

The library contains helpers for:

  • parsing command-line arguments and providing Bash completion
    • supports nested arguments
    • supports operations (no -- or - prefix, eg. git status)
    • can check for invalid or uncombinable arguments
    • can print help automatically
    • provides automatic Bash completion for argument names
    • allows customizing Bash completion for argument values
  • dealing with dates and times
  • conversion of primitive data types to byte-buffers and vice versa (litte-endian and big-endian)
  • common string conversions/operations, eg.
    • character set conversions via iconv
    • split, join, find and replace
    • conversion from number to string and vice verca
    • encoding/decoding base-64
    • building string without multiple heap allocations ("string builder")
  • using standard IO streams
    • reading/writing primitive data types of various sizes (little-endian and big-endian)
    • reading/writing terminated strings and size-prefixed strings
    • reading/writing INI files
    • reading bitwise (from a buffer; not using standard IO streams)
    • writing formatted output using ANSI escape sequences
    • instantiating a standard IO stream from a native file descriptor to support UTF-8 encoded file paths under Windows and Android's content:// URLs
  • using SFINAE by providing additional traits, eg. for checking whether a type is iteratable
  • testing with CppUnit
    • finding testfiles and make working copies of testfiles
    • assert standard output
    • various helper
  • building with CMake by providing some modules and templates

Besides, the library provides a few useful algorithms and data structures:

  • min(), max() for any number of arguments
  • digitsum(), factorial(), powerModulo(), inverseModulo(), orderModulo()
  • Damerau–Levenshtein distance
  • N-dimensional array

API/ABI stability

The following counts for c++utilities and my other libraries unless stated otherwise:

  • Different major versions are incompatible (API- and ABI-wise). Different major versions can be installed within the same prefix using the CMake variable CONFIGURATION_NAME (see documentation about build variables mentioned below).
  • Minor versions are backwards compatible (API- and ABI-wise) to previous ones within the same major version.
  • Patch versions are interchangeable (API- and ABI-wise) within the same major/minor version.
  • Some functions or classes are experimental. They might be modified in an incompatible way or even removed in the next minor or patch release.

Build instructions

Requirements

Build-only dependencies

  • C++ compiler supporting C++17, tested with
    • clang++ to compile for GNU/Linux and Android
    • g++ to compile for GNU/Linux and Windows
  • CMake (at least 3.3.0)
  • cppunit for unit tests (optional)
  • Doxygen for API documentation (optional)
  • Graphviz for diagrams in the API documentation (optional)
  • clang-format for tidying (optional)
  • llvm-profdata, llvm-cov and cppunit for source-based code coverage analysis (optional)

Runtime dependencies

  • The c++utilities library itself only needs
    • C++ standard library supporting C++17, tested with
      • libstdc++ under GNU/Linux and Windows
      • libc++ under GNU/Linux and Android
    • glibc with iconv support or standalone iconv library
    • libstdc++ or Boost.Iostreams for NativeFileStream (optional)
  • For dependencies of my other projects check the README.md of these projects.

How to build

Example using make:

cd "path/to/build/directory"
cmake -DCMAKE_BUILD_TYPE=Release \
      -DCMAKE_INSTALL_PREFIX="/final/install/location" \
      "path/to/projectdirectory"
make tidy # format source files (optional, must be enabled via CLANG_FORMAT_ENABLED)
make # build the binaries
make check # build and run tests (optional)
make coverage # build and run tests measuring test coverage (optional, must be enabled via CLANG_SOURCE_BASED_COVERAGE_ENABLED)
make apidoc # build API documentation (optional)
make DESTDIR="/temporary/install/location" install # install binaries, headers and additional files

General notes

  • The make option -j can be used for concurrent compilation.
  • LIB_SUFFIX, LIB_SUFFIX_32 and LIB_SUFFIX_64 can be set to specify a suffix for the library directory, eg. lib64 or lib32. The 32/64 variants are only used when building for 32/64-bit architecture.
  • By default the build system will build static libs. To build shared libraries instead, set BUILD_SHARED_LIBS=ON.
  • By default the build system will prefer linking against shared libraries. To force linking against static libraries set STATIC_LINKAGE=ON. However, this will only affect applications. To force linking statically when building shared libraries set STATIC_LIBRARY_LINKAGE=ON.
  • If thread local storage is not supported by your compiler/platform (might be the case on MacOS), you can disable making use of it via ENABLE_THREAD_LOCAL=OFF.
  • To disable use of std::filesystem, set USE_STANDARD_FILESYSTEM=OFF. This is required when building for MacOS and Android at the time of writing this documentation. Note that the Bash completion will not be able to suggest files and directories with USE_STANDARD_FILESYSTEM=OFF.
  • To disable NativeFileStream (and make it just a regular std::fstream), set USE_NATIVE_FILE_BUFFER=OFF. Note that handling paths with non-ASCII characters will then cease to work on Windows.
  • For more detailed documentation, see the documentation about build variables (in directory doc and in Doxygen version accessible via "Related Pages").
  • The repository PKGBUILDs contains build scripts for GNU/Linux, Android, Windows and MacOS X in form of Arch Linux packages using ninja. These scripts can be used as an example also when building under/for other platforms.

Windows-specific notes

  • To create application icons the tool ffmpeg/avconv is required.
  • Windows builds are only conducted using mingw-w64/GCC. Using MSVC has never been tested.

MacOS-specific notes

  • To create application icons the tool png2icns is required.
  • Building for MacOS X under GNU/Linux is possible using osxcross.
  • MacOS X builds are not tested regularly but should generally work (maybe with minor tweaks necassary)
  • There is a Homebrew formula to build Tag Editor (without GUI)
  • There are MacPorts packages to build Syncthing Tray

Development builds

During development I find it useful to build all required projects (for instance c++utilities, qtutilities, tagparser and tageditor) as one big project.

This can be easily achieved by using CMake's add_subdirectory() function. For project files see the repository subdirs. For an example, see build instructions for Syncthing Tray.

For a debug build, use -DCMAKE_BUILD_TYPE=Debug.

Arch Linux package

The repository PKGBUILDs contains files for building Arch Linux packages of the latest release and the Git master.

PKGBUILDs to cross compile for Android, Windows (using mingw-w64) and for MacOS X (using osxcross) are included as well.

RPM packages for openSUSE and Fedora

RPM *.spec files can be found at openSUSE Build Servide. Packages are available for several architectures.

There is also a sub project containing the builds from the Git master branch.

Gentoo

Packages are provided by perfect7gentleman; checkout his repository.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].