设为首页 收藏本站
查看: 558|回复: 0

[经验分享] tomcat源码阅读_代码篇11

[复制链接]

尚未签到

发表于 2015-8-11 12:20:27 | 显示全部楼层 |阅读模式
  Http11Processor类,该类用于处理接受到得HTTP请求。在该类中主要需要注意的是process方法,如下:
  public void process(Socket socket)
         throws IOException {
         RequestInfo rp = request.getRequestProcessor();
         rp.setStage(org.apache.coyote.Constants.STAGE_PARSE);
  // Set the remote address
         remoteAddr = null;
         remoteHost = null;
         localAddr = null;
         localName = null;
         remotePort = -1;
         localPort = -1;
  // Setting up the I/O
         this.socket = socket;
         inputBuffer.setInputStream(socket.getInputStream());
       outputBuffer.setOutputStream(socket.getOutputStream());
  // Error flag
         error = false;
         keepAlive = true;
  int keepAliveLeft = maxKeepAliveRequests;
         int soTimeout = socket.getSoTimeout();
         int oldSoTimeout = soTimeout;
  int threadRatio = (endpoint.getCurrentThreadsBusy() * 100)
                 / endpoint.getMaxThreads();
         if (threadRatio > 75) {
             keepAliveLeft = 1;
         }
         
         if (soTimeout != oldSoTimeout) {
             try {
                 socket.setSoTimeout(soTimeout);
             } catch (Throwable t) {
                 log.debug(sm.getString("http11processor.socket.timeout"), t);
                 error = true;
             }
         }
  boolean keptAlive = false;
  while (started && !error && keepAlive) {
  // Parsing the request header
             try {
                 if (keptAlive) {
                     if (keepAliveTimeout > 0) {
                         socket.setSoTimeout(keepAliveTimeout);
                     }
                     else if (soTimeout > 0) {
                         socket.setSoTimeout(soTimeout);
                     }
                 }
                 inputBuffer.parseRequestLine();
                 request.setStartTime(System.currentTimeMillis());
                 keptAlive = true;
                 if (!disableUploadTimeout) {
                     socket.setSoTimeout(timeout);
                 }
                 inputBuffer.parseHeaders();
             } catch (IOException e) {
                 error = true;
                 break;
             } catch (Throwable t) {
                 if (log.isDebugEnabled()) {
                     log.debug(sm.getString("http11processor.header.parse"), t);
                 }
                 // 400 - Bad Request
                 response.setStatus(400);
                 error = true;
             }
  if (!error) {
                 // Setting up filters, and parse some request headers
                 rp.setStage(org.apache.coyote.Constants.STAGE_PREPARE);
                 try {
                     prepareRequest();
                 } catch (Throwable t) {
                     if (log.isDebugEnabled()) {
                         log.debug(sm.getString("http11processor.request.prepare"), t);
                     }
                     // 400 - Internal Server Error
                     response.setStatus(400);
                     error = true;
                 }
             }
  if (maxKeepAliveRequests > 0 && --keepAliveLeft == 0)
                 keepAlive = false;
  // Process the request in the adapter
             if (!error) {
                 try {
                     rp.setStage(org.apache.coyote.Constants.STAGE_SERVICE);
                     adapter.service(request, response);
                     // Handle when the response was committed before a serious
                     // error occurred.  Throwing a ServletException should both
                     // set the status to 500 and set the errorException.
                     // If we fail here, then the response is likely already
                     // committed, so we can't try and set headers.
                     if(keepAlive && !error) { // Avoid checking twice.
                         error = response.getErrorException() != null ||
                                 statusDropsConnection(response.getStatus());
                     }
  } catch (InterruptedIOException e) {
                     error = true;
                 } catch (Throwable t) {
                     log.error(sm.getString("http11processor.request.process"), t);
                     // 500 - Internal Server Error
                     response.setStatus(500);
                     error = true;
                 }
             }
  // Finish the handling of the request
             try {
                 rp.setStage(org.apache.coyote.Constants.STAGE_ENDINPUT);
                 // If we know we are closing the connection, don't drain input.
                 // This way uploading a 100GB file doesn't tie up the thread
                 // if the servlet has rejected it.
                 if(error)
                     inputBuffer.setSwallowInput(false);
                 inputBuffer.endRequest();
             } catch (IOException e) {
                 error = true;
             } catch (Throwable t) {
                 log.error(sm.getString("http11processor.request.finish"), t);
                 // 500 - Internal Server Error
                 response.setStatus(500);
                 error = true;
             }
             try {
                 rp.setStage(org.apache.coyote.Constants.STAGE_ENDOUTPUT);
                 outputBuffer.endRequest();
             } catch (IOException e) {
                 error = true;
             } catch (Throwable t) {
                 log.error(sm.getString("http11processor.response.finish"), t);
                 error = true;
             }
  // If there was an error, make sure the request is counted as
             // and error, and update the statistics counter
             if (error) {
                 response.setStatus(500);
             }
             request.updateCounters();
  rp.setStage(org.apache.coyote.Constants.STAGE_KEEPALIVE);
  // Don't reset the param - we'll see it as ended. Next request
             // will reset it
             // thrA.setParam(null);
             // Next request
             inputBuffer.nextRequest();
             outputBuffer.nextRequest();
  }
  rp.setStage(org.apache.coyote.Constants.STAGE_ENDED);
  // Recycle
         inputBuffer.recycle();
         outputBuffer.recycle();
         this.socket = null;
         // Recycle ssl info
         sslSupport = null;
     }
  在该方法中,主要就是完成协议解析,服务,响应等工作。
  1:解析
  inputBuffer.parseRequestLine();
  inputBuffer.parseHeaders();
