/*! ****************************************************************************** * * Pentaho Data Integration * * Copyright (C) 2002-2016 by Pentaho : http://www.pentaho.com * ******************************************************************************* * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ******************************************************************************/ package org.pentaho.di.ui.trans.steps.filestoresult; import org.eclipse.swt.SWT; import org.eclipse.swt.custom.CCombo; import org.eclipse.swt.events.ModifyEvent; import org.eclipse.swt.events.ModifyListener; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.events.ShellAdapter; import org.eclipse.swt.events.ShellEvent; import org.eclipse.swt.layout.FormAttachment; import org.eclipse.swt.layout.FormData; import org.eclipse.swt.layout.FormLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.List; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Text; import org.pentaho.di.core.Const; import org.pentaho.di.core.util.Utils; import org.pentaho.di.core.ResultFile; import org.pentaho.di.core.row.RowMetaInterface; import org.pentaho.di.i18n.BaseMessages; import org.pentaho.di.trans.TransMeta; import org.pentaho.di.trans.step.BaseStepMeta; import org.pentaho.di.trans.step.StepDialogInterface; import org.pentaho.di.trans.steps.filestoresult.FilesToResultMeta; import org.pentaho.di.ui.core.dialog.ErrorDialog; import org.pentaho.di.ui.trans.step.BaseStepDialog; public class FilesToResultDialog extends BaseStepDialog implements StepDialogInterface { private static Class<?> PKG = FilesToResultMeta.class; // for i18n purposes, needed by Translator2!! private Label wlFilenameField; private CCombo wFilenameField; private FormData fdlFilenameField, fdFilenameField; private Label wlTypes; private List wTypes; private FormData fdlTypes, fdTypes; private FilesToResultMeta input; public FilesToResultDialog( Shell parent, Object in, TransMeta tr, String sname ) { super( parent, (BaseStepMeta) in, tr, sname ); input = (FilesToResultMeta) in; } public String open() { Shell parent = getParent(); Display display = parent.getDisplay(); shell = new Shell( parent, SWT.DIALOG_TRIM | SWT.MIN | SWT.MAX | SWT.RESIZE ); props.setLook( shell ); setShellImage( shell, input ); ModifyListener lsMod = new ModifyListener() { public void modifyText( ModifyEvent e ) { input.setChanged(); } }; changed = input.hasChanged(); FormLayout formLayout = new FormLayout(); formLayout.marginWidth = Const.FORM_MARGIN; formLayout.marginHeight = Const.FORM_MARGIN; shell.setLayout( formLayout ); shell.setText( BaseMessages.getString( PKG, "FilesToResultDialog.Shell.Title" ) ); int middle = props.getMiddlePct(); int margin = Const.MARGIN; // Stepname line wlStepname = new Label( shell, SWT.RIGHT ); wlStepname.setText( BaseMessages.getString( PKG, "FilesToResultDialog.Stepname.Label" ) ); props.setLook( wlStepname ); fdlStepname = new FormData(); fdlStepname.left = new FormAttachment( 0, 0 ); fdlStepname.right = new FormAttachment( middle, -margin ); fdlStepname.top = new FormAttachment( 0, margin ); wlStepname.setLayoutData( fdlStepname ); wStepname = new Text( shell, SWT.SINGLE | SWT.LEFT | SWT.BORDER ); wStepname.setText( stepname ); props.setLook( wStepname ); wStepname.addModifyListener( lsMod ); fdStepname = new FormData(); fdStepname.left = new FormAttachment( middle, 0 ); fdStepname.top = new FormAttachment( 0, margin ); fdStepname.right = new FormAttachment( 100, 0 ); wStepname.setLayoutData( fdStepname ); // The rest... // FilenameField line wlFilenameField = new Label( shell, SWT.RIGHT ); wlFilenameField.setText( BaseMessages.getString( PKG, "FilesToResultDialog.FilenameField.Label" ) ); props.setLook( wlFilenameField ); fdlFilenameField = new FormData(); fdlFilenameField.left = new FormAttachment( 0, 0 ); fdlFilenameField.top = new FormAttachment( wStepname, margin ); fdlFilenameField.right = new FormAttachment( middle, -margin ); wlFilenameField.setLayoutData( fdlFilenameField ); wFilenameField = new CCombo( shell, SWT.SINGLE | SWT.LEFT | SWT.BORDER ); wFilenameField.setToolTipText( BaseMessages.getString( PKG, "FilesToResultDialog.FilenameField.Tooltip" ) ); props.setLook( wFilenameField ); wFilenameField.addModifyListener( lsMod ); fdFilenameField = new FormData(); fdFilenameField.left = new FormAttachment( middle, 0 ); fdFilenameField.top = new FormAttachment( wStepname, margin ); fdFilenameField.right = new FormAttachment( 100, 0 ); wFilenameField.setLayoutData( fdFilenameField ); /* * Get the field names from the previous steps, in the background though */ Runnable runnable = new Runnable() { public void run() { try { RowMetaInterface inputfields = transMeta.getPrevStepFields( stepname ); if ( inputfields != null ) { for ( int i = 0; i < inputfields.size(); i++ ) { wFilenameField.add( inputfields.getValueMeta( i ).getName() ); } } } catch ( Exception ke ) { new ErrorDialog( shell, BaseMessages.getString( PKG, "FilesToResultDialog.FailedToGetFields.DialogTitle" ), BaseMessages.getString( PKG, "FilesToResultDialog.FailedToGetFields.DialogMessage" ), ke ); } } }; display.asyncExec( runnable ); // Some buttons wOK = new Button( shell, SWT.PUSH ); wOK.setText( BaseMessages.getString( PKG, "System.Button.OK" ) ); wCancel = new Button( shell, SWT.PUSH ); wCancel.setText( BaseMessages.getString( PKG, "System.Button.Cancel" ) ); setButtonPositions( new Button[] { wOK, wCancel }, margin, null ); // Include Files? wlTypes = new Label( shell, SWT.RIGHT ); wlTypes.setText( BaseMessages.getString( PKG, "FilesToResultDialog.TypeOfFile.Label" ) ); props.setLook( wlTypes ); fdlTypes = new FormData(); fdlTypes.left = new FormAttachment( 0, 0 ); fdlTypes.top = new FormAttachment( wFilenameField, margin ); fdlTypes.right = new FormAttachment( middle, -margin ); wlTypes.setLayoutData( fdlTypes ); wTypes = new List( shell, SWT.SINGLE | SWT.BORDER | SWT.V_SCROLL | SWT.H_SCROLL ); wTypes.setToolTipText( BaseMessages.getString( PKG, "FilesToResultDialog.TypeOfFile.Tooltip" ) ); props.setLook( wTypes ); fdTypes = new FormData(); fdTypes.left = new FormAttachment( middle, 0 ); fdTypes.top = new FormAttachment( wFilenameField, margin ); fdTypes.bottom = new FormAttachment( wOK, -margin * 3 ); fdTypes.right = new FormAttachment( 100, 0 ); wTypes.setLayoutData( fdTypes ); for ( int i = 0; i < ResultFile.getAllTypeDesc().length; i++ ) { wTypes.add( ResultFile.getAllTypeDesc()[i] ); } // Add listeners lsCancel = new Listener() { public void handleEvent( Event e ) { cancel(); } }; lsOK = new Listener() { public void handleEvent( Event e ) { ok(); } }; wCancel.addListener( SWT.Selection, lsCancel ); wOK.addListener( SWT.Selection, lsOK ); lsDef = new SelectionAdapter() { public void widgetDefaultSelected( SelectionEvent e ) { ok(); } }; wStepname.addSelectionListener( lsDef ); // Detect X or ALT-F4 or something that kills this window... shell.addShellListener( new ShellAdapter() { public void shellClosed( ShellEvent e ) { cancel(); } } ); // Set the shell size, based upon previous time... setSize(); getData(); input.setChanged( changed ); shell.open(); while ( !shell.isDisposed() ) { if ( !display.readAndDispatch() ) { display.sleep(); } } return stepname; } /** * Copy information from the meta-data input to the dialog fields. */ public void getData() { wTypes.select( input.getFileType() ); if ( input.getFilenameField() != null ) { wFilenameField.setText( input.getFilenameField() ); } wStepname.selectAll(); wStepname.setFocus(); } private void cancel() { stepname = null; input.setChanged( changed ); dispose(); } private void ok() { if ( Utils.isEmpty( wStepname.getText() ) ) { return; } stepname = wStepname.getText(); // return value input.setFilenameField( wFilenameField.getText() ); if ( wTypes.getSelectionIndex() >= 0 ) { input.setFileType( wTypes.getSelectionIndex() ); } else { input.setFileType( ResultFile.FILE_TYPE_GENERAL ); } dispose(); } }