~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/flush.cc

  • Committer: Brian Aker
  • Date: 2009-08-20 00:06:57 UTC
  • mfrom: (1115.3.6 captain)
  • Revision ID: brian@gaz-20090820000657-hw5twz33bw30lz4j
Merge Jay

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) 2009 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; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
 
21
#include <drizzled/server_includes.h>
 
22
#include <drizzled/show.h>
 
23
#include <drizzled/session.h>
 
24
#include <drizzled/lock.h>
 
25
#include <drizzled/statement/flush.h>
 
26
 
 
27
using namespace drizzled;
 
28
 
 
29
bool statement::Flush::execute()
 
30
{
 
31
  /*
 
32
   * reloadCache() will tell us if we are allowed to write to the
 
33
   * binlog or not.
 
34
   */
 
35
  if (! reloadCache())
 
36
  {
 
37
    /*
 
38
     * We WANT to write and we CAN write.
 
39
     * ! we write after unlocking the table.
 
40
     *
 
41
     * Presumably, RESET and binlog writing doesn't require synchronization
 
42
     */
 
43
    write_bin_log(session, false, session->query, session->query_length);
 
44
    session->my_ok();
 
45
  }
 
46
 
 
47
  return false;
 
48
}
 
49
 
 
50
bool statement::Flush::reloadCache()
 
51
{
 
52
  bool result= false;
 
53
  ulong options= session->lex->type;
 
54
  TableList *tables= (TableList *) session->lex->select_lex.table_list.first;
 
55
 
 
56
  if (options & REFRESH_LOG)
 
57
  {
 
58
    if (ha_flush_logs(NULL))
 
59
    {
 
60
      result= true;
 
61
    }
 
62
  }
 
63
  /*
 
64
    Note that if REFRESH_READ_LOCK bit is set then REFRESH_TABLES is set too
 
65
    (see sql_yacc.yy)
 
66
  */
 
67
  if (options & (REFRESH_TABLES | REFRESH_READ_LOCK))
 
68
  {
 
69
    if ((options & REFRESH_READ_LOCK) && session)
 
70
    {
 
71
      if (lock_global_read_lock(session))
 
72
      {
 
73
        return true; /* Killed */
 
74
      }
 
75
      result= session->close_cached_tables(tables, 
 
76
                                           (options & REFRESH_FAST) ?  false : true, 
 
77
                                           true);
 
78
      if (make_global_read_lock_block_commit(session)) /* Killed */
 
79
      {
 
80
        /* Don't leave things in a half-locked state */
 
81
        unlock_global_read_lock(session);
 
82
        return true;
 
83
      }
 
84
    }
 
85
    else
 
86
    {
 
87
      result= session->close_cached_tables(tables, 
 
88
                                           (options & REFRESH_FAST) ?  false : true, 
 
89
                                           false);
 
90
    }
 
91
  }
 
92
 
 
93
  if (session && (options & REFRESH_STATUS))
 
94
  {
 
95
    session->refresh_status();
 
96
  }
 
97
 
 
98
 return result;
 
99
}