Package sos.scheduler.editor.conf.forms

Source Code of sos.scheduler.editor.conf.forms.JobAssistentProcessForms

/********************************************************* begin of preamble
**
** Copyright (C) 2003-2010 Software- und Organisations-Service GmbH.
** All rights reserved.
**
** This file may be used under the terms of either the
**
**   GNU General Public License version 2.0 (GPL)
**
**   as published by the Free Software Foundation
**   http://www.gnu.org/licenses/gpl-2.0.txt and appearing in the file
**   LICENSE.GPL included in the packaging of this file.
**
** or the
** 
**   Agreement for Purchase and Licensing
**
**   as offered by Software- und Organisations-Service GmbH
**   in the respective terms of supply that ship with this file.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
** IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
** THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
** PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
** BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
** POSSIBILITY OF SUCH DAMAGE.
********************************************************** end of preamble*/
package sos.scheduler.editor.conf.forms;

import org.eclipse.swt.SWT;
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.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
import org.jdom.Element;
import sos.scheduler.editor.app.Editor;
import sos.scheduler.editor.app.MainWindow;
import sos.scheduler.editor.app.Messages;
import sos.scheduler.editor.app.Options;
import sos.scheduler.editor.app.ResourceManager;
import sos.scheduler.editor.app.Utils;
import sos.scheduler.editor.conf.ISchedulerUpdate;
import sos.scheduler.editor.conf.SchedulerDom;
import sos.scheduler.editor.conf.listeners.JobsListener;
import sos.scheduler.editor.conf.listeners.ExecuteListener;
import org.eclipse.swt.widgets.Combo;

import com.swtdesigner.SWTResourceManager;

public class JobAssistentProcessForms {

  private SchedulerDom      dom              = null;

  private ISchedulerUpdate  update           = null;

  private ExecuteListener    executeListener = null;

  private Button            butFinish        = null;

  private Button            butCancel        = null;

  private Button            butNext          = null;

  private Button            butShow          = null

  private Button            butBack          = null;

  private Text              txtFile          = null;

  private Text              txtParameter     = null;

  private Text              txtLog           = null;

  /** Wer hat ihn aufgerufen, der Job assistent oder job_chain assistent*/
  private int               assistentType    = -1;    

  private Shell processShell                 = null;

  private Combo             jobname          = null;

  private Element           jobBackUp        = null

  private JobMainForm           jobForm          = null;

  /** Hilsvariable f�r das Schliessen des Dialogs.
   * Das wird gebraucht wenn das Dialog �ber den "X"-Botten (oben rechts vom Dialog) geschlossen wird .*/
  private boolean               closeDialog   = false;        


  public JobAssistentProcessForms(SchedulerDom dom_, ISchedulerUpdate update_, Element job_, int assistentType_) {
    dom = dom_;
    update = update_;
    assistentType = assistentType_;
    executeListener = new ExecuteListener(dom, job_);   
  }

  public void showProcessForm() {

    processShell = new Shell(MainWindow.getSShell(), SWT.CLOSE | SWT.TITLE | SWT.APPLICATION_MODAL | SWT.BORDER);
    processShell.addShellListener(new ShellAdapter() {
      public void shellClosed(final ShellEvent e) {
        if(!closeDialog)
          close();
        e.doit = processShell.isDisposed();
      }
    });
    processShell.setImage(ResourceManager.getImageFromResource("/sos/scheduler/editor/editor.png"));
    final GridLayout gridLayout = new GridLayout();
    gridLayout.numColumns = 2;
    processShell.setLayout(gridLayout);
    processShell.setSize(434, 207);
    String step = "  ";
    if (Utils.getAttributeValue("order", executeListener.getJob()).equalsIgnoreCase("yes"))
      step = step + " [Step 5 of 9]";
    else
      step = step + " [Step 5 of 8]";
    processShell.setText("Execute" + step);

    {
      final Group jobGroup = new Group(processShell, SWT.NONE);
      jobGroup.setText(" Job: " + Utils.getAttributeValue("name", executeListener.getJob()));
      final GridData gridData = new GridData(GridData.FILL, GridData.CENTER, true, false, 2, 1);
      jobGroup.setLayoutData(gridData);
      final GridLayout gridLayout_1 = new GridLayout();
      gridLayout_1.marginWidth = 10;
      gridLayout_1.marginTop = 10;
      gridLayout_1.marginRight = 10;
      gridLayout_1.marginLeft = 10;
      gridLayout_1.marginHeight = 10;
      gridLayout_1.marginBottom = 10;
      gridLayout_1.numColumns = 2;
      jobGroup.setLayout(gridLayout_1);

      {
        final Label lblFile = new Label(jobGroup, SWT.NONE);
        lblFile.setText("File");
      }
      txtFile = new Text(jobGroup, SWT.BORDER);
      txtFile.setFocus();
      txtFile.addModifyListener(new ModifyListener() {
        public void modifyText(final ModifyEvent e) {
          if(txtFile.getText() != null || txtFile.getText().trim().length() > 0) {
            executeListener.setFile(txtFile.getText());
          }
        }
      });
      txtFile.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false));
      txtFile.setFont(SWTResourceManager.getFont("", 8, SWT.BOLD));
      txtFile.setEnabled(false);

