~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/authorization.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-05 13:28:48 UTC
  • mto: This revision was merged to the branch mainline in revision 2395.
  • Revision ID: olafvdspek@gmail.com-20110805132848-vvwjg6pgwf56xnsd
Use const char* instead of str_ref

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
20
 */
21
21
 
22
 
#ifndef DRIZZLED_PLUGIN_AUTHORIZATION_H
23
 
#define DRIZZLED_PLUGIN_AUTHORIZATION_H
 
22
#pragma once
24
23
 
25
 
#include "drizzled/plugin.h"
26
 
#include "drizzled/plugin/plugin.h"
27
 
#include "drizzled/identifier.h"
 
24
#include <drizzled/plugin.h>
 
25
#include <drizzled/plugin/plugin.h>
 
26
#include <drizzled/identifier.h>
28
27
 
29
28
#include <string>
30
29
#include <set>
31
30
 
32
 
#include "drizzled/visibility.h"
 
31
#include <drizzled/visibility.h>
33
32
 
34
33
namespace drizzled
35
34
{
57
56
   * @returns true if the user cannot access the schema
58
57
   */
59
58
  virtual bool restrictSchema(const drizzled::identifier::User &user_ctx,
60
 
                              identifier::Schema::const_reference schema)= 0;
 
59
                              const identifier::Schema& schema)= 0;
61
60
 
62
61
  /**
63
62
   * Should we restrict the current user's access to this table?
68
67
   *
69
68
   * @returns true if the user cannot access the table
70
69
   */
71
 
  virtual bool restrictTable(const drizzled::identifier::User &user_ctx,
72
 
                             identifier::Table &table);
 
70
  virtual bool restrictTable(const drizzled::identifier::User& user_ctx,
 
71
                             const drizzled::identifier::Table& table);
73
72
 
74
73
  /**
75
74
   * Should we restrict the current user's access to see this process?
84
83
                               const drizzled::identifier::User &session_ctx);
85
84
 
86
85
  /** Server API method for checking schema authorization */
87
 
  static bool isAuthorized(drizzled::identifier::User::const_shared_ptr user_ctx,
88
 
                           identifier::Schema::const_reference schema_identifier,
 
86
  static bool isAuthorized(const drizzled::identifier::User& user_ctx,
 
87
                           const identifier::Schema& schema_identifier,
89
88
                           bool send_error= true);
90
89
 
91
90
  /** Server API method for checking table authorization */
92
 
  static bool isAuthorized(drizzled::identifier::User::const_shared_ptr user_ctx,
93
 
                           identifier::Table &table_identifier,
94
 
                           bool send_error= true);
95
 
 
96
 
  /** Server API method for checking process authorization */
97
 
  static bool isAuthorized(drizzled::identifier::User::const_shared_ptr user_ctx,
98
 
                           const Session *session,
99
 
                           bool send_error= true);
100
 
 
101
 
  /** Server API method for checking process authorization */
102
 
  static bool isAuthorized(drizzled::identifier::User::const_reference user_ctx,
103
 
                           const Session *session,
 
91
  static bool isAuthorized(const drizzled::identifier::User& user_ctx,
 
92
                           const drizzled::identifier::Table& table_identifier,
 
93
                           bool send_error= true);
 
94
 
 
95
  /** Server API method for checking process authorization */
 
96
  static bool isAuthorized(const drizzled::identifier::User& user_ctx,
 
97
                           const Session &session,
104
98
                           bool send_error= true);
105
99
 
106
100
  /**
107
101
   * Server API helper method for applying authorization tests
108
102
   * to a set of schema names (for use in the context of getSchemaNames
109
103
   */
110
 
  static void pruneSchemaNames(drizzled::identifier::User::const_shared_ptr user_ctx,
111
 
                               identifier::Schema::vector &set_of_schemas);
 
104
  static void pruneSchemaNames(const drizzled::identifier::User& user_ctx,
 
105
                               identifier::schema::vector &set_of_schemas);
112
106
  
113
107
  /**
114
108
   * Standard plugin system registration hooks
118
112
 
119
113
};
120
114
 
121
 
inline bool Authorization::restrictTable(const drizzled::identifier::User &user_ctx,
122
 
                                         identifier::Table &table)
 
115
inline bool Authorization::restrictTable(const drizzled::identifier::User& user_ctx,
 
116
                                         const drizzled::identifier::Table& table)
123
117
{
124
118
  return restrictSchema(user_ctx, table);
125
119
}
134
128
 
135
129
} /* namespace drizzled */
136
130
 
137
 
#endif /* DRIZZLED_PLUGIN_AUTHORIZATION_H */