forked from organicmaps/organicmaps
Minor performance fixes.
This commit is contained in:
parent
733b39ccb5
commit
ff55299029
4 changed files with 13 additions and 7 deletions
|
@ -29,14 +29,21 @@ uint32_t CountryFile::GetFileSize() const
|
|||
return 0;
|
||||
}
|
||||
|
||||
struct CountryBoundsCalculator
|
||||
class CountryBoundsCalculator
|
||||
{
|
||||
m2::RectD & m_bounds;
|
||||
CountryBoundsCalculator(m2::RectD & bounds) : m_bounds(bounds) {}
|
||||
Platform & m_platform;
|
||||
|
||||
public:
|
||||
CountryBoundsCalculator(m2::RectD & bounds)
|
||||
: m_bounds(bounds), m_platform(GetPlatform())
|
||||
{
|
||||
}
|
||||
|
||||
void operator()(CountryFile const & file)
|
||||
{
|
||||
feature::DataHeader h;
|
||||
LoadMapHeader(GetPlatform().GetReader(file.GetFileWithExt()), h);
|
||||
LoadMapHeader(m_platform.GetReader(file.GetFileWithExt()), h);
|
||||
m_bounds.Add(h.GetBounds());
|
||||
}
|
||||
};
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "country_decl.hpp"
|
||||
|
||||
|
||||
string storage::CountryInfo::FileName2FullName(string fName)
|
||||
void storage::CountryInfo::FileName2FullName(string & fName)
|
||||
{
|
||||
size_t const i = fName.find('_');
|
||||
if (i != string::npos)
|
||||
|
@ -10,7 +10,6 @@ string storage::CountryInfo::FileName2FullName(string fName)
|
|||
fName[i] = ',';
|
||||
fName.insert(i+1, " ");
|
||||
}
|
||||
return fName;
|
||||
}
|
||||
|
||||
void storage::CountryInfo::FullName2GroupAndMap(string const & fName, string & group, string & map)
|
||||
|
|
|
@ -30,7 +30,7 @@ namespace storage
|
|||
|
||||
bool IsNotEmpty() const { return !m_flag.empty(); }
|
||||
|
||||
static string FileName2FullName(string fName);
|
||||
static void FileName2FullName(string & fName);
|
||||
static void FullName2GroupAndMap(string const & fName, string & group, string & map);
|
||||
};
|
||||
}
|
||||
|
|
|
@ -108,7 +108,7 @@ namespace storage
|
|||
if (info.m_name.empty())
|
||||
info.m_name = id;
|
||||
|
||||
info.m_name = CountryInfo::FileName2FullName(info.m_name);
|
||||
CountryInfo::FileName2FullName(info.m_name);
|
||||
}
|
||||
|
||||
void CountryInfoGetter::CalcUSALimitRect(m2::RectD rects[3]) const
|
||||
|
|
Loading…
Add table
Reference in a new issue