/** * */ package org.gcube.portlets.user.td.jsonexportwidget.client; import org.gcube.portlets.user.td.gwtservice.client.rpc.TDGWTServiceAsync; import org.gcube.portlets.user.td.gwtservice.shared.json.JSONExportSession; import org.gcube.portlets.user.td.gwtservice.shared.exception.TDGWTIsLockedException; import org.gcube.portlets.user.td.gwtservice.shared.exception.TDGWTSessionExpiredException; import org.gcube.portlets.user.td.monitorwidget.client.MonitorDialog; import org.gcube.portlets.user.td.monitorwidget.client.MonitorDialogListener; import org.gcube.portlets.user.td.widgetcommonevent.client.event.SessionExpiredEvent; import org.gcube.portlets.user.td.widgetcommonevent.client.type.SessionExpiredType; import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId; import org.gcube.portlets.user.td.wizardwidget.client.WizardCard; import com.allen_sauer.gwt.log.client.Log; import com.google.gwt.safehtml.shared.SafeHtmlBuilder; import com.google.gwt.user.client.Command; import com.google.gwt.user.client.rpc.AsyncCallback; import com.google.gwt.user.client.ui.FlexTable; import com.sencha.gxt.core.client.util.Margins; import com.sencha.gxt.widget.core.client.FramedPanel; import com.sencha.gxt.widget.core.client.container.BoxLayoutContainer.BoxLayoutData; import com.sencha.gxt.widget.core.client.container.HtmlLayoutContainer; import com.sencha.gxt.widget.core.client.container.VBoxLayoutContainer; import com.sencha.gxt.widget.core.client.container.VBoxLayoutContainer.VBoxLayoutAlign; /** * * @author "Giancarlo Panichi" g.panichi@isti.cnr.it * */ public class JSONOperationInProgressCard extends WizardCard implements MonitorDialogListener { protected JSONOperationInProgressCard thisCard; protected JSONExportSession exportSession; protected TRId newTrId; protected HtmlLayoutContainer resultField; public JSONOperationInProgressCard(final JSONExportSession exportSession) { super("Operation In Progress", ""); this.exportSession = exportSession; thisCard = this; VBoxLayoutContainer operationInProgressPanel = new VBoxLayoutContainer(); operationInProgressPanel.setVBoxLayoutAlign(VBoxLayoutAlign.CENTER); final FlexTable description = new FlexTable(); // FlexCellFormatter cellFormatter = description.getFlexCellFormatter(); description.setCellSpacing(10); description.setCellPadding(4); description.setBorderWidth(0); // display:block;vertical-align:text-top; description.setHTML(0, 0, "Destination: "); description.setText(0, 1, exportSession.getDestination().getName()); description.setHTML(1, 0, "File Name: "); description.setText(1, 1, exportSession.getFileName()); description.setHTML(2, 0, "File Description: "); description.setText(2, 1, exportSession.getFileDescription()); FramedPanel summary = new FramedPanel(); summary.setHeadingText("Export Summary"); summary.setWidth(400); summary.add(description); operationInProgressPanel.add(summary, new BoxLayoutData(new Margins(20, 5, 10, 5))); resultField = new HtmlLayoutContainer("
"); operationInProgressPanel.add(resultField, new BoxLayoutData( new Margins(10, 5, 10, 5))); setContent(operationInProgressPanel); resultField.setVisible(false); } public void exportCSV() { TDGWTServiceAsync.INSTANCE.startJSONExport(exportSession, new AsyncCallback() { public void onSuccess(String taskId) { openMonitorDialog(taskId); } public void onFailure(Throwable caught) { if (caught instanceof TDGWTSessionExpiredException) { getEventBus() .fireEvent( new SessionExpiredEvent( SessionExpiredType.EXPIREDONSERVER)); } else { if (caught instanceof TDGWTIsLockedException) { Log.error(caught.getLocalizedMessage()); showErrorAndHide("Error Locked", caught.getLocalizedMessage(), caught); } else { showErrorAndHide("Error in export", "An error occured in export: " + caught.getLocalizedMessage(), caught); } } } }); } @Override public void setup() { getWizardWindow().setEnableBackButton(false); setBackButtonVisible(false); setNextButtonVisible(false); getWizardWindow().setEnableNextButton(false); getWizardWindow().setNextButtonToFinish(); exportCSV(); } // protected void openMonitorDialog(String taskId) { MonitorDialog monitorDialog = new MonitorDialog(taskId, getEventBus()); monitorDialog.addProgressDialogListener(this); monitorDialog.setBackgroundBtnEnabled(false); monitorDialog.show(); } @Override public void operationComplete(TRId trId) { newTrId = trId; SafeHtmlBuilder safeHtmlBuilder = new SafeHtmlBuilder(); safeHtmlBuilder .appendHtmlConstant("
Operation Completed
"); resultField.setHTML(safeHtmlBuilder.toSafeHtml()); resultField.setVisible(true); Command sayComplete = new Command() { public void execute() { try { getWizardWindow().close(false); Log.info("fire Complete: " + newTrId); getWizardWindow().fireCompleted(newTrId); } catch (Exception e) { Log.error("fire Complete :" + e.getLocalizedMessage()); } } }; getWizardWindow().setNextButtonCommand(sayComplete); setNextButtonVisible(true); getWizardWindow().setEnableNextButton(true); forceLayout(); } @Override public void operationFailed(Throwable caught, String reason, String details) { SafeHtmlBuilder safeHtmlBuilder = new SafeHtmlBuilder(); safeHtmlBuilder .appendHtmlConstant("
Operation Failed
"); resultField.setHTML(safeHtmlBuilder.toSafeHtml()); resultField.setVisible(true); if (caught instanceof TDGWTSessionExpiredException) { getEventBus() .fireEvent( new SessionExpiredEvent( SessionExpiredType.EXPIREDONSERVER)); } else { showErrorAndHide("Error in Export", reason,caught); } forceLayout(); } @Override public void operationStopped(TRId trId, String reason, String details) { newTrId = trId; SafeHtmlBuilder safeHtmlBuilder = new SafeHtmlBuilder(); safeHtmlBuilder .appendHtmlConstant("
Problems in the Operation
"); resultField.setHTML(safeHtmlBuilder.toSafeHtml()); resultField.setVisible(true); Command sayComplete = new Command() { public void execute() { try { getWizardWindow().close(false); Log.info("fire Complete: tabular resource " + newTrId.getId()); Log.info("fire Complete: tableId " + newTrId.getTableId()); getWizardWindow().fireCompleted(newTrId); } catch (Exception e) { Log.error("fire Complete :" + e.getLocalizedMessage()); } } }; getWizardWindow().setNextButtonCommand(sayComplete); setNextButtonVisible(true); getWizardWindow().setEnableNextButton(true); forceLayout(); } @Override public void operationAborted() { SafeHtmlBuilder safeHtmlBuilder = new SafeHtmlBuilder(); safeHtmlBuilder .appendHtmlConstant("
Operation Aborted
"); resultField.setHTML(safeHtmlBuilder.toSafeHtml()); resultField.setVisible(true); Command sayComplete = new Command() { public void execute() { try { getWizardWindow().close(false); Log.info("fire Aborted"); getWizardWindow().fireAborted(); } catch (Exception e) { Log.error("fire Aborted :" + e.getLocalizedMessage()); } } }; getWizardWindow().setNextButtonCommand(sayComplete); setNextButtonVisible(true); getWizardWindow().setEnableNextButton(true); forceLayout(); } @Override public void operationPutInBackground() { SafeHtmlBuilder safeHtmlBuilder = new SafeHtmlBuilder(); safeHtmlBuilder .appendHtmlConstant("
Operation in Background
"); resultField.setHTML(safeHtmlBuilder.toSafeHtml()); resultField.setVisible(true); Command sayComplete = new Command() { public void execute() { try { getWizardWindow().close(false); Log.info("fire Operation In Background"); getWizardWindow().firePutInBackground(); } catch (Exception e) { Log.error("fire Operation In Background :" + e.getLocalizedMessage()); } } }; getWizardWindow().setNextButtonCommand(sayComplete); setNextButtonVisible(true); getWizardWindow().setEnableNextButton(true); forceLayout(); } }