aboutsummaryrefslogtreecommitdiff
path: root/odb/sql-token.cxx
blob: fe6b836c3be9d445c15740172876bee70bf8b3f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// file      : odb/sql-token.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v3; see accompanying LICENSE file

#include <iostream>

#include <odb/sql-token.hxx>

using namespace std;

static char punctuation_literals[] = {';', ',', '(', ')', '='};

ostream&
operator<< (ostream& os, sql_token const& t)
{
  switch (t.type ())
  {
  case sql_token::t_eos:
    {
      os << "<end-of-stream>";
      break;
    }
  case sql_token::t_identifier:
    {
      os << t.identifier ();
      break;
    }
  case sql_token::t_punctuation:
    {
      os << punctuation_literals[t.punctuation ()];
      break;
    }
  case sql_token::t_string_lit:
  case sql_token::t_int_lit:
  case sql_token::t_float_lit:
    {
      os << t.literal ();
      break;
    }
  }

  return os;
}