cpp-utilities/README.md

235 lines
13 KiB
Markdown
Raw Normal View History

2016-06-11 18:53:26 +02:00
# C++ utilities
2017-11-04 15:48:47 +01:00
Useful C++ classes and routines such as argument parser, IO and conversion utilities.
2015-05-19 22:33:12 +02:00
2016-02-17 20:20:37 +01:00
## Features
The library contains helpers for:
2017-06-24 23:53:51 +02:00
2016-07-04 23:53:56 +02:00
* parsing command-line arguments and providing Bash completion
2018-05-05 23:28:21 +02:00
- 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
2016-06-11 18:53:26 +02:00
* dealing with dates and times
* conversion of primitive data types to byte-buffers and vice versa (litte-endian and big-endian)
2016-02-17 20:20:37 +01:00
* common string conversions/operations, eg.
2017-11-04 15:48:47 +01:00
- character set conversions via iconv
2017-06-24 23:53:51 +02:00
- split, join, find and replace
- conversion from number to string and vice verca
- encoding/decoding base-64
2017-08-17 19:12:25 +02:00
- building string without multiple heap allocations ("string builder")
2020-06-04 20:49:02 +02:00
* using standard IO streams
2017-06-24 23:53:51 +02:00
- 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
2020-06-04 20:49:02 +02:00
- reading bitwise (from a buffer; not using standard IO streams)
2017-11-04 15:48:47 +01:00
- writing formatted output using ANSI escape sequences
2019-05-30 14:05:03 +02:00
- instantiating a standard IO stream from a native file descriptor to support UTF-8 encoded
file paths under Windows and Android's `content://` URLs
2022-10-30 21:36:40 +01:00
* using SFINAE by providing additional traits, eg. for checking whether a type is iterable
2017-11-04 15:48:47 +01:00
* 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
2016-02-17 20:20:37 +01:00
2018-05-05 23:28:21 +02:00
Besides, the library provides a few useful algorithms and data structures:
* min(), max() for any number of arguments
* digitsum(), factorial(), powerModulo(), inverseModulo(), orderModulo()
* DamerauLevenshtein distance
* *N*-dimensional array
2020-11-25 17:53:14 +01:00
## 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.
2015-05-19 22:33:12 +02:00
## Build instructions
These build instructions apply to `c++utilities` but also to my other projects using it.
2016-01-29 00:47:05 +01:00
### Requirements
#### Build-only dependencies
2019-05-28 17:55:18 +02:00
* C++ compiler supporting C++17, tested with
- g++ to compile for GNU/Linux and Windows
- clang++ to compile for GNU/Linux and Android
* CMake (at least 3.3.0) and Ninja or GNU Make
* cppunit for unit tests (optional)
2016-06-11 18:53:26 +02:00
* Doxygen for API documentation (optional)
2016-07-04 23:53:56 +02:00
* Graphviz for diagrams in the API documentation (optional)
2017-04-04 00:53:00 +02:00
* clang-format for tidying (optional)
2017-06-24 23:52:38 +02:00
* llvm-profdata, llvm-cov and cppunit for source-based code coverage analysis (optional)
2022-10-11 19:29:23 +02:00
* [appstreamcli](https://www.freedesktop.org/wiki/Distributions/AppStream/) for validation
of generated AppStream files (optional)
#### Runtime dependencies
* The `c++utilities` library itself only needs
2019-05-28 17:55:18 +02:00
* C++ standard library supporting C++17, tested with
- libstdc++ under GNU/Linux and Windows
- libc++ under GNU/Linux and Android
2019-05-30 14:05:03 +02:00
* glibc with iconv support or standalone iconv library
* libstdc++ or Boost.Iostreams for `NativeFileStream` (optional)
* My other projects have further dependencies such as Qt. Checkout the README of these
projects for further details.
2016-01-29 00:47:05 +01:00
### How to build
Example using Ninja:
2016-01-29 00:47:05 +01:00
```
2023-03-20 22:49:26 +01:00
cmake -G Ninja \
-S "path/to/source/directory" \
-B "path/to/build/directory" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX="/final/install/location"
2020-06-04 20:49:02 +02:00
make # build the binaries
2023-03-20 22:49:26 +01:00
cmake --build "path/to/build/directory"
# format source files (optional, must be enabled via CLANG_FORMAT_ENABLED)
cmake --build "path/to/build/directory" --target tidy
# build and run tests (optional)
cmake --build "path/to/build/directory" --target check
# build and run tests measuring test coverage (optional, must be enabled via CLANG_SOURCE_BASED_COVERAGE_ENABLED)
cmake --build "path/to/build/directory" --target coverage
# build API documentation (optional)
cmake --build "path/to/build/directory" --target apidoc
# install binaries, headers and additional files
DESTDIR="/temporary/install/location" \
cmake --install "path/to/build/directory"
2015-05-19 22:33:12 +02:00
```
2016-01-29 00:47:05 +01:00
#### General notes
* ```LIB_SUFFIX```, ```LIB_SUFFIX_32``` and ```LIB_SUFFIX_64``` can be set to specify a suffix
for the library directory, eg. lib*64* or lib*32*. 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`. 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.
* The Qt-based applications support bundeling icon themes by specifying e.g.
`BUILTIN_ICON_THEMES=breeze;breeze-dark`.
* This variable must be set when building the application (not when building any of the libraries).
* The specified icon themes need to be installed in the usual location. Otherwise, use e.g.
`DBUILTIN_ICON_THEMES_SEARCH_PATH=D:/programming/misc/breeze-icons/usr/share/icons` to specify the
search path.
2017-08-25 15:00:40 +02:00
* For more detailed documentation, see the documentation about build variables (in
[directory doc](https://github.com/Martchus/cpp-utilities/blob/master/doc/buildvariables.md) and
in Doxygen version accessible via "Related Pages").
* The repository [PKGBUILDs](https://github.com/Martchus/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 mainly conducted using mingw-w64/GCC so using them is recommended. Building with MSVC
should be possible as well but it is not as well tested.
* When using `BUILTIN_ICON_THEMES`, the icon theme still needs to be installed as if it was installed on a
GNU/Linux system. So simply grab e.g. the Arch Linux package `breeze-icons` and extract it somewhere. Do
*not* use the package from MSYS2 or what comes with builds from KDE's binary factory.
2019-05-30 14:05:03 +02:00
#### MacOS-specific notes
* To create application icons the tool `png2icns` is required.
* Building for MacOS X under GNU/Linux is possible using [osxcross](https://github.com/tpoechtrager/osxcross).
* MacOS X builds are not tested regularly but should generally work (maybe with minor tweaks necassary).
* There is a [Homebrew formula](https://gist.github.com/rakkesh/0b13b8fca5dd1d57d98537ef1dd2e0dd) to
build Tag Editor (without GUI).
* There are [MacPorts packages](https://www.macports.org/ports.php?by=name&substr=syncthingtray-devel)
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.
2020-06-04 20:49:02 +02:00
This can be easily achieved by using CMake's `add_subdirectory()` function. For project files see the repository
[subdirs](https://github.com/Martchus/subdirs). For an example, see
[build instructions for Syncthing Tray](https://github.com/Martchus/syncthingtray#building-this-straight) or
[build instructions for Tag Editor](https://github.com/Martchus/tageditor#building-this-straight).
2016-01-29 00:47:05 +01:00
For a debug build, use `-DCMAKE_BUILD_TYPE=Debug`. To tweak various settings (e.g. warnings) for development,
use `-DENABLE_DEVEL_DEFAULTS=ON`.
2015-12-05 22:47:49 +01:00
2022-10-30 20:55:06 +01:00
#### CMake presets
There are some generic [presets](https://cmake.org/cmake/help/latest/manual/cmake-presets.7.html) available
but also some specific to certain Arch Linux packaging found in the AUR and my PKGBUILDs repository.
Use `cmake --list-presets` to list all presets. All `cmake` commands need to be executed within the source
directory. Builds will be created within a sub-directory of the path specified via the environment variable
`BUILD_DIR`. Here is an example for creating a build with the `arch-static-compat-devel` preset and invoking
tests:
```
export BUILD_DIR=$HOME/builds # set build directory via environment variable
cmake --preset arch-static-compat-devel # configure build
cmake --build --preset arch-static-compat-devel -- -v # conduct build
cmake --build --preset arch-static-compat-devel --target check # run tests
cmake --build --preset arch-static-compat-devel --target tidy # apply formatting
```
This preset is quite special (see [PKGBUILDs](https://github.com/Martchus/PKGBUILDs#static-gnulinux-libraries)
for details about it). The most useful presets for development are likely `devel`, `devel-qt6` and `debug`.
Note that these presets are supposed to cover all of my projects (so some of them aren't really making a
difference when just building `c++utilities` itself). To use presets in other projects, simply symlink the
2022-10-30 20:55:06 +01:00
file `CMakePresets.json` into the source directory of those projects which works with the "subdirs" projects
mentioned in the previous section as well.
Note that the `devel` preset (and all presets inheriting from it) use `ccache` which therefore needs to be
2022-10-30 20:55:06 +01:00
installed.
The `win-x64-msvc-static` preset (and all presets inheriting from it) need various additional environment
variables to be set:
* `MSYS2_ROOT`: for Perl (only used by `qtforkawesome` so far), `clang-format`, Doxygen and FFmpeg provided
via MSYS2 packages; install the following packages:
```
pacman -Syu perl mingw-w64-x86_64-clang-tools-extra mingw-w64-x86_64-doxygen mingw-w64-x86_64-ffmpeg
```
* `MSVC_ROOT`: for compiler and stdlib usually installed as part of Visual Studio setup, e.g.
`C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.34.31933`
* `WIN_KITS_ROOT`: for Windows platform headers/libraries usually installed as part of Visual Studio setup,
e.g. `C:/Program Files (x86)/Windows Kits/10`
* `QT_ROOT`: for Qt libraries provided by official Qt installer, e.g. `D:/programming/qt/6.5.0/msvc2019_64`
* `QT_TOOLS`: for additional build tools provided by official Qt installer, e.g. `D:/programming/qt/Tools`
* `VCPKG_ROOT`: directory of VCPKG checkout used for other dependencies; install the following packages:
2023-04-04 17:10:34 +02:00
```
vcpkg install boost-system:x64-windows-static boost-iostreams:x64-windows-static boost-filesystem:x64-windows-static boost-hana:x64-windows-static boost-process:x64-windows-static boost-asio:x64-windows-static libiconv:x64-windows-static zlib:x64-windows-static openssl:x64-windows-static cppunit:x64-windows-static
```
### Packaging
The mentioned repositories contain packages for `c++utilities` itself but also for my other projects.
However, the README files of my other projects contain a more exhaustive list.
2016-07-04 23:53:56 +02:00
#### Arch Linux package
The repository [PKGBUILDs](https://github.com/Martchus/PKGBUILDs) contains files for building Arch Linux
packages of the latest release and the Git master.
2016-11-18 18:31:48 +01:00
PKGBUILDs to cross compile for Android, Windows (using mingw-w64) and for MacOS X (using osxcross) are
included as well.
2015-12-05 22:47:49 +01:00
2019-09-25 18:19:18 +02:00
#### RPM packages for openSUSE and Fedora
RPM \*.spec files can be found at [openSUSE Build Servide](https://build.opensuse.org/project/show/home:mkittler).
Packages are available for several architectures.
2019-09-25 18:19:18 +02:00
There is also a [sub project](https://build.opensuse.org/project/show/home:mkittler:vcs) containing the builds
from the Git master branch.
2016-11-18 18:31:48 +01:00
#### Gentoo
2022-10-03 13:41:46 +02:00
Checkout [Case_Of's overlay](https://codeberg.org/Case_Of/gentoo-overlay)
or [perfect7gentleman's overlay](https://gitlab.com/Perfect_Gentleman/PG_Overlay).
2022-04-05 20:09:16 +02:00
## Copyright notice and license
2023-01-17 18:34:13 +01:00
Copyright © 2015-2023 Marius Kittler
2022-04-05 20:09:16 +02:00
All code is licensed under [GPL-2-or-later](LICENSE).