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

网格计算

开发平台:

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.hdfs.server.namenode;
  19. import javax.servlet.*;
  20. import javax.servlet.http.*;
  21. import java.io.*;
  22. import java.net.*;
  23. import org.apache.hadoop.fs.*;
  24. import org.apache.hadoop.hdfs.DFSClient;
  25. import org.apache.hadoop.hdfs.server.datanode.DataNode;
  26. import org.apache.hadoop.security.UnixUserGroupInformation;
  27. import org.apache.hadoop.conf.*;
  28. public class StreamFile extends DfsServlet {
  29.   static InetSocketAddress nameNodeAddr;
  30.   static DataNode datanode = null;
  31.   private static final Configuration masterConf = new Configuration();
  32.   static {
  33.     if ((datanode = DataNode.getDataNode()) != null) {
  34.       nameNodeAddr = datanode.getNameNodeAddr();
  35.     }
  36.   }
  37.   
  38.   /** getting a client for connecting to dfs */
  39.   protected DFSClient getDFSClient(HttpServletRequest request)
  40.       throws IOException {
  41.     Configuration conf = new Configuration(masterConf);
  42.     UnixUserGroupInformation.saveToConf(conf,
  43.         UnixUserGroupInformation.UGI_PROPERTY_NAME, getUGI(request));
  44.     return new DFSClient(nameNodeAddr, conf);
  45.   }
  46.   
  47.   public void doGet(HttpServletRequest request, HttpServletResponse response)
  48.     throws ServletException, IOException {
  49.     String filename = request.getParameter("filename");
  50.     if (filename == null || filename.length() == 0) {
  51.       response.setContentType("text/plain");
  52.       PrintWriter out = response.getWriter();
  53.       out.print("Invalid input");
  54.       return;
  55.     }
  56.     DFSClient dfs = getDFSClient(request);
  57.     FSInputStream in = dfs.open(filename);
  58.     OutputStream os = response.getOutputStream();
  59.     response.setHeader("Content-Disposition", "attachment; filename="" + 
  60.                        filename + """);
  61.     response.setContentType("application/octet-stream");
  62.     byte buf[] = new byte[4096];
  63.     try {
  64.       int bytesRead;
  65.       while ((bytesRead = in.read(buf)) != -1) {
  66.         os.write(buf, 0, bytesRead);
  67.       }
  68.     } finally {
  69.       in.close();
  70.       os.close();
  71.       dfs.close();
  72.     }
  73.   }
  74. }