/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*- * vim:expandtab:shiftwidth=2:tabstop=2:smarttab: * * Copyright (C) 2009 Sun Microsystems * * 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 #include "drizzled/definitions.h" #include "drizzled/message/table.pb.h" #include #include #include #include #include #include #include #include namespace drizzled { static std::string catalog("local"); class SchemaIdentifier { std::string db; std::string db_path; std::string catalog; // @note this should be changed to protected once Session contains an // identifier for current db. public: public: SchemaIdentifier(const std::string &db_arg); virtual ~SchemaIdentifier() { } virtual const std::string &getSQLPath(); const std::string &getPath() const; const std::string &getSchemaName() const { return db; } const std::string &getCatalogName() const { return catalog; } bool isValid() const; bool compare(const std::string &arg) const; friend bool operator<(const SchemaIdentifier &left, const SchemaIdentifier &right) { return boost::algorithm::to_upper_copy(left.getSchemaName()) < boost::algorithm::to_upper_copy(right.getSchemaName()); } friend std::ostream& operator<<(std::ostream& output, SchemaIdentifier &identifier) { output << "SchemaIdentifier:("; output << identifier.catalog; output << ", "; output << identifier.db; output << ", "; output << identifier.getPath(); output << ")"; return output; // for multiple << operators. } friend bool operator==(const SchemaIdentifier &left, const SchemaIdentifier &right) { return boost::iequals(left.getSchemaName(), right.getSchemaName()); } }; typedef std::vector SchemaIdentifiers; } /* namespace drizzled */ #endif /* DRIZZLED_IDENTIFIER_SCHEMA_H */