Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-09-13Review fixes.Maxim Pimenov
2017-09-13[routing] Fixed a data race in AltitudeLoader.Maxim Pimenov
AltitudeLoader holds a FileReader of the altitudes section. This reader, being a caching one, is not thread safe. However, AltitudeLoader did not keep the MwmHandle from which it was supposed to construct its reader, so the reader could be reused (via MwmValue via MwmHandle) by another thread. FeaturesRoadGraph tries to avoid this issue by keeping its own cache of MwmHandles but it did not stop RoadGeometry from bypassing this cache when creating its AltitudeLoader. The question of whether we need to fix this other cache and whether we need it at all is out of the scope of this CL.
2017-08-07[routing] Estimate altitudes in index routerДобрый Ээх
2016-08-04Implementing better logging in case of errors.Vladimir Byko-Ianko
2016-08-01Review fixes.Vladimir Byko-Ianko
2016-07-27Review fixes.Vladimir Byko-Ianko
2016-07-26Setting valid altitude for all Junctions.Vladimir Byko-Ianko
2016-07-26git-clang-formatVladimir Byko-Ianko
2016-07-26Review fixes.Vladimir Byko-Ianko
2016-07-23Writing altitude section without intermediate files and using MemoryRegion ↵Vladimir Byko-Ianko
for reading it.
2016-07-23Review fixes.Vladimir Byko-Ianko
2016-07-23Getting rid of MwmValue in Value contructor and other review fixes.Vladimir Byko-Ianko
2016-07-23Gathering serialization and deserialization header in AltitudeHeader.Vladimir Byko-Ianko
2016-07-23Correct working altitude_loader in case of absence altitude section in mwm.Vladimir Byko-Ianko
2016-07-23Review fixes.Vladimir Byko-Ianko
2016-07-23Implementation index for altitude data with the help of succinct strutures.Vladimir Byko-Ianko
2016-07-23Implementing AltitudeLoader instead of using FeatureType for parsing.Vladimir Byko-Ianko