      txtFile.setText(executeListener.getFile() );

      {
        final Label lblParameter = new Label(jobGroup, SWT.NONE);
        lblParameter.setText("Parameter");
      }
      txtParameter = new Text(jobGroup, SWT.BORDER);
      txtParameter.addModifyListener(new ModifyListener() {
        public void modifyText(final ModifyEvent e) {
          if(txtParameter.getText() != null || txtParameter.getText().trim().length() > 0) {
            executeListener.setParam(txtParameter.getText());
          }
        }
      });
      txtParameter.setLayoutData(new GridData(GridData.FILL, GridData.CENTER, true, false));
      txtParameter.setFont(SWTResourceManager.getFont("", 8, SWT.BOLD));
      txtParameter.setEnabled(false);

      txtParameter.setText(executeListener.getParam());

      {
        final Label lblRessources = new Label(jobGroup, SWT.NONE);
        lblRessources.setLayoutData(new GridData(SWT.DEFAULT, 17));
        lblRessources.setText("Log File");

      }
      txtLog = new Text(jobGroup, SWT.BORDER);
      txtLog.addModifyListener(new ModifyListener() {
        public void modifyText(final ModifyEvent e) {
          if(txtLog.getText() != null || txtLog.getText().trim().length() > 0) {
            executeListener.setLogFile(txtLog.getText());
          }
        }
      });
      final GridData gridData_1 = new GridData(GridData.FILL, GridData.FILL, true, false);
      gridData_1.heightHint = 0;
      txtLog.setLayoutData(gridData_1);
      txtLog.setFont(SWTResourceManager.getFont("", 8, SWT.BOLD));
      txtLog.setEnabled(false);

