src/relpipe-in-csv.cpp
branchv_0
changeset 23 1ade50eee150
parent 19 0d858e0eedf8
equal deleted inserted replaced
22:3f6488171e34 23:1ade50eee150
    51 		CSVCommand command;
    51 		CSVCommand command;
    52 		std::shared_ptr<RelationalWriter> writer(Factory::create(std::cout));
    52 		std::shared_ptr<RelationalWriter> writer(Factory::create(std::cout));
    53 		command.process(cin, writer, configuration);
    53 		command.process(cin, writer, configuration);
    54 		resultCode = CLI::EXIT_CODE_SUCCESS;
    54 		resultCode = CLI::EXIT_CODE_SUCCESS;
    55 	} catch (RelpipeCLIException e) {
    55 	} catch (RelpipeCLIException e) {
    56 		fwprintf(stderr, L"Caught CLI exception: %ls\n", e.getMessge().c_str());
    56 		fwprintf(stderr, L"Caught CLI exception: %ls\n", e.getMessage().c_str());
    57 		fwprintf(stderr, L"Debug: Input stream: eof=%ls, lastRead=%d\n", (cin.eof() ? L"true" : L"false"), cin.gcount());
    57 		fwprintf(stderr, L"Debug: Input stream: eof=%ls, lastRead=%d\n", (cin.eof() ? L"true" : L"false"), cin.gcount());
    58 		resultCode = e.getExitCode();
    58 		resultCode = e.getExitCode();
    59 	} catch (RelpipeWriterException e) {
    59 	} catch (RelpipeWriterException e) {
    60 		fwprintf(stderr, L"Caught Writer exception: %ls\n", e.getMessge().c_str());
    60 		fwprintf(stderr, L"Caught Writer exception: %ls\n", e.getMessage().c_str());
    61 		fwprintf(stderr, L"Debug: Input stream: eof=%ls, lastRead=%d\n", (cin.eof() ? L"true" : L"false"), cin.gcount());
    61 		fwprintf(stderr, L"Debug: Input stream: eof=%ls, lastRead=%d\n", (cin.eof() ? L"true" : L"false"), cin.gcount());
    62 		resultCode = CLI::EXIT_CODE_DATA_ERROR;
    62 		resultCode = CLI::EXIT_CODE_DATA_ERROR;
    63 	}
    63 	}
    64 
    64 
    65 	return resultCode;
    65 	return resultCode;