~drizzle-trunk/drizzle/jenkins-Drizzle-Builder-205

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 *
 *  Copyright (C) 2011 David Shrewsbury
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include <config.h>
#include <plugin/slave/replication_schema.h>
#include <drizzled/execute.h>
#include <drizzled/sql/result_set.h>
#include <string>
#include <vector>
#include <boost/lexical_cast.hpp>

using namespace std;
using namespace drizzled;
using namespace boost;

namespace slave
{

bool ReplicationSchema::create()
{
  vector<string> sql;

  sql.push_back("COMMIT");
  sql.push_back("CREATE SCHEMA IF NOT EXISTS `sys_replication` REPLICATE=FALSE");

  if (not executeSQL(sql))
    return false;

  /*
    Create our IO thread state information table if we need to.
   */

  /*
    Table: io_state
    Version 1.0: Initial definition
    Version 1.1: Added master_id and PK on master_id
  */


  sql.clear();
  sql.push_back("COMMIT");
  sql.push_back("CREATE TABLE IF NOT EXISTS `sys_replication`.`io_state` ("
                " `master_id` BIGINT NOT NULL,"
                " `status` VARCHAR(20) NOT NULL,"
                " `error_msg` VARCHAR(250))"
                " COMMENT = 'VERSION 1.1'");

  if (not executeSQL(sql))
    return false;

  /*
   * Create our applier thread state information table if we need to.
   */

  /*
   * Table: applier_state
   * Version 1.0: Initial definition
   * Version 1.1: Added originating_server_uuid and originating_commit_id
   * Version 1.2: Added master_id and changed PK to master_id
   */

  sql.clear();
  sql.push_back("COMMIT");
  sql.push_back("CREATE TABLE IF NOT EXISTS `sys_replication`.`applier_state`"
                " (`master_id` BIGINT NOT NULL,"      
                " `last_applied_commit_id` BIGINT NOT NULL,"
                " `originating_server_uuid` VARCHAR(36) NOT NULL,"
                " `originating_commit_id` BIGINT NOT NULL,"
                " `status` VARCHAR(20) NOT NULL,"
                " `error_msg` VARCHAR(250))"
                " COMMENT = 'VERSION 1.2'");

  if (not executeSQL(sql))
    return false;

  /*
   * Create our message queue table if we need to.
   * Version 1.0: Initial definition
   * Version 1.1: Added originating_server_uuid and originating_commit_id
   * Version 1.2: Added master_id and changed PK to (master_id, trx_id, seg_id)
   */

  sql.clear();
  sql.push_back("COMMIT");
  sql.push_back("CREATE TABLE IF NOT EXISTS `sys_replication`.`queue`"
                " (`trx_id` BIGINT NOT NULL, `seg_id` INT NOT NULL,"
                " `commit_order` BIGINT,"
                " `originating_server_uuid` VARCHAR(36) NOT NULL,"
                " `originating_commit_id` BIGINT NOT NULL,"
                " `msg` BLOB,"
                " `master_id` BIGINT NOT NULL,"
                " PRIMARY KEY(`master_id`, `trx_id`, `seg_id`))"
                " COMMENT = 'VERSION 1.2'");
  if (not executeSQL(sql))
    return false;

  return true;
}

bool ReplicationSchema::createInitialIORow(uint32_t master_id)
{
  vector<string> sql;

  sql.push_back("SELECT COUNT(*) FROM `sys_replication`.`io_state` WHERE `master_id` = " + boost::lexical_cast<string>(master_id));

  sql::ResultSet result_set(1);
  Execute execute(*(_session.get()), true);
  execute.run(sql[0], result_set);
  result_set.next();
  string count= result_set.getString(0);

  if (count == "0")
  {
    sql.clear();
    sql.push_back("INSERT INTO `sys_replication`.`io_state` (`master_id`, `status`) VALUES ("
                  + boost::lexical_cast<string>(master_id)
                  + ", 'STOPPED')");
    if (not executeSQL(sql))
      return false;
  }

  return true;
}

bool ReplicationSchema::createInitialApplierRow(uint32_t master_id)
{
  vector<string> sql;

  sql.push_back("SELECT COUNT(*) FROM `sys_replication`.`applier_state` WHERE `master_id` = " + boost::lexical_cast<string>(master_id));

  sql::ResultSet result_set(1);
  Execute execute(*(_session.get()), true);
  execute.run(sql[0], result_set);
  result_set.next();
  string count= result_set.getString(0);

  if (count == "0")
  {
    sql.clear();
    sql.push_back("INSERT INTO `sys_replication`.`applier_state`"
                  " (`master_id`, `last_applied_commit_id`,"
                  " `originating_server_uuid`, `originating_commit_id`," 
                  " `status`) VALUES ("
                  + boost::lexical_cast<string>(master_id)
                  + ",0,"
                  + "'" + _session.get()->getServerUUID() + "'"
                  + ",0,'STOPPED')");
     
    if (not executeSQL(sql))
      return false;
  }

  return true;
}


bool ReplicationSchema::setInitialMaxCommitId(uint32_t master_id, uint64_t value)
{
  vector<string> sql;

  sql.push_back("UPDATE `sys_replication`.`applier_state`"
                " SET `last_applied_commit_id` = "
                + lexical_cast<string>(value)
                + " WHERE `master_id` = "
                + lexical_cast<string>(master_id));

  return executeSQL(sql);
}

} /* namespace slave */