// file      : tests/tab-parser/driver.cxx -*- C++ -*-
// license   : MIT; see accompanying LICENSE file

#include <cassert>

#ifndef __cpp_lib_modules_ts
#include <string>
#include <iostream>
#endif

// Other includes.

#ifdef __cpp_modules_ts
#ifdef __cpp_lib_modules_ts
import std.core;
import std.io;
#endif
import butl.utility;    // operator<<(ostream,exception)
import butl.tab_parser;
#else
#include <libbutl/utility.mxx>
#include <libbutl/tab-parser.mxx>
#endif

using namespace std;
using namespace butl;

// Usage: argv[0] [-l]
//
// Read and parse tab-file from STDIN and print fields to STDOUT.
//
// -l  output each field on a separate line
//
int
main (int argc, char* argv[])
try
{
  assert (argc <= 2);
  bool fpl (false); // Print field per line.

  if (argc == 2)
  {
    assert (argv[1] == string ("-l"));
    fpl = true;
  }

  cin.exceptions  (ios::failbit | ios::badbit);
  cout.exceptions (ios::failbit | ios::badbit);

  tab_fields tl;
  tab_parser parser (cin, "cin");

  while (!(tl = parser.next ()).empty ())
  {
    if (!fpl)
    {
      for (auto b (tl.cbegin ()), i (b), e (tl.cend ()); i != e; ++i)
      {
        if (i != b)
          cout << ' ';

        cout << i->value;
      }

      cout << '\n';
    }
    else
    {
      for (const auto& tf: tl)
        cout << tf.value << '\n';
    }
  }

  return 0;
}
catch (const tab_parsing& e)
{
  cerr << e << endl;
  return 1;
}