diff --git a/android/jni/com/mapswithme/maps/LocationState.cpp b/android/jni/com/mapswithme/maps/LocationState.cpp index 0d266089eb..4942acf310 100644 --- a/android/jni/com/mapswithme/maps/LocationState.cpp +++ b/android/jni/com/mapswithme/maps/LocationState.cpp @@ -7,12 +7,21 @@ extern "C" { -static void LocationStateModeChanged(location::EMyPositionMode mode, std::shared_ptr const & listener) +static void LocationStateModeChanged(location::EMyPositionMode mode, + std::shared_ptr const & listener) { g_framework->OnMyPositionModeChanged(mode); JNIEnv * env = jni::GetEnv(); - env->CallVoidMethod(*listener, jni::GetMethodID(env, *listener.get(), "onMyPositionModeChanged", "(I)V"), static_cast(mode)); + env->CallVoidMethod(*listener, jni::GetMethodID(env, *listener.get(), + "onMyPositionModeChanged", "(I)V"), static_cast(mode)); +} + +static void LocationPendingTimeout(std::shared_ptr const & listener) +{ + JNIEnv * env = jni::GetEnv(); + env->CallVoidMethod(*listener, jni::GetMethodID(env, *listener.get(), + "onLocationPendingTimeout", "()V")); } // public static void nativeSwitchToNextMode(); @@ -31,7 +40,8 @@ Java_com_mapswithme_maps_location_LocationState_nativeGetMode(JNIEnv * env, jcla // public static void nativeSetListener(ModeChangeListener listener); JNIEXPORT void JNICALL -Java_com_mapswithme_maps_location_LocationState_nativeSetListener(JNIEnv * env, jclass clazz, jobject listener) +Java_com_mapswithme_maps_location_LocationState_nativeSetListener(JNIEnv * env, jclass clazz, + jobject listener) { g_framework->SetMyPositionModeListener(std::bind(&LocationStateModeChanged, std::placeholders::_1, jni::make_global_ref(listener))); @@ -44,4 +54,18 @@ Java_com_mapswithme_maps_location_LocationState_nativeRemoveListener(JNIEnv * en g_framework->SetMyPositionModeListener(location::TMyPositionModeChanged()); } +JNIEXPORT void JNICALL +Java_com_mapswithme_maps_location_LocationState_nativeSetLocationPendingTimeoutListener( + JNIEnv * env, jclass clazz, jobject listener) +{ + g_framework->NativeFramework()->SetMyPositionPendingTimeoutListener( + std::bind(&LocationPendingTimeout, jni::make_global_ref(listener))); +} + +JNIEXPORT void JNICALL +Java_com_mapswithme_maps_location_LocationState_nativeRemoveLocationPendingTimeoutListener( + JNIEnv * env, jclass) +{ + g_framework->NativeFramework()->SetMyPositionPendingTimeoutListener(nullptr); +} } // extern "C" diff --git a/android/src/com/mapswithme/maps/MwmActivity.java b/android/src/com/mapswithme/maps/MwmActivity.java index c98de7aac6..e3ef87ea6f 100644 --- a/android/src/com/mapswithme/maps/MwmActivity.java +++ b/android/src/com/mapswithme/maps/MwmActivity.java @@ -2205,12 +2205,14 @@ public class MwmActivity extends BaseMwmFragmentActivity { if (!LocationHelper.INSTANCE.isActive()) LocationHelper.INSTANCE.start(); + LocationHelper.INSTANCE.switchToNextMode(); }; new AlertDialog.Builder(this) .setMessage(message) .setNegativeButton(R.string.current_location_unknown_stop_button, stopClickListener) .setPositiveButton(R.string.current_location_unknown_continue_button, continueClickListener) + .setCancelable(false) .show(); } diff --git a/android/src/com/mapswithme/maps/location/LocationHelper.java b/android/src/com/mapswithme/maps/location/LocationHelper.java index 376f9b9fb4..5a4078ba22 100644 --- a/android/src/com/mapswithme/maps/location/LocationHelper.java +++ b/android/src/com/mapswithme/maps/location/LocationHelper.java @@ -137,27 +137,20 @@ public enum LocationHelper mLogger.d(TAG, "onMyPositionModeChanged mode = " + LocationState.nameOf(newMode)); if (mUiCallback == null) - { mLogger.d(TAG, "UI is not ready to listen my position changes, i.e. it's not attached yet."); - return; - } + } + }; - switch (newMode) - { - case LocationState.NOT_FOLLOW_NO_POSITION: - // In the first run mode, the NOT_FOLLOW_NO_POSITION state doesn't mean that location - // is actually not found. - if (mInFirstRun) - { - mLogger.i(TAG, "It's the first run, so this state should be skipped"); - return; - } - - stop(); - if (LocationUtils.areLocationServicesTurnedOn()) - notifyLocationNotFound(); - break; - } + @SuppressWarnings("FieldCanBeLocal") + private final LocationState.LocationPendingTimeoutListener mLocationPendingTimeoutListener = + new LocationState.LocationPendingTimeoutListener() + { + @Override + public void onLocationPendingTimeout() + { + stop(); + if (LocationUtils.areLocationServicesTurnedOn()) + notifyLocationNotFound(); } }; @@ -166,6 +159,7 @@ public enum LocationHelper { initProvider(); LocationState.nativeSetListener(mMyPositionModeListener); + LocationState.nativeSetLocationPendingTimeoutListener(mLocationPendingTimeoutListener); MwmApplication.backgroundTracker().addListener(mOnTransition); } @@ -528,11 +522,7 @@ public enum LocationHelper mLogger.d(TAG, mLocationProvider.isActive() ? "SUCCESS" : "FAILURE"); if (mLocationProvider.isActive()) - { PushwooshHelper.startLocationTracking(); - if (!mInFirstRun && getMyPositionMode() == LocationState.NOT_FOLLOW_NO_POSITION) - switchToNextMode(); - } } private void checkProviderInitialization() diff --git a/android/src/com/mapswithme/maps/location/LocationState.java b/android/src/com/mapswithme/maps/location/LocationState.java index b812f9d546..8c6b464f3e 100644 --- a/android/src/com/mapswithme/maps/location/LocationState.java +++ b/android/src/com/mapswithme/maps/location/LocationState.java @@ -1,6 +1,7 @@ package com.mapswithme.maps.location; import android.support.annotation.IntDef; +import android.support.annotation.NonNull; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @@ -13,6 +14,12 @@ public final class LocationState void onMyPositionModeChanged(int newMode); } + interface LocationPendingTimeoutListener + { + @SuppressWarnings("unused") + void onLocationPendingTimeout(); + } + @Retention(RetentionPolicy.SOURCE) @IntDef({ PENDING_POSITION, NOT_FOLLOW_NO_POSITION, NOT_FOLLOW, FOLLOW, FOLLOW_AND_ROTATE}) @interface Value {} @@ -31,6 +38,10 @@ public final class LocationState static native void nativeSetListener(ModeChangeListener listener); static native void nativeRemoveListener(); + static native void nativeSetLocationPendingTimeoutListener( + @NonNull LocationPendingTimeoutListener listener); + static native void nativeRemoveLocationPendingTimeoutListener(); + private LocationState() {} /** diff --git a/android/src/com/mapswithme/maps/routing/ResultCodesHelper.java b/android/src/com/mapswithme/maps/routing/ResultCodesHelper.java index 281be3fe4f..34dbfe746d 100644 --- a/android/src/com/mapswithme/maps/routing/ResultCodesHelper.java +++ b/android/src/com/mapswithme/maps/routing/ResultCodesHelper.java @@ -40,7 +40,7 @@ class ResultCodesHelper switch (errorCode) { case NO_POSITION: - if (LocationHelper.INSTANCE.getMyPositionMode() == LocationState.NOT_FOLLOW_NO_POSITION) + if (!LocationHelper.INSTANCE.isActive()) { titleRes = R.string.dialog_routing_location_turn_on; messages.add(resources.getString(R.string.dialog_routing_location_unknown_turn_on));