~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema_reader.cc

  • Committer: Jim Winstead
  • Date: 2008-07-19 02:56:45 UTC
  • mto: (202.1.8 codestyle)
  • mto: This revision was merged to the branch mainline in revision 207.
  • Revision ID: jimw@mysql.com-20080719025645-w2pwytebgzusjzjb
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
Temporarily disables tab-completion in the drizzle client until an appropriate
autoconf check can be added/enabled.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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, Inc.
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; version 2 of the License.
9
 
 *
10
 
 *  This program is distributed in the hope that it will be useful,
11
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 *  GNU General Public License for more details.
14
 
 *
15
 
 *  You should have received a copy of the GNU General Public License
16
 
 *  along with this program; if not, write to the Free Software
17
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 
 */
19
 
 
20
 
#include <iostream>
21
 
#include <fstream>
22
 
#include <string>
23
 
#include <drizzled/message/schema.pb.h>
24
 
 
25
 
using namespace std;
26
 
using namespace drizzled;
27
 
 
28
 
 
29
 
/*
30
 
  Written from Google proto example
31
 
*/
32
 
 
33
 
static void printSchema(const message::Schema *schema)
34
 
{
35
 
  cout << "CREATE SCHEMA `" << schema->name() << "` ";
36
 
  if (schema->has_collation())
37
 
    cout << "COLLATE `" << schema->collation() << "` ";
38
 
 
39
 
  for (int option_nr=0; option_nr < schema->engine().options_size(); option_nr++)
40
 
  {
41
 
    cout << " " << schema->engine().options(option_nr).name() << " = "
42
 
         << "'" << schema->engine().options(option_nr).state() << "'";
43
 
  }
44
 
 
45
 
  cout << ";" << endl;
46
 
}
47
 
 
48
 
int main(int argc, char* argv[])
49
 
{
50
 
  GOOGLE_PROTOBUF_VERIFY_VERSION;
51
 
 
52
 
  if (argc != 2) {
53
 
    cerr << "Usage:  " << argv[0] << " SCHEMA" << endl;
54
 
    return -1;
55
 
  }
56
 
 
57
 
  message::Schema schema;
58
 
 
59
 
  {
60
 
    // Read the existing address book.
61
 
    fstream input(argv[1], ios::in | ios::binary);
62
 
    if (!schema.ParseFromIstream(&input))
63
 
    {
64
 
      cerr << "Failed to parse schema." << endl;
65
 
      return -1;
66
 
    }
67
 
  }
68
 
 
69
 
  printSchema(&schema);
70
 
 
71
 
  return 0;
72
 
}