ShipSoftware-backend was a school project which was worked on in couple different course in VAMK on 2017-2018.
Initial version of this project was made with C# but was then re-written in C to get a grasp of cross-platform development. In re-write a full documentation with Doxygen was added.
This program is just a dummy "middleman" between aprs.fi API and database and it does not provide any other functionality than automatically getting data from the API and inserting it to database. This program just gives a purpose for the shipsoftware-chsarp and a shipsoftware-php, by providing new data to the database; otherwise those projects would not have much data to display.
Keep in mind that this and the other projects in Shipsoftware-schoolproject group are just a school projects. They may not suit for production use and the use cases of these programs might be very marginal; you would get more information about the ships by just using the aprs.fi site itself or any other similar site.
- Valid API key from aprs.fi.
- MySQL database
- Use MySQL clauses from shipsoftware-sql repository to setup the database correctly.
API key is needed to fetch information of ships and database obliviously is for storing the data.
Configuration is stored in configuration.json
in JSON format. It will be
loaded from the same directory as the executable is started from.
See configuration.json.example
for example configuration. Or if you're reading
Doxygen documentation, check [Configuration file](@ref ConfigPage) page.
log_size
option is not necessary, it is used only by the GUI and it will
default to 20
if it is not provided.
Documentation can be generated with Doxygen. doxygen.conf
which comes with
the project has been configured to generate documentation only in HTML format.
To generate documentation along with the build, see CMake flags
section
for the flag to trigger generation of documentation.
See Contributing.
- libmariadb2
- libjson-glib-1.0
- gtk3 (required only for GUI build)
- gcc
- make
- cmake
- libjson-glib-dev
- libmariadbclient-dev
- libcurl-dev
- libgtk-3-dev (required only for GUI build)
- doxygen (optional)
- python3
- binutils (objdump)
BUILD_DOC
set to1
to build documentation (default 0).WITH_GUI
set to0
to build without GTK (default 1).
Compiling is simple as:
mkdir build
cd build
cmake ..
make
Should be simple as:
mkdir build
cd build
x86_64-w64-mingw32-cmake ..
make
*-cmake
might vary between distros.
All required DLL's are copied automatically next to .exe file with mingw-bundledlls
script when you execute make
. You might need to adjust the paths in
mingw-bundledlls
script regarding to your distro.
mingw-gtktheme
script is also called by make
to set default theme so the
program looks more native in Windows.
- Never tried on Windows..