      txtLog.setText(executeListener.getLogFile());
    }


    if(executeListener.getFile() == null || executeListener.getFile().trim().length()==0){
      txtFile.setEnabled(true);
    }

    if(executeListener.getParam() == null || executeListener.getParam().trim().length() ==0) {
      txtParameter.setEnabled(true);
    }

    if(executeListener.getLogFile() == null || executeListener.getLogFile().trim().length() ==0) {
      txtLog.setEnabled(true);
    }


    java.awt.Dimension screen = java.awt.Toolkit.getDefaultToolkit().getScreenSize();   
    processShell.setBounds((screen.width - processShell.getBounds().width) /2,
        (screen.height - processShell.getBounds().height) /2,
        processShell.getBounds().width,
        processShell.getBounds().height);
    processShell.open();

    final Composite composite = new Composite(processShell, SWT.NONE);
    composite.setLayoutData(new GridData());
    final GridLayout gridLayout_2 = new GridLayout();
    gridLayout_2.marginWidth = 0;
    composite.setLayout(gridLayout_2);
    {
      butCancel = new Button(composite, SWT.NONE);
      butCancel.addSelectionListener(new SelectionAdapter() {
        public void widgetSelected(final SelectionEvent e) {
          close();
        }
      });
      butCancel.setText("Cancel");
    }

    final Composite composite_1 = new Composite(processShell, SWT.NONE);
    final GridData gridData = new GridData(GridData.END, GridData.CENTER, true, false);
    gridData.widthHint = 220;
    composite_1.setLayoutData(gridData);
    final GridLayout gridLayout_3 = new GridLayout();
    gridLayout_3.marginWidth = 0;
    gridLayout_3.numColumns = 5;
    composite_1.setLayout(gridLayout_3);

    {
      butShow = new Button(composite_1, SWT.NONE);
      butShow.setLayoutData(new GridData());
      butShow.addSelectionListener(new SelectionAdapter() {
        public void widgetSelected(final SelectionEvent e) {                   
          Utils.showClipboard(Utils.getElementAsString(executeListener.getJob()), processShell, false, null, false, null, false);
          txtFile.setFocus();
        }
      });
      butShow.setText("Show");
    }

    {
      butFinish = new Button(composite_1, SWT.NONE);
      butFinish.addSelectionListener(new SelectionAdapter() {
        public void widgetSelected(final SelectionEvent e) {
          doFinish();                   
        }
      });
      butFinish.setText("Finish");
    }

    butBack = new Button(composite_1, SWT.NONE);
    butBack.addSelectionListener(new SelectionAdapter() {
      public void widgetSelected(final SelectionEvent e) {
        doBack();

      }
    });
    final GridData gridData_1 = new GridData(GridData.FILL, GridData.CENTER, false, false);
    gridData_1.widthHint = 47;
    butBack.setLayoutData(gridData_1);
    butBack.setText("Back");
    {
      butNext = new Button(composite_1, SWT.NONE);
      butNext.setLayoutData(new GridData(GridData.FILL, GridData.CENTER, false, false));
      butNext.setFont(SWTResourceManager.getFont("", 8, SWT.BOLD));
      butNext.addSelectionListener(new SelectionAdapter() {
        public void widgetSelected(final SelectionEvent e) {
          Utils.startCursor(processShell);
          if(Utils.getAttributeValue("order", executeListener.getJob()).equals("yes")) {
            JobAssistentTimeoutOrderForms timeout = new JobAssistentTimeoutOrderForms(dom, update, executeListener.getJob(), assistentType);
            timeout.showTimeOutForm();
            if(jobname != null)                          
              timeout.setJobname(jobname);           
            timeout.setBackUpJob(jobBackUp, jobForm);
          } else {
            JobAssistentTimeoutForms timeout = new JobAssistentTimeoutForms(dom, update, executeListener.getJob(), assistentType);
            timeout.showTimeOutForm();           
            timeout.setBackUpJob(jobBackUp, jobForm);
          }
          closeDialog = true;
          Utils.stopCursor(processShell);
          processShell.dispose();         
        }
      });
      butNext.setText("Next");
    }
    {
      Utils.createHelpButton(composite_1, "assistent.process", processShell);

    }
    setToolTipText();
    processShell.layout();   
  }

  public void setToolTipText() {
    butCancel.setToolTipText(Messages.getTooltip("assistent.cancel"));
    butNext.setToolTipText(Messages.getTooltip("assistent.next"));
    butShow.setToolTipText(Messages.getTooltip("assistent.show"));
    butFinish.setToolTipText(Messages.getTooltip("assistent.finish"));
    txtFile.setToolTipText(Messages.getTooltip("assistent.process_file"));
    txtParameter.setToolTipText(Messages.getTooltip("assistent.process_parameter"));
    txtLog.setToolTipText(Messages.getTooltip("assistent.process_log"));
    butBack.setToolTipText(Messages.getTooltip("butBack"));
  }

  private void close() {
    int cont = MainWindow.message(processShell, sos.scheduler.editor.app.Messages.getString("assistent.cancel"), SWT.ICON_WARNING | SWT.OK |SWT.CANCEL );
    if(cont == SWT.OK){
      if(jobBackUp != null)
        executeListener.getJob().setContent(jobBackUp.cloneContent());
      processShell.dispose();
    }
  }

  public void setJobname(Combo jobname) {
    this.jobname = jobname;
  }

  private void doBack() {
    if(executeListener.getJob().getChild("description") == null) {     
      //Wizzard ohne Jobbeschreibung wurde aufgerufen.
      JobAssistentExecuteForms execute = new JobAssistentExecuteForms(dom, update, executeListener.getJob(), assistentType);
      execute.showExecuteForm();
      if(jobname != null)                          
        execute.setJobname(jobname);     
      execute.setBackUpJob(jobBackUp, jobForm);
    } else {
      JobAssistentTasksForm tasks = new JobAssistentTasksForm(dom, update,  executeListener.getJob(), assistentType);                     
      tasks.showTasksForm()
      if(jobname != null)                          
        tasks.setJobname(jobname);     
      tasks.setBackUpJob(jobBackUp, jobForm);
    }       
    closeDialog = true;
    processShell.dispose();
  }

  /**
   * Der Wizzard wurde f�r ein bestehende Job gestartet.
   * Beim verlassen der Wizzard ohne Speichern, muss der bestehende Job ohne �nderungen wieder zur�ckgesetz werden.
   * @param backUpJob
   */
  public void setBackUpJob(Element backUpJob, JobMainForm jobForm_) {
    if(backUpJob != null)
      jobBackUp = (Element)backUpJob.clone()
    jobForm = jobForm_;
  }

  private void doFinish() {
    if(assistentType == Editor.JOB_WIZZARD) {                             
      jobForm.initForm()
    } else {
      JobsListener listener = new JobsListener(dom, update);
      listener.newImportJob(executeListener.getJob(), assistentType);
    }

    if(Options.getPropertyBoolean("editor.job.show.wizard"))
      Utils.showClipboard(Messages.getString("assistent.finish") + "\n\n" + Utils.getElementAsString(executeListener.getJob()), processShell, false, null, false, null, true);


    if(jobname != null)
      jobname.setText(Utils.getAttributeValue("name",executeListener.getJob()))
    closeDialog = true;
    processShell.dispose();
  }
}
TOP

Related Classes of sos.scheduler.editor.conf.forms.JobAssistentProcessForms

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.