使用APR或者NIO API作为连接器的基础,Tomcat能够提供一些在阻塞IO之上的有效扩展,用于支持Servlet API。
【 With usage of APR or NIO APIs as the basis of its connectors, Tomcat is able to provide a number of extensions over the regular blocking IO as provided with support for the Servlet API. 】
重要说明:这些特性的使用需要用到APR或NIO HTTP连接器。java.io HTTP connector 和 AJP连接器是不支持这些特性的。
【 IMPORTANT NOTE: Usage of these features requires using the APR or NIO HTTP connectors. The classic java.io HTTP connector and the AJP connectors do not support them. 】
Comet支持【 Comet support 】
Comet的支持允许servlet进程执行异步IO操作,当数据读取时接收事件(而不是总使用阻塞读取),并且向连接异步的写数据(看起来更像从其他源接收一些事件)。
【 Comet support allows a servlet to process IO asynchronously, receiving events when data is available for reading on the connection (rather than always using a blocking read), and writing data back on connections asynchronously (most likely responding to some event raised from some other source. 】
Comet事件【 CometEvent 】
从org.apache.catalina.CometProcessor 接口实现的Servlet根据事件的发生具有自己的方法调用,而不使用那些通用的service方法。通常情况下,事件对象能够访问通用的request和response对象。主要的区别在于这些对象的有效期是从BEGIN事件直到END或者ERROR事件。事件类型如下:
【 Servlets which implement the org.apache.catalina.CometProcessor interface will have their event method invoked rather than the usual service method, according to the event which occurred. The event object gives access to the usual request and response objects, which may be used in the usual way. The main difference is that those objects remain valid and fully functional at any time between processing of the BEGIN event until processing an END or ERROR event. The following event types exist: 】 EventType.BEGIN:在连接开始时候被调用。常被用来初始化request和response对象的字段。在这个事件结束后,直到END或者ERROR事件开始前,可以用response对象向连接写入数据。 注意 ,这个response对象以及所依赖的OutputStream、Writer对象并不是线程安全的,所以,在多线程访问的情况下,需要强制完成同步工作。在初始化事件结束后,request被慎重的提交。
【 EventType.BEGIN: will be called at the beginning of the processing of the connection. It can be used to initialize any relevant fields using the request and response objects. Between the end of the processing of this event, and the beginning of the processing of the end or error events, it is possible to use the response object to write data on the open connection. Note that the response object and dependent OutputStream and Writer are still not synchronized, so when they are accessed by multiple threads, synchronization is mandatory. After processing the initial event, the request is considered to be committed. 】 EventType.READ:这个类型标识数据可以被有效的读取,并且读取过程不会被阻断。如果这里存在一个阻塞风险,应该使用InputStream或Reader的available和ready去判断:servlet在确认读取有效时去读数据,并产生附加读取去读取数据有效报告。当产生读取错误时,servlet可以通过传递一个exception属性去报告这个错误。抛出一个异常,会产生一个Error事件,并且连接会关闭。逐个的,能够捕获任何错误,在任何数据中使用servlet和事件的close方法,执行清除动作。不允许从servlet对象执行方法外部去读取数据。
【 EventType.READ: This indicates that input data is available, and that one read can be made without blocking. The available and ready methods of the InputStream or Reader may be used to determine if there is a risk of blocking: the servlet should read while data is reported available, and can make one additional read should read while data is reported available. When encountering a read error, the servlet should report it by propagating the exception properly. Throwing an exception will cause the error event to be invoked, and the connection will be closed. Alternately, it is also possible to catch any exception, perform clean up on any data structure the servlet may be using, and using the close method of the event. It is not allowed to attempt reading data from the request object outside of the execution of this method. 】
在某些平台上,比如windows,客户端的断开通过一个READ事件表示。从流中读取数据的结果会返回-1、一个IO异常或者一个EOF异常。确实的处理这三种情况,如果你没有捕获IO异常,Tomcat会调用事件队列生成一个ERROR存储这些错误给你,并且你会马上收到这个消息。
【 On some platforms, like Windows, a client disconnect is indicated by a READ event. Reading from the stream may result in -1, an IOException or an EOFException. Make sure you properly handle all these three cases. If you don't catch the IOException, Tomcat will instantly invoke your event chain with an ERROR as it catches the error for you, and you will be notified of the error at that time. 】 EventType.END:End在请求结束时被调用,在开始时候被初始化的字段这时恢复。在这个事件调用完成后,request、response以及所依赖的对象都将被收回给其他request使用。在request输入时,End总是在数据有效并且到达文件末尾的时候被调用(通常标识客户端使用管道操作提交一个请求)。
【 EventType.END: End may be called to end the processing of the request. Fields that have been initialized in the begin method should be reset. After this event has been processed, the request and response objects, as well as all their dependent objects will be recycled and used to process other requests. End will also be called when data is available and the end of file is reached on the request input (this usually indicates the client has pipelined a request). 】 EventType.ERROR:Error当连接时发生IO异常或者类似的不可恢复的错误时被容器调用。在开始时候被初始化的字段在这时候被恢复。在这个事件调用完成后,request、response以及所依赖的对象都将被收回给其他request使用。
【 EventType.ERROR: Error will be called by the container in the case where an IO exception or a similar unrecoverable error occurs on the connection. Fields that have been initialized in the begin method should be reset. After this event has been processed, the request and response objects, as well as all their dependent objects will be recycled and used to process other requests. 】
还有一些自类型用以更细致的控制进程(注意:有些子类型需要 org.apache.catalina.valves.CometConnectionManagerValve 的值是有效的)
【 There are some event subtypes which allow finer processing of events (note: some of these events require usage of the org.apache.catalina.valves.CometConnectionManagerValve valve): 】 EventSubType.TIMEOUT:连接超时(ERROR的子类型);注意这个ERROR类型不是致命的,连接不会关闭,除非servlet使用事件的close方法。
【EventSubType.TIMEOUT: The connection timed out (sub type of ERROR); note that this ERROR type is not fatal, and the connection will not be closed unless the servlet uses the close method of the event. 】 EventSubType.CLIENT_DISCONNECT:客户端连接关闭(ERROR的子类型)。事件的方法
【 EventSubType.CLIENT_DISCONNECT: The client connection was closed (sub type of ERROR). method of the event. 】 EventSubType.IOEXCEPTION:一个IO异常发生,比如上下文失效,例如,一个阻塞失效(ERROR的子类型)。
【 EventSubType.IOEXCEPTION: An IO exception occurred, such as invalid content, for example, an invalid chunk block (sub type of ERROR). 】 EventSubType.WEBAPP_RELOAD:web应用重载(END的子类型)。
【 EventSubType.WEBAPP_RELOAD: The web application is being reloaded (sub type of END). 】 EventSubType.SESSION_END:Session结束(END的子类型)。
【 EventSubType.SESSION_END: The servlet ended the session (sub type of END). 】
如上所述,一个Comet的典型声明周期经历这么一个过程:BEGIN->READ->READ->READ->ERROR/TIMEOUT。任何时候,servlet通过事件对象的close方法结束一个请求。
As described above, the typical lifecycle of a Comet request will consist in a series of events such as: BEGIN -> READ -> READ -> READ -> ERROR/TIMEOUT. At any time, the servlet may end processing of the request by using the close method of the event object.
Comet过滤器【 CometFilter 】
与规则过滤器类似,在Comet时间被处理时,一个过滤器队列被调用。这些过滤器实现了CometFilter接口(和规则过滤器接口同样的方式工作),并与规则过滤器使用同样的方法在部署描述中声明。事件处理时的过滤器队列只包含那些标记了通常映射规则的过滤器和实现了CometFilter接口的。
【 Similar to regular filters, a filter chain is invoked when comet events are processed. These filters should implement the CometFilter interface (which works in the same way as the regular Filter interface), and should be declared and mapped in the deployment descriptor in the same way as a regular filter. The filter chain when processing an event will only include filters which match all the usual mapping rules, and also implement the CometFiler interface. 】
范例代码【 Example code 】
下面的Servlet伪代码实现了异步聊天室的功能:
【 The following pseudo code servlet implements asynchronous chat functionality using the API described above: 】
public class ChatServlet extends HttpServlet implements CometProcessor { protected ArrayListconnections = new ArrayList (); protected MessageSender messageSender = null; public void init() throws ServletException { messageSender = new MessageSender(); Thread messageSenderThread = new Thread(messageSender, "MessageSender[" + getServletContext().getContextPath() + "]"); messageSenderThread.setDaemon(true); messageSenderThread.start(); } public void destroy() { connections.clear(); messageSender.stop(); messageSender = null; } /** * Process the given Comet event. * * @param event The Comet event that will be processed * @throws IOException * @throws ServletException */ public void event(CometEvent event) throws IOException, ServletException { HttpServletRequest request = event.getHttpServletRequest(); HttpServletResponse response = event.getHttpServletResponse(); if (event.getEventType() == CometEvent.EventType.BEGIN) { log("Begin for session: " + request.getSession(true).getId()); PrintWriter writer = response.getWriter(); writer.println(""); writer.println(" JSP Chat "); writer.flush(); synchronized(connections) { connections.add(response); } } else if (event.getEventType() == CometEvent.EventType.ERROR) { log("Error for session: " + request.getSession(true).getId()); synchronized(connections) { connections.remove(response); } event.close(); } else if (event.getEventType() == CometEvent.EventType.END) { log("End for session: " + request.getSession(true).getId()); synchronized(connections) { connections.remove(response); } PrintWriter writer = response.getWriter(); writer.println("