summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvo van Dongen <info@ivovandongen.nl>2016-12-01 11:23:26 +0200
committerJesse Bounds <jesse@rebounds.net>2016-12-13 10:03:05 -0800
commitbb6973ae90d91134de168dc75f0d51e3e28c8ae4 (patch)
treef4e764c37cfd786e26ea792b7786561e486fc40e
parent18730d598d29cf876064ce6964ef88ef0351f78f (diff)
downloadqtlocation-mapboxgl-bb6973ae90d91134de168dc75f0d51e3e28c8ae4.tar.gz
[core] guard against duplicate layer ids
-rw-r--r--src/mbgl/style/style.cpp9
-rw-r--r--test/style/style_layer.test.cpp28
2 files changed, 37 insertions, 0 deletions
diff --git a/src/mbgl/style/style.cpp b/src/mbgl/style/style.cpp
index e55119f9fd..d28963aa64 100644
--- a/src/mbgl/style/style.cpp
+++ b/src/mbgl/style/style.cpp
@@ -198,6 +198,15 @@ Layer* Style::getLayer(const std::string& id) const {
Layer* Style::addLayer(std::unique_ptr<Layer> layer, optional<std::string> before) {
// TODO: verify source
+ // Guard against duplicate layer ids
+ auto it = std::find_if(layers.begin(), layers.end(), [&](const auto& existing) {
+ return existing->getID() == layer->getID();
+ });
+
+ if (it != layers.end()) {
+ throw std::runtime_error(std::string{"Layer "} + layer->getID() + " already exists");
+ }
+
if (SymbolLayer* symbolLayer = layer->as<SymbolLayer>()) {
if (!symbolLayer->impl->spriteAtlas) {
symbolLayer->impl->spriteAtlas = spriteAtlas.get();
diff --git a/test/style/style_layer.test.cpp b/test/style/style_layer.test.cpp
index f6dcc684c7..8356f3accd 100644
--- a/test/style/style_layer.test.cpp
+++ b/test/style/style_layer.test.cpp
@@ -1,5 +1,7 @@
#include <mbgl/test/util.hpp>
#include <mbgl/test/stub_layer_observer.hpp>
+#include <mbgl/test/stub_file_source.hpp>
+#include <mbgl/style/style.hpp>
#include <mbgl/style/layers/background_layer.hpp>
#include <mbgl/style/layers/background_layer_impl.hpp>
#include <mbgl/style/layers/circle_layer.hpp>
@@ -15,6 +17,10 @@
#include <mbgl/style/layers/symbol_layer.hpp>
#include <mbgl/style/layers/symbol_layer_impl.hpp>
#include <mbgl/util/color.hpp>
+#include <mbgl/util/run_loop.hpp>
+#include <mbgl/util/io.hpp>
+
+#include <memory>
using namespace mbgl;
using namespace mbgl::style;
@@ -268,3 +274,25 @@ TEST(Layer, Observer) {
layer->setLineCap(lineCap);
EXPECT_FALSE(layoutPropertyChanged);
}
+
+TEST(Layer, DuplicateLayer) {
+ util::RunLoop loop;
+
+ //Setup style
+ StubFileSource fileSource;
+ Style style { fileSource, 1.0 };
+ style.setJSON(util::read_file("test/fixtures/resources/style-unused-sources.json"));
+
+ //Add initial layer
+ style.addLayer(std::make_unique<LineLayer>("line", "unusedsource"));
+
+ //Try to add duplicate
+ try {
+ style.addLayer(std::make_unique<LineLayer>("line", "unusedsource"));
+ FAIL() << "Should not have been allowed to add a duplicate layer id";
+ } catch (const std::runtime_error e) {
+ //Expected
+ ASSERT_STREQ("Layer line already exists", e.what());
+ }
+}
+