NewMapperWizard.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:6k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.eclipse;
  19. import java.io.IOException;
  20. import java.util.Arrays;
  21. import org.eclipse.core.resources.IFile;
  22. import org.eclipse.core.runtime.CoreException;
  23. import org.eclipse.core.runtime.FileLocator;
  24. import org.eclipse.core.runtime.IProgressMonitor;
  25. import org.eclipse.core.runtime.IStatus;
  26. import org.eclipse.core.runtime.Path;
  27. import org.eclipse.jdt.core.IJavaElement;
  28. import org.eclipse.jdt.core.IType;
  29. import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
  30. import org.eclipse.jdt.ui.wizards.NewTypeWizardPage;
  31. import org.eclipse.jface.operation.IRunnableWithProgress;
  32. import org.eclipse.jface.resource.ImageDescriptor;
  33. import org.eclipse.jface.viewers.IStructuredSelection;
  34. import org.eclipse.swt.SWT;
  35. import org.eclipse.swt.layout.GridLayout;
  36. import org.eclipse.swt.widgets.Button;
  37. import org.eclipse.swt.widgets.Composite;
  38. import org.eclipse.ui.INewWizard;
  39. import org.eclipse.ui.IWorkbench;
  40. /**
  41.  * Wizard for creating a new Mapper class (a class that runs the Map portion
  42.  * of a MapReduce job). The class is pre-filled with a template.
  43.  * 
  44.  */
  45. public class NewMapperWizard extends NewElementWizard implements INewWizard,
  46.     IRunnableWithProgress {
  47.   private Page page;
  48.   public NewMapperWizard() {
  49.     setWindowTitle("New Mapper");
  50.   }
  51.   public void run(IProgressMonitor monitor) {
  52.     try {
  53.       page.createType(monitor);
  54.     } catch (CoreException e) {
  55.       // TODO Auto-generated catch block
  56.       e.printStackTrace();
  57.     } catch (InterruptedException e) {
  58.       // TODO Auto-generated catch block
  59.       e.printStackTrace();
  60.     }
  61.   }
  62.   @Override
  63.   public void init(IWorkbench workbench, IStructuredSelection selection) {
  64.     super.init(workbench, selection);
  65.     page = new Page();
  66.     addPage(page);
  67.     page.setSelection(selection);
  68.   }
  69.   public static class Page extends NewTypeWizardPage {
  70.     private Button isCreateMapMethod;
  71.     public Page() {
  72.       super(true, "Mapper");
  73.       setTitle("Mapper");
  74.       setDescription("Create a new Mapper implementation.");
  75.       setImageDescriptor(ImageLibrary.get("wizard.mapper.new"));
  76.     }
  77.     public void setSelection(IStructuredSelection selection) {
  78.       initContainerPage(getInitialJavaElement(selection));
  79.       initTypePage(getInitialJavaElement(selection));
  80.     }
  81.     @Override
  82.     public void createType(IProgressMonitor monitor) throws CoreException,
  83.         InterruptedException {
  84.       super.createType(monitor);
  85.     }
  86.     @Override
  87.     protected void createTypeMembers(IType newType, ImportsManager imports,
  88.         IProgressMonitor monitor) throws CoreException {
  89.       super.createTypeMembers(newType, imports, monitor);
  90.       imports.addImport("java.io.IOException");
  91.       imports.addImport("org.apache.hadoop.io.WritableComparable");
  92.       imports.addImport("org.apache.hadoop.io.Writable");
  93.       imports.addImport("org.apache.hadoop.mapred.OutputCollector");
  94.       imports.addImport("org.apache.hadoop.mapred.Reporter");
  95.       newType
  96.           .createMethod(
  97.               "public void map(WritableComparable key, Writable values, OutputCollector output, Reporter reporter) throws IOException n{n}n",
  98.               null, false, monitor);
  99.     }
  100.     public void createControl(Composite parent) {
  101.       // super.createControl(parent);
  102.       initializeDialogUnits(parent);
  103.       Composite composite = new Composite(parent, SWT.NONE);
  104.       GridLayout layout = new GridLayout();
  105.       layout.numColumns = 4;
  106.       composite.setLayout(layout);
  107.       createContainerControls(composite, 4);
  108.       createPackageControls(composite, 4);
  109.       createSeparator(composite, 4);
  110.       createTypeNameControls(composite, 4);
  111.       createSuperClassControls(composite, 4);
  112.       createSuperInterfacesControls(composite, 4);
  113.       // createSeparator(composite, 4);
  114.       setControl(composite);
  115.       setSuperClass("org.apache.hadoop.mapred.MapReduceBase", true);
  116.       setSuperInterfaces(Arrays
  117.           .asList(new String[] { "org.apache.hadoop.mapred.Mapper" }), true);
  118.       setFocus();
  119.       validate();
  120.     }
  121.     @Override
  122.     protected void handleFieldChanged(String fieldName) {
  123.       super.handleFieldChanged(fieldName);
  124.       validate();
  125.     }
  126.     private void validate() {
  127.       updateStatus(new IStatus[] { fContainerStatus, fPackageStatus,
  128.           fTypeNameStatus, fSuperClassStatus, fSuperInterfacesStatus });
  129.     }
  130.   }
  131.   @Override
  132.   public boolean performFinish() {
  133.     if (super.performFinish()) {
  134.       if (getCreatedElement() != null) {
  135.         openResource((IFile) page.getModifiedResource());
  136.         selectAndReveal(page.getModifiedResource());
  137.       }
  138.       return true;
  139.     } else {
  140.       return false;
  141.     }
  142.   }
  143.   @Override
  144.   protected void finishPage(IProgressMonitor monitor)
  145.       throws InterruptedException, CoreException {
  146.     this.run(monitor);
  147.   }
  148.   @Override
  149.   public IJavaElement getCreatedElement() {
  150.     return page.getCreatedType().getPrimaryElement();
  151.   }
  152. }