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

mwm_set.cpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dec88bf5df0b3ad7b9bf8ab42f73185fc8f92c93 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
#include "mwm_set.hpp"

#include "../../defines.hpp"

#include "../base/logging.hpp"
#include "../base/macros.hpp"
#include "../base/stl_add.hpp"

#include "../std/algorithm.hpp"
#include "../std/memcpy.hpp"


MwmInfo::MwmInfo() : m_lockCount(0), m_status(STATUS_REMOVED)
{
  // Important: STATUS_REMOVED - is the default value.
  // Apply STATUS_ACTIVE before adding to maps container.
}

MwmSet::MwmLock::MwmLock(MwmSet & mwmSet, MwmId mwmId)
  : m_mwmSet(mwmSet), m_id(mwmId), m_pValue(mwmSet.LockValue(mwmId))
{
}

MwmSet::MwmLock::~MwmLock()
{
  if (m_pValue)
    m_mwmSet.UnlockValue(m_id, m_pValue);
}


MwmSet::MwmSet(size_t cacheSize)
  : m_cacheSize(cacheSize)
{
}

MwmSet::~MwmSet()
{
  // Need do call Cleanup() in derived class.
  ASSERT ( m_cache.empty(), () );
}

void MwmSet::Cleanup()
{
  threads::MutexGuard mutexGuard(m_lock);
  UNUSED_VALUE(mutexGuard);

  ClearCacheImpl(m_cache.begin(), m_cache.end());

#ifdef DEBUG
  for (MwmId i = 0; i < m_info.size(); ++i)
  {
    if (m_info[i].IsActive())
    {
      ASSERT_EQUAL(m_info[i].m_lockCount, 0, (i, m_name[i]));
      ASSERT_NOT_EQUAL(m_name[i], string(), (i));
    }
  }
#endif
}

void MwmSet::UpdateMwmInfo(MwmId id)
{
  if (m_info[id].m_status == MwmInfo::STATUS_TO_REMOVE)
    (void)RemoveImpl(id);
}

MwmSet::MwmId MwmSet::GetFreeId()
{
  MwmId const size = m_info.size();
  for (MwmId i = 0; i < size; ++i)
  {
    if (m_info[i].m_status == MwmInfo::STATUS_REMOVED)
      return i;
  }

  m_info.push_back(MwmInfo());
  m_name.push_back(string());
  return size;
}

MwmSet::MwmId MwmSet::GetIdByName(string const & name)
{
  for (MwmId i = 0; i < m_info.size(); ++i)
  {
    UpdateMwmInfo(i);
    if (m_name[i] == name)
      return i;
  }
  return INVALID_MWM_ID;
}

string MwmSet::MwmLock::GetCountryName() const
{
  string const & src = m_mwmSet.m_name[m_id];
  ASSERT ( !src.empty(), () );
  return src.substr(0, src.size() - strlen(DATA_FILE_EXTENSION));
}

int MwmSet::Add(string const & fileName, m2::RectD & rect)
{
  threads::MutexGuard mutexGuard(m_lock);
  UNUSED_VALUE(mutexGuard);

  MwmId const id = GetIdByName(fileName);
  if (id != INVALID_MWM_ID)
  {
    if (m_info[id].IsExist())
      LOG(LWARNING, ("Trying to add already added map", fileName));
    else
      m_info[id].m_status = MwmInfo::STATUS_ACTIVE;

    return -1;
  }

  return AddImpl(fileName, rect);
}

int MwmSet::AddImpl(string const & fileName, m2::RectD & rect)
{
  // this function can throw an exception for bad mwm file
  MwmInfo info;
  int const version = GetInfo(fileName, info);

  info.m_status = MwmInfo::STATUS_ACTIVE;

  MwmId const id = GetFreeId();
  m_name[id] = fileName;
  m_info[id] = info;

  rect = info.m_limitRect;
  ASSERT ( rect.IsValid(), () );
  return version;
}

bool MwmSet::RemoveImpl(MwmId id)
{
  if (m_info[id].m_lockCount == 0)
  {
    m_name[id].clear();
    m_info[id].m_status = MwmInfo::STATUS_REMOVED;
    return true;
  }
  else
  {
    m_info[id].m_status = MwmInfo::STATUS_TO_REMOVE;
    return false;
  }
}

