# HG changeset patch # User Chris Cannam # Date 1477581237 -3600 # Node ID 6b11ca6bb0a38801451ce3122b5d6899149af40e # Parent 2380d586535517ff8f9ba7b33367adff89e3245c Binary modes diff -r 2380d5865355 -r 6b11ca6bb0a3 vamp-server/convert.cpp --- a/vamp-server/convert.cpp Thu Oct 27 14:52:30 2016 +0100 +++ b/vamp-server/convert.cpp Thu Oct 27 16:13:57 2016 +0100 @@ -44,6 +44,12 @@ #include +// for _setmode stuff +#ifdef _WIN32 +#include +#include +#endif + using namespace std; using namespace json11; using namespace piper_vamp; @@ -622,6 +628,23 @@ usage(); } +#ifdef _WIN32 + if (informat == "capnp") { + int result = _setmode(_fileno(stdin), _O_BINARY); + if (result == -1) { + cerr << "Failed to set binary mode on stdin, necessary for capnp format" << endl; + exit(1); + } + } + if (outformat == "capnp") { + int result = _setmode(_fileno(stdout), _O_BINARY); + if (result == -1) { + cerr << "Failed to set binary mode on stdout, necessary for capnp format" << endl; + exit(1); + } + } +#endif + while (true) { try { diff -r 2380d5865355 -r 6b11ca6bb0a3 vamp-server/server.cpp --- a/vamp-server/server.cpp Thu Oct 27 14:52:30 2016 +0100 +++ b/vamp-server/server.cpp Thu Oct 27 16:13:57 2016 +0100 @@ -57,6 +57,12 @@ static int pid = getpid(); #endif +// for _setmode stuff +#ifdef _WIN32 +#include +#include +#endif + using namespace std; using namespace json11; using namespace piper_vamp; @@ -549,6 +555,21 @@ usage(); } +#ifdef _WIN32 + if (format == "capnp") { + int result = _setmode(_fileno(stdin), _O_BINARY); + if (result == -1) { + cerr << "Failed to set binary mode on stdin, necessary for capnp format" << endl; + exit(1); + } + result = _setmode(_fileno(stdout), _O_BINARY); + if (result == -1) { + cerr << "Failed to set binary mode on stdout, necessary for capnp format" << endl; + exit(1); + } + } +#endif + if (debug) { cerr << myname << " " << pid << ": waiting for format: " << format << endl; }