forked from organicmaps/organicmaps
review fixes
This commit is contained in:
parent
bd950780e2
commit
475d0bcbcc
17 changed files with 53 additions and 49 deletions
|
@ -53,6 +53,7 @@ void AsciiToLower(string & s);
|
|||
// TODO(AlexZ): current boost impl uses default std::locale() to trim.
|
||||
// In general, it does not work for any unicode whitespace except ASCII U+0020 one.
|
||||
void Trim(string & s);
|
||||
/// Remove any characters that contain in "anyOf" on left and right side of string s
|
||||
void Trim(string & s, char const * anyOf);
|
||||
|
||||
void MakeLowerCaseInplace(string & s);
|
||||
|
|
|
@ -24,13 +24,14 @@ public:
|
|||
BaseApplyFeature(EngineContext & context, FeatureID const & id,
|
||||
CaptionDescription const & captions);
|
||||
|
||||
virtual ~BaseApplyFeature() {}
|
||||
|
||||
protected:
|
||||
void ExtractCaptionParams(CaptionDefProto const * primaryProto,
|
||||
CaptionDefProto const * secondaryProto,
|
||||
double depth,
|
||||
TextViewParams & params) const;
|
||||
|
||||
protected:
|
||||
EngineContext & m_context;
|
||||
FeatureID m_id;
|
||||
CaptionDescription const & m_captions;
|
||||
|
|
|
@ -46,7 +46,7 @@ public:
|
|||
dp::RefPointer<gui::StorageAccessor> m_storageAccessor;
|
||||
Viewport m_viewport;
|
||||
MapDataProvider m_model;
|
||||
double m_vs = 1.0f;
|
||||
double m_vs;
|
||||
};
|
||||
|
||||
DrapeEngine(Params const & params);
|
||||
|
|
|
@ -22,12 +22,12 @@ EngineContext::EngineContext(TileKey tileKey, dp::RefPointer<ThreadsCommutator>
|
|||
|
||||
void EngineContext::BeginReadTile()
|
||||
{
|
||||
PostMessage(new TileReadStartMessage(m_tileKey));
|
||||
PostMessage(dp::MovePointer<Message>(new TileReadStartMessage(m_tileKey)));
|
||||
}
|
||||
|
||||
void EngineContext::InsertShape(dp::TransferPointer<MapShape> shape)
|
||||
{
|
||||
PostMessage(new MapShapeReadedMessage(m_tileKey, shape));
|
||||
PostMessage(dp::MovePointer<Message>(new MapShapeReadedMessage(m_tileKey, shape)));
|
||||
}
|
||||
|
||||
void EngineContext::EndReadTile()
|
||||
|
@ -64,13 +64,12 @@ void EngineContext::EndReadTile()
|
|||
InsertShape(key, dp::MovePointer<df::MapShape>(new TextShape(r.Center(), tp)));
|
||||
#endif
|
||||
|
||||
PostMessage(new TileReadEndMessage(m_tileKey));
|
||||
PostMessage(dp::MovePointer<Message>(new TileReadEndMessage(m_tileKey)));
|
||||
}
|
||||
|
||||
void EngineContext::PostMessage(Message * message)
|
||||
void EngineContext::PostMessage(dp::TransferPointer<Message> message)
|
||||
{
|
||||
m_commutator->PostMessage(ThreadsCommutator::ResourceUploadThread,
|
||||
dp::MovePointer(message),
|
||||
m_commutator->PostMessage(ThreadsCommutator::ResourceUploadThread, message,
|
||||
MessagePriority::Normal);
|
||||
}
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ public:
|
|||
void EndReadTile();
|
||||
|
||||
private:
|
||||
void PostMessage(Message * message);
|
||||
void PostMessage(dp::TransferPointer<Message> message);
|
||||
|
||||
private:
|
||||
TileKey m_tileKey;
|
||||
|
|
|
@ -12,12 +12,12 @@ MapDataProvider::MapDataProvider(TReadIDsFn const & idsReader,
|
|||
{
|
||||
}
|
||||
|
||||
void MapDataProvider::ReadFeaturesID(TReadIdCallback const & fn, m2::RectD const & r, int scale) const
|
||||
void MapDataProvider::ReadFeaturesID(TReadCallback<FeatureID> const & fn, m2::RectD const & r, int scale) const
|
||||
{
|
||||
m_idsReader(fn, r, scale);
|
||||
}
|
||||
|
||||
void MapDataProvider::ReadFeatures(TReadFeatureCallback const & fn, vector<FeatureID> const & ids) const
|
||||
void MapDataProvider::ReadFeatures(TReadCallback<FeatureType> const & fn, vector<FeatureID> const & ids) const
|
||||
{
|
||||
m_featureReader(fn, ids);
|
||||
}
|
||||
|
|
|
@ -14,18 +14,17 @@ namespace df
|
|||
class MapDataProvider
|
||||
{
|
||||
public:
|
||||
using TReadIdCallback = function<void (FeatureID const &)>;
|
||||
using TReadFeatureCallback = function<void (FeatureType const &)>;
|
||||
using TReadFeaturesFn = function<void (TReadFeatureCallback const & , vector<FeatureID> const &)>;
|
||||
using TReadIDsFn = function<void (TReadIdCallback const & , m2::RectD const &, int)>;
|
||||
template <typename T> using TReadCallback = function<void (T const &)>;
|
||||
using TReadFeaturesFn = function<void (TReadCallback<FeatureType> const & , vector<FeatureID> const &)>;
|
||||
using TReadIDsFn = function<void (TReadCallback<FeatureID> const & , m2::RectD const &, int)>;
|
||||
using TResolveCountryFn = function<storage::TIndex (m2::PointF const &)>;
|
||||
|
||||
MapDataProvider(TReadIDsFn const & idsReader,
|
||||
TReadFeaturesFn const & featureReader,
|
||||
TResolveCountryFn const & countryResolver);
|
||||
|
||||
void ReadFeaturesID(TReadIdCallback const & fn, m2::RectD const & r, int scale) const;
|
||||
void ReadFeatures(TReadFeatureCallback const & fn, vector<FeatureID> const & ids) const;
|
||||
void ReadFeaturesID(TReadCallback<FeatureID> const & fn, m2::RectD const & r, int scale) const;
|
||||
void ReadFeatures(TReadCallback<FeatureType> const & fn, vector<FeatureID> const & ids) const;
|
||||
|
||||
storage::TIndex FindCountry(m2::PointF const & pt);
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ void ReadManager::UpdateCoverage(ScreenBase const & screen, set<TileKey> const &
|
|||
else
|
||||
{
|
||||
// Find rects that go out from viewport
|
||||
buffer_vector<TTileInfoPtr, 8> outdatedTiles;
|
||||
buffer_vector<shared_ptr<TileInfo>, 8> outdatedTiles;
|
||||
#ifdef _MSC_VER
|
||||
vs_bug::
|
||||
#endif
|
||||
|
@ -87,13 +87,12 @@ void ReadManager::UpdateCoverage(ScreenBase const & screen, set<TileKey> const &
|
|||
|
||||
void ReadManager::Invalidate(set<TileKey> const & keyStorage)
|
||||
{
|
||||
TTileSet::iterator it = m_tileInfos.begin();
|
||||
for (; it != m_tileInfos.end(); ++it)
|
||||
for (auto & info : m_tileInfos)
|
||||
{
|
||||
if (keyStorage.find((*it)->GetTileKey()) != keyStorage.end())
|
||||
if (keyStorage.find(info->GetTileKey()) != keyStorage.end())
|
||||
{
|
||||
CancelTileInfo(*it);
|
||||
PushTaskFront(*it);
|
||||
CancelTileInfo(info);
|
||||
PushTaskFront(info);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -121,26 +120,26 @@ bool ReadManager::MustDropAllTiles(ScreenBase const & screen) const
|
|||
|
||||
void ReadManager::PushTaskBackForTileKey(TileKey const & tileKey)
|
||||
{
|
||||
TTileInfoPtr tileInfo(new TileInfo(EngineContext(tileKey, m_commutator)));
|
||||
shared_ptr<TileInfo> tileInfo(new TileInfo(EngineContext(tileKey, m_commutator)));
|
||||
m_tileInfos.insert(tileInfo);
|
||||
ReadMWMTask * task = myPool.Get();
|
||||
task->Init(tileInfo);
|
||||
m_pool->PushBack(task);
|
||||
}
|
||||
|
||||
void ReadManager::PushTaskFront(TTileInfoPtr const & tileToReread)
|
||||
void ReadManager::PushTaskFront(shared_ptr<TileInfo> const & tileToReread)
|
||||
{
|
||||
ReadMWMTask * task = myPool.Get();
|
||||
task->Init(tileToReread);
|
||||
m_pool->PushFront(task);
|
||||
}
|
||||
|
||||
void ReadManager::CancelTileInfo(TTileInfoPtr const & tileToCancel)
|
||||
void ReadManager::CancelTileInfo(shared_ptr<TileInfo> const & tileToCancel)
|
||||
{
|
||||
tileToCancel->Cancel(m_memIndex);
|
||||
}
|
||||
|
||||
void ReadManager::ClearTileInfo(TTileInfoPtr const & tileToClear)
|
||||
void ReadManager::ClearTileInfo(shared_ptr<TileInfo> const & tileToClear)
|
||||
{
|
||||
CancelTileInfo(tileToClear);
|
||||
m_tileInfos.erase(tileToClear);
|
||||
|
|
|
@ -21,8 +21,6 @@ namespace df
|
|||
class MapDataProvider;
|
||||
class CoverageUpdateDescriptor;
|
||||
|
||||
typedef shared_ptr<TileInfo> TTileInfoPtr;
|
||||
|
||||
class ReadManager
|
||||
{
|
||||
public:
|
||||
|
@ -39,7 +37,7 @@ private:
|
|||
bool MustDropAllTiles(ScreenBase const & screen) const;
|
||||
|
||||
void PushTaskBackForTileKey(TileKey const & tileKey);
|
||||
void PushTaskFront(TTileInfoPtr const & tileToReread);
|
||||
void PushTaskFront(shared_ptr<TileInfo> const & tileToReread);
|
||||
|
||||
private:
|
||||
MemoryFeatureIndex m_memIndex;
|
||||
|
@ -51,21 +49,21 @@ private:
|
|||
|
||||
ScreenBase m_currentViewport;
|
||||
|
||||
struct LessByTileKey
|
||||
struct LessByTileInfo
|
||||
{
|
||||
bool operator ()(TTileInfoPtr const & l, TTileInfoPtr const & r) const
|
||||
bool operator ()(shared_ptr<TileInfo> const & l, shared_ptr<TileInfo> const & r) const
|
||||
{
|
||||
return *l < *r;
|
||||
}
|
||||
};
|
||||
|
||||
using TTileSet = set<TTileInfoPtr, LessByTileKey>;
|
||||
using TTileSet = set<shared_ptr<TileInfo>, LessByTileInfo>;
|
||||
TTileSet m_tileInfos;
|
||||
|
||||
ObjectPool<ReadMWMTask, ReadMWMTaskFactory> myPool;
|
||||
|
||||
void CancelTileInfo(TTileInfoPtr const & tileToCancel);
|
||||
void ClearTileInfo(TTileInfoPtr const & tileToClear);
|
||||
void CancelTileInfo(shared_ptr<TileInfo> const & tileToCancel);
|
||||
void ClearTileInfo(shared_ptr<TileInfo> const & tileToClear);
|
||||
};
|
||||
|
||||
} // namespace df
|
||||
|
|
|
@ -45,6 +45,7 @@ public:
|
|||
: m_memIndex(memIndex)
|
||||
, m_model(model) {}
|
||||
|
||||
/// Caller must handle object life cycle
|
||||
ReadMWMTask * GetNew() const
|
||||
{
|
||||
return new ReadMWMTask(m_memIndex, m_model);
|
||||
|
|
|
@ -16,11 +16,11 @@ namespace df
|
|||
|
||||
class EngineContext;
|
||||
class Stylist;
|
||||
typedef function<void (FeatureType const &, Stylist &)> TDrawerCallback;
|
||||
|
||||
class RuleDrawer
|
||||
{
|
||||
public:
|
||||
using TDrawerCallback = function<void (FeatureType const &, Stylist &)>;
|
||||
RuleDrawer(TDrawerCallback const & fn,
|
||||
EngineContext & context);
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
#include "base/exception.hpp"
|
||||
#include "base/mutex.hpp"
|
||||
|
||||
#include "std/atomic.hpp"
|
||||
#include "std/mutex.hpp"
|
||||
#include "std/noncopyable.hpp"
|
||||
#include "std/vector.hpp"
|
||||
|
@ -50,7 +51,7 @@ private:
|
|||
EngineContext m_context;
|
||||
vector<FeatureInfo> m_featureInfo;
|
||||
|
||||
bool m_isCanceled;
|
||||
atomic<bool> m_isCanceled;
|
||||
mutex m_mutex;
|
||||
};
|
||||
|
||||
|
|
|
@ -39,12 +39,12 @@ void FormatMapSize(uint64_t sizeInBytes, string & units, size_t & sizeToDownload
|
|||
int const kbInBytes = 1024;
|
||||
if (sizeInBytes > mbInBytes)
|
||||
{
|
||||
sizeToDownload = (sizeInBytes + (mbInBytes >> 1)) / mbInBytes;
|
||||
sizeToDownload = (sizeInBytes + mbInBytes - 1) / mbInBytes;
|
||||
units = "MB";
|
||||
}
|
||||
else if (sizeInBytes > kbInBytes)
|
||||
{
|
||||
sizeToDownload = (sizeInBytes + (kbInBytes >> 1)) / kbInBytes;
|
||||
sizeToDownload = (sizeInBytes + kbInBytes -1) / kbInBytes;
|
||||
units = "KB";
|
||||
}
|
||||
else
|
||||
|
@ -61,7 +61,7 @@ char const * DownloadingLabelID = "country_status_downloading";
|
|||
char const * DownloadingFailedID = "country_status_download_failed";
|
||||
char const * InQueueID = "country_status_added_to_queue";
|
||||
|
||||
}
|
||||
} // namespace
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
|
||||
|
@ -148,7 +148,8 @@ string CountryStatusHelper::GetProgressValue() const
|
|||
void CountryStatusHelper::FillControlsForState()
|
||||
{
|
||||
m_controls.clear();
|
||||
switch (m_state)
|
||||
ECountryState state = m_state;
|
||||
switch (state)
|
||||
{
|
||||
case COUNTRY_STATE_EMPTY:
|
||||
FillControlsForEmpty();
|
||||
|
@ -198,7 +199,7 @@ void CountryStatusHelper::FillControlsForLoading()
|
|||
{
|
||||
string secondLabel = text.substr(secondPos + 1);
|
||||
strings::Trim(secondLabel , "\n ");
|
||||
m_controls.push_back(MakeLabel(secondLabel ));
|
||||
m_controls.push_back(MakeLabel(secondLabel));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
#include "../base/buffer_vector.hpp"
|
||||
|
||||
#include "../std/atomic.hpp"
|
||||
#include "../std/string.hpp"
|
||||
#include "../std/unique_ptr.hpp"
|
||||
|
||||
|
@ -55,6 +56,10 @@ public:
|
|||
|
||||
void SetState(ECountryState state);
|
||||
ECountryState GetState() const;
|
||||
/// CountryStatusHandle work on FrontendRenderer and call this function to check "is visible"
|
||||
/// or state has already changed.
|
||||
/// State changes from BackendRenderer thread, when recache operation started.
|
||||
/// In that moment no need to show old CountryStatus
|
||||
bool IsVisibleForState(ECountryState state) const;
|
||||
|
||||
size_t GetComponentCount() const;
|
||||
|
@ -78,7 +83,7 @@ private:
|
|||
string FormatTryAgain();
|
||||
|
||||
private:
|
||||
ECountryState m_state;
|
||||
atomic<ECountryState> m_state;
|
||||
buffer_vector<Control, 4> m_controls;
|
||||
dp::RefPointer<StorageAccessor> m_accessor;
|
||||
};
|
||||
|
|
|
@ -21,7 +21,7 @@ class CountryStatusHelper;
|
|||
class StorageAccessor
|
||||
{
|
||||
public:
|
||||
using TSlotFn = function<void (void)>;
|
||||
using TSlotFn = function<void ()>;
|
||||
|
||||
virtual ~StorageAccessor() {}
|
||||
virtual string GetCurrentCountryName() const = 0;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "map/framework.hpp"
|
||||
|
||||
#include "map/geourl_process.hpp"
|
||||
#include "map/ge0_parser.hpp"
|
||||
#include "map/geourl_process.hpp"
|
||||
#include "map/storage_bridge.hpp"
|
||||
|
||||
#include "defines.hpp"
|
||||
|
@ -1366,16 +1366,14 @@ void Framework::CreateDrapeEngine(dp::RefPointer<dp::OGLContextFactory> contextF
|
|||
{
|
||||
using TReadIDsFn = df::MapDataProvider::TReadIDsFn;
|
||||
using TReadFeaturesFn = df::MapDataProvider::TReadFeaturesFn;
|
||||
using TReadIdCallback = df::MapDataProvider::TReadIdCallback;
|
||||
using TReadFeatureCallback = df::MapDataProvider::TReadFeatureCallback;
|
||||
using TResolveCountryFn = df::MapDataProvider::TResolveCountryFn;
|
||||
|
||||
TReadIDsFn idReadFn = [this](TReadIdCallback const & fn, m2::RectD const & r, int scale) -> void
|
||||
TReadIDsFn idReadFn = [this](df::MapDataProvider::TReadCallback<FeatureID> const & fn, m2::RectD const & r, int scale) -> void
|
||||
{
|
||||
m_model.ForEachFeatureID(r, fn, scale);
|
||||
};
|
||||
|
||||
TReadFeaturesFn featureReadFn = [this](TReadFeatureCallback const & fn, vector<FeatureID> const & ids) -> void
|
||||
TReadFeaturesFn featureReadFn = [this](df::MapDataProvider::TReadCallback<FeatureType> const & fn, vector<FeatureID> const & ids) -> void
|
||||
{
|
||||
m_model.ReadFeatures(fn, ids);
|
||||
};
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#include "../storage/index.hpp"
|
||||
#include "../storage/storage_defines.hpp"
|
||||
|
||||
/// Provide access to Storage in DrapeGui subsystem. Need to CountryStatus buttons
|
||||
class StorageBridge : public gui::StorageAccessor
|
||||
, public storage::ActiveMapsLayout::ActiveMapsListener
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue