View Javadoc

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,
13   *  software distributed under the License is distributed on an
14   *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   *  KIND, either express or implied.  See the License for the
16   *  specific language governing permissions and limitations
17   *  under the License. 
18   *  
19   */
20  package org.apache.mina.transport.socket.nio.support;
21  
22  import org.apache.mina.common.ByteBuffer;
23  import org.apache.mina.common.IoFilterChain;
24  import org.apache.mina.common.IoSession;
25  import org.apache.mina.common.IoFilter.WriteRequest;
26  import org.apache.mina.common.support.AbstractIoFilterChain;
27  import org.apache.mina.util.Queue;
28  
29  /**
30   * An {@link IoFilterChain} for datagram transport (UDP/IP).
31   * 
32   * @author The Apache Directory Project (mina-dev@directory.apache.org)
33   */
34  class DatagramFilterChain extends AbstractIoFilterChain {
35  
36      DatagramFilterChain(IoSession parent) {
37          super(parent);
38      }
39  
40      protected void doWrite(IoSession session, WriteRequest writeRequest) {
41          DatagramSessionImpl s = (DatagramSessionImpl) session;
42          Queue writeRequestQueue = s.getWriteRequestQueue();
43  
44          // SocketIoProcessor.doFlush() will reset it after write is finished
45          // because the buffer will be passed with messageSent event. 
46          ByteBuffer buffer = (ByteBuffer) writeRequest.getMessage();
47          buffer.mark();
48          
49          int remaining = buffer.remaining();
50          if (remaining == 0) {
51              s.increaseScheduledWriteRequests();            
52          } else {
53              s.increaseScheduledWriteBytes(buffer.remaining());
54          }
55  
56          synchronized (writeRequestQueue) {
57              writeRequestQueue.push(writeRequest);
58          }
59          
60          if (session.getTrafficMask().isWritable()) {
61              s.getManagerDelegate().flushSession(s);
62          }
63      }
64  
65      protected void doClose(IoSession session) {
66          DatagramSessionImpl s = (DatagramSessionImpl) session;
67          DatagramService manager = s.getManagerDelegate();
68          if (manager instanceof DatagramConnectorDelegate) {
69              ((DatagramConnectorDelegate) manager).closeSession(s);
70          } else {
71              ((DatagramAcceptorDelegate) manager).getListeners()
72                      .fireSessionDestroyed(session);
73              session.getCloseFuture().setClosed();
74          }
75      }
76  }