~drizzle-trunk/drizzle/development

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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 *
 *  Copyright (C) 2009 Sun Microsystems, Inc.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

/* 
  This is a "work in progress". The concept needs to be replicated throughout
  the code, but we will start with baby steps for the moment. To not incur
  cost until we are complete, for the moment it will do no allocation.

  This is mainly here so that it can be used in the SE interface for
  the time being.

  This will replace Table_ident.
  */

#ifndef DRIZZLED_IDENTIFIER_SCHEMA_H
#define DRIZZLED_IDENTIFIER_SCHEMA_H

#include <drizzled/enum.h>
#include "drizzled/definitions.h"
#include "drizzled/message/table.pb.h"
#include <string.h>

#include <assert.h>

#include <ostream>
#include <list>
#include <algorithm>
#include <functional>
#include <iostream>

#include <boost/algorithm/string.hpp>

namespace drizzled {

static std::string catalog("local");

class SchemaIdentifier : public Identifier
{
  std::string db;
  std::string db_path;
  std::string catalog;

public:
  typedef std::vector <SchemaIdentifier> vector;
  typedef const SchemaIdentifier& const_reference;

  SchemaIdentifier(const std::string &db_arg);

  virtual ~SchemaIdentifier()
  { }

  virtual void getSQLPath(std::string &arg) const;

  const std::string &getPath() const;

  const std::string &getSchemaName() const
  {
    return db;
  }

  const std::string &getCatalogName() const
  {
    return catalog;
  }

  virtual bool isValid() const;

  bool compare(const std::string &arg) const;
  bool compare(SchemaIdentifier::const_reference) const;

  friend bool operator<(SchemaIdentifier::const_reference left, SchemaIdentifier::const_reference right)
  {
    return  boost::algorithm::to_upper_copy(left.getSchemaName()) < boost::algorithm::to_upper_copy(right.getSchemaName());
  }

  friend std::ostream& operator<<(std::ostream& output,
                                  SchemaIdentifier::const_reference identifier)
  {
    output << "SchemaIdentifier:(";
    output <<  identifier.catalog;
    output << ", ";
    output <<  identifier.db;
    output << ", ";
    output << identifier.getPath();
    output << ")";

    return output;  // for multiple << operators.
  }

  friend bool operator==(SchemaIdentifier::const_reference left,
                         SchemaIdentifier::const_reference right)
  {
    return boost::iequals(left.getSchemaName(), right.getSchemaName());
  }
};


} /* namespace drizzled */

#endif /* DRIZZLED_IDENTIFIER_SCHEMA_H */