src/relpipe-in-ini.cpp
branchv_0
changeset 37 3dcb206894c7
parent 0 16c7fa9b7c49
equal deleted inserted replaced
36:b4fbf2772cfd 37:3dcb206894c7
    51 		INICommand command;
    51 		INICommand 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 (RelpipeWriterException e) {
    55 	} catch (RelpipeWriterException e) {
    56 		fwprintf(stderr, L"Caught Writer exception: %ls\n", e.getMessge().c_str());
    56 		fwprintf(stderr, L"Caught Writer 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 = CLI::EXIT_CODE_DATA_ERROR;
    58 		resultCode = CLI::EXIT_CODE_DATA_ERROR;
    59 	}
    59 	}
    60 
    60 
    61 	return resultCode;
    61 	return resultCode;