~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/master_pos_wait.cc

  • Committer: Brian Aker
  • Date: 2009-01-23 02:15:04 UTC
  • mfrom: (798.2.32 drizzle)
  • Revision ID: brian@tangent.org-20090123021504-2j99e6hxab1ew601
Merge for replication removal.

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