[editor] Fix parsing of 'off' opening hours #7652
No reviewers
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
2 participants
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#7652
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "openhours"
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 PR fixes the parsing of the "opening hours" strings that start with an "off" statement.
One example of opening hours not being processed correctly is the opening_hours tag
Mo off; Tu-Su 12:00-16:30, 19:00-24:00
of this restaurant in OSM.Current opening hours parsing implementation does not like "off" statements if they are located in the first place, so this PR reorders the statements by placing the "off" ones at the end of the list.
This PR closes PR 1612
Why closed rules are not accepted?
Is it possible to convert "Mo off" text to the whole day closed rule?
I haven't got into all the details of the opening hours (OH) parsing code, but here are my toughs/findings of what the problem might be:
The piece of code that rejects "Close" rules if they are at the start of the OH sequences is this one:
7cf0b2c2a6/editor/ui2oh.cpp (L341-L345)
I presume that the OH parsing code starts with an empty OH sequence, then expects to have one or several opening hours rules and finally a list of "off hours" rules to subtract them from the previous opening hours rules That's why an "off" rule in the first place is useless and then the parser returns false.
For example, the sequence
Mo off; 9:00-17:00
any human would read it as: "On Mondays it's closed, and (for the rest of the days) it's open from 9 to 5".But the OH parser does not like making these "assumptions", and expects to have first the actual opening hours, and later the "off" hours to subtract them: "9:00-17:00; Mo off" (open all days from 9 to 5, except for Mondays").
One way to avoid this problem is to move all the "off" rules at the end of the sequence, just what I've proposed in this PR.
Thanks for the details!
OSM spec says in "Syntax for optional modifiers" section:
So using the off modifier in the beginning is perfectly fine.
So maybe the author of the following code/comment was wrong, and removing that check (and maybe fixing other code if necessary) will provide a better fix?
Hm, is it only editor problem?
I mean basic routing like
OpeningHours.IsOpen/IsClosed
works fine with off?If not, we should fix there first ..
Thanks, let's start with this fix to slightly improve the current situation.