forked from organicmaps/organicmaps
Reducing size of m_currentCacheSizeBytes twice when mwm is removed from cache and minor fixes.
This commit is contained in:
parent
31247a70d4
commit
3f7b61e52e
7 changed files with 19 additions and 22 deletions
|
@ -322,7 +322,6 @@ void TrafficManager::OnTrafficDataResponse(traffic::TrafficInfo && info)
|
|||
|
||||
// Note. It's necessary to multiply by two because routing and rendering use separate caches.
|
||||
size_t const dataSize = 2 * info.GetColoring().size() * kElementSize;
|
||||
it->second.m_isLoaded = true;
|
||||
m_currentCacheSizeBytes += (dataSize - it->second.m_dataSize);
|
||||
it->second.m_dataSize = dataSize;
|
||||
CheckCacheSize();
|
||||
|
@ -354,7 +353,8 @@ void TrafficManager::CheckCacheSize()
|
|||
auto const it = m_mwmCache.find(mwmId);
|
||||
if (it->second.m_isLoaded)
|
||||
{
|
||||
m_currentCacheSizeBytes -= it->second.m_dataSize;
|
||||
// Note. It's necessary to multiply by two because routing and rendering use separate caches.
|
||||
m_currentCacheSizeBytes -= 2 * it->second.m_dataSize;
|
||||
m_drapeEngine->ClearTrafficCache(mwmId);
|
||||
m_observer.OnTrafficInfoRemoved(mwmId);
|
||||
}
|
||||
|
|
|
@ -79,7 +79,7 @@ namespace integration
|
|||
|
||||
unique_ptr<CarRouter> CreateCarRouter(Index & index,
|
||||
storage::CountryInfoGetter const & infoGetter,
|
||||
TrafficInfoGetterTest const & trafficGetter)
|
||||
TrafficInfoGetterNoJam const & trafficGetter)
|
||||
{
|
||||
auto const countryFileGetter = [&infoGetter](m2::PointD const & pt) {
|
||||
return infoGetter.GetRegionCountryId(pt);
|
||||
|
@ -116,7 +116,7 @@ namespace integration
|
|||
IRouter * GetRouter() const override { return m_carRouter.get(); }
|
||||
|
||||
private:
|
||||
TrafficInfoGetterTest m_trafficGetter;
|
||||
TrafficInfoGetterNoJam m_trafficGetter;
|
||||
unique_ptr<CarRouter> m_carRouter;
|
||||
};
|
||||
|
||||
|
|
|
@ -76,18 +76,15 @@ void TestOnlineFetcher(ms::LatLon const & startPoint, ms::LatLon const & finalPo
|
|||
|
||||
/// Gets OSRM router components
|
||||
IRouterComponents & GetOsrmComponents();
|
||||
shared_ptr<IRouterComponents> GetOsrmComponents(
|
||||
vector<platform::LocalCountryFile> const & localFiles);
|
||||
shared_ptr<IRouterComponents> GetOsrmComponents(vector<platform::LocalCountryFile> const & localFiles);
|
||||
|
||||
/// Gets pedestrian router components
|
||||
IRouterComponents & GetPedestrianComponents();
|
||||
shared_ptr<IRouterComponents> GetPedestrianComponents(
|
||||
vector<platform::LocalCountryFile> const & localFiles);
|
||||
shared_ptr<IRouterComponents> GetPedestrianComponents(vector<platform::LocalCountryFile> const & localFiles);
|
||||
|
||||
/// Gets bicycle router components.
|
||||
IRouterComponents & GetBicycleComponents();
|
||||
shared_ptr<IRouterComponents> GetBicycleComponents(
|
||||
vector<platform::LocalCountryFile> const & localFiles);
|
||||
shared_ptr<IRouterComponents> GetBicycleComponents(vector<platform::LocalCountryFile> const & localFiles);
|
||||
|
||||
TRouteResult CalculateRoute(IRouterComponents const & routerComponents,
|
||||
m2::PointD const & startPoint, m2::PointD const & startDirection,
|
||||
|
@ -119,7 +116,7 @@ class TestTurn
|
|||
bool const m_isValid;
|
||||
|
||||
TestTurn()
|
||||
: m_point({0., 0.})
|
||||
: m_point({0.0, 0.0})
|
||||
, m_direction(TurnDirection::NoTurn)
|
||||
, m_roundAboutExitNum(0)
|
||||
, m_isValid(false)
|
||||
|
|
|
@ -196,7 +196,7 @@ UNIT_CLASS_TEST(ApplyingTrafficTest, XXGraph_G0onF3andF6andG4onF8andF4)
|
|||
UNIT_CLASS_TEST(ApplyingTrafficTest, XXGraph_ChangingTraffic)
|
||||
{
|
||||
// No trafic at all.
|
||||
SetEstimator({});
|
||||
SetEstimator({} /* coloring */);
|
||||
unique_ptr<IndexGraph> graph = BuildXXGraph(GetEstimator());
|
||||
IndexGraphStarter starter(*graph, RoadPoint(1, 0) /* start */, RoadPoint(6, 1) /* finish */);
|
||||
vector<m2::PointD> const noTrafficGeom = {{2 /* x */, 0 /* y */}, {1, 1}, {2, 2}, {3, 3}};
|
||||
|
|
|
@ -100,7 +100,7 @@ UNIT_TEST(EdgesTest)
|
|||
loader->AddRoad(4 /* featureId */, true, 1.0 /* speed */,
|
||||
RoadGeometry::Points({{3.0, -1.0}, {3.0, 0.0}, {3.0, 1.0}}));
|
||||
|
||||
TrafficInfoGetterTest const trafficGetter;
|
||||
TrafficInfoGetterNoJam const trafficGetter;
|
||||
IndexGraph graph(move(loader), CreateEstimator(trafficGetter));
|
||||
|
||||
vector<Joint> joints;
|
||||
|
@ -145,7 +145,7 @@ UNIT_TEST(FindPathCross)
|
|||
1 /* featureId */, false, 1.0 /* speed */,
|
||||
RoadGeometry::Points({{0.0, -2.0}, {-1.0, 0.0}, {0.0, 0.0}, {0.0, 1.0}, {0.0, 2.0}}));
|
||||
|
||||
TrafficInfoGetterTest const trafficGetter;
|
||||
TrafficInfoGetterNoJam const trafficGetter;
|
||||
IndexGraph graph(move(loader), CreateEstimator(trafficGetter));
|
||||
|
||||
graph.Import({MakeJoint({{0, 2}, {1, 2}})});
|
||||
|
@ -202,7 +202,7 @@ UNIT_TEST(FindPathManhattan)
|
|||
loader->AddRoad(i + kCitySize, false, 1.0 /* speed */, avenue);
|
||||
}
|
||||
|
||||
TrafficInfoGetterTest const trafficGetter;
|
||||
TrafficInfoGetterNoJam const trafficGetter;
|
||||
IndexGraph graph(move(loader), CreateEstimator(trafficGetter));
|
||||
|
||||
vector<Joint> joints;
|
||||
|
@ -253,7 +253,7 @@ UNIT_TEST(RedressRace)
|
|||
2 /* featureId */, false, 1.0 /* speed */,
|
||||
RoadGeometry::Points({{0.0, 0.0}, {1.0, 1.0}, {2.0, 1.0}, {3.0, 1.0}, {4.0, 0.0}}));
|
||||
|
||||
TrafficInfoGetterTest const trafficGetter;
|
||||
TrafficInfoGetterNoJam const trafficGetter;
|
||||
IndexGraph graph(move(loader), CreateEstimator(trafficGetter));
|
||||
|
||||
vector<Joint> joints;
|
||||
|
@ -284,7 +284,7 @@ UNIT_TEST(RoadSpeed)
|
|||
loader->AddRoad(1 /* featureId */, false, 1.0 /* speed */,
|
||||
RoadGeometry::Points({{0.0, 0.0}, {2.0, 0.0}, {4.0, 0.0}}));
|
||||
|
||||
TrafficInfoGetterTest const trafficGetter;
|
||||
TrafficInfoGetterNoJam const trafficGetter;
|
||||
IndexGraph graph(move(loader), CreateEstimator(trafficGetter));
|
||||
|
||||
vector<Joint> joints;
|
||||
|
|
|
@ -34,7 +34,7 @@ Joint MakeJoint(vector<RoadPoint> const & points)
|
|||
return joint;
|
||||
}
|
||||
|
||||
shared_ptr<EdgeEstimator> CreateEstimator(TrafficInfoGetterTest const & trafficGetter)
|
||||
shared_ptr<EdgeEstimator> CreateEstimator(TrafficInfoGetterNoJam const & trafficGetter)
|
||||
{
|
||||
return EdgeEstimator::CreateForCar(*make_shared<CarModelFactory>()->GetVehicleModel(), trafficGetter);
|
||||
}
|
||||
|
|
|
@ -32,13 +32,13 @@ private:
|
|||
unordered_map<uint32_t, routing::RoadGeometry> m_roads;
|
||||
};
|
||||
|
||||
class TrafficInfoGetterTest : public traffic::TrafficInfoGetter
|
||||
class TrafficInfoGetterNoJam : public traffic::TrafficInfoGetter
|
||||
{
|
||||
public:
|
||||
TrafficInfoGetterTest() {}
|
||||
TrafficInfoGetterNoJam() {}
|
||||
|
||||
// TrafficInfoGetter overrides:
|
||||
shared_ptr<traffic::TrafficInfo> GetTrafficInfo(MwmSet::MwmId const & mwmId) const override
|
||||
shared_ptr<traffic::TrafficInfo> GetTrafficInfo(MwmSet::MwmId const &) const override
|
||||
{
|
||||
return shared_ptr<traffic::TrafficInfo>();
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ public:
|
|||
|
||||
routing::Joint MakeJoint(vector<routing::RoadPoint> const & points);
|
||||
|
||||
shared_ptr<routing::EdgeEstimator> CreateEstimator(TrafficInfoGetterTest const & trafficGette);
|
||||
shared_ptr<routing::EdgeEstimator> CreateEstimator(TrafficInfoGetterNoJam const & trafficGette);
|
||||
|
||||
routing::AStarAlgorithm<routing::IndexGraphStarter>::Result CalculateRoute(
|
||||
routing::IndexGraphStarter & graph, vector<routing::RoadPoint> & roadPoints);
|
||||
|
|
Loading…
Add table
Reference in a new issue