forked from organicmaps/organicmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangeset_wrapper.hpp
74 lines (56 loc) · 2.53 KB
/
changeset_wrapper.hpp
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
#pragma once
#include "base/exception.hpp"
#include "editor/server_api.hpp"
#include "editor/xml_feature.hpp"
#include "geometry/point2d.hpp"
#include "geometry/rect2d.hpp"
#include "std/set.hpp"
#include "std/vector.hpp"
class FeatureType;
namespace osm
{
struct ClientToken;
class ChangesetWrapper
{
using TTypeCount = map<string, size_t>;
public:
DECLARE_EXCEPTION(ChangesetWrapperException, RootException);
DECLARE_EXCEPTION(NetworkErrorException, ChangesetWrapperException);
DECLARE_EXCEPTION(HttpErrorException, ChangesetWrapperException);
DECLARE_EXCEPTION(OsmXmlParseException, ChangesetWrapperException);
DECLARE_EXCEPTION(OsmObjectWasDeletedException, ChangesetWrapperException);
DECLARE_EXCEPTION(CreateChangeSetFailedException, ChangesetWrapperException);
DECLARE_EXCEPTION(ModifyNodeFailedException, ChangesetWrapperException);
DECLARE_EXCEPTION(LinearFeaturesAreNotSupportedException, ChangesetWrapperException);
DECLARE_EXCEPTION(EmptyFeatureException, ChangesetWrapperException);
ChangesetWrapper(TKeySecret const & keySecret,
ServerApi06::TKeyValueTags const & comments) noexcept;
~ChangesetWrapper();
/// Throws many exceptions from above list, plus including XMLNode's parsing ones.
/// OsmObjectWasDeletedException means that node was deleted from OSM server by someone else.
editor::XMLFeature GetMatchingNodeFeatureFromOSM(m2::PointD const & center);
editor::XMLFeature GetMatchingAreaFeatureFromOSM(vector<m2::PointD> const & geomerty);
/// Throws exceptions from above list.
void Create(editor::XMLFeature node);
/// Throws exceptions from above list.
/// Node should have correct OSM "id" attribute set.
void Modify(editor::XMLFeature node);
/// Throws exceptions from above list.
void Delete(editor::XMLFeature node);
uint64_t GetChangesetId() const { return m_changesetId; }
private:
/// Unfortunately, pugi can't return xml_documents from methods.
/// Throws exceptions from above list.
void LoadXmlFromOSM(ms::LatLon const & ll, pugi::xml_document & doc, double radiusInMeters = 1.0);
void LoadXmlFromOSM(ms::LatLon const & min, ms::LatLon const & max, pugi::xml_document & doc);
ServerApi06::TKeyValueTags m_changesetComments;
ServerApi06 m_api;
static constexpr uint64_t kInvalidChangesetId = 0;
uint64_t m_changesetId = kInvalidChangesetId;
TTypeCount m_modified_types;
TTypeCount m_created_types;
TTypeCount m_deleted_types;
static string TypeCountToString(TTypeCount const & typeCount);
string GetDescription() const;
};
} // namespace osm