relpipe-in-cli.cpp
author František Kučera <franta-hg@frantovo.cz>
Fri, 27 Jul 2018 00:07:16 +0200
branchv_0
changeset 9 3be327f67cdd
parent 8 c1472544d95a
child 10 77593735b057
permissions -rw-r--r--
more records

#include <cstdlib>
#include <memory>

#include <tuple>

#include <RelationalWriter.h>
#include <Factory.h>
#include <TypeId.h>

int main(int argc, char** argv) {
	using namespace relpipe::writer;
	std::shared_ptr<RelationalWriter> writer(Factory::create(std::cout));


	// Various data types passed as strings
	writer->startRelation(L"table_from_strings",{
		{L"s", TypeId::STRING},
		{L"i", TypeId::INTEGER},
		{L"b", TypeId::BOOLEAN}
	}, true);

	writer->writeAttribute(L"a");
	writer->writeAttribute(L"1");
	writer->writeAttribute(L"true");

	writer->writeAttribute(L"b");
	writer->writeAttribute(L"2");
	writer->writeAttribute(L"false");


	// Various data types passed as raw pointers + typeids
	writer->startRelation(L"from_raw_pointers",{
		{L"s", TypeId::STRING},
		{L"i", TypeId::INTEGER},
		{L"b", TypeId::BOOLEAN}
	}, true);

	string_t sValue;
	integer_t iValue;
	boolean_t bValue;

	for (int i = 0; i < 8; i++) {
		sValue.append(L"*");
		iValue = i + 1;
		bValue = iValue % 2 == 0;
		writer->writeAttribute(&sValue, typeid (sValue));
		writer->writeAttribute(&iValue, typeid (iValue));
		writer->writeAttribute(&bValue, typeid (bValue));
	}

	return 0;
}