mirror of
https://github.com/apache/sqoop.git
synced 2025-05-11 22:41:50 +08:00
SQOOP-845: Improve Generic JDBC validator
(Jarcec Cecho via Cheolsoo Park)
This commit is contained in:
parent
42b7979f5e
commit
d5dc3a28b2
@ -58,17 +58,8 @@ private void configureJdbcProperties(MutableContext context, ConnectionConfigura
|
|||||||
String username = connectionConfig.connection.username;
|
String username = connectionConfig.connection.username;
|
||||||
String password = connectionConfig.connection.password;
|
String password = connectionConfig.connection.password;
|
||||||
|
|
||||||
if (driver == null) {
|
assert driver != null;
|
||||||
throw new SqoopException(
|
assert url != null;
|
||||||
GenericJdbcConnectorError.GENERIC_JDBC_CONNECTOR_0012,
|
|
||||||
"JDBC Driver");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (url == null) {
|
|
||||||
throw new SqoopException(
|
|
||||||
GenericJdbcConnectorError.GENERIC_JDBC_CONNECTOR_0012,
|
|
||||||
"Connection string");
|
|
||||||
}
|
|
||||||
|
|
||||||
executor = new GenericJdbcExecutor(driver, url, username, password);
|
executor = new GenericJdbcExecutor(driver, url, username, password);
|
||||||
}
|
}
|
||||||
|
@ -67,18 +67,8 @@ private void configureJdbcProperties(MutableContext context, ConnectionConfigura
|
|||||||
String username = connectionConfig.connection.username;
|
String username = connectionConfig.connection.username;
|
||||||
String password = connectionConfig.connection.password;
|
String password = connectionConfig.connection.password;
|
||||||
|
|
||||||
// TODO(jarcec): Those checks should be in validator and not here
|
assert driver != null;
|
||||||
if (driver == null) {
|
assert url != null;
|
||||||
throw new SqoopException(
|
|
||||||
GenericJdbcConnectorError.GENERIC_JDBC_CONNECTOR_0012,
|
|
||||||
"JDBC Driver");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (url == null) {
|
|
||||||
throw new SqoopException(
|
|
||||||
GenericJdbcConnectorError.GENERIC_JDBC_CONNECTOR_0012,
|
|
||||||
"Connection string");
|
|
||||||
}
|
|
||||||
|
|
||||||
executor = new GenericJdbcExecutor(driver, url, username, password);
|
executor = new GenericJdbcExecutor(driver, url, username, password);
|
||||||
}
|
}
|
||||||
|
@ -18,12 +18,15 @@
|
|||||||
package org.apache.sqoop.connector.jdbc;
|
package org.apache.sqoop.connector.jdbc;
|
||||||
|
|
||||||
import org.apache.sqoop.connector.jdbc.configuration.ConnectionConfiguration;
|
import org.apache.sqoop.connector.jdbc.configuration.ConnectionConfiguration;
|
||||||
|
import org.apache.sqoop.connector.jdbc.configuration.ExportJobConfiguration;
|
||||||
|
import org.apache.sqoop.connector.jdbc.configuration.ImportJobConfiguration;
|
||||||
|
import org.apache.sqoop.model.MJob;
|
||||||
import org.apache.sqoop.validation.Status;
|
import org.apache.sqoop.validation.Status;
|
||||||
import org.apache.sqoop.validation.Validation;
|
import org.apache.sqoop.validation.Validation;
|
||||||
import org.apache.sqoop.validation.Validator;
|
import org.apache.sqoop.validation.Validator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* Validator to ensure that user is supplying valid input
|
||||||
*/
|
*/
|
||||||
public class GenericJdbcValidator extends Validator {
|
public class GenericJdbcValidator extends Validator {
|
||||||
|
|
||||||
@ -32,11 +35,68 @@ public Validation validateConnection(Object configuration) {
|
|||||||
Validation validation = new Validation(ConnectionConfiguration.class);
|
Validation validation = new Validation(ConnectionConfiguration.class);
|
||||||
ConnectionConfiguration config = (ConnectionConfiguration)configuration;
|
ConnectionConfiguration config = (ConnectionConfiguration)configuration;
|
||||||
|
|
||||||
if(config.connection.connectionString == null
|
if(config.connection.jdbcDriver == null) {
|
||||||
|| !config.connection.connectionString.startsWith("jdbc:")) {
|
validation.addMessage(Status.UNACCEPTABLE, "connection", "jdbcDriver", "Driver can't be empty");
|
||||||
validation.addMessage(Status.UNACCEPTABLE,
|
} else {
|
||||||
"connection", "connectionString",
|
try {
|
||||||
"This do not seem as a valid JDBC URL");
|
Class.forName(config.connection.jdbcDriver);
|
||||||
|
} catch (ClassNotFoundException e) {
|
||||||
|
validation.addMessage(Status.UNACCEPTABLE, "connection", "jdbcDriver", "Can't load specified driver");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(config.connection.connectionString == null) {
|
||||||
|
validation.addMessage(Status.UNACCEPTABLE, "connection", "connectionString", "JDBC URL can't be empty");
|
||||||
|
} else if(!config.connection.connectionString.startsWith("jdbc:")) {
|
||||||
|
validation.addMessage(Status.UNACCEPTABLE, "connection", "connectionString", "This do not seem as a valid JDBC URL");
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: Try to connect to database when form level validations will be supported
|
||||||
|
|
||||||
|
return validation;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Validation validateJob(MJob.Type type, Object jobConfiguration) {
|
||||||
|
switch(type) {
|
||||||
|
case IMPORT:
|
||||||
|
return validateImportJob(jobConfiguration);
|
||||||
|
case EXPORT:
|
||||||
|
return validateExportJob(jobConfiguration);
|
||||||
|
default:
|
||||||
|
return super.validateJob(type, jobConfiguration);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private Validation validateExportJob(Object jobConfiguration) {
|
||||||
|
Validation validation = new Validation(ExportJobConfiguration.class);
|
||||||
|
ExportJobConfiguration configuration = (ExportJobConfiguration)jobConfiguration;
|
||||||
|
|
||||||
|
// TODO: Move those message to form level when it will be supported
|
||||||
|
if(configuration.table.tableName == null && configuration.table.sql == null) {
|
||||||
|
validation.addMessage(Status.UNACCEPTABLE, "table", "tableName", "Either table name or SQL must be specified");
|
||||||
|
validation.addMessage(Status.UNACCEPTABLE, "table", "sql", "Either table name or SQL must be specified");
|
||||||
|
}
|
||||||
|
if(configuration.table.tableName != null && configuration.table.sql != null) {
|
||||||
|
validation.addMessage(Status.UNACCEPTABLE, "table", "tableName", "Both table name and SQL cannot be specified");
|
||||||
|
validation.addMessage(Status.UNACCEPTABLE, "table", "sql", "Both table name and SQL cannot be specified");
|
||||||
|
}
|
||||||
|
|
||||||
|
return validation;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Validation validateImportJob(Object jobConfiguration) {
|
||||||
|
Validation validation = new Validation(ImportJobConfiguration.class);
|
||||||
|
ImportJobConfiguration configuration = (ImportJobConfiguration)jobConfiguration;
|
||||||
|
|
||||||
|
// TODO: Move those message to form level when it will be supported
|
||||||
|
if(configuration.table.tableName == null && configuration.table.sql == null) {
|
||||||
|
validation.addMessage(Status.UNACCEPTABLE, "table", "tableName", "Either table name or SQL must be specified");
|
||||||
|
validation.addMessage(Status.UNACCEPTABLE, "table", "sql", "Either table name or SQL must be specified");
|
||||||
|
}
|
||||||
|
if(configuration.table.tableName != null && configuration.table.sql != null) {
|
||||||
|
validation.addMessage(Status.UNACCEPTABLE, "table", "tableName", "Both table name and SQL cannot be specified");
|
||||||
|
validation.addMessage(Status.UNACCEPTABLE, "table", "sql", "Both table name and SQL cannot be specified");
|
||||||
}
|
}
|
||||||
|
|
||||||
return validation;
|
return validation;
|
||||||
|
Loading…
Reference in New Issue
Block a user