1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2009 Sun Microsystems
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.
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.
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
21
#include <drizzled/global.h>
22
#include <sys/types.h>
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>
38
using namespace drizzled;
39
using namespace google;
42
static void print_table(const message::Table &table)
44
string proto_as_text("");
46
protobuf::TextFormat::PrintToString(table, &proto_as_text);
48
cout << proto_as_text;
51
int main(int argc, char* argv[])
53
GOOGLE_PROTOBUF_VERIFY_VERSION;
56
fprintf(stderr, "Usage: %s SCHEMA\n", argv[0]);
63
int fd= open(argv[1], O_RDONLY);
67
perror("Failed to open table definition file");
71
protobuf::io::ZeroCopyInputStream* input=
72
new protobuf::io::FileInputStream(fd);
74
if (!table.ParseFromZeroCopyStream(input))
76
fprintf(stderr, "Failed to parse table.");