forked from organicmaps/organicmaps
[android] Added jni call, fixed https://github.com/yoksnod/omim/pull/5#discussion_r220502861, fixed review notes https://github.com/yoksnod/omim/pull/5#discussion_r220474557
This commit is contained in:
parent
55b9ffe8d9
commit
18a8fa453e
5 changed files with 25 additions and 19 deletions
|
@ -1135,9 +1135,10 @@ Java_com_mapswithme_maps_Framework_nativeGetRouteFollowingInfo(JNIEnv * env, jcl
|
|||
return result;
|
||||
}
|
||||
|
||||
JNIEXPORT void JNICALL Java_com_mapswithme_maps_Framework_nativeDisableAdProvider(JNIEnv * env,
|
||||
jclass, jint type,
|
||||
jint place)
|
||||
JNIEXPORT void JNICALL
|
||||
Java_com_mapswithme_maps_Framework_nativeDisableAdProvider(JNIEnv *env,
|
||||
jclass, jint type,
|
||||
jint place)
|
||||
{
|
||||
auto const & bannerType = static_cast<ads::Banner::Type>(type);
|
||||
auto const & bannerPlace = static_cast<ads::Banner::Place>(place);
|
||||
|
|
|
@ -224,7 +224,7 @@ public class Framework
|
|||
return FilterUtils.RATING_ANY;
|
||||
}
|
||||
|
||||
public static void setAdProviderDisabled(@NonNull Banner.Type type)
|
||||
public static void disableAdProvider(@NonNull Banner.Type type)
|
||||
{
|
||||
nativeDisableAdProvider(type.ordinal(), Banner.Place.DEFAULT.ordinal());
|
||||
}
|
||||
|
|
|
@ -182,6 +182,13 @@ public class ExternalLibrariesMediator
|
|||
super.onPostExecute(status);
|
||||
if (status != null && status)
|
||||
onEnabled();
|
||||
else
|
||||
onDisabled();
|
||||
}
|
||||
|
||||
private void onDisabled()
|
||||
{
|
||||
Framework.disableAdProvider(Banner.Type.TYPE_RB);
|
||||
}
|
||||
|
||||
private void onEnabled()
|
||||
|
|
|
@ -57,6 +57,7 @@
|
|||
#include "partners_api/locals_api.hpp"
|
||||
#include "partners_api/taxi_engine.hpp"
|
||||
#include "partners_api/viator_api.hpp"
|
||||
#include "partners_api/banner.hpp"
|
||||
|
||||
#include "metrics/eye_info.hpp"
|
||||
|
||||
|
@ -86,7 +87,6 @@
|
|||
#include "std/vector.hpp"
|
||||
|
||||
#include <boost/optional.hpp>
|
||||
#include "partners_api/banner.hpp"
|
||||
|
||||
namespace osm
|
||||
{
|
||||
|
|
|
@ -44,17 +44,17 @@ std::vector<Banner> Engine::GetBanners(feature::TypesHolder const & types,
|
|||
|
||||
for (auto const & item : m_banners)
|
||||
{
|
||||
if (item.m_enabled)
|
||||
if (!item.m_enabled)
|
||||
continue;
|
||||
|
||||
for (auto const & countryId : countryIds)
|
||||
{
|
||||
for (auto const & countryId : countryIds)
|
||||
auto const bannerId = item.m_container->GetBannerId(types, countryId, userLanguage);
|
||||
// We need to add banner for every banner system just once.
|
||||
if (!bannerId.empty())
|
||||
{
|
||||
auto const bannerId = item.m_container->GetBannerId(types, countryId, userLanguage);
|
||||
// We need to add banner for every banner system just once.
|
||||
if (!bannerId.empty())
|
||||
{
|
||||
result.emplace_back(item.m_type, bannerId);
|
||||
break;
|
||||
}
|
||||
result.emplace_back(item.m_type, bannerId);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -93,18 +93,16 @@ void Engine::DisableAdProvider(Banner::Type const type, Banner::Place const plac
|
|||
SetAdProviderEnabled(place == Banner::Place::Search ? m_searchBanners : m_banners, type, false);
|
||||
}
|
||||
|
||||
void Engine::EnableAdProvider(Banner::Type const type, Banner::Place place)
|
||||
{
|
||||
SetAdProviderEnabled(place == Banner::Place::Search ? m_searchBanners : m_banners, type, true);
|
||||
}
|
||||
|
||||
void Engine::SetAdProviderEnabled(std::vector<Engine::ContainerItem> & banners,
|
||||
Banner::Type const type, bool const isEnabled)
|
||||
{
|
||||
for (auto & item : banners)
|
||||
{
|
||||
if (item.m_type == type)
|
||||
{
|
||||
item.m_enabled = isEnabled;
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
} // namespace ads
|
||||
|
|
Loading…
Add table
Reference in a new issue