forked from organicmaps/organicmaps
[generator_tool] -calc_statistics works even if some section is missing in the mwm file
This commit is contained in:
parent
8eeb836b60
commit
9af993a486
1 changed files with 12 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
|||
#include "../base/string_utils.hpp"
|
||||
|
||||
#include "../std/iostream.hpp"
|
||||
#include "../std/iomanip.hpp"
|
||||
|
||||
#include "../base/start_mem_debug.hpp"
|
||||
|
||||
|
@ -36,7 +37,17 @@ namespace stats
|
|||
tags.push_back(SEARCH_INDEX_FILE_TAG);
|
||||
|
||||
for (size_t i = 0; i < tags.size(); ++i)
|
||||
cout << tags[i] << " : " << cont.GetReader(tags[i]).Size() << endl;
|
||||
{
|
||||
cout << setw(7) << tags[i] << " : ";
|
||||
try
|
||||
{
|
||||
cout << cont.GetReader(tags[i]).Size() << endl;
|
||||
}
|
||||
catch (Reader::Exception const &)
|
||||
{
|
||||
cout << '-' << endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class AccumulateStatistic
|
||||
|
|
Loading…
Add table
Reference in a new issue