< prev index next >

src/java.base/solaris/classes/sun/nio/ch/DevPollSelectorImpl.java

Print this page
rev 49242 : [mq]: selector-cleanup
   1 /*
   2  * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.nio.ch;
  27 
  28 import java.io.IOException;
  29 import java.nio.channels.*;
  30 import java.nio.channels.spi.*;
  31 import java.util.*;
  32 
  33 
  34 /**
  35  * An implementation of Selector for Solaris.
  36  */
  37 class DevPollSelectorImpl
  38     extends SelectorImpl
  39 {
  40 
  41     // File descriptors used for interrupt
  42     protected int fd0;
  43     protected int fd1;
  44 
  45     // The poll object
  46     DevPollArrayWrapper pollWrapper;
  47 
  48     // Maps from file descriptors to keys
  49     private Map<Integer,SelectionKeyImpl> fdToKey;
  50 
  51     // True if this Selector has been closed
  52     private boolean closed = false;
  53 
  54     // Lock for close/cleanup
  55     private Object closeLock = new Object();
  56 
  57     // Lock for interrupt triggering and clearing
  58     private Object interruptLock = new Object();
  59     private boolean interruptTriggered = false;
  60 
  61     /**
  62      * Package private constructor called by factory method in
  63      * the abstract superclass Selector.
  64      */
  65     DevPollSelectorImpl(SelectorProvider sp) {
  66         super(sp);
  67         long pipeFds = IOUtil.makePipe(false);
  68         fd0 = (int) (pipeFds >>> 32);
  69         fd1 = (int) pipeFds;
  70         try {
  71             pollWrapper = new DevPollArrayWrapper();
  72             pollWrapper.initInterrupt(fd0, fd1);
  73             fdToKey = new HashMap<>();
  74         } catch (Throwable t) {
  75             try {
  76                 FileDispatcherImpl.closeIntFD(fd0);
  77             } catch (IOException ioe0) {
  78                 t.addSuppressed(ioe0);
  79             }
  80             try {
  81                 FileDispatcherImpl.closeIntFD(fd1);
  82             } catch (IOException ioe1) {
  83                 t.addSuppressed(ioe1);
  84             }
  85             throw t;
  86         }
  87     }
  88 






  89     protected int doSelect(long timeout)
  90         throws IOException
  91     {
  92         if (closed)
  93             throw new ClosedSelectorException();
  94         processDeregisterQueue();
  95         try {
  96             begin();
  97             pollWrapper.poll(timeout);
  98         } finally {
  99             end();
 100         }
 101         processDeregisterQueue();
 102         int numKeysUpdated = updateSelectedKeys();
 103         if (pollWrapper.interrupted()) {
 104             // Clear the wakeup pipe
 105             pollWrapper.putReventOps(pollWrapper.interruptedIndex(), 0);
 106             synchronized (interruptLock) {
 107                 pollWrapper.clearInterrupted();
 108                 IOUtil.drain(fd0);
 109                 interruptTriggered = false;
 110             }
 111         }
 112         return numKeysUpdated;
 113     }


 124             SelectionKeyImpl ski = fdToKey.get(Integer.valueOf(nextFD));
 125             // ski is null in the case of an interrupt
 126             if (ski != null) {
 127                 int rOps = pollWrapper.getReventOps(i);
 128                 if (selectedKeys.contains(ski)) {
 129                     if (ski.channel.translateAndSetReadyOps(rOps, ski)) {
 130                         numKeysUpdated++;
 131                     }
 132                 } else {
 133                     ski.channel.translateAndSetReadyOps(rOps, ski);
 134                     if ((ski.nioReadyOps() & ski.nioInterestOps()) != 0) {
 135                         selectedKeys.add(ski);
 136                         numKeysUpdated++;
 137                     }
 138                 }
 139             }
 140         }
 141         return numKeysUpdated;
 142     }
 143 

 144     protected void implClose() throws IOException {
 145         if (closed)
 146             return;
 147         closed = true;
 148 
 149         // prevent further wakeup
 150         synchronized (interruptLock) {
 151             interruptTriggered = true;
 152         }
 153 

 154         FileDispatcherImpl.closeIntFD(fd0);
 155         FileDispatcherImpl.closeIntFD(fd1);
 156 
 157         pollWrapper.release(fd0);
 158         pollWrapper.closeDevPollFD();
 159         selectedKeys = null;
 160 
 161         // Deregister channels
 162         Iterator<SelectionKey> i = keys.iterator();
 163         while (i.hasNext()) {
 164             SelectionKeyImpl ski = (SelectionKeyImpl)i.next();
 165             deregister(ski);
 166             SelectableChannel selch = ski.channel();
 167             if (!selch.isOpen() && !selch.isRegistered())
 168                 ((SelChImpl)selch).kill();
 169             i.remove();
 170         }
 171         fd0 = -1;
 172         fd1 = -1;
 173     }
 174 

 175     protected void implRegister(SelectionKeyImpl ski) {
 176         int fd = IOUtil.fdVal(ski.channel.getFD());
 177         fdToKey.put(Integer.valueOf(fd), ski);
 178         keys.add(ski);
 179     }
 180 

 181     protected void implDereg(SelectionKeyImpl ski) throws IOException {
 182         int i = ski.getIndex();
 183         assert (i >= 0);
 184         int fd = ski.channel.getFDVal();
 185         fdToKey.remove(Integer.valueOf(fd));
 186         pollWrapper.release(fd);
 187         ski.setIndex(-1);
 188         keys.remove(ski);
 189         selectedKeys.remove(ski);
 190         deregister((AbstractSelectionKey)ski);
 191         SelectableChannel selch = ski.channel();
 192         if (!selch.isOpen() && !selch.isRegistered())
 193             ((SelChImpl)selch).kill();
 194     }
 195 

 196     public void putEventOps(SelectionKeyImpl sk, int ops) {
 197         if (closed)
 198             throw new ClosedSelectorException();
 199         int fd = IOUtil.fdVal(sk.channel.getFD());
 200         pollWrapper.setInterest(fd, ops);
 201     }
 202 

 203     public Selector wakeup() {
 204         synchronized (interruptLock) {
 205             if (!interruptTriggered) {
 206                 pollWrapper.interrupt();
 207                 interruptTriggered = true;
 208             }
 209         }
 210         return this;
 211     }
 212 }
   1 /*
   2  * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.nio.ch;
  27 
  28 import java.io.IOException;
  29 import java.nio.channels.*;
  30 import java.nio.channels.spi.*;
  31 import java.util.*;
  32 
  33 
  34 /**
  35  * An implementation of Selector for Solaris.
  36  */
  37 class DevPollSelectorImpl
  38     extends SelectorImpl
  39 {

  40     // File descriptors used for interrupt
  41     private final int fd0;
  42     private final int fd1;
  43 
  44     // The poll object
  45     private final DevPollArrayWrapper pollWrapper;
  46 
  47     // Maps from file descriptors to keys
  48     private final Map<Integer, SelectionKeyImpl> fdToKey;
  49 
  50     // True if this Selector has been closed
  51     private boolean closed;
  52 
  53     // Lock for close/cleanup
  54     private final Object closeLock = new Object();
  55 
  56     // Lock for interrupt triggering and clearing
  57     private final Object interruptLock = new Object();
  58     private boolean interruptTriggered;
  59 
  60     /**
  61      * Package private constructor called by factory method in
  62      * the abstract superclass Selector.
  63      */
  64     DevPollSelectorImpl(SelectorProvider sp) {
  65         super(sp);
  66         long pipeFds = IOUtil.makePipe(false);
  67         fd0 = (int) (pipeFds >>> 32);
  68         fd1 = (int) pipeFds;
  69         try {
  70             pollWrapper = new DevPollArrayWrapper();
  71             pollWrapper.initInterrupt(fd0, fd1);
  72             fdToKey = new HashMap<>();
  73         } catch (Throwable t) {
  74             try {
  75                 FileDispatcherImpl.closeIntFD(fd0);
  76             } catch (IOException ioe0) {
  77                 t.addSuppressed(ioe0);
  78             }
  79             try {
  80                 FileDispatcherImpl.closeIntFD(fd1);
  81             } catch (IOException ioe1) {
  82                 t.addSuppressed(ioe1);
  83             }
  84             throw t;
  85         }
  86     }
  87 
  88     private void ensureOpen() {
  89         if (closed)
  90             throw new ClosedSelectorException();
  91     }
  92 
  93     @Override
  94     protected int doSelect(long timeout)
  95         throws IOException
  96     {
  97         ensureOpen();

  98         processDeregisterQueue();
  99         try {
 100             begin();
 101             pollWrapper.poll(timeout);
 102         } finally {
 103             end();
 104         }
 105         processDeregisterQueue();
 106         int numKeysUpdated = updateSelectedKeys();
 107         if (pollWrapper.interrupted()) {
 108             // Clear the wakeup pipe
 109             pollWrapper.putReventOps(pollWrapper.interruptedIndex(), 0);
 110             synchronized (interruptLock) {
 111                 pollWrapper.clearInterrupted();
 112                 IOUtil.drain(fd0);
 113                 interruptTriggered = false;
 114             }
 115         }
 116         return numKeysUpdated;
 117     }


 128             SelectionKeyImpl ski = fdToKey.get(Integer.valueOf(nextFD));
 129             // ski is null in the case of an interrupt
 130             if (ski != null) {
 131                 int rOps = pollWrapper.getReventOps(i);
 132                 if (selectedKeys.contains(ski)) {
 133                     if (ski.channel.translateAndSetReadyOps(rOps, ski)) {
 134                         numKeysUpdated++;
 135                     }
 136                 } else {
 137                     ski.channel.translateAndSetReadyOps(rOps, ski);
 138                     if ((ski.nioReadyOps() & ski.nioInterestOps()) != 0) {
 139                         selectedKeys.add(ski);
 140                         numKeysUpdated++;
 141                     }
 142                 }
 143             }
 144         }
 145         return numKeysUpdated;
 146     }
 147 
 148     @Override
 149     protected void implClose() throws IOException {
 150         if (closed)
 151             return;
 152         closed = true;
 153 
 154         // prevent further wakeup
 155         synchronized (interruptLock) {
 156             interruptTriggered = true;
 157         }
 158 
 159         pollWrapper.close();
 160         FileDispatcherImpl.closeIntFD(fd0);
 161         FileDispatcherImpl.closeIntFD(fd1);
 162 




 163         // Deregister channels
 164         Iterator<SelectionKey> i = keys.iterator();
 165         while (i.hasNext()) {
 166             SelectionKeyImpl ski = (SelectionKeyImpl)i.next();
 167             deregister(ski);
 168             SelectableChannel selch = ski.channel();
 169             if (!selch.isOpen() && !selch.isRegistered())
 170                 ((SelChImpl)selch).kill();
 171             i.remove();
 172         }


 173     }
 174 
 175     @Override
 176     protected void implRegister(SelectionKeyImpl ski) {
 177         int fd = IOUtil.fdVal(ski.channel.getFD());
 178         fdToKey.put(Integer.valueOf(fd), ski);
 179         keys.add(ski);
 180     }
 181 
 182     @Override
 183     protected void implDereg(SelectionKeyImpl ski) throws IOException {
 184         int i = ski.getIndex();
 185         assert (i >= 0);
 186         int fd = ski.channel.getFDVal();
 187         fdToKey.remove(Integer.valueOf(fd));
 188         pollWrapper.release(fd);
 189         ski.setIndex(-1);
 190         keys.remove(ski);
 191         selectedKeys.remove(ski);
 192         deregister((AbstractSelectionKey)ski);
 193         SelectableChannel selch = ski.channel();
 194         if (!selch.isOpen() && !selch.isRegistered())
 195             ((SelChImpl)selch).kill();
 196     }
 197 
 198     @Override
 199     public void putEventOps(SelectionKeyImpl sk, int ops) {
 200         ensureOpen();

 201         int fd = IOUtil.fdVal(sk.channel.getFD());
 202         pollWrapper.setInterest(fd, ops);
 203     }
 204 
 205     @Override
 206     public Selector wakeup() {
 207         synchronized (interruptLock) {
 208             if (!interruptTriggered) {
 209                 pollWrapper.interrupt();
 210                 interruptTriggered = true;
 211             }
 212         }
 213         return this;
 214     }
 215 }
< prev index next >