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

changeset_wrapper.hpp « editor - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d19d9f45315901868d4db21455172479c4e9fc79 (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
#pragma once

#include "editor/server_api.hpp"
#include "editor/xml_feature.hpp"

#include "geometry/point2d.hpp"
#include "geometry/rect2d.hpp"

#include "base/exception.hpp"

#include <map>
#include <string>
#include <vector>

class FeatureType;

namespace osm
{
struct ClientToken;

class ChangesetWrapper
{
  using TypeCount = std::map<std::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(KeySecret const & keySecret,
                   ServerApi06::KeyValueTags 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(std::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::KeyValueTags m_changesetComments;
  ServerApi06 m_api;
  static constexpr uint64_t kInvalidChangesetId = 0;
  uint64_t m_changesetId = kInvalidChangesetId;

  TypeCount m_modified_types;
  TypeCount m_created_types;
  TypeCount m_deleted_types;
  static std::string TypeCountToString(TypeCount const & typeCount);
  std::string GetDescription() const;
};

}  // namespace osm