From 69fb7d97e87cb5c4f82eeed48f7430839f9417f8 Mon Sep 17 00:00:00 2001 From: Arsentiy Milchakov Date: Thu, 21 Mar 2019 15:06:53 +0300 Subject: [PATCH] [lightweight] Delegate is added into lightweight framework --- .../com/mapswithme/maps/LightFramework.cpp | 5 +- .../Notifications/LocalNotificationManager.mm | 8 ++- map/CMakeLists.txt | 1 + map/framework.cpp | 67 ++++++++++--------- map/framework.hpp | 2 + map/framework_light.cpp | 22 +++++- map/framework_light.hpp | 11 ++- map/framework_light_delegate.hpp | 20 ++++++ map/notifications/notification_manager.cpp | 2 +- map/notifications/notification_manager.hpp | 26 +------ 10 files changed, 101 insertions(+), 63 deletions(-) create mode 100644 map/framework_light_delegate.hpp diff --git a/android/jni/com/mapswithme/maps/LightFramework.cpp b/android/jni/com/mapswithme/maps/LightFramework.cpp index 0b716ae21a..1b19e78503 100644 --- a/android/jni/com/mapswithme/maps/LightFramework.cpp +++ b/android/jni/com/mapswithme/maps/LightFramework.cpp @@ -1,4 +1,5 @@ #include "map/framework_light.hpp" +#include "map/framework_light_delegate.hpp" #include "map/local_ads_manager.hpp" #include "base/assert.hpp" @@ -92,7 +93,9 @@ Java_com_mapswithme_maps_LightFramework_nativeLogLocalAdsEvent(JNIEnv * env, jcl JNIEXPORT jobject JNICALL Java_com_mapswithme_maps_LightFramework_nativeGetNotification(JNIEnv * env, jclass clazz) { - Framework framework(REQUEST_TYPE_NOTIFICATION); + lightweight::Framework framework(lightweight::REQUEST_TYPE_NOTIFICATION); + if (g_framework) + framework.SetDelegate(make_unique(*g_framework->NativeFramework())); auto const notification = framework.GetNotification(); if (!notification) diff --git a/iphone/Maps/Core/Notifications/LocalNotificationManager.mm b/iphone/Maps/Core/Notifications/LocalNotificationManager.mm index cbc2f61b84..f777452560 100644 --- a/iphone/Maps/Core/Notifications/LocalNotificationManager.mm +++ b/iphone/Maps/Core/Notifications/LocalNotificationManager.mm @@ -4,8 +4,12 @@ #import "Statistics.h" #include "map/framework_light.hpp" +#include "map/framework_light_delegate.hpp" + #include "platform/network_policy_ios.h" +#include "Framework.h" + static NSString * const kLastUGCNotificationDate = @"LastUGCNotificationDate"; @implementation LocalNotificationManager @@ -39,8 +43,10 @@ static NSString * const kLastUGCNotificationDate = @"LastUGCNotificationDate"; + (CoreNotificationWrapper *)reviewNotificationWrapper { - lightweight::Framework const framework(lightweight::REQUEST_TYPE_NOTIFICATION); + lightweight::Framework framework(lightweight::REQUEST_TYPE_NOTIFICATION); + framework.SetDelegate(make_unique(GetFramework())); auto const notificationCandidate = framework.GetNotification(); + if (notificationCandidate) { auto const notification = notificationCandidate.get(); diff --git a/map/CMakeLists.txt b/map/CMakeLists.txt index fa8f06e906..e89a3f48e7 100644 --- a/map/CMakeLists.txt +++ b/map/CMakeLists.txt @@ -57,6 +57,7 @@ set( framework.hpp framework_light.cpp framework_light.hpp + framework_light_delegate.hpp ge0_parser.cpp ge0_parser.hpp geourl_process.cpp diff --git a/map/framework.cpp b/map/framework.cpp index e1d0a8a133..cbc2bd1a14 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -3846,37 +3846,6 @@ booking::AvailabilityParams Framework::GetLastBookingAvailabilityParams() const return m_bookingAvailabilityParams; } -void Framework::OnPowerFacilityChanged(power_management::Facility const facility, bool enabled) -{ - if (facility == power_management::Facility::PerspectiveView || - facility == power_management::Facility::Buildings3d) - { - bool allow3d = true, allow3dBuildings = true; - Load3dMode(allow3d, allow3dBuildings); - - if (facility == power_management::Facility::PerspectiveView) - allow3d = allow3d && enabled; - else - allow3dBuildings = allow3dBuildings && enabled; - - Allow3dMode(allow3d, allow3dBuildings); - } - else if (facility == power_management::Facility::TrafficJams) - { - auto trafficState = enabled && LoadTrafficEnabled(); - if (trafficState == GetTrafficManager().IsEnabled()) - return; - - GetTrafficManager().SetEnabled(trafficState); - } -} - -void Framework::OnPowerSchemeChanged(power_management::Scheme const actualScheme) -{ - if (actualScheme == power_management::Scheme::EconomyMaximum && GetTrafficManager().IsEnabled()) - GetTrafficManager().SetEnabled(false); -} - TipsApi const & Framework::GetTipsApi() const { return m_tipsApi; @@ -3925,3 +3894,39 @@ bool Framework::MakePlacePageInfo(NotificationCandidate const & notification, return found; } + +void Framework::OnPowerFacilityChanged(power_management::Facility const facility, bool enabled) +{ + if (facility == power_management::Facility::PerspectiveView || + facility == power_management::Facility::Buildings3d) + { + bool allow3d = true, allow3dBuildings = true; + Load3dMode(allow3d, allow3dBuildings); + + if (facility == power_management::Facility::PerspectiveView) + allow3d = allow3d && enabled; + else + allow3dBuildings = allow3dBuildings && enabled; + + Allow3dMode(allow3d, allow3dBuildings); + } + else if (facility == power_management::Facility::TrafficJams) + { + auto trafficState = enabled && LoadTrafficEnabled(); + if (trafficState == GetTrafficManager().IsEnabled()) + return; + + GetTrafficManager().SetEnabled(trafficState); + } +} + +void Framework::OnPowerSchemeChanged(power_management::Scheme const actualScheme) +{ + if (actualScheme == power_management::Scheme::EconomyMaximum && GetTrafficManager().IsEnabled()) + GetTrafficManager().SetEnabled(false); +} + +notifications::NotificationManager & Framework::GetNotificationManager() +{ + return m_notificationManager; +} diff --git a/map/framework.hpp b/map/framework.hpp index b8f54c56f8..466cdd2a00 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -927,4 +927,6 @@ public: // PowerManager::Subscriber override. void OnPowerFacilityChanged(power_management::Facility const facility, bool enabled) override; void OnPowerSchemeChanged(power_management::Scheme const actualScheme) override; + + notifications::NotificationManager & GetNotificationManager(); }; diff --git a/map/framework_light.cpp b/map/framework_light.cpp index 687ff85628..fce027c4c4 100644 --- a/map/framework_light.cpp +++ b/map/framework_light.cpp @@ -4,6 +4,7 @@ #include "base/string_utils.hpp" #include +#include namespace { @@ -60,13 +61,17 @@ Framework::Framework(RequestTypeMask request) : m_request(request) if (request & REQUEST_TYPE_NOTIFICATION) { - m_notificationManager = std::make_unique(); request ^= REQUEST_TYPE_NOTIFICATION; } CHECK_EQUAL(request, REQUEST_TYPE_EMPTY, ("Incorrect mask type:", request)); } +void Framework::SetDelegate(std::unique_ptr delegate) +{ + m_delegate = std::move(delegate); +} + bool Framework::IsUserAuthenticated() const { ASSERT(m_request & REQUEST_TYPE_USER_AUTH_STATUS, (m_request)); @@ -115,9 +120,20 @@ Statistics * Framework::GetLocalAdsStatistics() return m_localAdsStatistics.get(); } -boost::optional Framework::GetNotification() const +notifications::Notification Framework::GetNotification() const { - return m_notificationManager->GetNotification(); + // Do not disturb from 9p.m. to 10 a.m. + auto const time = notifications::Clock::to_time_t(notifications::Clock::now()); + auto const localTime = std::localtime(&time); + if (localTime->tm_hour <= 9 || localTime->tm_hour >= 21) + return {}; + + if (m_delegate) + return m_delegate->GetNotificationManager().GetNotification(); + + notifications::NotificationManager notificationManager; + notificationManager.Load(); + return notificationManager.GetNotification(); } std::string FeatureParamsToString(int64_t mwmVersion, std::string const & countryId, uint32_t featureIndex) diff --git a/map/framework_light.hpp b/map/framework_light.hpp index 61e9203074..120243f6a8 100644 --- a/map/framework_light.hpp +++ b/map/framework_light.hpp @@ -49,10 +49,17 @@ using RequestTypeMask = unsigned; class Framework { public: + class Delegate + { + public: + virtual notifications::NotificationManager & GetNotificationManager() = 0; + }; friend struct LightFrameworkTest; explicit Framework(RequestTypeMask request); + void SetDelegate(std::unique_ptr delegate); + bool IsUserAuthenticated() const; size_t GetNumberOfUnsentUGC() const; size_t GetNumberOfUnsentEdits() const; @@ -61,10 +68,11 @@ public: std::vector GetLocalAdsFeatures(double lat, double lon, double radiusInMeters, uint32_t maxCount); Statistics * GetLocalAdsStatistics(); - boost::optional GetNotification() const; + notifications::Notification GetNotification() const; private: RequestTypeMask m_request; + std::unique_ptr m_delegate; bool m_userAuthStatus = false; size_t m_numberOfUnsentUGC = 0; size_t m_numberOfUnsentEdits = 0; @@ -72,7 +80,6 @@ private: std::unique_ptr m_countryInfoReader; std::unique_ptr m_localAdsFeaturesReader; std::unique_ptr m_localAdsStatistics; - std::unique_ptr m_notificationManager; }; std::string FeatureParamsToString(int64_t mwmVersion, std::string const & countryId, uint32_t featureIndex); diff --git a/map/framework_light_delegate.hpp b/map/framework_light_delegate.hpp new file mode 100644 index 0000000000..7d2b518e0c --- /dev/null +++ b/map/framework_light_delegate.hpp @@ -0,0 +1,20 @@ +#pragma once + +#include "map/framework.hpp" +#include "map/framework_light.hpp" + +// Implemented in assume that delegate lifetime is shorter than Framework lifetime. +// In other words lightweight::Framework lifetime should be shorter than Framework lifetime. +class FrameworkLightDelegate : public lightweight::Framework::Delegate +{ +public: + explicit FrameworkLightDelegate(Framework & framework) : m_framework(framework) {} + + notifications::NotificationManager & GetNotificationManager() override + { + return m_framework.GetNotificationManager(); + } + +private: + Framework & m_framework; +}; diff --git a/map/notifications/notification_manager.cpp b/map/notifications/notification_manager.cpp index 25a64963c7..8b1c43a322 100644 --- a/map/notifications/notification_manager.cpp +++ b/map/notifications/notification_manager.cpp @@ -146,7 +146,7 @@ void NotificationManager::TrimExpired() VERIFY(Save(), ()); } -boost::optional NotificationManager::GetNotification() +Notification NotificationManager::GetNotification() { if (Clock::now() - m_queue.m_lastNotificationProvidedTime < kPeriodBetweenNotifications) return {}; diff --git a/map/notifications/notification_manager.hpp b/map/notifications/notification_manager.hpp index 07fd4f0295..058977dc4b 100644 --- a/map/notifications/notification_manager.hpp +++ b/map/notifications/notification_manager.hpp @@ -14,6 +14,7 @@ namespace notifications { +using Notification = boost::optional; class NotificationManager : public eye::Subscriber { public: @@ -32,7 +33,7 @@ public: void Load(); void TrimExpired(); - boost::optional GetNotification(); + Notification GetNotification(); size_t GetCandidatesCount() const; // eye::Subscriber overrides: @@ -48,26 +49,3 @@ private: Queue m_queue; }; } // namespace notifications - -namespace lightweight -{ -class NotificationManager -{ -public: - NotificationManager() { m_manager.Load(); } - - boost::optional GetNotification() - { - // Do not disturb from 9p.m. to 10 a.m. - auto const time = notifications::Clock::to_time_t(notifications::Clock::now()); - auto const localTime = std::localtime(&time); - if (localTime->tm_hour <= 9 || localTime->tm_hour >= 21) - return {}; - - return m_manager.GetNotification(); - } - -private: - notifications::NotificationManager m_manager; -}; -} // namespace lightweight