Package org.apache.flink.client.web

Source Code of org.apache.flink.client.web.JobsInfoServlet

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


package org.apache.flink.client.web;

import java.io.IOException;
import java.io.PrintWriter;
import java.net.InetSocketAddress;
import java.util.ArrayList;
import java.util.List;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.flink.configuration.ConfigConstants;
import org.apache.flink.configuration.Configuration;
import org.apache.flink.runtime.event.job.RecentJobEvent;
import org.apache.flink.runtime.ipc.RPC;
import org.apache.flink.runtime.net.NetUtils;
import org.apache.flink.runtime.protocols.ExtendedManagementProtocol;


public class JobsInfoServlet extends HttpServlet {
  /**
   * Serial UID for serialization interoperability.
   */
  private static final long serialVersionUID = 558077298726449201L;

  // ------------------------------------------------------------------------

  private final Configuration config;
 
  public JobsInfoServlet(Configuration nepheleConfig) {
    this.config = nepheleConfig;
  }

  @Override
  protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    //resp.setContentType("application/json");
   
    ExtendedManagementProtocol jmConn = null;
    try {
     
      jmConn = getJMConnection();
      List<RecentJobEvent> recentJobs = jmConn.getRecentJobs();
     
      ArrayList<RecentJobEvent> jobs = new ArrayList<RecentJobEvent>(recentJobs);
     
      resp.setStatus(HttpServletResponse.SC_OK);
      PrintWriter wrt = resp.getWriter();
      wrt.write("[");
      for (int i = 0; i < jobs.size(); i++) {
        RecentJobEvent jobEvent = jobs.get(i);
       
        //Serialize job to json
        wrt.write("{");
        wrt.write("\"jobid\": \"" + jobEvent.getJobID() + "\",");
        if(jobEvent.getJobName() != null) {
          wrt.write("\"jobname\": \"" + jobEvent.getJobName()+"\",");
        }
        wrt.write("\"status\": \""+ jobEvent.getJobStatus() + "\",");
        wrt.write("\"time\": " + jobEvent.getTimestamp());
        wrt.write("}");
        //Write seperator between json objects
        if(i != jobs.size() - 1) {
          wrt.write(",");
        }
      }
      wrt.write("]");
     
    } catch (Throwable t) {
      resp.setStatus(HttpServletResponse.SC_BAD_REQUEST);
      resp.getWriter().print(t.getMessage());
    } finally {
      if (jmConn != null) {
        try {
          RPC.stopProxy(jmConn);
        } catch (Throwable t) {
          System.err.println("Could not cleanly shut down connection from compiler to job manager");
        }
      }
      jmConn = null;
    }
  }
 
  /**
   * Sets up a connection to the JobManager.
   *
   * @return Connection to the JobManager.
   * @throws IOException
   */
  private ExtendedManagementProtocol getJMConnection() throws IOException {
    String jmHost = config.getString(ConfigConstants.JOB_MANAGER_IPC_ADDRESS_KEY, null);
    String jmPort = config.getString(ConfigConstants.JOB_MANAGER_IPC_PORT_KEY, null);
   
    return RPC.getProxy(ExtendedManagementProtocol.class,
        new InetSocketAddress(jmHost, Integer.parseInt(jmPort)), NetUtils.getSocketFactory());
  }

  protected String escapeString(String str) {
    int len = str.length();
    char[] s = str.toCharArray();
    StringBuilder sb = new StringBuilder();

    for (int i = 0; i < len; i += 1) {
      char c = s[i];
      if ((c == '\\') || (c == '"') || (c == '/')) {
        sb.append('\\');
        sb.append(c);
      } else if (c == '\b') {
        sb.append("\\b");
      } else if (c == '\t') {
        sb.append("\\t");
      } else if (c == '\n') {
        sb.append("<br>");
      } else if (c == '\f') {
        sb.append("\\f");
      } else if (c == '\r') {
        sb.append("\\r");
      } else {
        if (c < ' ') {
          // Unreadable throw away
        } else {
          sb.append(c);
        }
      }
    }

    return sb.toString();
  }
}
TOP

Related Classes of org.apache.flink.client.web.JobsInfoServlet

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.