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
|
package com.mysql.grt.modules;
import com.mysql.grt.*;
import com.mysql.grt.db.migration.*;
import com.mysql.grt.db.*;
public class MigrationAccess 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(MigrationAccess.class, "Migration");
}
/**
* Collects information about migration the 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
MigrationAccess mig = new MigrationAccess();
methods.add(mig.getMigrateColumnToMysqlInfo());
methods.add(mig.getMigrateViewToMysqlInfo());
return methods;
}
/**
* Performs a migration based on a Migration object
*
* @param mig
* 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 {
new MigrationAccess().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 {
if (params != null)
params.add("excludeSourceSchemaName", "yes");
new MigrationAccess().doDataBulkTransfer(sourceDbConn, sourceCatalog,
targetDbConn, targetCatalog, params, logList);
}
/**
* 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("MigrationAccess");
method.setCaption("Access Default");
method.setDesc("Default method to migrate a Access column to MySQL.");
method.setSourceStructName("db.Column");
method.setTargetPackageName("db.mysql");
method.setRating(1);
addMigrateColumnToMysqlInfoParameters(method);
// set default parameter autoDecimalDigits to "yes"
method.getParams().add("autoDecimalDigits", "yes");
ParameterGroup params = method.getParamGroups().get(0);
params.getParams().add("autoDecimalDigits", "yes");
return method;
}
/**
* 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.toLowerCase().replaceAll("", "ae").replaceAll("", "ue")
* .replaceAll("", "oe").replaceAll("", "ss");
*/
return name;
}
/**
* 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 column
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.setScale(sourceColumn.getScale());
targetColumn.setPrecision(sourceColumn.getPrecision());
targetColumn.setLength(sourceColumn.getLength());
// migrate datatype
SimpleDatatypeList simpleDatatypes = migObj.getTargetCatalog()
.getSimpleDatatypes();
String sourceDatatypeName = sourceColumn.getDatatypeName();
// check migration params and only assign datatype if it was not
// set in the migration parameters
if (!migrateColumnParamsToMySql(targetColumn, migrationParams)) {
if (sourceDatatypeName.equalsIgnoreCase("VARCHAR")) {
targetColumn.setDatatypeName("VARCHAR");
targetColumn.setLength(sourceColumn.getLength());
} else if (sourceDatatypeName.equalsIgnoreCase("INTEGER")
|| sourceDatatypeName.equalsIgnoreCase("INT")) {
targetColumn.setDatatypeName("INT");
} else if (sourceDatatypeName.equalsIgnoreCase("SMALLINT")) {
targetColumn.setDatatypeName("SMALLINT");
} else if (sourceDatatypeName.equalsIgnoreCase("COUNTER")) {
targetColumn.setDatatypeName("INT");
targetColumn.setAutoIncrement(1);
targetColumn.setIsNullable(0);
} else if (sourceDatatypeName.equalsIgnoreCase("BIT")) {
targetColumn.setDatatypeName("TINYINT");
} else if (sourceDatatypeName.equalsIgnoreCase("BYTE")) {
targetColumn.setDatatypeName("TINYINT");
targetColumn.getFlags().add("UNSIGNED");
} else if (sourceDatatypeName.equalsIgnoreCase("REAL")
|| sourceDatatypeName.equalsIgnoreCase("DOUBLE")) {
targetColumn.setDatatypeName("DOUBLE");
if ((targetColumn.getScale() == 0)
&& (migrationParams != null)
&& (migrationParams.get("autoDecimalDigits")
.equalsIgnoreCase("yes"))) {
targetColumn.setScale(targetColumn.getPrecision() / 3);
}
} else if (sourceDatatypeName.equalsIgnoreCase("CURRENCY")
|| (sourceDatatypeName.equalsIgnoreCase("DECIMAL"))) {
targetColumn.setDatatypeName("DECIMAL");
} else if (sourceDatatypeName.equalsIgnoreCase("LONGBINARY")) {
targetColumn.setDatatypeName("LONGBLOB");
} else if (sourceDatatypeName.equalsIgnoreCase("LONGCHAR")) {
targetColumn.setDatatypeName("LONGTEXT");
} else if (sourceDatatypeName.equalsIgnoreCase("DATETIME")) {
targetColumn.setDatatypeName("DATETIME");
} else {
targetColumn.setDatatypeName("VARCHAR");
migUtils.addMigrationLogEntry(migObj, sourceColumn,
targetColumn, "The datatype "
+ sourceColumn.getDatatypeName()
+ " cannot be migrated.",
MigrationUtils.logError);
}
}
// lookup the simple value and set it in the column
int simpleDatatypeIndex = simpleDatatypes.getIndexOfName(targetColumn
.getDatatypeName());
if (simpleDatatypeIndex > -1)
targetColumn
.setSimpleType(simpleDatatypes.get(simpleDatatypeIndex));
// return new created, migrated object
return targetColumn;
}
/**
* Generates information about the View to MySQL migration method
*
* @return returns a Method with predefined migration parameters
*/
private Method getMigrateViewToMysqlInfo() {
// create migrateAccessTable method
Method method = new Method(null);
method.setName("migrateViewToMysql");
method.setModuleName("MigrationAccess");
method.setCaption("Access Default");
method.setDesc("Default method to migrate an Access view to MySQL.");
method.setSourceStructName("db.View");
method.setTargetPackageName("db.mysql");
method.setRating(1);
addMigrateViewToMysqlInfoParameters(method);
return method;
}
/**
* Migrates a view to a MySQL view
*
* @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.View migrateViewToMysql(
com.mysql.grt.db.migration.Migration migObj, View sourceView,
GrtStringHashMap migrationParams, GrtObject parent) {
Grt.getInstance().addMsg(
"Migrating view " + sourceView.getName() + " ...");
// 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(migrateIdentifier(sourceView.getName()));
// comment SQL out for the moment
targetView.setCommentedOut(1);
String query = sourceView.getQueryExpression();
if (query != null) {
targetView.setQueryExpression(query.replaceAll("\\[", "`")
.replaceAll("\\]", "`"));
}
migUtils.addMigrationLogEntry(migObj, sourceView, targetView,
"The generated SQL has to be checked manually.",
MigrationUtils.logWarning);
// return new created, migrated object
return targetView;
}
}
|