Package sos.scheduler.editor.conf.forms

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

/********************************************************* 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 javax.xml.transform.TransformerException;

import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.SashForm;
import org.eclipse.swt.events.ModifyEvent;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.events.MouseAdapter;
import org.eclipse.swt.events.MouseEvent;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableColumn;
import org.eclipse.swt.widgets.TableItem;
import org.jdom.Element;
import org.jdom.JDOMException;

import sos.scheduler.editor.app.ContextMenu;
import sos.scheduler.editor.app.Editor;
import sos.scheduler.editor.app.IUnsaved;
import sos.scheduler.editor.app.IUpdateLanguage;
import sos.scheduler.editor.app.Messages;
import sos.scheduler.editor.app.Utils;
import sos.scheduler.editor.conf.ISchedulerUpdate;
import sos.scheduler.editor.conf.SchedulerDom;
import sos.scheduler.editor.conf.listeners.JobCommandExitCodesListener;

public class JobCommandExitCodesForm extends Composite implements IUnsaved, IUpdateLanguage {


  private Table                         tCommands                    = null;

  private JobCommandExitCodesListener   listener                     = null;

  private Group                         jobsAndOrdersGroup           = null;

  private Group                         gMain                        = null;

  private SashForm                      sashForm                     = null;

  private boolean                       updateTree                   = false;

  private boolean                       event                        = false;

  private Combo                         cExitcode                    = null;

  private Button                        bRemoveExitcode              = null;

  private Button                        addJobButton                 = null;

  private Button                        addOrderButton               = null;

  private SchedulerDom                  _dom                         = null;
 

  public JobCommandExitCodesForm(Composite parent, int style, SchedulerDom dom, Element command, ISchedulerUpdate main
  throws JDOMException, TransformerException {
    super(parent, style);

    _dom = dom;
    listener = new JobCommandExitCodesListener(dom, command, main);
    initialize();
    setToolTipText();

    dom.setInit(true);

    listener.fillCommands(tCommands);   
    updateTree = false;
    cExitcode.setText(listener.getExitCode());
    updateTree = true;

    dom.setInit(false);   
    event = true;



    if (command.getParentElement() != null ){         
      this.jobsAndOrdersGroup.setEnabled(Utils.isElementEnabled("job", dom, command.getParentElement()));         
    }

  }


  public void apply() {
    if (isUnsaved())
      addParam();
    //addCommand();
  }


  public boolean isUnsaved() {
    return false;
  }


  private void initialize() {
    this.setLayout(new FillLayout());
    createGroup();
    cExitcode.setFocus();
    //setSize(new org.eclipse.swt.graphics.Point(723, 566));
  }


  /**
   * This method initializes group
   */
  private void createGroup() {
    GridLayout gridLayout2 = new GridLayout();
    gridLayout2.makeColumnsEqualWidth = true;
    gridLayout2.numColumns = 1;
    jobsAndOrdersGroup = new Group(this, SWT.NONE);
    jobsAndOrdersGroup.setText("Commands for Job: " + listener.getName() + (listener.isDisabled() ? " (Disabled)" : ""));
    jobsAndOrdersGroup.setLayout(gridLayout2);
    GridData gridData18 = new org.eclipse.swt.layout.GridData(GridData.FILL, GridData.FILL, true, true, 1, 2);
    sashForm = new SashForm(jobsAndOrdersGroup, SWT.NONE);
    //sashForm.setWeights(new int[] { 1 });
    sashForm.setOrientation(512);
    sashForm.setLayoutData(gridData18);
    //parameter
    //createJobCommandParameter();
    //environment
    //createEnvironment();   
    createSashForm();
  }



  /**
   * This method initializes group1
   */
  private void createGroup1() {

    createCombo();
    createComposite();
  }


  /**
   * This method initializes combo
   */
  private void createCombo() {
  }


  /**
   * This method initializes composite
   */
  private void createComposite() {
  }


  /**
   * This method initializes sashForm
   */
  private void createSashForm() {

    createGroup1();
    createGroup2();
    createGroup3();
  }


  /**
   * This method initializes group2
   */
  private void createGroup2() {
    GridLayout gridLayout = new GridLayout();
    gridLayout.numColumns = 2;
    gridLayout.marginHeight = 0;
    gridLayout.verticalSpacing = 0;
    //gDescription =  new Composite(sashForm, SWT.NONE);
    //gDescription.setText("Jobs and orders");
    gMain = new Group(sashForm, SWT.NONE);
    gMain.setText("Commands");
    gMain.setLayout(gridLayout);

    cExitcode = new Combo(gMain, SWT.NONE);
    cExitcode.setItems(new String[] {"error", "success", "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGIOT", "SIGBUS", "SIGFPE", "SIGKILL", "SIGUSR1", "SIGSEGV", "SIGUSR2", "SIGPIPE", "SIGALRM", "SIGTERM", "SIGSTKFLT", "SIGCHLD", "SIGCONT", "SIGSTOP", "SIGTSTP", "SIGTTIN", "SIGTTOU", "SIGURG", "SIGXCPU", "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH", "SIGPOLL", "SIGIO", "SIGPWR", "SIGSYS"});
    cExitcode.addModifyListener(new ModifyListener() {
      public void modifyText(final ModifyEvent e) {
        listener.setExitCode(cExitcode.getText(), updateTree);
        jobsAndOrdersGroup.setText("Job: " + listener.getName() + " " + listener.getExitCode() + " "
            + (listener.isDisabled() ? " (Disabled)" : ""));
        if (event) {
          listener.setExitCode(cExitcode.getText(), true);         
        }
        // bApplyExitcode.setEnabled(!cExitcode.getText().equals(""));

      }
    });
    final GridData gridData_9 = new GridData(GridData.FILL, GridData.CENTER, true, false);
    cExitcode.setLayoutData(gridData_9);

    final Composite composite = new Composite(gMain, SWT.NONE);
    final GridData gridData_1 = new GridData(GridData.FILL, GridData.FILL, true, false);
    gridData_1.widthHint = 63;
    composite.setLayoutData(gridData_1);
    final GridLayout gridLayout_1 = new GridLayout();
    gridLayout_1.horizontalSpacing = 0;
    gridLayout_1.verticalSpacing = 0;
    gridLayout_1.marginHeight = 0;
    gridLayout_1.marginWidth = 0;
    composite.setLayout(gridLayout_1);

    addJobButton = new Button(composite, SWT.NONE);
    addJobButton.addSelectionListener(new SelectionAdapter() {
      public void widgetSelected(final SelectionEvent e) {
        addJob();
      }
    });
    addJobButton.setLayoutData(new GridData(GridData.FILL, GridData.BEGINNING, false, false));
    addJobButton.setText("Add Job");

    addOrderButton = new Button(composite, SWT.NONE);
    addOrderButton.setLayoutData(new GridData(GridData.FILL, GridData.FILL, false, false));
    addOrderButton.addSelectionListener(new SelectionAdapter() {
      public void widgetSelected(final SelectionEvent e) {
        addOrder();
      }
    });
    addOrderButton.setText("Add Order");

    final Label exitLabel = new Label(gMain, SWT.NONE);
    exitLabel.setLayoutData(new GridData(73, SWT.DEFAULT));
    exitLabel.setText("Exit  codes");
    new Label(gMain, SWT.NONE);

    tCommands = new Table(gMain, SWT.FULL_SELECTION | SWT.BORDER);
    tCommands.addMouseListener(new MouseAdapter() {
      public void mouseDoubleClick(final MouseEvent e) {
        if(tCommands.getSelectionCount() > 0){
          String name = tCommands.getSelection()[0].getText(0) +": " + tCommands.getSelection()[0].getText(1) + tCommands.getSelection()[0].getText(2);
          ContextMenu.goTo(name, _dom, Editor.JOB_COMMAND_EXIT_CODES);
        }
      }
    });
    tCommands.addSelectionListener(new SelectionAdapter() {
      public void widgetSelected(final SelectionEvent e) {
        TableItem item = (TableItem) e.item;
        if (item == null)
          return;
        bRemoveExitcode.setEnabled(tCommands.getSelectionCount() > 0);
        cExitcode.setFocus();

      }
    });
    tCommands.setLinesVisible(true);
    tCommands.setHeaderVisible(true);
    final GridData gridData9 = new GridData(GridData.FILL, GridData.FILL, true, true);
    gridData9.heightHint = 149;
    tCommands.setLayoutData(gridData9);
    listener.fillCommands(tCommands);

    final TableColumn tcJob = new TableColumn(tCommands, SWT.NONE);
    tcJob.setWidth(167);
    tcJob.setText("Command");

    final TableColumn tcCommand = new TableColumn(tCommands, SWT.NONE);
    tcCommand.setWidth(154);
    tcCommand.setText("Job/Id");

    final TableColumn tcJobchain = new TableColumn(tCommands, SWT.NONE);
    tcJobchain.setWidth(136);
    tcJobchain.setText("Job Chain");

    final TableColumn tcStartAt = new TableColumn(tCommands, SWT.NONE);
    tcStartAt.setWidth(139);
    tcStartAt.setText("Start At");

    bRemoveExitcode = new Button(gMain, SWT.NONE);
    final GridData gridData = new GridData(GridData.BEGINNING, GridData.BEGINNING, false, false);
    gridData.widthHint = 67;
    bRemoveExitcode.setLayoutData(gridData);
    bRemoveExitcode.setEnabled(false);
    bRemoveExitcode.addSelectionListener(new SelectionAdapter() {
      public void widgetSelected(final SelectionEvent e) {
        listener.deleteCommand(tCommands);               

        tCommands.deselectAll();
        bRemoveExitcode.setEnabled(false);

      }
    });
    bRemoveExitcode.setText("Remove");

  }


  /**
   * This method initializes table
   */
  private void createTable() {
  }


  /**
   * This method initializes group3
   */
  private void createGroup3() {

    createTable();
  }


  private void addParam() {
  }

  private void addJob() {
    //int index = tCommands.getSelectionIndex();
    Element e = null;
    //if (index == -1) {

      e = new Element("start_job");       
      e.setAttribute("job", "job" + tCommands.getItemCount());
      TableItem item = new TableItem(tCommands, SWT.NONE);
      item.setText(new String[] { "start_job", "job"+tCommands.getItemCount(), "", "" });

      listener.addCommand(e);

//    }

  }

  private void addOrder() {
    //int index = tCommands.getSelectionIndex();
    Element e = null;
    //if (index == -1) {

      e = new Element("order");     
      e.setAttribute("job_chain", "job_chain" + tCommands.getItemCount());   
      e.setAttribute("replace", "yes");
      TableItem item = new TableItem(tCommands, SWT.NONE);
      item.setText(new String[] { "order", "", "job_chain_" + tCommands.getItemCount(), "" });
      listener.addCommand(e);

//    }
  }



  public Element getCommand() {
    return listener.getCommand();
  }




  public void setToolTipText() {
    cExitcode.setToolTipText(Messages.getTooltip("jobcommand.exitcode"));
    addJobButton.setToolTipText(Messages.getTooltip("jobcommand.exitcode.but_add_job"));
    addOrderButton.setToolTipText(Messages.getTooltip("jobcommand.exitcode.but_add_order"));
    bRemoveExitcode.setToolTipText(Messages.getTooltip("jobcommand.exitcode.but_remove_exit_codes"));
    tCommands.setToolTipText(Messages.getTooltip("jobcommand.exitcode.list"));
  }




} // @jve:decl-index=0:visual-constraint="10,10"
TOP

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

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.