~drizzle-trunk/drizzle/development

851 by Brian Aker
Class rewrite of Session (aka get all of the junk out)
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
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_DIAGNOSTICS_AREA_H
21
#define DRIZZLED_DIAGNOSTICS_AREA_H
22
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
23
namespace drizzled
24
{
25
851 by Brian Aker
Class rewrite of Session (aka get all of the junk out)
26
/**
27
  Stores status of the currently executed statement.
28
  Cleared at the beginning of the statement, and then
29
  can hold either OK, ERROR, or EOF status.
30
  Can not be assigned twice per statement.
31
*/
32
class Diagnostics_area
33
{
34
public:
35
  enum enum_diagnostics_status
36
  {
37
    /** The area is cleared at start of a statement. */
38
    DA_EMPTY= 0,
39
    /** Set whenever one calls my_ok(). */
40
    DA_OK,
41
    /** Set whenever one calls my_eof(). */
42
    DA_EOF,
43
    /** Set whenever one calls my_error() or my_message(). */
44
    DA_ERROR,
45
    /** Set in case of a custom response, such as one from COM_STMT_PREPARE. */
46
    DA_DISABLED
47
  };
48
  /** True if status information is sent to the client. */
49
  bool is_sent;
50
  /** Set to make set_error_status after set_{ok,eof}_status possible. */
51
  bool can_overwrite_status;
52
53
  void set_ok_status(Session *session, ha_rows affected_rows_arg,
971.3.59 by Eric Day
Removed client_capabilities from session and pushed functionality into protocol plugin.
54
                     ha_rows found_rows_arg, uint64_t last_insert_id_arg,
851 by Brian Aker
Class rewrite of Session (aka get all of the junk out)
55
                     const char *message);
56
  void set_eof_status(Session *session);
1019.1.1 by Brian Aker
Merge (also removes session from show variables).
57
  void set_error_status(uint32_t sql_errno_arg, const char *message_arg);
851 by Brian Aker
Class rewrite of Session (aka get all of the junk out)
58
59
  void disable_status();
60
61
  void reset_diagnostics_area();
62
63
  bool is_set() const { return m_status != DA_EMPTY; }
64
  bool is_error() const { return m_status == DA_ERROR; }
65
  bool is_eof() const { return m_status == DA_EOF; }
66
  bool is_ok() const { return m_status == DA_OK; }
67
  bool is_disabled() const { return m_status == DA_DISABLED; }
68
  enum_diagnostics_status status() const { return m_status; }
69
1022.2.29 by Monty Taylor
Fixed some no-inline warnings.
70
  const char *message() const;
71
  uint32_t sql_errno() const;
72
  uint32_t server_status() const;
73
  ha_rows affected_rows() const;
971.3.59 by Eric Day
Removed client_capabilities from session and pushed functionality into protocol plugin.
74
  ha_rows found_rows() const;
1022.2.29 by Monty Taylor
Fixed some no-inline warnings.
75
  uint64_t last_insert_id() const;
76
  uint32_t total_warn_count() const;
851 by Brian Aker
Class rewrite of Session (aka get all of the junk out)
77
78
  Diagnostics_area() { reset_diagnostics_area(); }
79
80
private:
81
  /** Message buffer. Can be used by OK or ERROR status. */
82
  char m_message[DRIZZLE_ERRMSG_SIZE];
83
  /**
84
    SQL error number. One of ER_ codes from share/errmsg.txt.
85
    Set by set_error_status.
86
  */
87
  uint32_t m_sql_errno;
88
89
  /**
90
    Copied from session->server_status when the diagnostics area is assigned.
91
    We need this member as some places in the code use the following pattern:
92
    session->server_status|= ...
93
    my_eof(session);
94
    session->server_status&= ~...
95
    Assigned by OK, EOF or ERROR.
96
  */
97
  uint32_t m_server_status;
98
  /**
99
    The number of rows affected by the last statement. This is
100
    semantically close to session->row_count_func, but has a different
101
    life cycle. session->row_count_func stores the value returned by
102
    function ROW_COUNT() and is cleared only by statements that
103
    update its value, such as INSERT, UPDATE, DELETE and few others.
104
    This member is cleared at the beginning of the next statement.
105
106
    We could possibly merge the two, but life cycle of session->row_count_func
107
    can not be changed.
108
  */
1055.2.13 by Jay Pipes
Documentation and style fixes in Session class. Doxygen should finally pick up the Statement and Session classes now. Removes the silly Query_arena class, as it's not needed anymore.
109
  ha_rows m_affected_rows;
851 by Brian Aker
Class rewrite of Session (aka get all of the junk out)
110
  /**
971.3.59 by Eric Day
Removed client_capabilities from session and pushed functionality into protocol plugin.
111
    This is like m_affected_rows, but contains the number of rows found, not
112
    only affected.
113
  */
114
  ha_rows m_found_rows;
115
  /**
851 by Brian Aker
Class rewrite of Session (aka get all of the junk out)
116
    Similarly to the previous member, this is a replacement of
117
    session->first_successful_insert_id_in_prev_stmt, which is used
118
    to implement LAST_INSERT_ID().
119
  */
1055.2.13 by Jay Pipes
Documentation and style fixes in Session class. Doxygen should finally pick up the Statement and Session classes now. Removes the silly Query_arena class, as it's not needed anymore.
120
  uint64_t m_last_insert_id;
851 by Brian Aker
Class rewrite of Session (aka get all of the junk out)
121
  /** The total number of warnings. */
1055.2.13 by Jay Pipes
Documentation and style fixes in Session class. Doxygen should finally pick up the Statement and Session classes now. Removes the silly Query_arena class, as it's not needed anymore.
122
  uint32_t m_total_warn_count;
851 by Brian Aker
Class rewrite of Session (aka get all of the junk out)
123
  enum_diagnostics_status m_status;
124
  /**
125
    @todo: the following Session members belong here:
126
    - warn_list, warn_count,
127
  */
128
};
129
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
130
} /* namespace drizzled */
131
851 by Brian Aker
Class rewrite of Session (aka get all of the junk out)
132
#endif /* DRIZZLED_DIAGNOSTICS_AREA_H */