comparison vamp-server/server.cpp @ 123:6b11ca6bb0a3

Binary modes
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 27 Oct 2016 16:13:57 +0100
parents 88ecaf8b163a
children
comparison
equal deleted inserted replaced
122:2380d5865355 123:6b11ca6bb0a3
53 #include <process.h> 53 #include <process.h>
54 static int pid = _getpid(); 54 static int pid = _getpid();
55 #else 55 #else
56 #include <unistd.h> 56 #include <unistd.h>
57 static int pid = getpid(); 57 static int pid = getpid();
58 #endif
59
60 // for _setmode stuff
61 #ifdef _WIN32
62 #include <io.h>
63 #include <fcntl.h>
58 #endif 64 #endif
59 65
60 using namespace std; 66 using namespace std;
61 using namespace json11; 67 using namespace json11;
62 using namespace piper_vamp; 68 using namespace piper_vamp;
547 553
548 if (format != "capnp" && format != "json") { 554 if (format != "capnp" && format != "json") {
549 usage(); 555 usage();
550 } 556 }
551 557
558 #ifdef _WIN32
559 if (format == "capnp") {
560 int result = _setmode(_fileno(stdin), _O_BINARY);
561 if (result == -1) {
562 cerr << "Failed to set binary mode on stdin, necessary for capnp format" << endl;
563 exit(1);
564 }
565 result = _setmode(_fileno(stdout), _O_BINARY);
566 if (result == -1) {
567 cerr << "Failed to set binary mode on stdout, necessary for capnp format" << endl;
568 exit(1);
569 }
570 }
571 #endif
572
552 if (debug) { 573 if (debug) {
553 cerr << myname << " " << pid << ": waiting for format: " << format << endl; 574 cerr << myname << " " << pid << ": waiting for format: " << format << endl;
554 } 575 }
555 576
556 while (true) { 577 while (true) {