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
22
This is a "work in progress". The concept needs to be replicated throughout
23
the code, but we will start with baby steps for the moment. To not incur
24
cost until we are complete, for the moment it will do no allocation.
26
This is mainly here so that it can be used in the SE interface for
29
This will replace Table_ident.
32
#ifndef DRIZZLED_IDENTIFIER_SCHEMA_H
33
#define DRIZZLED_IDENTIFIER_SCHEMA_H
35
#include <drizzled/enum.h>
36
#include "drizzled/definitions.h"
37
#include "drizzled/message/table.pb.h"
48
#include <boost/algorithm/string.hpp>
52
static std::string catalog("local");
54
class SchemaIdentifier
61
typedef std::vector <SchemaIdentifier> vector;
62
typedef const SchemaIdentifier& const_reference;
64
SchemaIdentifier(const std::string &db_arg);
66
virtual ~SchemaIdentifier()
69
virtual void getSQLPath(std::string &arg) const;
70
const std::string &getPath() const;
72
const std::string &getSchemaName() const
77
const std::string &getCatalogName() const
82
virtual bool isValid() const;
84
bool compare(const std::string &arg) const;
85
bool compare(SchemaIdentifier::const_reference) const;
87
friend bool operator<(SchemaIdentifier::const_reference left, SchemaIdentifier::const_reference right)
89
return boost::algorithm::to_upper_copy(left.getSchemaName()) < boost::algorithm::to_upper_copy(right.getSchemaName());
92
friend std::ostream& operator<<(std::ostream& output,
93
SchemaIdentifier::const_reference identifier)
95
output << "SchemaIdentifier:(";
96
output << identifier.catalog;
98
output << identifier.db;
100
output << identifier.getPath();
103
return output; // for multiple << operators.
106
friend bool operator==(SchemaIdentifier::const_reference left,
107
SchemaIdentifier::const_reference right)
109
return boost::iequals(left.getSchemaName(), right.getSchemaName());
114
} /* namespace drizzled */
116
#endif /* DRIZZLED_IDENTIFIER_SCHEMA_H */