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
|
/* -*- 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
*/
#include <config.h>
#include <cassert>
#include <drizzled/errmsg_print.h>
#include <drizzled/gettext.h>
#include <drizzled/identifier.h>
#include <drizzled/session.h>
#include <drizzled/internal/my_sys.h>
#include <drizzled/catalog/local.h>
#include <drizzled/util/tablename_to_filename.h>
#include <drizzled/util/backtrace.h>
#include <drizzled/charset.h>
#include <algorithm>
#include <sstream>
#include <cstdio>
#include <boost/algorithm/string/compare.hpp>
using namespace std;
namespace drizzled {
namespace identifier {
Schema::Schema(str_ref db_arg) :
db(db_arg.data(), db_arg.size())
{
#if 0
string::size_type lastPos= db.find_first_of('/', 0);
if (lastPos != std::string::npos)
{
catalog= db.substr(0, lastPos);
db.erase(0, lastPos + 1);
}
#endif
if (not db_arg.empty())
{
db_path += util::tablename_to_filename(db);
assert(db_path.length()); // TODO throw exception, this is a possibility
}
}
const std::string &Schema::getPath() const
{
return db_path;
}
bool Schema::compare(const std::string &arg) const
{
return boost::iequals(arg, db);
}
bool Schema::compare(const Schema& arg) const
{
return boost::iequals(arg.getSchemaName(), db);
}
bool Schema::isValid() const
{
const charset_info_st& cs= my_charset_utf8mb4_general_ci;
int well_formed_error;
if (not db.empty()
&& db.size() <= NAME_LEN
&& db.at(0) != '.'
&& db.at(db.size() - 1) != ' '
&& db.size() == cs.cset->well_formed_len(&cs, db.c_str(), db.c_str() + db.length(), NAME_CHAR_LEN, &well_formed_error))
{
if (not well_formed_error)
return true;
}
my_error(ER_WRONG_DB_NAME, *this);
return false;
}
const std::string &Schema::getCatalogName() const
{
return drizzled::catalog::local_identifier().name();
}
std::ostream& operator<<(std::ostream& output, const Schema&identifier)
{
return output << "identifier::Schema:(" << drizzled::catalog::local_identifier() << ", " << identifier.getSchemaName() << ", " << identifier.getPath() << ")";
}
} /* namespace identifier */
} /* namespace drizzled */
|