~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/serialize/schema_reader.cc

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

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
1
#include <iostream>
21
2
#include <fstream>
22
3
#include <string>
23
 
#include <drizzled/message/schema.pb.h>
24
 
 
 
4
#include <drizzled/serialize/schema.pb.h>
25
5
using namespace std;
26
 
using namespace drizzled;
27
 
 
28
6
 
29
7
/*
30
8
  Written from Google proto example
31
9
*/
32
10
 
33
 
static void printSchema(const message::Schema *schema)
 
11
void printSchema(const drizzle::Schema *schema)
34
12
{
35
13
  cout << "CREATE SCHEMA `" << schema->name() << "` ";
36
14
  if (schema->has_collation())
37
15
    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
16
  cout << ";" << endl;
46
17
}
47
18
 
54
25
    return -1;
55
26
  }
56
27
 
57
 
  message::Schema schema;
 
28
  drizzle::Schema schema;
58
29
 
59
30
  {
60
31
    // Read the existing address book.