forked from organicmaps/organicmaps
[transit] (De)serialize links from stop to transfer.
This commit is contained in:
parent
5b0a7fd2a2
commit
18cdbf57f5
6 changed files with 32 additions and 13 deletions
|
@ -106,9 +106,17 @@ std::vector<TimeFromGateToStop> GetWeightsFromJson(json_t * obj)
|
|||
return weights;
|
||||
}
|
||||
|
||||
IdList GetStopIdsFromJson(json_t * obj)
|
||||
IdList GetIdListFromJson(json_t * obj, std::string const & field, bool obligatory = true)
|
||||
{
|
||||
json_t * arr = base::GetJSONObligatoryField(obj, "stops_ids");
|
||||
json_t * arr = base::GetJSONOptionalField(obj, field);
|
||||
if (!arr)
|
||||
{
|
||||
if (obligatory)
|
||||
CHECK(false, ("Obligatory field", field, "is absent."));
|
||||
|
||||
return {};
|
||||
}
|
||||
|
||||
CHECK(json_is_array(arr), ());
|
||||
|
||||
size_t const count = json_array_size(arr);
|
||||
|
@ -303,7 +311,7 @@ void Read(base::Json const & obj, std::vector<Line> & lines)
|
|||
ShapeLink const shapeLink = GetShapeLinkFromJson(obj.get());
|
||||
Translations const title = GetTranslationsFromJson(obj.get(), "title");
|
||||
|
||||
IdList const stopIds = GetStopIdsFromJson(obj.get());
|
||||
IdList const stopIds = GetIdListFromJson(obj.get(), "stops_ids");
|
||||
|
||||
std::vector<LineInterval> const intervals = GetIntervalsFromJson(obj.get());
|
||||
|
||||
|
@ -321,8 +329,9 @@ void Read(base::Json const & obj, std::vector<Stop> & stops, OsmIdToFeatureIdsMa
|
|||
Translations const title = GetTranslationsFromJson(obj.get(), "title");
|
||||
TimeTable const timetable = GetTimeTableFromJson(obj.get());
|
||||
m2::PointD const point = GetPointFromJson(base::GetJSONObligatoryField(obj.get(), "point"));
|
||||
IdList const & transferIds = GetIdListFromJson(obj.get(), "transfer_ids", false /* obligatory */);
|
||||
|
||||
stops.emplace_back(id, featureId, osmId, title, timetable, point);
|
||||
stops.emplace_back(id, featureId, osmId, title, timetable, point, transferIds);
|
||||
}
|
||||
|
||||
void Read(base::Json const & obj, std::vector<Shape> & shapes)
|
||||
|
@ -364,7 +373,7 @@ void Read(base::Json const & obj, std::vector<Transfer> & transfers)
|
|||
{
|
||||
TransitId const id = GetIdFromJson(obj.get());
|
||||
m2::PointD const point = GetPointFromJson(base::GetJSONObligatoryField(obj.get(), "point"));
|
||||
IdList const stopIds = GetStopIdsFromJson(obj.get());
|
||||
IdList const stopIds = GetIdListFromJson(obj.get(), "stops_ids");
|
||||
transfers.emplace_back(id, point, stopIds);
|
||||
}
|
||||
|
||||
|
|
|
@ -178,12 +178,13 @@ osmoh::OpeningHours Line::GetServiceDays() const { return m_serviceDays; }
|
|||
Stop::Stop() : m_ids(true /* serializeFeatureIdOnly */) {}
|
||||
|
||||
Stop::Stop(TransitId id, FeatureId featureId, OsmId osmId, Translations const & title,
|
||||
TimeTable const & timetable, m2::PointD const & point)
|
||||
TimeTable const & timetable, m2::PointD const & point, IdList const & transferIds)
|
||||
: m_id(id)
|
||||
, m_ids(featureId, osmId, true /* serializeFeatureIdOnly */)
|
||||
, m_title(title)
|
||||
, m_timetable(timetable)
|
||||
, m_point(point)
|
||||
, m_transferIds(transferIds)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -222,6 +223,8 @@ TimeTable const & Stop::GetTimeTable() const { return m_timetable; }
|
|||
|
||||
m2::PointD const & Stop::GetPoint() const { return m_point; }
|
||||
|
||||
IdList const & Stop::GetTransferIds() const { return m_transferIds; }
|
||||
|
||||
void Stop::SetBestPedestrianSegments(std::vector<SingleMwmSegment> const & seg)
|
||||
{
|
||||
m_bestPedestrianSegments = seg;
|
||||
|
|
|
@ -234,7 +234,7 @@ class Stop
|
|||
public:
|
||||
Stop();
|
||||
Stop(TransitId id, FeatureId featureId, OsmId osmId, Translations const & title,
|
||||
TimeTable const & timetable, m2::PointD const & point);
|
||||
TimeTable const & timetable, m2::PointD const & point, IdList const & transferIds);
|
||||
explicit Stop(TransitId id);
|
||||
|
||||
bool operator<(Stop const & rhs) const;
|
||||
|
@ -251,13 +251,14 @@ public:
|
|||
std::string GetTitle() const;
|
||||
TimeTable const & GetTimeTable() const;
|
||||
m2::PointD const & GetPoint() const;
|
||||
IdList const & GetTransferIds() const;
|
||||
|
||||
private:
|
||||
DECLARE_TRANSIT_TYPES_FRIENDS
|
||||
DECLARE_VISITOR_AND_DEBUG_PRINT(Stop, visitor(m_id, "id"), visitor(m_ids, "id_bundle"),
|
||||
visitor(m_bestPedestrianSegments, "best_pedestrian_segments"),
|
||||
visitor(m_title, "title"), visitor(m_timetable, "timetable"),
|
||||
visitor(m_point, "point"))
|
||||
visitor(m_point, "point"), visitor(m_transferIds, "transfer_ids"))
|
||||
TransitId m_id = kInvalidTransitId;
|
||||
IdBundle m_ids;
|
||||
// |m_bestPedestrianSegments| are segments which can be used for pedestrian routing to leave and
|
||||
|
@ -267,6 +268,7 @@ private:
|
|||
Translations m_title;
|
||||
TimeTable m_timetable;
|
||||
m2::PointD m_point;
|
||||
IdList m_transferIds;
|
||||
};
|
||||
|
||||
class Gate
|
||||
|
|
|
@ -174,6 +174,10 @@ UNIT_TEST(ReadJson_Stop)
|
|||
"line_id":4036591562,
|
||||
"arrivals":"15:23-15:23 open"
|
||||
}
|
||||
],
|
||||
"transfer_ids":[
|
||||
4036593809,
|
||||
4036595406
|
||||
]
|
||||
})"};
|
||||
|
||||
|
@ -182,7 +186,7 @@ UNIT_TEST(ReadJson_Stop)
|
|||
Translations{{"default", "Balfour Rd & Foothill Dr"}},
|
||||
TimeTable{{4036591493, osmoh::OpeningHours("13:23-13:23 open")},
|
||||
{4036591562, osmoh::OpeningHours("15:23-15:23 open")}},
|
||||
m2::PointD(-121.74124, 41.04276))};
|
||||
m2::PointD(-121.74124, 41.04276), {4036593809, 4036595406} /* transferIds */)};
|
||||
|
||||
std::vector<Stop> stopsFact;
|
||||
|
||||
|
|
|
@ -152,10 +152,10 @@ TransitData FillTestTransitData()
|
|||
{4026636458, osmoh::OpeningHours("05:00-05:00 open")},
|
||||
{4026636458, osmoh::OpeningHours("05:30-05:30 open")},
|
||||
{4026952369, osmoh::OpeningHours("15:30-15:30 open")}},
|
||||
m2::PointD(-58.57196, -36.82596)),
|
||||
m2::PointD(-58.57196, -36.82596), {} /* transferIds */),
|
||||
Stop(4026990854 /* id */, kInvalidFeatureId /* featureId */,
|
||||
kInvalidOsmId /* osmId */, Translations{{"default", "QUIROGA 1901-1999"}},
|
||||
TimeTable{}, m2::PointD(-58.57196, -36.82967))};
|
||||
TimeTable{}, m2::PointD(-58.57196, -36.82967), {} /* transferIds */)};
|
||||
|
||||
data.SetStopPedestrianSegments(
|
||||
0 /* stopIdx */,
|
||||
|
|
|
@ -60,9 +60,10 @@ inline bool Equal(Line const & l1, Line const & l2)
|
|||
inline bool Equal(Stop const & s1, Stop const & s2)
|
||||
{
|
||||
return (std::make_tuple(s1.GetId(), s1.GetFeatureId(), s1.GetOsmId(), s1.GetTitle(),
|
||||
s1.GetTimeTable(), s1.GetBestPedestrianSegments()) ==
|
||||
s1.GetTimeTable(), s1.GetTransferIds(), s1.GetBestPedestrianSegments()) ==
|
||||
std::make_tuple(s2.GetId(), s2.GetFeatureId(), s2.GetOsmId(), s2.GetTitle(),
|
||||
s2.GetTimeTable(), s2.GetBestPedestrianSegments())) &&
|
||||
s2.GetTimeTable(), s2.GetTransferIds(),
|
||||
s2.GetBestPedestrianSegments())) &&
|
||||
base::AlmostEqualAbs(s1.GetPoint(), s2.GetPoint(), kPointsEqualEpsilon);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue