Package es.upm.dit.gsi.eclipse.jadex.adfmanager.wizards

Source Code of es.upm.dit.gsi.eclipse.jadex.adfmanager.wizards.ExportCapabilityToWizardPage

/*******************************************************************************
* Copyright (c) 2011 Grupo de Sistemas Inteligentes (GSI) - DIT UPM
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package es.upm.dit.gsi.eclipse.jadex.adfmanager.wizards;


import java.io.File;
import java.io.IOException;
import java.util.ArrayList;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;

import org.eclipse.core.databinding.validation.ValidationStatus;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.jface.dialogs.IDialogPage;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.jface.viewers.ViewerFilter;
import org.eclipse.jface.wizard.WizardPage;
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.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.DirectoryDialog;
import org.eclipse.swt.widgets.FileDialog;
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.eclipse.swt.widgets.Text;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.dialogs.ElementTreeSelectionDialog;
import org.eclipse.ui.dialogs.ISelectionStatusValidator;
import org.eclipse.ui.dialogs.ResourceSelectionDialog;
import org.eclipse.ui.ide.ResourceUtil;
import org.eclipse.ui.internal.wizards.datatransfer.DataTransferMessages;
import org.eclipse.ui.model.BaseWorkbenchContentProvider;
import org.eclipse.ui.model.WorkbenchLabelProvider;


import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

import org.xml.sax.SAXException;

import es.upm.dit.gsi.jadex.customproject.natures.JadexProjectNature;

/**
* This page allows to select the desired capability file in order to export it to the capabilities repository
*   
@author Mario Moreno
*/

public class ExportCapabilityToWizardPage extends WizardPage {
  private static Text capabilityFileText;
  private Button browseCapabilities;
 
  private static Text directoryFileText;
  private Button browseDirectory;
 
//  private Table filesTable;
  private ArrayList<IFile> fileList;
 
//    private static final String SELECT_DESTINATION_TITLE = DataTransferMessages.FileExport_selectDestinationTitle;

   
 
  /**
   * Constructor for ExportToRepositoryWizardPage
   *
   * @param pageName
   */
  public ExportCapabilityToWizardPage() {
    super("wizardPage");
    setTitle("Export to Repository");
    setDescription("This wizard exports the selected capability to the repository");
  }

  /**
   * @see IDialogPage#createControl(Composite)
   */
  public void createControl(Composite parent) {   
    Composite container = new Composite(parent, SWT.NULL);
    GridLayout layout = new GridLayout();
    container.setLayout(layout);
    layout.numColumns = 3;
    layout.verticalSpacing = 9;
    PlatformUI.getWorkbench().getHelpSystem().setHelp(container, "es.upm.dit.gsi.eclipse.jadex.adfmanager.addExpressionWizard");
   
    GridData gd1 = new GridData(SWT.FILL, SWT.TOP, true, false,1,1);
    GridData gd3 = new GridData(SWT.FILL, SWT.TOP, true, false,3,1);
   
    Label label1 = new Label(container, SWT.NULL);
    label1.setText("Capability:");
    capabilityFileText = new Text(container, SWT.BORDER | SWT.SINGLE);
    capabilityFileText.setLayoutData(gd1);
    capabilityFileText.addModifyListener(new ModifyListener() {
      public void modifyText(ModifyEvent e) {
        dialogChanged();
      }
    });
   
    browseCapabilities = new Button(container, SWT.PUSH);
    browseCapabilities.setText("Browse...");
    browseCapabilities.addSelectionListener(new SelectionAdapter(){
      public void widgetSelected(SelectionEvent e) {
        handleBrowse();
      }
    });
   
//    Label label2 = new Label(container, SWT.NULL);
//    label2.setText("Files to export: ");
//    filesTable = new Table (container, SWT.SINGLE | SWT.BORDER | SWT.FULL_SELECTION);
//    filesTable.setLinesVisible (true);
//    filesTable.setHeaderVisible (false);
//    GridData gd = gd3;
//    gd.heightHint = 230;
//    filesTable.setLayoutData(gd);
//    TableColumn column = new TableColumn(filesTable,SWT.NONE);
//    column.setText("files");
//    column.pack();
   
    //Browse text and button for selecting destination directory
   
    Label label3 = new Label(container, SWT.NULL);
    label3.setText("Destination directory:");
    directoryFileText = new Text(container, SWT.BORDER | SWT.SINGLE);
    directoryFileText.setLayoutData(gd1);
    directoryFileText.addModifyListener(new ModifyListener() {
      public void modifyText(ModifyEvent e) {
        dialogChanged();
      }
    });
   
    browseDirectory = new Button(container, SWT.PUSH);
    browseDirectory.setText("Browse...");
    browseDirectory.addSelectionListener(new SelectionAdapter(){
      public void widgetSelected(SelectionEvent e) {
        handleDestinationBrowseButtonPressed();
      }
    });
   
   
    initialize();
    dialogChanged();
    setControl(container);
  }
 
  /**
   * This method gives access to the path of the selected capability
   * @return String path
   */
  public static String getCapabilityPath(){
   
    return capabilityFileText.getText();
  }
 
 
  /**
   * This method gives access to the path of the destination directory
   * @return String path
   */
  public static String getDestinationDirectory(){
   
    return directoryFileText.getText();
  }
 
 
  /**
   * Open an appropriate destination browser so that the user can specify a
   * destination file to export the capability
   */
  protected void handleDestinationBrowseButtonPressed() {
    FileDialog dialog = new FileDialog(getContainer().getShell(), SWT.SAVE | SWT.SHEET);
    dialog.setText("Select a name and a destination directory:");
//    dialog.setFilterPath(getDestinationValue());
    dialog.setFilterExtensions(new String[] { "*.zip" }); //$NON-NLS-1$ //$NON-NLS-2$

    String selectedFileName = dialog.open();

    if (selectedFileName != null) {
      directoryFileText.setText(selectedFileName);
    }
  }
 
  private void handleBrowse() {
    fileList = new ArrayList<IFile>();
    ElementTreeSelectionDialog dialog = new ElementTreeSelectionDialog(
          getShell(), new WorkbenchLabelProvider(), new BaseWorkbenchContentProvider());
      dialog.setTitle("Select target Capability");
      dialog.setMessage("Select the target capability file:");
      dialog.setInput(ResourcesPlugin.getWorkspace().getRoot());
      dialog.setAllowMultiple(false);
      dialog.addFilter(new ViewerFilter() {       
        @Override
        public boolean select(Viewer viewer, Object parentElement, Object element) {
          if(element instanceof IProject){
            IProject p = (IProject) element;
            try{
              if(p.hasNature(JadexProjectNature.NATURE_ID)){
                return true;
              }
              else{
                return false;
              }
            }
            catch(CoreException e1){
              return false;
            }
          }
          else{
            if(element instanceof IFile){
              IFile file = (IFile) element;
              try{
                if(file.getName().endsWith("capability.xml")){
                  return true;
                }
                else{
                  return false;
                }
              }
              catch(Exception e1){
                return false;
              }
            }
           
          }
          return true;
        }
      });
      dialog.setValidator(new ISelectionStatusValidator() {
       
        @Override
        public IStatus validate(Object[] selection) {
          if(selection.length == 1){
            if(selection[0] instanceof IFile){
              IFile fileSel = (IFile) selection[0];
              if(fileSel.getName().endsWith("capability.xml")){
                return ValidationStatus.ok();
              }
            }
          }
          return ValidationStatus.error("Invalid selection");
        }
      });
    if (dialog.open() == ResourceSelectionDialog.OK) {
      Object[] result = dialog.getResult();
      IFile f = (IFile) result[0];
      fileList.add(0, f);
      capabilityFileText.setText(f.getRawLocation().toOSString());
      dialogChanged();
     
      //Desactivado por ahora
//      try {
//        updateFileList();
//      }
//      catch(Exception e1){
//        e1.printStackTrace();
//      }
    }
  }

  /**
   * Tests if the current workbench selection is a suitable container to use.
   */
  private void initialize() {
  }

  /**
   * Ensures that the all text fields are set correctly.
   */
  private void dialogChanged() {
    if(capabilityFileText.getText().length() == 0){
      updateStatus("A capability file must be selected");
      return;
    }
   
    if(directoryFileText.getText().length() == 0){
      updateStatus("A destination directory must be selected");
      return;
    }
    updateStatus(null);
  }

  /*
   * This method is called in order to update the status message
   */
  private void updateStatus(String message) {
    setErrorMessage(message);
    setPageComplete(message == null);
 
 
 
//  private void updateFileList() throws SAXException, IOException, ParserConfigurationException{
//    IFile capabilityFile = fileList.get(0);
//     
//    if(capabilityFile == null | !capabilityFile.exists()){
//      return;
//    }
//    if(capabilityFileText.getText().length() <= 0){
//      return;
//    }
//    IProject project = capabilityFile.getProject();
//   
//    DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
//    DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
//    Document doc = docBuilder.parse(capabilityFile.getRawLocation().toOSString());
//   
//    Element root = (Element)doc.getElementsByTagName("capability").item(0);
//    String capabilityPackage = root.getAttribute("package");
//  
//    NodeList plans = doc.getElementsByTagName("plan");   
//   
//    for(int i = 0; i < plans.getLength() ; i++){
//      IFile resource = null;
//      Element plan = (Element) plans.item(i);
//      Element body = (Element) plan.getElementsByTagName("body").item(0);
//      if(body != null){
//        String classname = ((Element)body).getAttribute("class");
//        if(classname != null & classname.length() > 0){
//          /*
//           * A�adir aqu� el c�digo para la b�squeda de cada uno
//           * de los ficheros de esas clases. La variable classname NO incluye la
//           * extensi�nn ".java"
//           *
//           * AHORA MISMO FUNCIONA SOLO SI LOS PLANES ESTÁN EN LA MISMA CLASE QUE LA CAPABILITY OJO!
//           */
//         
//          resource = (IFile)(project.findMember("/src/main/java/" + capabilityPackage +  "/" + classname + ".java"));
//        }
//       
//      }
//      if(resource != null ){
//        fileList.add(resource); 
//       
//      } 
//    }
//   
//    for(IFile f : fileList){
//      TableItem item  = new TableItem(filesTable, SWT.NONE);
//      item.setText(f.getProjectRelativePath().toOSString());
//    }
//
//  }
 
 
 
 
}
TOP

Related Classes of es.upm.dit.gsi.eclipse.jadex.adfmanager.wizards.ExportCapabilityToWizardPage

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.