use of org.talend.core.model.properties.XmlFileConnectionItem in project tesb-studio-se by Talend.
the class PublishMetadataRunnable method run.
@Override
public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
final IWorkspaceRunnable op = new IWorkspaceRunnable() {
@Override
public void run(IProgressMonitor monitor) throws CoreException {
monitor.beginTask(Messages.PublishMetadataAction_Importing, 3);
final Collection<XmlFileConnectionItem> xmlObjs;
try {
xmlObjs = initFileConnection();
} catch (Exception e) {
String message = (null != e.getMessage()) ? e.getMessage() : e.getClass().getName();
throw new CoreException(new Status(IStatus.ERROR, ServicesPlugin.getDefault().getBundle().getSymbolicName(), "Can't retrieve schemas from metadata: " + message, e));
}
Collection<XmlFileConnectionItem> selectTables;
if (xmlObjs.size() > 0) {
RewriteSchemaDialogRunnable runnable = new RewriteSchemaDialogRunnable(shell, xmlObjs);
Display.getDefault().syncExec(runnable);
selectTables = runnable.getSelectTables();
if (null == selectTables) {
return;
}
} else {
selectTables = Collections.emptyList();
}
monitor.worked(1);
if (monitor.isCanceled()) {
return;
}
boolean validateWsdl = ServicesPlugin.getDefault().getPreferenceStore().getBoolean(EsbSoapServicePreferencePage.ENABLE_WSDL_VALIDATION);
if (validateWsdl) {
WSDLUtils.validateWsdl(wsdlDefinition.getDocumentBaseURI());
}
monitor.worked(1);
if (monitor.isCanceled()) {
return;
}
try {
process(wsdlDefinition, selectTables);
} catch (Exception e) {
throw new CoreException(new Status(IStatus.ERROR, ServicesPlugin.PLUGIN_ID, "Error during schema processing", e));
}
monitor.done();
}
};
IWorkspace workspace = ResourcesPlugin.getWorkspace();
try {
ISchedulingRule schedulingRule = workspace.getRoot();
// the update the project files need to be done in the workspace runnable to avoid all
// notification
// of changes before the end of the modifications.
workspace.run(op, schedulingRule, IWorkspace.AVOID_UPDATE, monitor);
} catch (CoreException e) {
throw new InvocationTargetException(e);
}
}
Aggregations