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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
|
package com.mysql.grt.modules;
import com.mysql.grt.Grt;
import com.mysql.grt.GrtObject;
import com.mysql.grt.GrtStringHashMap;
import com.mysql.grt.db.mysql.*;
import com.mysql.grt.db.migration.Method;
import com.mysql.grt.db.migration.MethodList;
/**
* GRT Migration Class for MySQL
*
* @author Mike
* @version 1.0, 06/17/05
*
*/
public class MigrationMysql extends MigrationGeneric {
/**
* Static function to return information about this class to the GRT
* environment
*
* @return returns a GRT XML string containing the infos about this class
*/
public static String getModuleInfo() {
return Grt.getModuleInfoXml(MigrationMysql.class, "MigrationGeneric");
}
/**
* Collects information about the migration methods to let the user choose
* which one to take
*
* @return returns a Method with predefined migration parameters
*/
public static MethodList migrationMethods() {
MethodList methods = MigrationGeneric.migrationMethods();
// add methods to methodlist
MigrationMysql mig = new MigrationMysql();
methods.add(mig.getMigrateSchemaToMysqlInfo());
methods.add(mig.getMigrateTableToMysqlInfo());
methods.add(mig.getMigrateColumnToMysqlInfo());
methods.add(mig.getMigrateViewToMysqlInfo());
methods.add(mig.getMigrateRoutineToMysqlInfo());
return methods;
}
/**
* Performs a migration based on a Migration object
*
* @param migObj
* migration object to migrate
* @param targetPackageName
* name of the package that should be used to generate the target
* objects, e.g. db.mysql
*/
public static void migrate(com.mysql.grt.db.migration.Migration migObj,
com.mysql.grt.db.mgmt.Rdbms targetRdbms,
com.mysql.grt.db.Version version) throws Exception {
Grt.getInstance().addMsg("Starting MySQL migration...");
new MigrationMysql().migrateCatalog(migObj, targetRdbms, version);
}
/**
* Performs a data transfer from the given source catalog to the target
* catalog
*
* @param sourceJdbcDriver
* class name of the source jdbc driver
* @param sourceJdbcConnectionString
* jdbc connection string to the source database
* @param sourceCatalog
* the source catalog
* @param targetJdbcDriver
* class name of the target jdbc driver
* @param targetJdbcConnectionString
* jdbc connection string to the target database
* @param targetCatalog
* the target catalog
* @param params
* parameters that define how the migration is performed
*/
public static void dataBulkTransfer(
com.mysql.grt.db.mgmt.Connection sourceDbConn,
Catalog sourceCatalog,
com.mysql.grt.db.mgmt.Connection targetDbConn,
com.mysql.grt.db.Catalog targetCatalog, GrtStringHashMap params,
com.mysql.grt.base.ObjectLogList logList) throws Exception {
new MigrationOracle().doDataBulkTransfer(sourceDbConn, sourceCatalog,
targetDbConn, targetCatalog, params, logList);
}
/**
* migrates the name of an identifier
*
* @param name
* the source name of the identifier
* @return the migrated identifier name
*/
protected String migrateIdentifier(String name) {
return name;
}
/**
* migrates the sourceSchema and stores the targetCatalog in the global
* migration object
*
* @param migObj
* migration object to migrate
* @param targetPackageName
* name of the package that should be used to generate the target
* objects, e.g. db.mysql
* @param sourceSchema
* the source schema that should be migrated
*/
protected com.mysql.grt.db.mysql.Schema migrateSchemaToMysql(
com.mysql.grt.db.migration.Migration migObj, Schema sourceSchema,
GrtStringHashMap migrationParams, GrtObject parent) {
Grt.getInstance().addMsg(
"Migrating schema " + sourceSchema.getName() + " ...");
Grt.getInstance().flushMessages();
// call super migrate function to do basic migration
com.mysql.grt.db.mysql.Schema targetSchema = super
.migrateSchemaToMysql(migObj, sourceSchema, migrationParams,
parent);
return targetSchema;
}
/**
* Migrates an MySQL table to a MySQL table
*
* @param sourceTable
* the object to migrate
* @param migrationParams
* parameters used to define the target object
*
* @return returns MySQL table object
*/
protected com.mysql.grt.db.mysql.Table migrateTableToMysql(
com.mysql.grt.db.migration.Migration migObj, Table sourceTable,
GrtStringHashMap migrationParams, GrtObject parent) {
// call migration method from the super class
com.mysql.grt.db.mysql.Table targetTable;
targetTable = super.migrateTableToMysql(migObj, sourceTable,
migrationParams, parent);
// do mysql specific things
String engine = migrationParams.get("engine");
if ((engine == null) || engine.equalsIgnoreCase(""))
targetTable.setTableEngine(sourceTable.getTableEngine());
// return new created, migrated object
return targetTable;
}
/**
* Migrates a column to a MySQL column
*
* @param sourceColumn
* the object to migrate
* @param migrationParams
* parameters used to define the target object
* @param parent
* parent object of the migrated object
*
* @return returns MySQL table object
*/
protected com.mysql.grt.db.mysql.Column migrateColumnToMysql(
com.mysql.grt.db.migration.Migration migObj, Column sourceColumn,
GrtStringHashMap migrationParams, GrtObject parent) {
// create target table
com.mysql.grt.db.mysql.Column targetColumn;
targetColumn = new com.mysql.grt.db.mysql.Column(parent);
// log creation of target object
migUtils.addMigrationLogEntry(migObj, sourceColumn, targetColumn);
// do migration
targetColumn.setName(migUtils.getTargetName(migrationParams,
migrateIdentifier(sourceColumn.getName())));
targetColumn.setOldName(sourceColumn.getName());
targetColumn.setDefaultValue(sourceColumn.getDefaultValue());
targetColumn.setIsNullable(sourceColumn.getIsNullable());
targetColumn.setPrecision(sourceColumn.getPrecision());
targetColumn.setScale(sourceColumn.getScale());
targetColumn.setLength(sourceColumn.getLength());
targetColumn.setDatatypeExplicitParams(sourceColumn
.getDatatypeExplicitParams());
// migrate datatype
com.mysql.grt.db.SimpleDatatypeList simpleDatatypes = migObj
.getTargetCatalog().getSimpleDatatypes();
String sourceDatatypeName = sourceColumn.getDatatypeName();
if (!migrateColumnParamsToMySql(targetColumn, migrationParams)) {
targetColumn.setDatatypeName(sourceDatatypeName);
}
targetColumn.setSimpleType(simpleDatatypes.get(simpleDatatypes
.getIndexOfName(sourceDatatypeName)));
targetColumn.setCharacterSetName(sourceColumn.getCharacterSetName());
targetColumn.setCollationName(sourceColumn.getCollationName());
targetColumn.setAutoIncrement(sourceColumn.getAutoIncrement());
// migrate flags
for (int i = 0; i < sourceColumn.getFlags().size(); i++) {
targetColumn.getFlags().add(sourceColumn.getFlags().get(i));
}
// return new created, migrated object
return targetColumn;
}
/**
* Migrates an MySQL view to a MySQL view
*
* @param sourceView
* the object to migrate
* @param migrationParams
* parameters used to define the target object
*
* @return returns MySQL view object
*/
protected com.mysql.grt.db.mysql.View migrateViewToMysql(
com.mysql.grt.db.migration.Migration migObj, View sourceView,
GrtStringHashMap migrationParams, GrtObject parent) {
// create target view
com.mysql.grt.db.mysql.View targetView;
targetView = new com.mysql.grt.db.mysql.View(parent);
// log creation of target object
migUtils.addMigrationLogEntry(migObj, sourceView, targetView);
// do migration
targetView.setName(migUtils.getTargetName(migrationParams,
migrateIdentifier(sourceView.getName())));
targetView.setOldName(sourceView.getName());
targetView.setWithCheckCondition(sourceView.getWithCheckCondition());
// migrate SQL
String query = sourceView.getQueryExpression().trim();
// detect WITH CHECK OPTION in sql and remove it
if (query.toUpperCase().endsWith("WITH CHECK OPTION"))
query = query.substring(0, query.length() - 17).trim();
targetView.setQueryExpression(query);
targetView.setCommentedOut(0);
// return new created, migrated object
return targetView;
}
/**
* Migrates an MySQL Routine to a MySQL Routine
*
* @param sourceView
* the object to migrate
* @param migrationParams
* parameters used to define the target object
*
* @return returns MySQL view object
*/
protected com.mysql.grt.db.mysql.Routine migrateRoutineToMysql(
com.mysql.grt.db.migration.Migration migObj, Routine sourceProc,
GrtStringHashMap migrationParams, GrtObject parent) {
com.mysql.grt.db.mysql.Routine targetProc;
targetProc = new com.mysql.grt.db.mysql.Routine(parent);
// log creation of target object
migUtils.addMigrationLogEntry(migObj, sourceProc, sourceProc);
// do migration
targetProc.setName(migUtils.getTargetName(migrationParams,
migrateIdentifier(sourceProc.getName())));
targetProc.setOldName(sourceProc.getName());
targetProc.setRoutineType(sourceProc.getRoutineType());
// migrate SQL
targetProc.setRoutineCode(sourceProc.getRoutineCode());
// return new created, migrated object
return targetProc;
}
/**
* Generates information about the schema to MySQL migration method
*
* @return returns a Method with predefined migration parameters
*/
private Method getMigrateSchemaToMysqlInfo() {
// create method description
Method method = new Method(null);
method.setName("migrateSchemaToMysql");
method.setModuleName("MigrationMysql");
method.setCaption("MySQL Default");
method.setDesc("Default method to migrate an MySQL schema to MySQL.");
method.setSourceStructName("db.mysql.Schema");
method.setTargetPackageName("db.mysql");
method.setRating(1);
addMigrateSchemaToMysqlInfoParameters(method);
return method;
}
/**
* Generates information about the Oracle Table to MySQL migration method
*
* @return returns a Method with predefined migration parameters
*/
private Method getMigrateTableToMysqlInfo() {
// create migrateOracleTable method
Method method = new Method(null);
method.setName("migrateTableToMysql");
method.setModuleName("MigrationMysql");
method.setCaption("MySQL Default");
method.setDesc("Default method to migrate an MySQL table to MySQL.");
method.setSourceStructName("db.mysql.Table");
method.setTargetPackageName("db.mysql");
method.setRating(1);
addMigrateTableToMysqlInfoParameters(method);
return method;
}
/**
* Generates information about the Column to MySQL migration method
*
* @return returns a Method with predefined migration parameters
*/
private Method getMigrateColumnToMysqlInfo() {
// create method description
Method method = new Method(null);
method.setName("migrateColumnToMysql");
method.setModuleName("MigrationMysql");
method.setCaption("MySQL Default");
method.setDesc("Default method to migrate a MySQL column to MySQL.");
method.setSourceStructName("db.mysql.Column");
method.setTargetPackageName("db.mysql");
method.setRating(1);
addMigrateColumnToMysqlInfoParameters(method);
return method;
}
/**
* Generates information about the View to MySQL migration method
*
* @return returns a Method with predefined migration parameters
*/
private Method getMigrateViewToMysqlInfo() {
// create migrateOracleTable method
Method method = new Method(null);
method.setName("migrateViewToMysql");
method.setModuleName("MigrationMysql");
method.setCaption("MySQL Default");
method.setDesc("Default method to migrate an MySQL view to MySQL.");
method.setSourceStructName("db.mysql.View");
method.setTargetPackageName("db.mysql");
method.setRating(1);
addMigrateViewToMysqlInfoParameters(method);
return method;
}
/**
* Generates information about the View to MySQL migration method
*
* @return returns a Method with predefined migration parameters
*/
private Method getMigrateRoutineToMysqlInfo() {
// create migrateOracleTable method
Method method = new Method(null);
method.setName("migrateRoutineToMysql");
method.setModuleName("MigrationMysql");
method.setCaption("MySQL Default");
method.setDesc("Default method to migrate an "
+ "MySQL routine to MySQL.");
method.setSourceStructName("db.mysql.Routine");
method.setTargetPackageName("db.mysql");
method.setRating(1);
addMigrateRoutineToMysqlInfoParameters(method);
return method;
}
}
|