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

unpack_mwm.cpp « generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9497674964b50348c0f54085e0c82de2b227191 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include "generator/unpack_mwm.hpp"

#include "coding/files_container.hpp"
#include "coding/file_writer.hpp"
#include "coding/read_write_utils.hpp"

#include "base/logging.hpp"
#include "base/stl_helpers.hpp"

#include <algorithm>
#include <vector>

using namespace std;

void UnpackMwm(string const & filePath)
{
  LOG(LINFO, ("Unpacking mwm sections..."));

  FilesContainerR container(filePath);
  vector<string> tags;
  container.ForEachTag(base::MakeBackInsertFunctor<vector<string>>(tags));

  for (size_t i = 0; i < tags.size(); ++i)
  {
    LOG(LINFO, ("Unpacking", tags[i]));

    ReaderSource<FilesContainerR::TReader> reader(container.GetReader(tags[i]));
    FileWriter writer(filePath + "." + tags[i]);

    rw::ReadAndWrite(reader, writer, 1024 * 1024);
  }

  LOG(LINFO, ("Unpacking done."));
}

void DeleteSection(string const & filePath, string const & tag)
{
  FilesContainerW(filePath, FileWriter::OP_WRITE_EXISTING).DeleteSection(tag);
}