TestProcfsBasedProcessTree.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.util;
  19. import java.io.File;
  20. import java.io.FileWriter;
  21. import java.io.IOException;
  22. import java.util.Random;
  23. import org.apache.commons.logging.Log;
  24. import org.apache.commons.logging.LogFactory;
  25. import org.apache.hadoop.util.Shell.ExitCodeException;
  26. import org.apache.hadoop.util.Shell.ShellCommandExecutor;
  27. import junit.framework.TestCase;
  28. public class TestProcfsBasedProcessTree extends TestCase {
  29.   private static final Log LOG = LogFactory
  30.       .getLog(TestProcfsBasedProcessTree.class);
  31.   private ShellCommandExecutor shexec = null;
  32.   private String pidFile;
  33.   private String shellScript;
  34.   private static final int N = 10; // Controls the RogueTask
  35.   private static final int memoryLimit = 15 * 1024 * 1024; // 15MB
  36.   private static final long PROCESSTREE_RECONSTRUCTION_INTERVAL =
  37.     ProcfsBasedProcessTree.DEFAULT_SLEEPTIME_BEFORE_SIGKILL; // msec
  38.   private class RogueTaskThread extends Thread {
  39.     public void run() {
  40.       try {
  41.         String args[] = { "bash", "-c",
  42.             "echo $$ > " + pidFile + "; sh " + shellScript + " " + N + ";" };
  43.         shexec = new ShellCommandExecutor(args);
  44.         shexec.execute();
  45.       } catch (ExitCodeException ee) {
  46.         LOG.info("Shell Command exit with a non-zero exit code. " + ee);
  47.       } catch (IOException ioe) {
  48.         LOG.info("Error executing shell command " + ioe);
  49.       } finally {
  50.         LOG.info("Exit code: " + shexec.getExitCode());
  51.       }
  52.     }
  53.   }
  54.   private String getRogueTaskPID() {
  55.     File f = new File(pidFile);
  56.     while (!f.exists()) {
  57.       try {
  58.         Thread.sleep(500);
  59.       } catch (InterruptedException ie) {
  60.         break;
  61.       }
  62.     }
  63.     // read from pidFile
  64.     return ProcfsBasedProcessTree.getPidFromPidFile(pidFile);
  65.   }
  66.   public void testProcessTree() {
  67.     try {
  68.       if (!ProcfsBasedProcessTree.isAvailable()) {
  69.         System.out
  70.             .println("ProcfsBasedProcessTree is not available on this system. Not testing");
  71.         return;
  72.       }
  73.     } catch (Exception e) {
  74.       LOG.info(StringUtils.stringifyException(e));
  75.       return;
  76.     }
  77.     // create shell script
  78.     Random rm = new Random();
  79.     File tempFile = new File(this.getName() + "_shellScript_" + rm.nextInt()
  80.         + ".sh");
  81.     tempFile.deleteOnExit();
  82.     shellScript = tempFile.getName();
  83.     // create pid file
  84.     tempFile = new File(this.getName() + "_pidFile_" + rm.nextInt() + ".pid");
  85.     tempFile.deleteOnExit();
  86.     pidFile = tempFile.getName();
  87.     // write to shell-script
  88.     try {
  89.       FileWriter fWriter = new FileWriter(shellScript);
  90.       fWriter.write(
  91.           "# rogue taskn" +
  92.           "sleep 10n" +
  93.           "echo hellon" +
  94.           "if [ $1 -ne 0 ]n" +
  95.           "thenn" +
  96.           " sh " + shellScript + " $(($1-1))n" +
  97.           "fi");
  98.       fWriter.close();
  99.     } catch (IOException ioe) {
  100.       LOG.info("Error: " + ioe);
  101.       return;
  102.     }
  103.     Thread t = new RogueTaskThread();
  104.     t.start();
  105.     String pid = getRogueTaskPID();
  106.     LOG.info("Root process pid: " + pid);
  107.     ProcfsBasedProcessTree p = new ProcfsBasedProcessTree(pid);
  108.     p = p.getProcessTree(); // initialize
  109.     try {
  110.       while (true) {
  111.         LOG.info("ProcessTree: " + p.toString());
  112.         long mem = p.getCumulativeVmem();
  113.         LOG.info("Memory usage: " + mem + "bytes.");
  114.         if (mem > memoryLimit) {
  115.           p.destroy();
  116.           break;
  117.         }
  118.         Thread.sleep(PROCESSTREE_RECONSTRUCTION_INTERVAL);
  119.         p = p.getProcessTree(); // reconstruct
  120.       }
  121.     } catch (InterruptedException ie) {
  122.       LOG.info("Interrupted.");
  123.     }
  124.     assertFalse("ProcessTree must have been gone", p.isAlive());
  125.     // Not able to join thread sometimes when forking with large N.
  126.     try {
  127.       t.join(2000);
  128.       LOG.info("RogueTaskThread successfully joined.");
  129.     } catch (InterruptedException ie) {
  130.       LOG.info("Interrupted while joining RogueTaskThread.");
  131.     }
  132.     // ProcessTree is gone now. Any further calls should be sane.
  133.     p = p.getProcessTree();
  134.     assertFalse("ProcessTree must have been gone", p.isAlive());
  135.     assertTrue("Cumulative vmem for the gone-process is "
  136.         + p.getCumulativeVmem() + " . It should be zero.", p
  137.         .getCumulativeVmem() == 0);
  138.     assertTrue(p.toString().equals("[ ]"));
  139.   }
  140. }