forked from systemed/tilemaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelpers.cpp
More file actions
253 lines (206 loc) · 6.79 KB
/
helpers.cpp
File metadata and controls
253 lines (206 loc) · 6.79 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
#include <string>
#include <stdexcept>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <cstring>
#include <boost/lexical_cast.hpp>
#include <boost/algorithm/string.hpp>
#include <sys/stat.h>
#include "external/libdeflate/libdeflate.h"
#include "helpers.h"
#ifdef _MSC_VER
#define stat64 __stat64
#endif
#if defined(__APPLE__)
#define stat64 stat
#endif
#define MOD_GZIP_ZLIB_WINDOWSIZE 15
#define MOD_GZIP_ZLIB_CFACTOR 9
#define MOD_GZIP_ZLIB_BSIZE 8096
using namespace std;
class Compressor {
public:
int level;
libdeflate_compressor* compressor;
Compressor(int level): level(level), compressor(NULL) {
setLevel(level);
}
void setLevel(int level) {
libdeflate_free_compressor(compressor);
this->level = level;
compressor = libdeflate_alloc_compressor(level);
if (!compressor)
throw std::runtime_error("libdeflate_alloc_compressor failed (level=" + std::to_string(level) + ")");
}
Compressor & operator=(const Compressor&) = delete;
Compressor(const Compressor&) = delete;
~Compressor() {
libdeflate_free_compressor(compressor);
}
};
class Decompressor {
public:
libdeflate_decompressor* decompressor;
Decompressor(): decompressor(NULL) {
decompressor = libdeflate_alloc_decompressor();
if (!decompressor)
throw std::runtime_error("libdeflate_alloc_decompressor failed");
}
Decompressor & operator=(const Decompressor&) = delete;
Decompressor(const Decompressor&) = delete;
~Decompressor() {
libdeflate_free_decompressor(decompressor);
}
};
thread_local Compressor compressor(6);
thread_local Decompressor decompressor;
// Bounding box string parsing
double bboxElementFromStr(const std::string& number) {
try {
return boost::lexical_cast<double>(number);
} catch (boost::bad_lexical_cast&) {
std::cerr << "Failed to parse coordinate " << number << std::endl;
exit(1);
}
}
// Split bounding box provided as a comma-separated list of coordinates.
std::vector<std::string> parseBox(const std::string& bbox) {
std::vector<std::string> bboxParts;
if (!bbox.empty()) {
boost::split(bboxParts, bbox, boost::is_any_of(","));
if (bboxParts.size() != 4) {
std::cerr << "Bounding box must contain 4 elements: minlon,minlat,maxlon,maxlat" << std::endl;
exit(1);
}
}
return bboxParts;
}
// Compress a STL string using zlib with given compression level, and return the binary data
std::string compress_string(const std::string& str,
int compressionlevel,
bool asGzip) {
if (compressionlevel == Z_DEFAULT_COMPRESSION)
compressionlevel = 6;
if (compressionlevel != compressor.level)
compressor.setLevel(compressionlevel);
std::string rv;
if (asGzip) {
size_t maxSize = libdeflate_gzip_compress_bound(compressor.compressor, str.size());
rv.resize(maxSize);
size_t compressedSize = libdeflate_gzip_compress(compressor.compressor, str.data(), str.size(), &rv[0], maxSize);
if (compressedSize == 0)
throw std::runtime_error("libdeflate_gzip_compress failed");
rv.resize(compressedSize);
} else {
size_t maxSize = libdeflate_zlib_compress_bound(compressor.compressor, str.size());
rv.resize(maxSize);
size_t compressedSize = libdeflate_zlib_compress(compressor.compressor, str.data(), str.size(), &rv[0], maxSize);
if (compressedSize == 0)
throw std::runtime_error("libdeflate_zlib_compress failed");
rv.resize(compressedSize);
}
return rv;
}
// Decompress an STL string using zlib and return the original data.
// The output buffer is passed in; callers are meant to re-use the buffer such
// that eventually no allocations are needed when decompressing.
void decompress_string(std::string& output, const char* input, uint32_t inputSize, bool asGzip) {
size_t uncompressedSize;
if (output.size() < inputSize)
output.resize(inputSize);
while (true) {
libdeflate_result rv = LIBDEFLATE_BAD_DATA;
if (asGzip) {
rv = libdeflate_gzip_decompress(
decompressor.decompressor,
input,
inputSize,
&output[0],
output.size(),
&uncompressedSize
);
} else {
rv = libdeflate_zlib_decompress(
decompressor.decompressor,
input,
inputSize,
&output[0],
output.size(),
&uncompressedSize
);
}
if (rv == LIBDEFLATE_SUCCESS) {
output.resize(uncompressedSize);
return;
}
if (rv == LIBDEFLATE_INSUFFICIENT_SPACE) {
output.resize((output.size() + 128) * 2);
} else
throw std::runtime_error("libdeflate_gzip_decompress failed");
}
}
// Parse a Boost error
std::string boost_validity_error(unsigned failure) {
switch (failure) {
case 10: return "too few points";
case 11: return "wrong topological dimension";
case 12: return "spikes (nodes go back on themselves)";
case 13: return "consecutive duplicate points";
case 20: return "not been closed";
case 21: return "self-intersections";
case 22: return "the wrong orientation";
case 30: return "interior rings outside";
case 31: return "nested interior rings";
case 32: return "disconnected interior (contains polygons whose interiors are not disjoint)";
case 40: return "intersecting interiors";
default: return "something mysterious wrong with it, Boost validity_failure_type " + to_string(failure);
}
}
uint64_t getFileSize(std::string filename) {
struct stat64 statBuf;
int rc = stat64(filename.c_str(), &statBuf);
if (rc == 0) return statBuf.st_size;
throw std::runtime_error("unable to stat " + filename);
}
// Given a file, attempt to divide it into N chunks, with each chunk separated
// by a newline.
//
// Useful for dividing a JSON lines file into blocks suitable for parallel processing.
std::vector<OffsetAndLength> getNewlineChunks(const std::string &filename, uint64_t chunks) {
std::vector<OffsetAndLength> rv;
const uint64_t size = getFileSize(filename);
const uint64_t chunkSize = std::max<uint64_t>(size / chunks, 1ul);
FILE* fp = fopen(filename.c_str(), "r");
// Our approach is naive: skip chunkSize bytes, scan for a newline, repeat.
//
// Per UTF-8's ascii transparency property, a newline is guaranteed not to form
// part of any multi-byte character, so the byte '\n' reliably indicates a safe
// place to start a new chunk.
uint64_t offset = 0;
uint64_t length = 0;
char buffer[8192];
while (offset < size) {
// The last chunk will not be a full `chunkSize`.
length = std::min(chunkSize, size - offset);
if (fseek(fp, offset + length, SEEK_SET) != 0) throw std::runtime_error("unable to seek to " + std::to_string(offset) + " in " + filename);
bool foundNewline = false;
while(!foundNewline) {
size_t read = fread(buffer, 1, sizeof(buffer), fp);
if (read == 0) break;
for (int i = 0; i < read; i++) {
if (buffer[i] == '\n') {
length += i;
foundNewline = true;
break;
}
}
if (!foundNewline) length += read;
}
rv.push_back({offset, length});
offset += length;
}
fclose(fp);
return rv;
}