Add stubs for org.sonews.acl and add method "impliedCapability" for org.sonews.command.Command interface.
3 * see AUTHORS for the list of contributors
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 package org.sonews.daemon;
21 import java.io.IOException;
22 import java.nio.ByteBuffer;
23 import java.nio.channels.CancelledKeyException;
24 import java.nio.channels.SelectionKey;
25 import java.nio.channels.Selector;
26 import java.nio.channels.SocketChannel;
27 import java.util.Iterator;
29 import java.util.logging.Level;
30 import org.sonews.util.Log;
33 * A Thread task listening for OP_READ events from SocketChannels.
34 * @author Christian Lins
37 class ChannelReader extends AbstractDaemon
40 private static ChannelReader instance = new ChannelReader();
43 * @return Active ChannelReader instance.
45 public static ChannelReader getInstance()
50 private Selector selector = null;
52 protected ChannelReader()
57 * Sets the selector which is used by this reader to determine the channel
61 public void setSelector(final Selector selector)
63 this.selector = selector;
67 * Run loop. Blocks until some data is available in a channel.
72 assert selector != null;
78 // select() blocks until some SelectableChannels are ready for
79 // processing. There is no need to lock the selector as we have only
80 // one thread per selector.
83 // Get list of selection keys with pending events.
84 // Note: the selected key set is not thread-safe
85 SocketChannel channel = null;
86 NNTPConnection conn = null;
87 final Set<SelectionKey> selKeys = selector.selectedKeys();
88 SelectionKey selKey = null;
90 synchronized (selKeys)
92 Iterator it = selKeys.iterator();
94 // Process the first pending event
97 selKey = (SelectionKey) it.next();
98 channel = (SocketChannel) selKey.channel();
99 conn = Connections.getInstance().get(channel);
101 // Because we cannot lock the selKey as that would cause a deadlock
102 // we lock the connection. To preserve the order of the received
103 // byte blocks a selection key for a connection that has pending
104 // read events is skipped.
105 if (conn == null || conn.tryReadLock())
107 // Remove from set to indicate that it's being processed
111 break; // End while loop
123 // Do not lock the selKeys while processing because this causes
124 // a deadlock in sun.nio.ch.SelectorImpl.lockAndDoSelect()
125 if (selKey != null && channel != null && conn != null)
127 processSelectionKey(conn, channel, selKey);
128 conn.unlockReadLock();
132 catch(CancelledKeyException ex)
134 Log.get().warning("ChannelReader.run(): " + ex);
135 Log.get().log(Level.INFO, "", ex);
139 ex.printStackTrace();
142 // Eventually wait for a register operation
143 synchronized (NNTPDaemon.RegisterGate)
145 // Do nothing; FindBugs may warn about an empty synchronized
146 // statement, but we cannot use a wait()/notify() mechanism here.
147 // If we used something like RegisterGate.wait() we block here
148 // until the NNTPDaemon calls notify(). But the daemon only
149 // calls notify() if itself is NOT blocked in the listening socket.
151 } // while(isRunning())
154 private void processSelectionKey(final NNTPConnection connection,
155 final SocketChannel socketChannel, final SelectionKey selKey)
156 throws InterruptedException, IOException
158 assert selKey != null;
159 assert selKey.isReadable();
161 // Some bytes are available for reading
165 //synchronized(socketChannel)
167 // Read the data into the appropriate buffer
168 ByteBuffer buf = connection.getInputBuffer();
172 read = socketChannel.read(buf);
174 catch(IOException ex)
176 // The connection was probably closed by the remote host
177 // in a non-clean fashion
178 Log.get().info("ChannelReader.processSelectionKey(): " + ex);
182 Log.get().warning("ChannelReader.processSelectionKey(): " + ex);
185 if(read == -1) // End of stream
189 else if(read > 0) // If some data was read
191 ConnectionWorker.addChannel(socketChannel);
198 Log.get().severe("Should not happen: " + selKey.toString());