~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/name_resolution_context.h

Merged vcol stuff.

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) 2008 Sun Microsystems, Inc.
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; version 2 of the License.
9
 
 *
10
 
 *  This program is distributed in the hope that it will be useful,
11
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 *  GNU General Public License for more details.
14
 
 *
15
 
 *  You should have received a copy of the GNU General Public License
16
 
 *  along with this program; if not, write to the Free Software
17
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 
 */
19
 
 
20
 
#ifndef DRIZZLED_NAME_RESOLUTION_CONTEXT_H
21
 
#define DRIZZLED_NAME_RESOLUTION_CONTEXT_H
22
 
 
23
 
#include "drizzled/item.h"
24
 
 
25
 
namespace drizzled
26
 
{
27
 
 
28
 
class TableList;
29
 
class SecurityContext;
30
 
class Session;
31
 
class Select_Lex;
32
 
 
33
 
/**
34
 
 * Instances of Name_resolution_context store the information necesary for
35
 
 * name resolution of Items and other context analysis of a query made in
36
 
 * fix_fields().
37
 
 *
38
 
 * This structure is a part of Select_Lex, a pointer to this structure is
39
 
 * assigned when an item is created (which happens mostly during  parsing
40
 
 * (sql_yacc.yy)), but the structure itself will be initialized after parsing
41
 
 * is complete
42
 
 *
43
 
 * @todo
44
 
 *
45
 
 * Move subquery of INSERT ... SELECT and CREATE ... SELECT to
46
 
 * separate Select_Lex which allow to remove tricks of changing this
47
 
 * structure before and after INSERT/CREATE and its SELECT to make correct
48
 
 * field name resolution.
49
 
 */
50
 
class Name_resolution_context: public memory::SqlAlloc
51
 
{
52
 
public:
53
 
  /**
54
 
   * The name resolution context to search in when an Item cannot be
55
 
   * resolved in this context (the context of an outer select)
56
 
   */
57
 
  Name_resolution_context *outer_context;
58
 
 
59
 
  /**
60
 
   * List of tables used to resolve the items of this context.  Usually these
61
 
   * are tables from the FROM clause of SELECT statement.  The exceptions are
62
 
   * INSERT ... SELECT and CREATE ... SELECT statements, where SELECT
63
 
   * subquery is not moved to a separate Select_Lex.  For these types of
64
 
   * statements we have to change this member dynamically to ensure correct
65
 
   * name resolution of different parts of the statement.
66
 
   */
67
 
  TableList *table_list;
68
 
  /**
69
 
   * In most cases the two table references below replace 'table_list' above
70
 
   * for the purpose of name resolution. The first and last name resolution
71
 
   * table references allow us to search only in a sub-tree of the nested
72
 
   * join tree in a FROM clause. This is needed for NATURAL JOIN, JOIN ... USING
73
 
   * and JOIN ... ON.
74
 
   */
75
 
  TableList *first_name_resolution_table;
76
 
  /**
77
 
   * Last table to search in the list of leaf table references that begins
78
 
   * with first_name_resolution_table.
79
 
   */
80
 
  TableList *last_name_resolution_table;
81
 
 
82
 
  /**
83
 
   * Select_Lex item belong to, in case of merged VIEW it can differ from
84
 
   * Select_Lex where item was created, so we can't use table_list/field_list
85
 
   * from there
86
 
   */
87
 
  Select_Lex *select_lex;
88
 
 
89
 
  /**
90
 
   * Processor of errors caused during Item name resolving, now used only to
91
 
   * hide underlying tables in errors about views (i.e. it substitute some
92
 
   * errors for views)
93
 
   */
94
 
  void (*error_processor)(Session *, void *);
95
 
  void *error_processor_data;
96
 
 
97
 
  /**
98
 
   * When true items are resolved in this context both against the
99
 
   * SELECT list and this->table_list. If false, items are resolved
100
 
   * only against this->table_list.
101
 
   */
102
 
  bool resolve_in_select_list;
103
 
 
104
 
  /**
105
 
   * Security context of this name resolution context. It's used for views
106
 
   * and is non-zero only if the view is defined with SQL SECURITY DEFINER.
107
 
   */
108
 
  SecurityContext *security_ctx;
109
 
 
110
 
  Name_resolution_context()
111
 
    :
112
 
      outer_context(0), 
113
 
      table_list(0), 
114
 
      select_lex(0),
115
 
      error_processor_data(0),
116
 
      security_ctx(0)
117
 
    {}
118
 
 
119
 
  inline void init()
120
 
  {
121
 
    resolve_in_select_list= false;
122
 
    error_processor= &dummy_error_processor;
123
 
    first_name_resolution_table= NULL;
124
 
    last_name_resolution_table= NULL;
125
 
  }
126
 
 
127
 
  inline void resolve_in_table_list_only(TableList *tables)
128
 
  {
129
 
    table_list= first_name_resolution_table= tables;
130
 
    resolve_in_select_list= false;
131
 
  }
132
 
 
133
 
  inline void process_error(Session *session)
134
 
  {
135
 
    (*error_processor)(session, error_processor_data);
136
 
  }
137
 
};
138
 
 
139
 
} /* namespace drizzled */
140
 
 
141
 
#endif /* DRIZZLED_NAME_RESOLUTION_CONTEXT_H */