Added deleting saved route points.

This commit is contained in:
r.kuznetsov 2017-08-08 18:59:52 +03:00 committed by Daria Volvenkova
parent df70003804
commit 49154d7ea7
4 changed files with 17 additions and 0 deletions

View file

@ -1450,4 +1450,10 @@ Java_com_mapswithme_maps_Framework_nativeSaveRoutePoints()
{
frm()->GetRoutingManager().SaveRoutePoints();
}
JNIEXPORT void JNICALL
Java_com_mapswithme_maps_Framework_nativeDeleteSavedRoutePoints()
{
frm()->GetRoutingManager().DeleteSavedRoutePoints();
}
} // extern "C"

View file

@ -352,4 +352,5 @@ public class Framework
public static native boolean nativeHasSavedRoutePoints();
public static native boolean nativeLoadRoutePoints();
public static native void nativeSaveRoutePoints();
public static native void nativeDeleteSavedRoutePoints();
}

View file

@ -1060,3 +1060,11 @@ void RoutingManager::SaveRoutePoints() const
LOG(LWARNING, ("Saving road points failed:", ex.Msg()));
}
}
void RoutingManager::DeleteSavedRoutePoints()
{
if (!HasSavedRoutePoints())
return;
auto const fileName = GetPlatform().SettingsPathForFile(kRoutePointsFile);
FileWriter::DeleteFileX(fileName);
}

View file

@ -228,6 +228,8 @@ public:
bool LoadRoutePoints();
/// \brief It saves route points to file.
void SaveRoutePoints() const;
/// \brief It deletes file with saved route points if it exists.
void DeleteSavedRoutePoints();
private:
void InsertRoute(routing::Route const & route);