/*! ****************************************************************************** * * 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.fileexists; import org.eclipse.swt.SWT; import org.eclipse.swt.custom.CCombo; import org.eclipse.swt.events.FocusListener; 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.graphics.Cursor; 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.Group; import org.eclipse.swt.widgets.Label; 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.exception.KettleException; 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.fileexists.FileExistsMeta; import org.pentaho.di.ui.core.dialog.ErrorDialog; import org.pentaho.di.ui.core.widget.TextVar; import org.pentaho.di.ui.trans.step.BaseStepDialog; public class FileExistsDialog extends BaseStepDialog implements StepDialogInterface { private static Class<?> PKG = FileExistsMeta.class; // for i18n purposes, needed by Translator2!! private boolean gotPreviousFields = false; private Label wlFileName; private CCombo wFileName; private FormData fdlFileName, fdFileName; private Label wlResult, wlFileType; private TextVar wResult, wFileType; private FormData fdlResult, fdResult, fdAdditionalFields, fdlFileType, fdFileType; private Label wlInclFileType; private Button wInclFileType; private FormData fdlInclFileType, fdInclFileType; private Group wAdditionalFields; private Button wAddResult; private FormData fdAddResult, fdlAddResult; private Label wlAddResult; private FileExistsMeta input; public FileExistsDialog( Shell parent, Object in, TransMeta transMeta, String sname ) { super( parent, (BaseStepMeta) in, transMeta, sname ); input = (FileExistsMeta) in; } public String open() { Shell parent = getParent(); Display display = parent.getDisplay(); shell = new Shell( parent, SWT.DIALOG_TRIM | SWT.RESIZE | SWT.MAX | SWT.MIN ); 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, "FileExistsDialog.Shell.Title" ) ); int middle = props.getMiddlePct(); int margin = Const.MARGIN; // Stepname line wlStepname = new Label( shell, SWT.RIGHT ); wlStepname.setText( BaseMessages.getString( PKG, "FileExistsDialog.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 ); // filename field wlFileName = new Label( shell, SWT.RIGHT ); wlFileName.setText( BaseMessages.getString( PKG, "FileExistsDialog.FileName.Label" ) ); props.setLook( wlFileName ); fdlFileName = new FormData(); fdlFileName.left = new FormAttachment( 0, 0 ); fdlFileName.right = new FormAttachment( middle, -margin ); fdlFileName.top = new FormAttachment( wStepname, margin ); wlFileName.setLayoutData( fdlFileName ); wFileName = new CCombo( shell, SWT.BORDER | SWT.READ_ONLY ); props.setLook( wFileName ); wFileName.addModifyListener( lsMod ); fdFileName = new FormData(); fdFileName.left = new FormAttachment( middle, 0 ); fdFileName.top = new FormAttachment( wStepname, margin ); fdFileName.right = new FormAttachment( 100, -margin ); wFileName.setLayoutData( fdFileName ); wFileName.addFocusListener( new FocusListener() { public void focusLost( org.eclipse.swt.events.FocusEvent e ) { } public void focusGained( org.eclipse.swt.events.FocusEvent e ) { Cursor busy = new Cursor( shell.getDisplay(), SWT.CURSOR_WAIT ); shell.setCursor( busy ); get(); shell.setCursor( null ); busy.dispose(); } } ); // Result fieldname ... wlResult = new Label( shell, SWT.RIGHT ); wlResult.setText( BaseMessages.getString( PKG, "FileExistsDialog.ResultField.Label" ) ); props.setLook( wlResult ); fdlResult = new FormData(); fdlResult.left = new FormAttachment( 0, 0 ); fdlResult.right = new FormAttachment( middle, -margin ); fdlResult.top = new FormAttachment( wFileName, margin * 2 ); wlResult.setLayoutData( fdlResult ); wResult = new TextVar( transMeta, shell, SWT.SINGLE | SWT.LEFT | SWT.BORDER ); wResult.setToolTipText( BaseMessages.getString( PKG, "FileExistsDialog.ResultField.Tooltip" ) ); props.setLook( wResult ); wResult.addModifyListener( lsMod ); fdResult = new FormData(); fdResult.left = new FormAttachment( middle, 0 ); fdResult.top = new FormAttachment( wFileName, margin * 2 ); fdResult.right = new FormAttachment( 100, 0 ); wResult.setLayoutData( fdResult ); // Add filename to result filenames? wlAddResult = new Label( shell, SWT.RIGHT ); wlAddResult.setText( BaseMessages.getString( PKG, "FileExistsDialog.AddResult.Label" ) ); props.setLook( wlAddResult ); fdlAddResult = new FormData(); fdlAddResult.left = new FormAttachment( 0, 0 ); fdlAddResult.top = new FormAttachment( wResult, margin ); fdlAddResult.right = new FormAttachment( middle, -margin ); wlAddResult.setLayoutData( fdlAddResult ); wAddResult = new Button( shell, SWT.CHECK ); props.setLook( wAddResult ); wAddResult.setToolTipText( BaseMessages.getString( PKG, "FileExistsDialog.AddResult.Tooltip" ) ); fdAddResult = new FormData(); fdAddResult.left = new FormAttachment( middle, 0 ); fdAddResult.top = new FormAttachment( wResult, margin ); wAddResult.setLayoutData( fdAddResult ); // /////////////////////////////// // START OF Additional Fields GROUP // // /////////////////////////////// wAdditionalFields = new Group( shell, SWT.SHADOW_NONE ); props.setLook( wAdditionalFields ); wAdditionalFields.setText( BaseMessages.getString( PKG, "FileExistsDialog.wAdditionalFields.Label" ) ); FormLayout AdditionalFieldsgroupLayout = new FormLayout(); AdditionalFieldsgroupLayout.marginWidth = 10; AdditionalFieldsgroupLayout.marginHeight = 10; wAdditionalFields.setLayout( AdditionalFieldsgroupLayout ); // include filetype? wlInclFileType = new Label( wAdditionalFields, SWT.RIGHT ); wlInclFileType.setText( BaseMessages.getString( PKG, "FileExistsDialog.InclFileType.Label" ) ); props.setLook( wlInclFileType ); fdlInclFileType = new FormData(); fdlInclFileType.left = new FormAttachment( 0, 0 ); fdlInclFileType.top = new FormAttachment( wResult, margin ); fdlInclFileType.right = new FormAttachment( middle, -margin ); wlInclFileType.setLayoutData( fdlInclFileType ); wInclFileType = new Button( wAdditionalFields, SWT.CHECK ); props.setLook( wInclFileType ); wInclFileType.setToolTipText( BaseMessages.getString( PKG, "FileExistsDialog.InclFileType.Tooltip" ) ); fdInclFileType = new FormData(); fdInclFileType.left = new FormAttachment( middle, 0 ); fdInclFileType.top = new FormAttachment( wResult, margin ); wInclFileType.setLayoutData( fdInclFileType ); // Enable/disable the right fields to allow a filename to be added to each row... wInclFileType.addSelectionListener( new SelectionAdapter() { public void widgetSelected( SelectionEvent e ) { activeFileType(); } } ); // FileType fieldname ... wlFileType = new Label( wAdditionalFields, SWT.RIGHT ); wlFileType.setText( BaseMessages.getString( PKG, "FileExistsDialog.FileTypeField.Label" ) ); props.setLook( wlFileType ); fdlFileType = new FormData(); fdlFileType.left = new FormAttachment( wInclFileType, 2 * margin ); fdlFileType.top = new FormAttachment( wResult, margin ); wlFileType.setLayoutData( fdlFileType ); wFileType = new TextVar( transMeta, wAdditionalFields, SWT.SINGLE | SWT.LEFT | SWT.BORDER ); wFileType.setToolTipText( BaseMessages.getString( PKG, "FileExistsDialog.FileTypeField.Tooltip" ) ); props.setLook( wFileType ); wFileType.addModifyListener( lsMod ); fdFileType = new FormData(); fdFileType.left = new FormAttachment( wlFileType, margin ); fdFileType.top = new FormAttachment( wResult, margin ); fdFileType.right = new FormAttachment( 100, 0 ); wFileType.setLayoutData( fdFileType ); fdAdditionalFields = new FormData(); fdAdditionalFields.left = new FormAttachment( 0, margin ); fdAdditionalFields.top = new FormAttachment( wAddResult, margin ); fdAdditionalFields.right = new FormAttachment( 100, -margin ); wAdditionalFields.setLayoutData( fdAdditionalFields ); // /////////////////////////////// // END OF Additional Fields GROUP // // /////////////////////////////// // THE 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, wAdditionalFields ); // Add listeners lsOK = new Listener() { public void handleEvent( Event e ) { ok(); } }; lsCancel = new Listener() { public void handleEvent( Event e ) { cancel(); } }; wOK.addListener( SWT.Selection, lsOK ); wCancel.addListener( SWT.Selection, lsCancel ); 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(); activeFileType(); input.setChanged( changed ); shell.open(); while ( !shell.isDisposed() ) { if ( !display.readAndDispatch() ) { display.sleep(); } } return stepname; } private void activeFileType() { wlFileType.setEnabled( wInclFileType.getSelection() ); wFileType.setEnabled( wInclFileType.getSelection() ); } /** * Copy information from the meta-data input to the dialog fields. */ public void getData() { if ( input.getDynamicFilenameField() != null ) { wFileName.setText( input.getDynamicFilenameField() ); } if ( input.getResultFieldName() != null ) { wResult.setText( input.getResultFieldName() ); } wInclFileType.setSelection( input.includeFileType() ); if ( input.getFileTypeFieldName() != null ) { wFileType.setText( input.getFileTypeFieldName() ); } wAddResult.setSelection( input.addResultFilenames() ); wStepname.selectAll(); wStepname.setFocus(); } private void cancel() { stepname = null; input.setChanged( changed ); dispose(); } private void ok() { if ( Utils.isEmpty( wStepname.getText() ) ) { return; } input.setDynamicFilenameField( wFileName.getText() ); input.setResultFieldName( wResult.getText() ); input.setincludeFileType( wInclFileType.getSelection() ); input.setFileTypeFieldName( wFileType.getText() ); input.setaddResultFilenames( wAddResult.getSelection() ); stepname = wStepname.getText(); // return value dispose(); } private void get() { if ( !gotPreviousFields ) { try { String fieldvalue = wFileName.getText(); wFileName.removeAll(); RowMetaInterface r = transMeta.getPrevStepFields( stepname ); if ( r != null ) { wFileName.setItems( r.getFieldNames() ); } if ( fieldvalue != null ) { wFileName.setText( fieldvalue ); } gotPreviousFields = true; } catch ( KettleException ke ) { new ErrorDialog( shell, BaseMessages.getString( PKG, "FileExistsDialog.FailedToGetFields.DialogTitle" ), BaseMessages .getString( PKG, "FileExistsDialog.FailedToGetFields.DialogMessage" ), ke ); } } } }