prepareRequest();
  2:服务响应
  adapter.service(request, response);
  在上面的语句中使用到了org.apache.catalina.connector.CoyoteAdapter类,该类实现了Adapter接口,用于处理用户请求。
  service方法如下:
  public void service(org.apache.coyote.Request req,
                       org.apache.coyote.Response res)
         throws Exception {
  Request request = (Request) req.getNote(ADAPTER_NOTES);
         Response response = (Response) res.getNote(ADAPTER_NOTES);
  if (request == null) {
  // Create objects
             request = (Request) connector.createRequest();
             request.setCoyoteRequest(req);
             response = (Response) connector.createResponse();
             response.setCoyoteResponse(res);

  // Link objects
             request.setResponse(response);
             response.setRequest(request);

  // Set as notes
             req.setNote(ADAPTER_NOTES, request);
             res.setNote(ADAPTER_NOTES, response);

  // Set query string encoding
             req.getParameters().setQueryStringEncoding
                 (connector.getURIEncoding());
  }
  if (connector.getXpoweredBy()) {
             response.addHeader("X-Powered-By", "Servlet/2.5");
         }
  boolean comet = false;
         
         try {
  // Parse and set Catalina and configuration specific
             // request parameters
             req.getRequestProcessor().setWorkerThreadName(Thread.currentThread().getName());
             if (postParseRequest(req, request, res, response)) {
                 // Calling the container
                 connector.getContainer().getPipeline().getFirst().invoke(request, response);
  if (request.isComet()) {
                     if (!response.isClosed() && !response.isError()) {
                         if (request.getAvailable() || (request.getContentLength() > 0 && (!request.isParametersParsed()))) {
                             // Invoke a read event right away if there are available bytes
                             if (event(req, res, SocketStatus.OPEN)) {
                                 comet = true;
                                 res.action(ActionCode.ACTION_COMET_BEGIN, null);
                             }
                         } else {
                             comet = true;
                             res.action(ActionCode.ACTION_COMET_BEGIN, null);
                         }
                     } else {
                         // Clear the filter chain, as otherwise it will not be reset elsewhere
                         // since this is a Comet request
                         request.setFilterChain(null);
                     }
                 }
  }
  if (!comet) {
                 response.finishResponse();
                 req.action(ActionCode.ACTION_POST_REQUEST , null);
             }
  } catch (IOException e) {
             ;
         } catch (Throwable t) {
             log.error(sm.getString("coyoteAdapter.service"), t);
         } finally {
             req.getRequestProcessor().setWorkerThreadName(null);
             // Recycle the wrapper request and response
             if (!comet) {
                 request.recycle();
                 response.recycle();

             } else {
                 // Clear converters so that the minimum amount of memory
                 // is used by this processor
                 request.clearEncoders();
                 response.clearEncoders();
             }
         }
  }
  在后边的内容中主要学习
  connector.getContainer().getPipeline().getFirst().invoke(request, response);
  是如何工作的
  
  
  

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-97427-1-1.html 上篇帖子: struts tomcat 中文乱码解决 下篇帖子: [转载]在tomcat中实现https安全连接的方法
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表