[ios] [bookmarks] Remove observer pattern during the category files exporting #7933

Merged
root merged 3 commits from ios/share-bookmarks-with-completion-handler into master 2024-04-16 18:41:41 +00:00
Member

For now to handle the file sharing OM uses the observing pattern tightened to the MWMBookmarksManagers, that is too complex for this straightforward task:

  1. subscribe for the observarion
  2. register observer
  3. send sharing message
  4. wait for sharing result
  5. handle sharing result
  6. notify observers
  7. unsubscribe from observing

This is too complex because the c++ method that we interact with uses the completion handlers to return sharing results and there is no sense in wrapping the completion handle into observation:

void BookmarkManager::PrepareFileForSharing(kml::GroupIdCollection && categoriesIds, SharingHandler && handler)

This PR converts c++ completion handler into the objc and returns to the caller so we can share files easily with the MWMBookmarksManagers and handle result without additional overhead:

- (void)shareCategory:(MWMMarkGroupID)groupId completion:(SharingResultCompletionHandler)completion;
- (void)shareAllCategoriesWithCompletion:(SharingResultCompletionHandler)completion;

https://github.com/organicmaps/organicmaps/assets/79797627/7ceabaa2-0880-41e4-bfed-28c565911950

For now to handle the` file sharing` OM uses the observing pattern tightened to the MWMBookmarksManagers, that is too complex for this straightforward task: 1. subscribe for the observarion 2. register observer 3. send sharing message 4. wait for sharing result 5. handle sharing result 6. notify observers 7. unsubscribe from observing This is too complex because the c++ method that we interact with uses the completion handlers to return sharing results and there is no sense in wrapping the completion handle into observation: ```cpp void BookmarkManager::PrepareFileForSharing(kml::GroupIdCollection && categoriesIds, SharingHandler && handler) ``` This PR converts c++ completion handler into the objc and returns to the caller so we can share files easily with the MWMBookmarksManagers and handle result without additional overhead: ```objc - (void)shareCategory:(MWMMarkGroupID)groupId completion:(SharingResultCompletionHandler)completion; - (void)shareAllCategoriesWithCompletion:(SharingResultCompletionHandler)completion; ``` https://github.com/organicmaps/organicmaps/assets/79797627/7ceabaa2-0880-41e4-bfed-28c565911950
biodranik (Migrated from github.com) approved these changes 2024-04-16 14:14:05 +00:00
biodranik (Migrated from github.com) left a comment

Thanks, the functionality did not change, right? All cases (including errors) are properly handled now in the Bookmarks and Tracks dialog, right?

Thanks, the functionality did not change, right? All cases (including errors) are properly handled now in the Bookmarks and Tracks dialog, right?
biodranik (Migrated from github.com) commented 2024-04-16 14:09:16 +00:00
  1. Can the URL be null? Should it be documented here or somewhere else?
  2. Is it a URL to a local file? It would be great to document it/rename it (urlToALocalFile?)
1. Can the URL be null? Should it be documented here or somewhere else? 2. Is it a URL to a local file? It would be great to document it/rename it (urlToALocalFile?)
biodranik (Migrated from github.com) commented 2024-04-16 14:11:04 +00:00

Move one line above?

Move one line above?
kirylkaveryn reviewed 2024-04-16 17:06:10 +00:00
Author
Member
  1. Yes. In case of status != .success URL will be null
  2. Yes it is URL to the local temporary file
1. Yes. In case of `status != .success` URL will be null 2. Yes it is URL to the local temporary file
kirylkaveryn reviewed 2024-04-16 17:16:40 +00:00
Author
Member

@biodranik I can add some documentation to clarify the usage of these methods:


/**
 Shares a specific category with the given group ID.

 @param groupId The identifier for the category to be shared.
 @param completion A block that handles the result of the share operation. This block has no return value and takes two parameters:
                   - status: The status of the share operation, of type `MWMBookmarksShareStatus`.
                   - urlToALocalFile: The local file URL containing the shared data. This parameter is guaranteed to be non-nil only if `status` is `MWMBookmarksShareStatusSuccess`. In other cases, it will be nil.
*/
- (void)shareCategory:(MWMMarkGroupID)groupId completion:(SharingResultCompletionHandler)completion;

/**
 Shares all categories.

 @param completion A block that handles the result of the share operation. This block has no return value and takes two parameters:
                   - status: The status of the share operation, of type `MWMBookmarksShareStatus`.
                   - urlToALocalFile: The local file URL containing the shared data. This parameter is guaranteed to be non-nil only if `status` is `MWMBookmarksShareStatusSuccess`.  In other cases, it will be nil.
*/
- (void)shareAllCategoriesWithCompletion:(SharingResultCompletionHandler)completion;
image
@biodranik I can add some documentation to clarify the usage of these methods: ```objc /** Shares a specific category with the given group ID. @param groupId The identifier for the category to be shared. @param completion A block that handles the result of the share operation. This block has no return value and takes two parameters: - status: The status of the share operation, of type `MWMBookmarksShareStatus`. - urlToALocalFile: The local file URL containing the shared data. This parameter is guaranteed to be non-nil only if `status` is `MWMBookmarksShareStatusSuccess`. In other cases, it will be nil. */ - (void)shareCategory:(MWMMarkGroupID)groupId completion:(SharingResultCompletionHandler)completion; /** Shares all categories. @param completion A block that handles the result of the share operation. This block has no return value and takes two parameters: - status: The status of the share operation, of type `MWMBookmarksShareStatus`. - urlToALocalFile: The local file URL containing the shared data. This parameter is guaranteed to be non-nil only if `status` is `MWMBookmarksShareStatusSuccess`. In other cases, it will be nil. */ - (void)shareAllCategoriesWithCompletion:(SharingResultCompletionHandler)completion; ``` <img width="380" alt="image" src="https://github.com/organicmaps/organicmaps/assets/79797627/f464d7d7-8197-4c3a-9fdf-e0b5716d94ed">
biodranik (Migrated from github.com) approved these changes 2024-04-16 17:58:24 +00:00
biodranik (Migrated from github.com) left a comment

Thanks!

Thanks!
biodranik (Migrated from github.com) approved these changes 2024-04-16 18:41:27 +00:00
This repo is archived. You cannot comment on pull requests.
No reviewers
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
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#7933
No description provided.