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

网格计算

开发平台:

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.mapred;
  19. import java.io.IOException;
  20. import java.util.Iterator;
  21. import java.util.Collection;
  22. import javax.servlet.http.HttpServletRequest;
  23. import javax.servlet.http.HttpServletResponse;
  24. import org.apache.hadoop.conf.Configuration;
  25. import org.apache.hadoop.util.StringUtils;
  26. import org.apache.hadoop.util.ServletUtil;
  27. class JSPUtil {
  28.   private static final String PRIVATE_ACTIONS_KEY = "webinterface.private.actions";
  29.   
  30.   public static final Configuration conf = new Configuration();
  31.   /**
  32.    * Method used to process the request from the job page based on the 
  33.    * request which it has received. For example like changing priority.
  34.    * 
  35.    * @param request HTTP request Object.
  36.    * @param response HTTP response object.
  37.    * @param tracker {@link JobTracker} instance
  38.    * @throws IOException
  39.    */
  40.   public static void processButtons(HttpServletRequest request,
  41.       HttpServletResponse response, JobTracker tracker) throws IOException {
  42.     if (conf.getBoolean(PRIVATE_ACTIONS_KEY, false)
  43.         && request.getParameter("killJobs") != null) {
  44.       String[] jobs = request.getParameterValues("jobCheckBox");
  45.       if (jobs != null) {
  46.         for (String job : jobs) {
  47.           tracker.killJob(JobID.forName(job));
  48.         }
  49.       }
  50.     }
  51.     if (conf.getBoolean(PRIVATE_ACTIONS_KEY, false) && 
  52.           request.getParameter("changeJobPriority") != null) {
  53.       String[] jobs = request.getParameterValues("jobCheckBox");
  54.       if (jobs != null) {
  55.         JobPriority jobPri = JobPriority.valueOf(request
  56.             .getParameter("setJobPriority"));
  57.         for (String job : jobs) {
  58.           tracker.setJobPriority(JobID.forName(job), jobPri);
  59.         }
  60.       }
  61.     }
  62.   }
  63.   /**
  64.    * Method used to generate the Job table for Job pages.
  65.    * 
  66.    * @param label display heading to be used in the job table.
  67.    * @param jobs vector of jobs to be displayed in table.
  68.    * @param refresh refresh interval to be used in jobdetails page.
  69.    * @param rowId beginning row id to be used in the table.
  70.    * @return
  71.    * @throws IOException
  72.    */
  73.   public static String generateJobTable(String label, Collection<JobInProgress> jobs
  74.       , int refresh, int rowId) throws IOException {
  75.     boolean isModifiable = label.equals("Running") 
  76.                                 && conf.getBoolean(
  77.                                       PRIVATE_ACTIONS_KEY, false);
  78.     StringBuffer sb = new StringBuffer();
  79.     
  80.     sb.append("<table border="1" cellpadding="5" cellspacing="0">n");
  81.     if (jobs.size() > 0) {
  82.       if (isModifiable) {
  83.         sb.append("<form action="/jobtracker.jsp" onsubmit="return confirmAction();" method="POST">");
  84.         sb.append("<tr>");
  85.         sb.append("<td><input type="Button" onclick="selectAll()" " +
  86.          "value="Select All" id="checkEm"></td>");
  87.         sb.append("<td>");
  88.         sb.append("<input type="submit" name="killJobs" value="Kill Selected Jobs">");
  89.         sb.append("</td");
  90.         sb.append("<td><nobr>");
  91.         sb.append("<select name="setJobPriority">");
  92.         for (JobPriority prio : JobPriority.values()) {
  93.           sb.append("<option"
  94.               + (JobPriority.NORMAL == prio ? " selected="selected">" : ">")
  95.               + prio + "</option>");
  96.         }
  97.         sb.append("</select>");
  98.         sb.append("<input type="submit" name="changeJobPriority" " +
  99.          "value="Change">");
  100.         sb.append("</nobr></td>");
  101.         sb.append("<td colspan="10">&nbsp;</td>");
  102.         sb.append("</tr>");
  103.         sb.append("<td>&nbsp;</td>");
  104.       } else {
  105.         sb.append("<tr>");
  106.       }
  107.       sb.append("<td><b>Jobid</b></td><td><b>Priority" +
  108.        "</b></td><td><b>User</b></td>");
  109.       sb.append("<td><b>Name</b></td>");
  110.       sb.append("<td><b>Map % Complete</b></td>");
  111.       sb.append("<td><b>Map Total</b></td>");
  112.       sb.append("<td><b>Maps Completed</b></td>");
  113.       sb.append("<td><b>Reduce % Complete</b></td>");
  114.       sb.append("<td><b>Reduce Total</b></td>");
  115.       sb.append("<td><b>Reduces Completed</b></td>");
  116.       sb.append("<td><b>Job Scheduling Information</b></td>");
  117.       sb.append("</tr>n");
  118.       for (Iterator<JobInProgress> it = jobs.iterator(); it.hasNext(); ++rowId) {
  119.         JobInProgress job = it.next();
  120.         JobProfile profile = job.getProfile();
  121.         JobStatus status = job.getStatus();
  122.         JobID jobid = profile.getJobID();
  123.         int desiredMaps = job.desiredMaps();
  124.         int desiredReduces = job.desiredReduces();
  125.         int completedMaps = job.finishedMaps();
  126.         int completedReduces = job.finishedReduces();
  127.         String name = profile.getJobName();
  128.         String jobpri = job.getPriority().toString();
  129.         String schedulingInfo = job.getStatus().getSchedulingInfo();
  130.         if (isModifiable) {
  131.           sb.append("<tr><td><input TYPE="checkbox" " +
  132.            "onclick="checkButtonVerbage()" " +
  133.            "name="jobCheckBox" value="
  134.                   + jobid + "></td>");
  135.         } else {
  136.           sb.append("<tr>");
  137.         }
  138.         sb.append("<td id="job_" + rowId
  139.             + ""><a href="jobdetails.jsp?jobid=" + jobid + "&refresh="
  140.             + refresh + "">" + jobid + "</a></td>" + "<td id="priority_"
  141.             + rowId + "">" + jobpri + "</td>" + "<td id="user_" + rowId
  142.             + "">" + profile.getUser() + "</td>" + "<td id="name_" + rowId
  143.             + "">" + ("".equals(name) ? "&nbsp;" : name) + "</td>" + "<td>"
  144.             + StringUtils.formatPercent(status.mapProgress(), 2)
  145.             + ServletUtil.percentageGraph(status.mapProgress() * 100, 80)
  146.             + "</td><td>" + desiredMaps + "</td><td>" + completedMaps
  147.             + "</td><td>"
  148.             + StringUtils.formatPercent(status.reduceProgress(), 2)
  149.             + ServletUtil.percentageGraph(status.reduceProgress() * 100, 80)
  150.             + "</td><td>" + desiredReduces + "</td><td> " + completedReduces 
  151.             + "</td><td>" + schedulingInfo
  152.             + "</td></tr>n");
  153.       }
  154.       if (isModifiable) {
  155.         sb.append("</form>n");
  156.       }
  157.     } else {
  158.       sb.append("<tr><td align="center" colspan="8"><i>none</i>" +
  159.        "</td></tr>n");
  160.     }
  161.     sb.append("</table>n");
  162.     
  163.     return sb.toString();
  164.   }
  165. }