summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2017-06-12 15:12:28 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2017-06-15 07:43:51 -0700
commitfe024bbdf6169d1dd1bdb4f9e20cb93152a0b3b2 (patch)
tree643c7ddaed75d1cf316de92c34819a6200202d93
parent5a8729182652a5cb4d78644a5b9b9a2a2ff343b6 (diff)
downloadqtlocation-mapboxgl-fe024bbdf6169d1dd1bdb4f9e20cb93152a0b3b2.tar.gz
[core] Implement "smart setStyle"
-rw-r--r--src/mbgl/map/map.cpp149
-rw-r--r--test/api/api_misuse.test.cpp28
2 files changed, 38 insertions, 139 deletions
diff --git a/src/mbgl/map/map.cpp b/src/mbgl/map/map.cpp
index e685251b80..0df9f11112 100644
--- a/src/mbgl/map/map.cpp
+++ b/src/mbgl/map/map.cpp
@@ -165,6 +165,8 @@ Map::Impl::Impl(Map& map_,
renderStill();
}
}) {
+ style = std::make_unique<Style>(scheduler, fileSource, pixelRatio);
+ style->setObserver(this);
}
Map::~Map() {
@@ -175,7 +177,6 @@ Map::~Map() {
// Explicit resets currently necessary because these abandon resources that need to be
// cleaned up by context.reset();
impl->renderStyle.reset();
- impl->style.reset();
impl->painter.reset();
}
@@ -195,11 +196,6 @@ void Map::renderStill(View& view, StillImageCallback callback) {
return;
}
- if (!impl->style) {
- callback(std::make_exception_ptr(util::MisuseException("Map doesn't have a style")));
- return;
- }
-
if (impl->style->getLastError()) {
callback(impl->style->getLastError());
return;
@@ -228,10 +224,6 @@ void Map::render(View& view) {
}
void Map::Impl::render(View& view) {
- if (!style) {
- return;
- }
-
TimePoint timePoint = Clock::now();
transform.updateTransitions(timePoint);
@@ -244,6 +236,15 @@ void Map::Impl::render(View& view) {
annotationManager.updateData();
}
+ updateFlags = Update::Nothing;
+
+ gl::Context& context = backend.getContext();
+ if (!painter) {
+ renderStyle = std::make_unique<RenderStyle>(scheduler, fileSource);
+ renderStyle->setObserver(this);
+ painter = std::make_unique<Painter>(context, transform.getState(), pixelRatio, programCacheDir);
+ }
+
renderStyle->update({
mode,
pixelRatio,
@@ -262,13 +263,6 @@ void Map::Impl::render(View& view) {
annotationManager
});
- updateFlags = Update::Nothing;
-
- gl::Context& context = backend.getContext();
- if (!painter) {
- painter = std::make_unique<Painter>(context, transform.getState(), pixelRatio, programCacheDir);
- }
-
bool loaded = style->isLoaded() && renderStyle->isLoaded();
if (mode == MapMode::Continuous) {
@@ -346,10 +340,9 @@ void Map::setStyleURL(const std::string& url) {
impl->styleRequest = nullptr;
impl->styleURL = url;
impl->styleJSON.clear();
- impl->styleMutated = false;
- impl->style = std::make_unique<Style>(impl->scheduler, impl->fileSource, impl->pixelRatio);
- impl->renderStyle = std::make_unique<RenderStyle>(impl->scheduler, impl->fileSource);
+ impl->style->loaded = false;
+ impl->styleMutated = false;
impl->styleRequest = impl->fileSource.request(Resource::style(impl->styleURL), [this](Response res) {
// Once we get a fresh style, or the style is mutated, stop revalidating.
@@ -395,16 +388,10 @@ void Map::setStyleJSON(const std::string& json) {
impl->styleJSON.clear();
impl->styleMutated = false;
- impl->style = std::make_unique<Style>(impl->scheduler, impl->fileSource, impl->pixelRatio);
- impl->renderStyle = std::make_unique<RenderStyle>(impl->scheduler, impl->fileSource);
-
impl->loadStyleJSON(json);
}
void Map::Impl::loadStyleJSON(const std::string& json) {
- style->setObserver(this);
- renderStyle->setObserver(this);
-
style->setJSON(json);
styleJSON = json;
@@ -834,7 +821,7 @@ void Map::removeAnnotation(AnnotationID annotation) {
#pragma mark - Feature query api
std::vector<Feature> Map::queryRenderedFeatures(const ScreenCoordinate& point, const RenderedQueryOptions& options) {
- if (!impl->style) return {};
+ if (!impl->renderStyle) return {};
return impl->renderStyle->queryRenderedFeatures(
{ point },
@@ -844,7 +831,7 @@ std::vector<Feature> Map::queryRenderedFeatures(const ScreenCoordinate& point, c
}
std::vector<Feature> Map::queryRenderedFeatures(const ScreenBox& box, const RenderedQueryOptions& options) {
- if (!impl->style) return {};
+ if (!impl->renderStyle) return {};
return impl->renderStyle->queryRenderedFeatures(
{
@@ -860,7 +847,7 @@ std::vector<Feature> Map::queryRenderedFeatures(const ScreenBox& box, const Rend
}
std::vector<Feature> Map::querySourceFeatures(const std::string& sourceID, const SourceQueryOptions& options) {
- if (!impl->style) return {};
+ if (!impl->renderStyle) return {};
const RenderSource* source = impl->renderStyle->getRenderSource(sourceID);
if (!source) return {};
@@ -888,49 +875,34 @@ AnnotationIDs Map::queryPointAnnotations(const ScreenBox& box) {
#pragma mark - Style API
std::vector<style::Source*> Map::getSources() {
- return impl->style ? impl->style->getSources() : std::vector<style::Source*>();
+ return impl->style->getSources();
}
style::Source* Map::getSource(const std::string& sourceID) {
- if (impl->style) {
- impl->styleMutated = true;
- return impl->style->getSource(sourceID);
- }
- return nullptr;
+ impl->styleMutated = true;
+ return impl->style->getSource(sourceID);
}
void Map::addSource(std::unique_ptr<style::Source> source) {
- if (impl->style) {
- impl->styleMutated = true;
- impl->style->addSource(std::move(source));
- }
+ impl->styleMutated = true;
+ impl->style->addSource(std::move(source));
}
std::unique_ptr<Source> Map::removeSource(const std::string& sourceID) {
- if (impl->style) {
- impl->styleMutated = true;
- return impl->style->removeSource(sourceID);
- }
- return nullptr;
+ impl->styleMutated = true;
+ return impl->style->removeSource(sourceID);
}
std::vector<style::Layer*> Map::getLayers() {
- return impl->style ? impl->style->getLayers() : std::vector<style::Layer*>();
+ return impl->style->getLayers();
}
Layer* Map::getLayer(const std::string& layerID) {
- if (impl->style) {
- impl->styleMutated = true;
- return impl->style->getLayer(layerID);
- }
- return nullptr;
+ impl->styleMutated = true;
+ return impl->style->getLayer(layerID);
}
void Map::addLayer(std::unique_ptr<Layer> layer, const optional<std::string>& before) {
- if (!impl->style) {
- return;
- }
-
impl->styleMutated = true;
BackendScope guard(impl->backend);
@@ -939,10 +911,6 @@ void Map::addLayer(std::unique_ptr<Layer> layer, const optional<std::string>& be
}
std::unique_ptr<Layer> Map::removeLayer(const std::string& id) {
- if (!impl->style) {
- return nullptr;
- }
-
impl->styleMutated = true;
BackendScope guard(impl->backend);
@@ -953,81 +921,47 @@ std::unique_ptr<Layer> Map::removeLayer(const std::string& id) {
}
void Map::addImage(std::unique_ptr<style::Image> image) {
- if (!impl->style) {
- return;
- }
-
impl->styleMutated = true;
impl->style->addImage(std::move(image));
}
void Map::removeImage(const std::string& id) {
- if (!impl->style) {
- return;
- }
-
impl->styleMutated = true;
impl->style->removeImage(id);
}
const style::Image* Map::getImage(const std::string& id) {
- if (impl->style) {
- return impl->style->getImage(id);
- }
- return nullptr;
+ return impl->style->getImage(id);
}
void Map::setLight(std::unique_ptr<style::Light> light) {
- if (!impl->style) {
- return;
- }
-
impl->style->setLight(std::move(light));
}
style::Light* Map::getLight() {
- if (!impl->style) {
- return nullptr;
- }
-
return impl->style->getLight();
}
#pragma mark - Defaults
std::string Map::getStyleName() const {
- if (impl->style) {
- return impl->style->getName();
- }
- return {};
+ return impl->style->getName();
}
LatLng Map::getDefaultLatLng() const {
- if (impl->style) {
- return impl->style->getDefaultLatLng();
- }
- return {};
+ return impl->style->getDefaultLatLng();
}
double Map::getDefaultZoom() const {
- if (impl->style) {
- return impl->style->getDefaultZoom();
- }
- return {};
+ return impl->style->getDefaultZoom();
}
double Map::getDefaultBearing() const {
- if (impl->style) {
- return impl->style->getDefaultBearing();
- }
- return {};
+ return impl->style->getDefaultBearing();
}
double Map::getDefaultPitch() const {
- if (impl->style) {
- return impl->style->getDefaultPitch();
- }
- return {};
+ return impl->style->getDefaultPitch();
}
#pragma mark - Toggles
@@ -1066,26 +1000,21 @@ MapDebugOptions Map::getDebug() const {
}
bool Map::isFullyLoaded() const {
- return impl->style && impl->style->isLoaded() && impl->renderStyle->isLoaded();
+ return impl->style && impl->style->isLoaded() && impl->renderStyle && impl->renderStyle->isLoaded();
}
style::TransitionOptions Map::getTransitionOptions() const {
- if (impl->style) {
- return impl->style->getTransitionOptions();
- }
- return {};
+ return impl->style->getTransitionOptions();
}
void Map::setTransitionOptions(const style::TransitionOptions& options) {
- if (impl->style) {
- impl->style->setTransitionOptions(options);
- }
+ impl->style->setTransitionOptions(options);
}
void Map::setSourceTileCacheSize(size_t size) {
if (size != impl->sourceCacheSize) {
impl->sourceCacheSize = size;
- if (!impl->style) return;
+ if (!impl->renderStyle) return;
impl->renderStyle->setSourceTileCacheSize(size);
impl->backend.invalidate();
}
@@ -1133,11 +1062,9 @@ void Map::Impl::onResourceError(std::exception_ptr error) {
void Map::dumpDebugLogs() const {
Log::Info(Event::General, "--------------------------------------------------------------------------------");
Log::Info(Event::General, "MapContext::styleURL: %s", impl->styleURL.c_str());
- if (impl->style) {
- impl->style->dumpDebugLogs();
+ impl->style->dumpDebugLogs();
+ if (impl->renderStyle) {
impl->renderStyle->dumpDebugLogs();
- } else {
- Log::Info(Event::General, "no style loaded");
}
Log::Info(Event::General, "--------------------------------------------------------------------------------");
}
diff --git a/test/api/api_misuse.test.cpp b/test/api/api_misuse.test.cpp
index af703fddfb..54cde8d9b5 100644
--- a/test/api/api_misuse.test.cpp
+++ b/test/api/api_misuse.test.cpp
@@ -44,31 +44,3 @@ TEST(API, RenderWithoutCallback) {
EXPECT_EQ(log->count(logMessage), 1u);
}
-
-TEST(API, RenderWithoutStyle) {
- util::RunLoop loop;
-
- HeadlessBackend backend { test::sharedDisplay() };
- BackendScope scope { backend };
- OffscreenView view { backend.getContext(), { 128, 512 } };
- StubFileSource fileSource;
- ThreadPool threadPool(4);
-
- Map map(backend, view.getSize(), 1, fileSource, threadPool, MapMode::Still);
-
- std::exception_ptr error;
- map.renderStill(view, [&](std::exception_ptr error_) {
- error = error_;
- loop.stop();
- });
-
- loop.run();
-
- try {
- std::rethrow_exception(error);
- } catch (const util::MisuseException& ex) {
- EXPECT_EQ(std::string(ex.what()), "Map doesn't have a style");
- } catch (const std::exception&) {
- EXPECT_TRUE(false) << "Unhandled exception.";
- }
-}