/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
storage/storage_helpers.hpp
37 строк
1 KB
Arsentiy Milchakov
[storage] review fixes
13 янв 2020, 12:04
13 янв 2020, 12:04
fe0a0fa
Код
Авторство
О чём код?
#pragma once #include "storage/diff_scheme/diffs_data_source.hpp" #include "storage/storage_defines.hpp" #include "platform/country_defines.hpp" #include "platform/country_file.hpp" #include "geometry/point2d.hpp" #include "geometry/rect2d.hpp" namespace storage { class CountryInfoGetter; class Storage; /// \returns true if |position| is covered by a downloaded mwms and false otherwise. /// \note |position| has coordinates in mercator. /// \note This method takes into acount only maps enumerated in countries.txt. bool IsPointCoveredByDownloadedMaps(m2::PointD const & position, Storage const & storage, CountryInfoGetter const & countryInfoGetter); bool IsDownloadFailed(Status status); bool IsEnoughSpaceForDownload(MwmSize mwmSize); bool IsEnoughSpaceForDownload(MwmSize mwmSizeDiff, MwmSize maxMwmSize); bool IsEnoughSpaceForDownload(CountryId const & countryId, Storage const & storage); bool IsEnoughSpaceForUpdate(CountryId const & countryId, Storage const & storage); /// \brief Calculates limit rect for |countryId| (expandable or not). /// \returns bounding box in mercator coordinates. m2::RectD CalcLimitRect(CountryId const & countryId, Storage const & storage, CountryInfoGetter const & countryInfoGetter); MwmSize GetRemoteSize(diffs::DiffsDataSource const & diffsDataSource, platform::CountryFile const & file); } // namespace storage