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

Binary modes
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 27 Oct 2016 16:13:57 +0100
parents ff3fd8d1b2dc
children 5b113c87b6e6
comparison
equal deleted inserted replaced
122:2380d5865355 123:6b11ca6bb0a3
41 #include <iostream> 41 #include <iostream>
42 #include <sstream> 42 #include <sstream>
43 #include <stdexcept> 43 #include <stdexcept>
44 44
45 #include <capnp/serialize.h> 45 #include <capnp/serialize.h>
46
47 // for _setmode stuff
48 #ifdef _WIN32
49 #include <io.h>
50 #include <fcntl.h>
51 #endif
46 52
47 using namespace std; 53 using namespace std;
48 using namespace json11; 54 using namespace json11;
49 using namespace piper_vamp; 55 using namespace piper_vamp;
50 56
620 626
621 if (informat == "" || outformat == "" || !haveDirection) { 627 if (informat == "" || outformat == "" || !haveDirection) {
622 usage(); 628 usage();
623 } 629 }
624 630
631 #ifdef _WIN32
632 if (informat == "capnp") {
633 int result = _setmode(_fileno(stdin), _O_BINARY);
634 if (result == -1) {
635 cerr << "Failed to set binary mode on stdin, necessary for capnp format" << endl;
636 exit(1);
637 }
638 }
639 if (outformat == "capnp") {
640 int result = _setmode(_fileno(stdout), _O_BINARY);
641 if (result == -1) {
642 cerr << "Failed to set binary mode on stdout, necessary for capnp format" << endl;
643 exit(1);
644 }
645 }
646 #endif
647
625 while (true) { 648 while (true) {
626 649
627 try { 650 try {
628 651
629 RequestOrResponse rr = readInput(informat, direction); 652 RequestOrResponse rr = readInput(informat, direction);