~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/user.h

  • Committer: Brian Aker
  • Date: 2010-12-24 03:44:02 UTC
  • mfrom: (2015.1.3 timestamp)
  • mto: This revision was merged to the branch mainline in revision 2028.
  • Revision ID: brian@tangent.org-20101224034402-n1hpg1yxwjz59hpw
Finish up issues with unsigned/int by fixing cast().

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <string>
26
26
#include <boost/shared_ptr.hpp>
27
27
 
28
 
#include <drizzled/visibility.h>
29
 
 
30
28
namespace drizzled
31
29
{
32
30
namespace identifier
37
35
  @brief A set of Session members describing the current authenticated user.
38
36
*/
39
37
 
40
 
class User : public Identifier
41
 
{
 
38
class User {
42
39
public:
43
40
  typedef boost::shared_ptr<User> shared_ptr;
44
41
  typedef boost::shared_ptr<const User> const_shared_ptr;
45
42
  typedef const User& const_reference;
46
 
  DRIZZLED_API static shared_ptr make_shared();
 
43
  static shared_ptr make_shared();
47
44
 
48
45
  enum PasswordType
49
46
  {
50
 
    NONE,
51
47
    PLAIN_TEXT,
52
48
    MYSQL_HASH
53
49
  };
54
50
 
55
51
  User():
56
 
    password_type(NONE),
 
52
    password_type(PLAIN_TEXT),
57
53
    _user(""),
58
54
    _address("")
59
55
  { }
60
56
 
61
 
  virtual void getSQLPath(std::string &arg) const;
62
 
 
63
 
  bool hasPassword() const
64
 
  {
65
 
    switch (password_type)
66
 
    {
67
 
    case NONE:
68
 
      return false;
69
 
    case PLAIN_TEXT:
70
 
    case MYSQL_HASH:
71
 
      break;
72
 
    }
73
 
 
74
 
    return true;
75
 
  }
76
 
 
77
57
  const std::string& address() const
78
58
  {
79
59
    return _address;