~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/authentication.h

  • Committer: Stewart Smith
  • Date: 2010-02-15 01:56:32 UTC
  • mto: (1273.13.96 build)
  • mto: This revision was merged to the branch mainline in revision 1308.
  • Revision ID: stewart@flamingspork.com-20100215015632-pm7lnxfq5j5uh8kj
move DATABASE() to function plugin. modify parser so that it looks for a function named 'database' when DATABASE() is called. Special case still needed in parser due to hilarity of not-really-reserved words.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#ifndef DRIZZLED_PLUGIN_AUTHENTICATION_H
23
23
#define DRIZZLED_PLUGIN_AUTHENTICATION_H
24
24
 
25
 
#include <string>
26
 
 
27
 
#include "drizzled/plugin.h"
28
25
#include "drizzled/plugin/plugin.h"
29
26
 
30
27
namespace drizzled
31
28
{
32
 
class SecurityContext;
 
29
class Session;
33
30
 
34
31
namespace plugin
35
32
{
45
42
  {}
46
43
  virtual ~Authentication() {}
47
44
 
48
 
  virtual bool authenticate(const SecurityContext &sctx,
49
 
                            const std::string &passwd)= 0;
 
45
  virtual bool authenticate(Session *, const char *)= 0;
50
46
 
51
47
  static bool addPlugin(plugin::Authentication *auth);
52
48
  static void removePlugin(plugin::Authentication *auth);
53
 
  static bool isAuthenticated(const SecurityContext &sctx,
54
 
                              const std::string &password);
 
49
  static bool isAuthenticated(Session *session, const char *password);
55
50
};
56
51
 
57
52
} /* namespace plugin */