Use plain text format for compiled styles #10341

Open
opened 2025-02-25 05:50:54 +00:00 by pastk · 0 comments
Owner

At the moment styles are compiled into data/*.bin files which are google protobuf serializations.

Issues with that approach:

  • all style PRs have to be applied sequentially as merge doesn't work for binaries, hence one has to always regenerate on top of the last merged style commit, which leads to many unnecessary regenerations and force pushes and ultimately to
  • we have to generate (keep in the repo) plain text versions of compiled *.bin files anyway, as they're necessary for debugging and QA/reviews
  • protobuf is a growing big dependency hence we don't want to update it
  • the OM repo grows bigger and bigger with every binary regeneration commit merged (and it'll grow faster when we introduce more styles, e.g. cycling)

Seemingly the only benefit of using a binary format is that it loads faster.

However, is that really a big deal?

  • it has to load once only (at startup)
    • it'd be great to measure what percent of the startup time does it take
    • could be optimized to load only one style first (which is being displayed; as atm all 6 styles are loaded at once)
  • OM loads many plain text data files at the startup e.g.
    • categories.txt
    • localization files (usually xml)
    • classificator.txt, types.txt, etc.
    • tracks and bookmarks (xml)
      • we even ditched the binary kmb format in favor of plain kml as there was little benefit, right?

So the idea is to load e.g. data/drules_proto_default_light.txt instead of data/drules_proto_default_light.bin. The format is pretty simple and could be easily changed to something more standard like yaml or xml. It could be also made much more compact as it is now (there is a lot of data duplication).

At the moment styles are compiled into `data/*.bin` files which are google protobuf serializations. Issues with that approach: - all style PRs have to be applied sequentially as merge doesn't work for binaries, hence one has to always regenerate on top of the last merged style commit, which leads to many unnecessary regenerations and force pushes and ultimately to https://git.omaps.dev/organicmaps/organicmaps/issues/6167 - we have to generate (keep in the repo) plain text versions of compiled *.bin files anyway, as they're necessary for debugging and QA/reviews - protobuf is a growing big dependency hence we don't want to update it https://git.omaps.dev/organicmaps/organicmaps/pulls/6310 - the OM repo grows bigger and bigger with every binary regeneration commit merged (and it'll grow faster when we introduce more styles, e.g. cycling) Seemingly the only benefit of using a binary format is that it loads faster. However, is that really a big deal? - it has to load once only (at startup) - it'd be great to measure what percent of the startup time does it take - could be optimized to load only one style first (which is being displayed; as atm all 6 styles are loaded at once) - OM loads many plain text data files at the startup e.g. - categories.txt - localization files (usually xml) - classificator.txt, types.txt, etc. - tracks and bookmarks (xml) - we even ditched the binary kmb format in favor of plain kml as there was little benefit, right? So the idea is to load e.g. `data/drules_proto_default_light.txt` instead of `data/drules_proto_default_light.bin`. The format is pretty simple and could be easily changed to something more standard like yaml or xml. It could be also made much more compact as it is now (there is a lot of data duplication).
This repo is archived. You cannot comment on issues.
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
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#10341
No description provided.