void MwmSet::Remove(string const & fileName)
{
  threads::MutexGuard mutexGuard(m_lock);
  UNUSED_VALUE(mutexGuard);

  (void)RemoveImpl(fileName);
}

bool MwmSet::RemoveImpl(string const & fileName)
{
  bool ret = false;

  MwmId const id = GetIdByName(fileName);
  if (id != INVALID_MWM_ID && m_info[id].IsExist())
  {
    ret = RemoveImpl(id);

    ClearCache(id);
  }

  return ret;
}

void MwmSet::RemoveAllCountries()
{
  threads::MutexGuard mutexGuard(m_lock);
  UNUSED_VALUE(mutexGuard);

  for (MwmId i = 0; i < m_info.size(); ++i)
  {
    if (m_info[i].IsCountry())
      (void)RemoveImpl(i);
  }

  // do not call ClearCache - it's under mutex lock
  ClearCacheImpl(m_cache.begin(), m_cache.end());
}

bool MwmSet::IsLoaded(string const & file) const
{
  MwmSet * p = const_cast<MwmSet *>(this);

  threads::MutexGuard mutexGuard(p->m_lock);
  UNUSED_VALUE(mutexGuard);

  MwmId const id = p->GetIdByName(file + DATA_FILE_EXTENSION);
  return (id != INVALID_MWM_ID && m_info[id].IsExist());
}

void MwmSet::GetMwmInfo(vector<MwmInfo> & info) const
{
  MwmSet * p = const_cast<MwmSet *>(this);

  threads::MutexGuard mutexGuard(p->m_lock);
  UNUSED_VALUE(mutexGuard);

  for (MwmId i = 0; i < m_info.size(); ++i)
    p->UpdateMwmInfo(i);

  info = m_info;
}

MwmSet::MwmValueBase * MwmSet::LockValue(MwmId id)
{
  threads::MutexGuard mutexGuard(m_lock);
  UNUSED_VALUE(mutexGuard);

  ASSERT_LESS(id, m_info.size(), ());
  if (id >= m_info.size())
    return NULL;

  UpdateMwmInfo(id);
  if (!m_info[id].IsActive())
    return NULL;

  ++m_info[id].m_lockCount;

  // Search in cache.
  for (CacheType::iterator it = m_cache.begin(); it != m_cache.end(); ++it)
  {
    if (it->first == id)
    {
      MwmValueBase * result = it->second;
      m_cache.erase(it);
      return result;
    }
  }
  return CreateValue(m_name[id]);
}

void MwmSet::UnlockValue(MwmId id, MwmValueBase * p)
{
  threads::MutexGuard mutexGuard(m_lock);
  UNUSED_VALUE(mutexGuard);

  ASSERT(p, (id));
  ASSERT_LESS(id, m_info.size(), ());
  if (id >= m_info.size() || p == 0)
    return;

  ASSERT_GREATER(m_info[id].m_lockCount, 0, ());
  if (m_info[id].m_lockCount > 0)
    --m_info[id].m_lockCount;
  UpdateMwmInfo(id);

  if (m_info[id].IsActive())
  {
    m_cache.push_back(make_pair(id, p));
    if (m_cache.size() > m_cacheSize)
    {
      ASSERT_EQUAL(m_cache.size(), m_cacheSize + 1, ());
      delete m_cache.front().second;
      m_cache.pop_front();
    }
  }
  else
    delete p;
}

void MwmSet::ClearCache()
{
  threads::MutexGuard mutexGuard(m_lock);
  UNUSED_VALUE(mutexGuard);

  ClearCacheImpl(m_cache.begin(), m_cache.end());
}

void MwmSet::ClearCacheImpl(CacheType::iterator beg, CacheType::iterator end)
{
  for (CacheType::iterator it = beg; it != end; ++it)
    delete it->second;
  m_cache.erase(beg, end);
}

namespace
{
  struct MwmIdIsEqualTo
  {
    MwmSet::MwmId m_id;
    explicit MwmIdIsEqualTo(MwmSet::MwmId id) : m_id(id) {}
    bool operator() (pair<MwmSet::MwmId, MwmSet::MwmValueBase *> const & p) const
    {
      return (p.first == m_id);
    }
  };
}

void MwmSet::ClearCache(MwmId id)
{
  ClearCacheImpl(RemoveIfKeepValid(m_cache.begin(), m_cache.end(), MwmIdIsEqualTo(id)), m_cache.end());
}