~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/master_pos_wait.cc

  • Committer: Eric Herman
  • Date: 2008-12-07 15:29:44 UTC
  • mto: (656.1.14 devel)
  • mto: This revision was merged to the branch mainline in revision 670.
  • Revision ID: eric@mysql.com-20081207152944-cq1nx1cyi0huqj0f
Added pointer to online version of the FAQ

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
 
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
#include <drizzled/server_includes.h>
 
21
#include <drizzled/replication/mi.h>
 
22
#include CSTDINT_H
 
23
#include <drizzled/functions/master_pos_wait.h>
 
24
#include <drizzled/session.h>
 
25
 
 
26
/**
 
27
  Wait until we are at or past the given position in the master binlog
 
28
  on the slave.
 
29
*/
 
30
 
 
31
int64_t Item_master_pos_wait::val_int()
 
32
{
 
33
  assert(fixed == 1);
 
34
  Session* session = current_session;
 
35
  String *log_name = args[0]->val_str(&value);
 
36
  int event_count= 0;
 
37
 
 
38
  null_value=0;
 
39
  if (session->slave_thread || !log_name || !log_name->length())
 
40
  {
 
41
    null_value = 1;
 
42
    return 0;
 
43
  }
 
44
  int64_t pos = (ulong)args[1]->val_int();
 
45
  int64_t timeout = (arg_count==3) ? args[2]->val_int() : 0 ;
 
46
  if ((event_count = active_mi->rli.wait_for_pos(session, log_name, pos, timeout)) == -2)
 
47
  {
 
48
    null_value = 1;
 
49
    event_count=0;
 
50
  }
 
51
  return event_count;
 
52
}
 
53