mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-21 03:55:00 +00:00
72 lines
1.3 KiB
C++
72 lines
1.3 KiB
C++
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <sys/mman.h>
|
|
#include "memfile.hpp"
|
|
|
|
#define INCREMENT 131072
|
|
#define INITIAL 256
|
|
|
|
struct memfile *memfile_open(int fd) {
|
|
if (ftruncate(fd, INITIAL) != 0) {
|
|
return NULL;
|
|
}
|
|
|
|
char *map = (char *) mmap(NULL, INITIAL, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
|
|
if (map == MAP_FAILED) {
|
|
return NULL;
|
|
}
|
|
|
|
struct memfile *mf = new memfile;
|
|
if (mf == NULL) {
|
|
munmap(map, INITIAL);
|
|
return NULL;
|
|
}
|
|
|
|
mf->fd = fd;
|
|
mf->map = map;
|
|
mf->len = INITIAL;
|
|
mf->off = 0;
|
|
mf->tree = 0;
|
|
|
|
return mf;
|
|
}
|
|
|
|
int memfile_close(struct memfile *file) {
|
|
if (munmap(file->map, file->len) != 0) {
|
|
return -1;
|
|
}
|
|
|
|
if (file->fd >= 0) {
|
|
if (close(file->fd) != 0) {
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
delete file;
|
|
return 0;
|
|
}
|
|
|
|
int memfile_write(struct memfile *file, void *s, long long len) {
|
|
if (file->off + len > file->len) {
|
|
if (munmap(file->map, file->len) != 0) {
|
|
return -1;
|
|
}
|
|
|
|
file->len += (len + INCREMENT + 1) / INCREMENT * INCREMENT;
|
|
|
|
if (ftruncate(file->fd, file->len) != 0) {
|
|
return -1;
|
|
}
|
|
|
|
file->map = (char *) mmap(NULL, file->len, PROT_READ | PROT_WRITE, MAP_SHARED, file->fd, 0);
|
|
if (file->map == MAP_FAILED) {
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
memcpy(file->map + file->off, s, len);
|
|
file->off += len;
|
|
return len;
|
|
}
|