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

tree_structure.hpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ae5683ff9b2966e90e4e68ab038083590b56093 (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
40
41
42
43
44
45
46
47
48
49
#pragma once

#include "base/assert.hpp"

#include <iostream>
#include <string>

namespace tree
{
template <class ToDo>
bool LoadTreeAsText(std::istream & s, ToDo & toDo)
{
  std::string name;
  s >> name;
  ASSERT ( !name.empty(), ("Error in classificator file") );
  if (name == "{}") return false;

  // set key name
  toDo.Name(name);

  // load object itself
  std::string strkey;
  s >> strkey;
  while (strkey != "+" && strkey != "-")
    s >> strkey;

  // load children
  if (strkey == "+")
  {
    size_t i = 0;
    while (true)
    {
      toDo.Start(i++);
      bool const isContinue = LoadTreeAsText(s, toDo);
      toDo.End();

      if (!isContinue)
      {
        toDo.EndChilds();
        break;
      }
    }

    ASSERT ( i <= 128, ("too many features at level = ", name) );
  }

  return true;
}
}