Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[tests] Added benchmarks for querying for features
Browse files Browse the repository at this point in the history
  • Loading branch information
tmpsantos committed Oct 4, 2016
1 parent 85854b4 commit bd21249
Show file tree
Hide file tree
Showing 7 changed files with 11,424 additions and 0 deletions.
72 changes: 72 additions & 0 deletions benchmark/api/query.benchmark.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
#include <benchmark/benchmark.h>

#include <mbgl/benchmark/util.hpp>
#include <mbgl/map/map.hpp>
#include <mbgl/platform/default/headless_display.hpp>
#include <mbgl/platform/default/headless_view.hpp>
#include <mbgl/sprite/sprite_image.hpp>
#include <mbgl/storage/default_file_source.hpp>
#include <mbgl/storage/network_status.hpp>
#include <mbgl/util/image.hpp>
#include <mbgl/util/io.hpp>
#include <mbgl/util/run_loop.hpp>

using namespace mbgl;

namespace {

class QueryBenchmark {
public:
QueryBenchmark() {
NetworkStatus::Set(NetworkStatus::Status::Offline);
fileSource.setAccessToken("foobar");

map.setStyleJSON(util::read_file("benchmark/fixtures/api/query_style.json"));
map.setLatLngZoom({ 40.726989, -73.992857 }, 15); // Manhattan

auto decoded = decodeImage(util::read_file("benchmark/fixtures/api/default_marker.png"));
auto image = std::make_unique<SpriteImage>(std::move(decoded), 1.0);
map.addImage("test-icon", std::move(image));

view.resize(1000, 1000);

mbgl::benchmark::render(map);
}

util::RunLoop loop;
std::shared_ptr<HeadlessDisplay> display{ std::make_shared<HeadlessDisplay>() };
HeadlessView view{ display, 1 };
DefaultFileSource fileSource{ "benchmark/fixtures/api/cache.db", "." };
Map map{ view, fileSource, MapMode::Still };
ScreenBox box{{ 0, 0 }, { 1000, 1000 }};
};

} // end namespace

static void API_queryRenderedFeaturesAll(::benchmark::State& state) {
QueryBenchmark bench;

while (state.KeepRunning()) {
bench.map.queryRenderedFeatures(bench.box);
}
}

static void API_queryRenderedFeaturesLayerFromLowDensity(::benchmark::State& state) {
QueryBenchmark bench;

while (state.KeepRunning()) {
bench.map.queryRenderedFeatures(bench.box, {{ "testlayer" }});
}
}

static void API_queryRenderedFeaturesLayerFromHighDensity(::benchmark::State& state) {
QueryBenchmark bench;

while (state.KeepRunning()) {
bench.map.queryRenderedFeatures(bench.box, {{ "road-street" }});
}
}

BENCHMARK(API_queryRenderedFeaturesAll);
BENCHMARK(API_queryRenderedFeaturesLayerFromLowDensity);
BENCHMARK(API_queryRenderedFeaturesLayerFromHighDensity);
Binary file added benchmark/fixtures/api/cache.db
Binary file not shown.
Binary file added benchmark/fixtures/api/default_marker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit bd21249

Please sign in to comment.