2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / java / nio / channels / spi / AbstractSelectableChannel.java
blobb027b034ede6db216065550c4a93b500f492b798
1 /* AbstractSelectableChannel.java
2 Copyright (C) 2002, 2003 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
38 package java.nio.channels.spi;
40 import java.io.IOException;
41 import java.nio.channels.ClosedChannelException;
42 import java.nio.channels.SelectableChannel;
43 import java.nio.channels.SelectionKey;
44 import java.nio.channels.Selector;
45 import java.util.LinkedList;
46 import java.util.List;
47 import java.util.ListIterator;
49 public abstract class AbstractSelectableChannel extends SelectableChannel
51 private int registered;
52 private boolean blocking = true;
53 private Object LOCK = new Object();
54 private SelectorProvider provider;
55 private LinkedList keys;
57 /**
58 * Initializes the channel
60 protected AbstractSelectableChannel (SelectorProvider provider)
62 this.provider = provider;
63 this.keys = new LinkedList();
66 /**
67 * Retrieves the object upon which the configureBlocking and register
68 * methods synchronize.
70 public final Object blockingLock ()
72 return LOCK;
75 /**
76 * Adjusts this channel's blocking mode.
78 public final SelectableChannel configureBlocking (boolean block)
79 throws IOException
81 synchronized (LOCK)
83 blocking = true;
84 implConfigureBlocking (block);
87 return this;
90 /**
91 * Closes this channel.
93 * @exception IOException If an error occurs
95 protected final void implCloseChannel () throws IOException
97 implCloseSelectableChannel ();
101 * Closes this selectable channel.
103 protected abstract void implCloseSelectableChannel () throws IOException;
106 * Adjusts this channel's blocking mode.
108 protected abstract void implConfigureBlocking (boolean block)
109 throws IOException;
112 * Tells whether or not every I/O operation on this channel will block
113 * until it completes.
115 public final boolean isBlocking()
117 return blocking;
121 * Tells whether or not this channel is currently registered with
122 * any selectors.
124 public final boolean isRegistered()
126 return !keys.isEmpty();
130 * Retrieves the key representing the channel's registration with the
131 * given selector.
133 public final SelectionKey keyFor(Selector selector)
137 return register (selector, 0, null);
139 catch (Exception e)
141 return null;
146 * Returns the provider that created this channel.
148 public final SelectorProvider provider ()
150 return provider;
153 private SelectionKey locate (Selector selector)
155 if (keys == null)
156 return null;
158 ListIterator it = keys.listIterator ();
160 while (it.hasNext ())
162 SelectionKey key = (SelectionKey) it.next();
164 if (key.selector() == selector)
165 return key;
168 return null;
171 private void add (SelectionKey key)
173 keys.add (key);
177 * Registers this channel with the given selector, returning a selection key.
179 * @exception ClosedChannelException If the channel is already closed.
181 public final SelectionKey register (Selector selin, int ops, Object att)
182 throws ClosedChannelException
184 if (!isOpen ())
185 throw new ClosedChannelException();
187 SelectionKey key = null;
188 AbstractSelector selector = (AbstractSelector) selin;
190 synchronized (LOCK)
192 key = locate (selector);
194 if (key != null)
196 key.attach (att);
198 else
200 key = selector.register (this, ops, att);
202 if (key != null)
203 add (key);
207 return key;