~drizzle-trunk/drizzle/development

1119.8.2 by Stewart Smith
fix up some style things in table_raw_reader
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2009 Sun Microsystems
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; either version 2 of the License, or
9
 *  (at your option) any later version.
10
 *
11
 *  This program is distributed in the hope that it will be useful,
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 *  GNU General Public License for more details.
15
 *
16
 *  You should have received a copy of the GNU General Public License
17
 *  along with this program; if not, write to the Free Software
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 */
20
1119.8.3 by Stewart Smith
include global.h first for table proto readers
21
#include <drizzled/global.h>
1119.8.1 by Stewart Smith
Add simple table proto reader that reads the raw proto and then dumps out the text serialisation of that proto
22
#include <sys/types.h>
23
#include <sys/stat.h>
24
#include <fcntl.h>
25
#include <string.h>
26
#include <stdio.h>
27
#include <errno.h>
28
#include <unistd.h>
29
30
#include <iostream>
31
#include <string>
32
#include <drizzled/message/table.pb.h>
33
#include <google/protobuf/io/zero_copy_stream.h>
34
#include <google/protobuf/io/zero_copy_stream_impl.h>
35
#include <google/protobuf/text_format.h>
36
37
using namespace std;
38
using namespace drizzled;
39
using namespace google;
40
41
42
static void print_table(const message::Table &table)
43
{
44
  string proto_as_text("");
45
46
  protobuf::TextFormat::PrintToString(table, &proto_as_text);
47
48
  cout << proto_as_text;
49
}
50
51
int main(int argc, char* argv[])
52
{
53
  GOOGLE_PROTOBUF_VERIFY_VERSION;
54
55
  if (argc != 2) {
1119.8.2 by Stewart Smith
fix up some style things in table_raw_reader
56
    fprintf(stderr, "Usage: %s SCHEMA\n", argv[0]);
1119.8.1 by Stewart Smith
Add simple table proto reader that reads the raw proto and then dumps out the text serialisation of that proto
57
    return -1;
58
  }
59
60
  message::Table table;
61
62
  {
63
    int fd= open(argv[1], O_RDONLY);
64
1119.8.2 by Stewart Smith
fix up some style things in table_raw_reader
65
    if (fd == -1)
1119.8.1 by Stewart Smith
Add simple table proto reader that reads the raw proto and then dumps out the text serialisation of that proto
66
    {
67
      perror("Failed to open table definition file");
68
      return -1;
69
    }
70
71
    protobuf::io::ZeroCopyInputStream* input=
72
      new protobuf::io::FileInputStream(fd);
73
74
    if (!table.ParseFromZeroCopyStream(input))
75
    {
1119.8.2 by Stewart Smith
fix up some style things in table_raw_reader
76
      fprintf(stderr, "Failed to parse table.");
1119.8.1 by Stewart Smith
Add simple table proto reader that reads the raw proto and then dumps out the text serialisation of that proto
77
      close(fd);
78
      return -1;
79
    }
80
81
    close(fd);
82
  }
83
84
  print_table(table);
85
86
  return 0;
87
}