[desktop] Use XDG and installation paths for config and data #2387
Labels
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#2387
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This came up in https://github.com/flathub/flathub/pull/2968#issuecomment-1096430134, but NixOS also has to wrap Organic Maps for it to work.
It looks like Qt QStandardPaths can be used to get XDG paths.
Ideally, the following files should be moved / these paths should be set:
~/.config/OMaps/{settings.ini,bookmarks}
should be saved in$XDG_CONFIG_HOME/OMaps
if it exists. I believe this isQStandardPaths::ConfigLocation
. As opposed to the other paths, there is no way for the user to change this right now.#2409
-data_path
should default to$XDG_DATA_HOME/OMaps
, with fallback~/.local/share/OMaps
. This should beQStandardPaths::DataLocation
. Right now it defaults to""
, which is interpreted as the current directory#2734
-resources_path
should default to the data installation directory,${CMAKE_INSTALL_PREFIX}/share/organicmaps/
. Right now it defaults to""
, which is interpreted as the current directorySolved partially in organicmaps/organicmaps#2734/files , that adds a relative path common among distros to the default search paths
Linux paths initialization code is here: https://github.com/organicmaps/organicmaps/blob/master/platform/platform_linux.cpp#L76:L149
You're welcome to contribute.
Is anyone currently working on the part that was missing from #2409 or can newcomers take a shot?
?
I'm not working on it
All right, then I assume we are not risking double effort, so please take a look at the above PR.
#2734 solved (2) and partially (3) by including a search path that's common among distros. It'd still be nice to have it based on CMAKE_INSTALL_PREFIX, but this already allows us to drop all the wrappers in flatpak and nixos packages
It is possible to pass CMAKE_INSTALL_PREFIX into some generated header at the build time and embed it into the code.
What should be the logic with this prefix? To override default one
/usr/local
?BTW are we sure, that relying on
CMAKE_INSTALL_PREFIX
is more robust than searching throughXDG_DATA_DIRS
in runtime?If I understood correctly, the logic should be: