From c0edefa721764cf2af3ce72aca9f8c99318b8c20 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 11 May 2016 14:23:39 -0700 Subject: [PATCH 1/3] Pack structures tighter to use a little less memory --- geometry.cpp | 2 +- geometry.hpp | 4 ++-- mvt.hpp | 6 +++--- tile.cpp | 7 +++++-- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/geometry.cpp b/geometry.cpp index e453f8e..88b3f7d 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -767,7 +767,7 @@ drawvec simple_clip_poly(drawvec &geom, long long minx, long long miny, long lon } drawvec simple_clip_poly(drawvec &geom, int z, int detail, int buffer) { - long long area = area = 1LL << (32 - z); + long long area = 1LL << (32 - z); long long clip_buffer = buffer * area / 256; return simple_clip_poly(geom, -clip_buffer, -clip_buffer, area + clip_buffer, area + clip_buffer); diff --git a/geometry.hpp b/geometry.hpp index a25f0b9..0d2b378 100644 --- a/geometry.hpp +++ b/geometry.hpp @@ -12,10 +12,10 @@ #define VT_BOOLEAN 7 struct draw { - signed char op; long long x; long long y; - int necessary; + signed char op; + signed char necessary; draw(int nop, long long nx, long long ny) { this->op = nop; diff --git a/mvt.hpp b/mvt.hpp index ce6361d..386fae1 100644 --- a/mvt.hpp +++ b/mvt.hpp @@ -8,9 +8,9 @@ enum mvt_operation { }; struct mvt_geometry { + int x; + int y; int /* mvt_operation */ op; - long long x; - long long y; mvt_geometry(int op, long long x, long long y); }; @@ -23,8 +23,8 @@ enum mvt_geometry_type { struct mvt_feature { std::vector tags; - int /* mvt_geometry_type */ type; std::vector geometry; + int /* mvt_geometry_type */ type; }; enum mvt_value_type { diff --git a/tile.cpp b/tile.cpp index 9df726c..885a57f 100644 --- a/tile.cpp +++ b/tile.cpp @@ -855,8 +855,7 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s } for (size_t i = 0; i < partials.size(); i++) { - std::vector pgeoms = partials[i].geoms; - partials[i].geoms.clear(); // avoid keeping two copies in memory + std::vector &pgeoms = partials[i].geoms; long long layer = partials[i].layer; signed char t = partials[i].t; long long original_seq = partials[i].original_seq; @@ -871,6 +870,7 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s c.index = partials[i].index; c.index2 = partials[i].index2; c.geom = pgeoms[j]; + pgeoms[j].clear(); c.coalesced = false; c.original_seq = original_seq; c.m = partials[i].m; @@ -882,6 +882,8 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s } } + partials.clear(); + int j; for (j = 0; j < child_shards; j++) { if (within[j]) { @@ -966,6 +968,7 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s feature.type = features[k][x].type; feature.geometry = to_feature(features[k][x].geom); count += features[k][x].geom.size(); + features[k][x].geom.clear(); decode_meta(features[k][x].m, &features[k][x].meta, features[k][x].stringpool, layer, feature); layer.features.push_back(feature); From f0e90620e469ccdc996d6843197ad72d35fe4978 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 11 May 2016 14:47:23 -0700 Subject: [PATCH 2/3] A little more structure packing --- tile.cpp | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/tile.cpp b/tile.cpp index 885a57f..b54a4e6 100644 --- a/tile.cpp +++ b/tile.cpp @@ -62,15 +62,15 @@ int coalindexcmp(const struct coalesce *c1, const struct coalesce *c2); static int is_integer(const char *s, long long *v); struct coalesce { - int type; - drawvec geom; - int m; char *meta; char *stringpool; + drawvec geom; unsigned long long index; unsigned long long index2; - bool coalesced; long long original_seq; + int type; + int m; + bool coalesced; bool operator<(const coalesce &o) const { int cmp = coalindexcmp(this, &o); @@ -372,20 +372,20 @@ void rewrite(drawvec &geom, int z, int nextzoom, int maxzoom, long long *bbox, u struct partial { std::vector geoms; - long long layer; - int m; char *meta; - signed char t; - int segment; - long long original_seq; - bool reduced; - unsigned long long index; - unsigned long long index2; - int z; - int line_detail; int *prevent; int *additional; + long long layer; + long long original_seq; + unsigned long long index; + unsigned long long index2; + int m; + int segment; + bool reduced; + int z; + int line_detail; int maxzoom; + signed char t; }; struct partial_arg { From 331deca4b4d7d66d16d68c5af1aec0c23a560860 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Fri, 13 May 2016 15:45:33 -0700 Subject: [PATCH 3/3] Use bitfields to further reduce data structure size --- CHANGELOG.md | 4 ++++ geometry.hpp | 7 +++++-- version.hpp | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59fdd28..899e5ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.11.6 + +* Reduce the size of critical data structures to reduce dynamic memory use + ## 1.11.5 * Let zoom level 0 have just as much extent and buffer as any other zoom diff --git a/geometry.hpp b/geometry.hpp index 0d2b378..35c1399 100644 --- a/geometry.hpp +++ b/geometry.hpp @@ -11,10 +11,13 @@ #define VT_NUMBER 2 #define VT_BOOLEAN 7 +// The bitfield is to make sizeof(draw) be 16 instead of 24 +// at the cost, apparently, of a 0.7% increase in running time +// for packing and unpacking. struct draw { - long long x; - long long y; + long long x : 40; signed char op; + long long y : 40; signed char necessary; draw(int nop, long long nx, long long ny) { diff --git a/version.hpp b/version.hpp index d533879..8a29be8 100644 --- a/version.hpp +++ b/version.hpp @@ -1 +1 @@ -#define VERSION "tippecanoe v1.11.5\n" +#define VERSION "tippecanoe v1.11.6\n"