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

网格计算

开发平台:

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.File;
  20. import java.io.FileFilter;
  21. import java.net.URL;
  22. import java.util.ArrayList;
  23. import java.util.Iterator;
  24. import java.util.logging.Level;
  25. import java.util.logging.Logger;
  26. import org.eclipse.core.resources.IProject;
  27. import org.eclipse.core.resources.IProjectNature;
  28. import org.eclipse.core.runtime.CoreException;
  29. import org.eclipse.core.runtime.NullProgressMonitor;
  30. import org.eclipse.core.runtime.Path;
  31. import org.eclipse.core.runtime.QualifiedName;
  32. import org.eclipse.jdt.core.IClasspathEntry;
  33. import org.eclipse.jdt.core.IJavaProject;
  34. import org.eclipse.jdt.core.JavaCore;
  35. /**
  36.  * Class to configure and deconfigure an Eclipse project with the MapReduce
  37.  * project nature.
  38.  */
  39. public class MapReduceNature implements IProjectNature {
  40.   public static final String ID = "org.apache.hadoop.eclipse.Nature";
  41.   private IProject project;
  42.   static Logger log = Logger.getLogger(MapReduceNature.class.getName());
  43.   /**
  44.    * Configures an Eclipse project as a Map/Reduce project by adding the
  45.    * Hadoop libraries to a project's classpath.
  46.    */
  47.   public void configure() throws CoreException {
  48.     String path =
  49.         project.getPersistentProperty(new QualifiedName(Activator.PLUGIN_ID,
  50.             "hadoop.runtime.path"));
  51.     File dir = new File(path);
  52.     final ArrayList<File> coreJars = new ArrayList<File>();
  53.     dir.listFiles(new FileFilter() {
  54.       public boolean accept(File pathname) {
  55.         String fileName = pathname.getName();
  56.         // get the hadoop core jar without touching test or examples
  57.         // older version of hadoop don't use the word "core" -- eyhung
  58.         if ((fileName.indexOf("hadoop") != -1) && (fileName.endsWith("jar"))
  59.             && (fileName.indexOf("test") == -1)
  60.             && (fileName.indexOf("examples") == -1)) {
  61.           coreJars.add(pathname);
  62.         }
  63.         return false; // we don't care what this returns
  64.       }
  65.     });
  66.     File dir2 = new File(path + File.separatorChar + "lib");
  67.     if (dir2.exists() && dir2.isDirectory()) {
  68.       dir2.listFiles(new FileFilter() {
  69.         public boolean accept(File pathname) {
  70.           if ((!pathname.isDirectory())
  71.               && (pathname.getName().endsWith("jar"))) {
  72.             coreJars.add(pathname);
  73.           }
  74.           return false; // we don't care what this returns
  75.         }
  76.       });
  77.     }
  78.     // Add Hadoop libraries onto classpath
  79.     IJavaProject javaProject = JavaCore.create(getProject());
  80.     // Bundle bundle = Activator.getDefault().getBundle();
  81.     try {
  82.       IClasspathEntry[] currentCp = javaProject.getRawClasspath();
  83.       IClasspathEntry[] newCp =
  84.           new IClasspathEntry[currentCp.length + coreJars.size()];
  85.       System.arraycopy(currentCp, 0, newCp, 0, currentCp.length);
  86.       final Iterator<File> i = coreJars.iterator();
  87.       int count = 0;
  88.       while (i.hasNext()) {
  89.         // for (int i = 0; i < s_coreJarNames.length; i++) {
  90.         final File f = (File) i.next();
  91.         // URL url = FileLocator.toFileURL(FileLocator.find(bundle, new
  92.         // Path("lib/" + s_coreJarNames[i]), null));
  93.         URL url = f.toURI().toURL();
  94.         log.finer("hadoop library url.getPath() = " + url.getPath());
  95.         newCp[newCp.length - 1 - count] =
  96.             JavaCore.newLibraryEntry(new Path(url.getPath()), null, null);
  97.         count++;
  98.       }
  99.       javaProject.setRawClasspath(newCp, new NullProgressMonitor());
  100.     } catch (Exception e) {
  101.       log.log(Level.SEVERE, "IOException generated in "
  102.           + this.getClass().getCanonicalName(), e);
  103.     }
  104.   }
  105.   /**
  106.    * Deconfigure a project from MapReduce status. Currently unimplemented.
  107.    */
  108.   public void deconfigure() throws CoreException {
  109.     // TODO Auto-generated method stub
  110.   }
  111.   /**
  112.    * Returns the project to which this project nature applies.
  113.    */
  114.   public IProject getProject() {
  115.     return this.project;
  116.   }
  117.   /**
  118.    * Sets the project to which this nature applies. Used when instantiating
  119.    * this project nature runtime.
  120.    */
  121.   public void setProject(IProject project) {
  122.     this.project = project;
  123.   }
  124. }