mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-19 19:45:12 +00:00
65aaa607ab
Change made by: - running "gvt fetch" on each of the packages mentioned in Godeps/Godeps.json - `rm -rf Godeps` - tweaking the build scripts to not mention Godeps - tweaking the build scripts to test `./lib/...`, `./cmd/...` explicitly (to avoid testing vendor) - tweaking the build scripts to not juggle GOPATH for Godeps and instead set GO15VENDOREXPERIMENT. This also results in some updated packages at the same time I bet. Building with Go 1.3 and 1.4 still *works* but won't use our vendored dependencies - the user needs to have the actual packages in their GOPATH then, which they'll get with a normal "go get". Building with Go 1.6+ will get our vendored dependencies by default even when not using our build script, which is nice. By doing this we gain some freedom in that we can pick and choose manually what to include in vendor, as it's not based on just dependency analysis of our own code. This is also a risk as we might pick up dependencies we are unaware of, as the build may work locally with those packages present in GOPATH. On the other hand the build server will detect this as it has no packages in it's GOPATH beyond what is included in the repo. Recommended tool to manage dependencies is github.com/FiloSottile/gvt.
75 lines
1.6 KiB
C++
75 lines
1.6 KiB
C++
/*
|
|
To build the snappytool binary:
|
|
g++ main.cpp /usr/lib/libsnappy.a -o snappytool
|
|
*/
|
|
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include "snappy.h"
|
|
|
|
#define N 1000000
|
|
|
|
char dst[N];
|
|
char src[N];
|
|
|
|
int main(int argc, char** argv) {
|
|
// Parse args.
|
|
if (argc != 2) {
|
|
fprintf(stderr, "exactly one of -d or -e must be given\n");
|
|
return 1;
|
|
}
|
|
bool decode = strcmp(argv[1], "-d") == 0;
|
|
bool encode = strcmp(argv[1], "-e") == 0;
|
|
if (decode == encode) {
|
|
fprintf(stderr, "exactly one of -d or -e must be given\n");
|
|
return 1;
|
|
}
|
|
|
|
// Read all of stdin into src[:s].
|
|
size_t s = 0;
|
|
while (1) {
|
|
if (s == N) {
|
|
fprintf(stderr, "input too large\n");
|
|
return 1;
|
|
}
|
|
ssize_t n = read(0, src+s, N-s);
|
|
if (n == 0) {
|
|
break;
|
|
}
|
|
if (n < 0) {
|
|
fprintf(stderr, "read error: %s\n", strerror(errno));
|
|
// TODO: handle EAGAIN, EINTR?
|
|
return 1;
|
|
}
|
|
s += n;
|
|
}
|
|
|
|
// Encode or decode src[:s] to dst[:d], and write to stdout.
|
|
size_t d = 0;
|
|
if (encode) {
|
|
if (N < snappy::MaxCompressedLength(s)) {
|
|
fprintf(stderr, "input too large after encoding\n");
|
|
return 1;
|
|
}
|
|
snappy::RawCompress(src, s, dst, &d);
|
|
} else {
|
|
if (!snappy::GetUncompressedLength(src, s, &d)) {
|
|
fprintf(stderr, "could not get uncompressed length\n");
|
|
return 1;
|
|
}
|
|
if (N < d) {
|
|
fprintf(stderr, "input too large after decoding\n");
|
|
return 1;
|
|
}
|
|
if (!snappy::RawUncompress(src, s, dst)) {
|
|
fprintf(stderr, "input was not valid Snappy-compressed data\n");
|
|
return 1;
|
|
}
|
|
}
|
|
write(1, dst, d);
|
|
return 0;
|
|
}
|