~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/catalog.h

  • Committer: Brian Aker
  • Date: 2010-12-01 04:29:10 UTC
  • mto: (2017.3.1 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2073.
  • Revision ID: brian@tangent.org-20101201042910-imwwj5i3mh5pm75d
Merging in the first pass through the catalog work.

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) 2010 Brian Aker
 
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; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
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.
 
15
 *
 
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
 
19
 */
 
20
 
 
21
#ifndef DRIZZLED_IDENTIFIER_CATALOG_H
 
22
#define DRIZZLED_IDENTIFIER_CATALOG_H
 
23
 
 
24
#include <drizzled/enum.h>
 
25
#include "drizzled/definitions.h"
 
26
#include "drizzled/message/table.pb.h"
 
27
#include <string.h>
 
28
 
 
29
#include <assert.h>
 
30
 
 
31
#include <ostream>
 
32
#include <list>
 
33
#include <algorithm>
 
34
#include <functional>
 
35
#include <iostream>
 
36
 
 
37
#include <boost/algorithm/string.hpp>
 
38
 
 
39
namespace drizzled {
 
40
namespace identifier {
 
41
 
 
42
class Catalog
 
43
{
 
44
  std::string name;
 
45
  std::string path;
 
46
 
 
47
 
 
48
  // @note this should be changed to protected once Session contains an
 
49
  // identifier for current db.
 
50
public:
 
51
 
 
52
public:
 
53
  Catalog(const std::string &name_arg);
 
54
 
 
55
  virtual ~Catalog()
 
56
  { }
 
57
 
 
58
  const std::string &getPath() const;
 
59
 
 
60
  const std::string &getName() const
 
61
  {
 
62
    return name;
 
63
  }
 
64
 
 
65
  bool isValid() const;
 
66
  bool compare(const std::string &arg) const;
 
67
 
 
68
  size_t getHashValue() const
 
69
  {
 
70
    return hash_value;
 
71
  }
 
72
 
 
73
  friend bool operator<(const Catalog &left, const Catalog &right)
 
74
  {
 
75
    return  boost::algorithm::to_upper_copy(left.getName()) < boost::algorithm::to_upper_copy(right.getName());
 
76
  }
 
77
 
 
78
  friend std::ostream& operator<<(std::ostream& output,
 
79
                                  Catalog &identifier)
 
80
  {
 
81
    output << "Catalog:(";
 
82
    output <<  identifier.getName();
 
83
    output << ", ";
 
84
    output << identifier.getPath();
 
85
    output << ")";
 
86
 
 
87
    return output;  // for multiple << operators.
 
88
  }
 
89
 
 
90
  friend bool operator==(const Catalog &left,
 
91
                         const Catalog &right)
 
92
  {
 
93
    return boost::iequals(left.getName(), right.getName());
 
94
  }
 
95
 
 
96
private:
 
97
  size_t hash_value;
 
98
 
 
99
};
 
100
 
 
101
std::size_t hash_value(Catalog const& b);
 
102
 
 
103
} /* namespace identifier */
 
104
} /* namespace drizzled */
 
105
 
 
106
#endif /* DRIZZLED_IDENTIFIER_CATALOG_H */