jdk/test/java/nio/channels/DatagramChannel/EmptyBuffer.java
author ohair
Tue, 28 Dec 2010 15:53:50 -0800
changeset 7668 d4a77089c587
parent 5970 d4e98bbfb0be
child 31176 db59cb6634af
permissions -rw-r--r--
6962318: Update copyright year Reviewed-by: xdono
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 5970
diff changeset
     2
 * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/* @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @bug 4669040
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @summary Test DatagramChannel receive with empty buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @author Mike McCloskey
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.net.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.nio.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.nio.channels.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.nio.charset.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
public class EmptyBuffer {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    static PrintStream log = System.err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
        test();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    static void test() throws Exception {
5788
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    45
        Server server = new Server();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        Thread serverThread = new Thread(server);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        serverThread.start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        DatagramChannel dc = DatagramChannel.open();
5970
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    49
        try {
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    50
            ByteBuffer bb = ByteBuffer.allocateDirect(12);
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    51
            bb.order(ByteOrder.BIG_ENDIAN);
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    52
            bb.putInt(1).putLong(1);
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    53
            bb.flip();
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    54
            InetAddress address = InetAddress.getLocalHost();
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    55
            InetSocketAddress isa = new InetSocketAddress(address, server.port());
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    56
            dc.connect(isa);
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    57
            dc.write(bb);
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    58
            bb.rewind();
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    59
            dc.write(bb);
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    60
            bb.rewind();
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    61
            dc.write(bb);
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    62
            Thread.sleep(2000);
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    63
            serverThread.interrupt();
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    64
            server.throwException();
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    65
        } finally {
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    66
            dc.close();
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
    67
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
5788
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    70
    public static class Server implements Runnable {
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    71
        final DatagramChannel dc;
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    72
        Exception e = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
5788
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    74
        Server() throws IOException {
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    75
            this.dc = DatagramChannel.open().bind(new InetSocketAddress(0));
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    76
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
5788
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    78
        int port() {
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    79
            return dc.socket().getLocalPort();
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    80
        }
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    81
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    82
        void throwException() throws Exception {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            if (e != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
                throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        void showBuffer(String s, ByteBuffer bb) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            log.println(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            bb.rewind();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            for (int i=0; i<bb.limit(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                byte element = bb.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                log.print(element);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            log.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            SocketAddress sa = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            int numberReceived = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                ByteBuffer bb = ByteBuffer.allocateDirect(12);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                bb.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                // Only one clear. The buffer will be full after
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
                // the first receive, but it should still block
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
                // and receive and discard the next two
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
                while (!Thread.interrupted()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
                        sa = dc.receive(bb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                    } catch (ClosedByInterruptException cbie) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                        // Expected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                        log.println("Took expected exit");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                    if (sa != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                        log.println("Client: " + sa);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                        showBuffer("RECV", bb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                        sa = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                        numberReceived++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                        if (numberReceived > 3)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                            throw new RuntimeException("Test failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            } catch (Exception ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                e = ex;
5970
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
   125
            } finally {
d4e98bbfb0be 6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents: 5788
diff changeset
   126
                try { dc.close(); } catch (IOException ignore) { }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
}