jdk/test/java/rmi/activation/rmidViaInheritedChannel/InheritedChannelNotServerSocket.java
author alanb
Thu, 17 Mar 2016 19:04:16 +0000
changeset 36511 9d0388c6b336
parent 32835 8bfe2ea5617d
child 40261 86a49ba76f52
permissions -rw-r--r--
8142968: Module System implementation Summary: Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282 Reviewed-by: alanb, mchung, naoto, rriggs, psandoz, plevart, mullan, ascarpino, vinnie, prr, sherman, dfuchs, mhaupt Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, chris.hegarty@oracle.com, alexandr.scherbatiy@oracle.com, amy.lu@oracle.com, calvin.cheung@oracle.com, daniel.fuchs@oracle.com, erik.joelsson@oracle.com, harold.seigel@oracle.com, jaroslav.bachorik@oracle.com, jean-francois.denise@oracle.com, jan.lahoda@oracle.com, james.laskey@oracle.com, lois.foltan@oracle.com, miroslav.kos@oracle.com, huaming.li@oracle.com, sean.mullan@oracle.com, naoto.sato@oracle.com, masayoshi.okutsu@oracle.com, peter.levart@gmail.com, philip.race@oracle.com, claes.redestad@oracle.com, sergey.bylokhov@oracle.com, alexandre.iline@oracle.com, volker.simonis@gmail.com, staffan.larsen@oracle.com, stuart.marks@oracle.com, semyon.sadetsky@oracle.com, serguei.spitsyn@oracle.com, sundararajan.athijegannathan@oracle.com, valerie.peng@oracle.com, vincent.x.ryan@oracle.com, weijun.wang@oracle.com, yuri.nesterenko@oracle.com, yekaterina.kantserova@oracle.com, alexander.kulyakhtin@oracle.com, felix.yang@oracle.com, andrei.eremeev@oracle.com, frank.yuan@oracle.com, sergei.pikalev@oracle.com, sibabrata.sahoo@oracle.com, tiantian.du@oracle.com, sha.jiang@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
31247
6423385b99fe 8129499: Structure of java/rmi/activation/rmidViaInheritedChannel tests masks exception
bpb
parents: 30820
diff changeset
     2
 * Copyright (c) 2005, 2015, 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: 2443
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2443
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2443
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
2443
4bcc75ed04c0 6824141: test/java/rmi/activation/rmidViaInheritedChannel tests fail
alanb
parents: 2
diff changeset
    25
 * @bug 6261402 6824141
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @summary If rmid has an inherited channel that is not a server
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * socket (such as it if was started using rsh/rcmd), then it should
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * function normally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * @author Peter Jones
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * @library ../../testlibrary
30820
0d4717a011d3 8081347: Add @modules to jdk_core tests
mchung
parents: 27784
diff changeset
    32
 * @modules java.base/sun.nio.ch
0d4717a011d3 8081347: Add @modules to jdk_core tests
mchung
parents: 27784
diff changeset
    33
 *          java.rmi/sun.rmi.registry
0d4717a011d3 8081347: Add @modules to jdk_core tests
mchung
parents: 27784
diff changeset
    34
 *          java.rmi/sun.rmi.server
0d4717a011d3 8081347: Add @modules to jdk_core tests
mchung
parents: 27784
diff changeset
    35
 *          java.rmi/sun.rmi.transport
0d4717a011d3 8081347: Add @modules to jdk_core tests
mchung
parents: 27784
diff changeset
    36
 *          java.rmi/sun.rmi.transport.tcp
14778
5947768d173d 8004748: clean up @build tags in RMI tests
smarks
parents: 13256
diff changeset
    37
 * @build TestLibrary RMID ActivationLibrary
13256
5886d7607acd 7142596: RMI JPRT tests are failing
dmocek
parents: 5506
diff changeset
    38
 * @run main/othervm/timeout=240 InheritedChannelNotServerSocket
32835
8bfe2ea5617d 8137232: Mark 3 more core-libs tests as intermittently failing
amlu
parents: 31247
diff changeset
    39
 * @key intermittent
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.net.Socket;
2443
4bcc75ed04c0 6824141: test/java/rmi/activation/rmidViaInheritedChannel tests fail
alanb
parents: 2
diff changeset
    44
import java.net.ProtocolFamily;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import java.nio.channels.Channel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import java.nio.channels.DatagramChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import java.nio.channels.Pipe;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import java.nio.channels.ServerSocketChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import java.nio.channels.SocketChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import java.nio.channels.spi.AbstractSelector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
import java.nio.channels.spi.SelectorProvider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
import java.rmi.NotBoundException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
import java.rmi.Remote;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
import java.rmi.RemoteException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
import java.rmi.activation.ActivationGroup;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
import java.rmi.activation.ActivationSystem;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
import java.rmi.registry.LocateRegistry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
import java.rmi.registry.Registry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
import java.rmi.server.UnicastRemoteObject;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
public class InheritedChannelNotServerSocket {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    private static final Object lock = new Object();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    private static boolean notified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    private InheritedChannelNotServerSocket() { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    public interface Callback extends Remote {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        void notifyTest() throws RemoteException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    public static class CallbackImpl implements Callback {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        CallbackImpl() { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        public void notifyTest() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            synchronized (lock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
                notified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                System.err.println("notification received.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                lock.notifyAll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        System.err.println("\nRegression test for bug 6261402\n");
13256
5886d7607acd 7142596: RMI JPRT tests are failing
dmocek
parents: 5506
diff changeset
    84
        System.setProperty("java.rmi.activation.port",
5886d7607acd 7142596: RMI JPRT tests are failing
dmocek
parents: 5506
diff changeset
    85
                           Integer.toString(TestLibrary.INHERITEDCHANNELNOTSERVERSOCKET_ACTIVATION_PORT));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        RMID rmid = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        Callback obj = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
             * Export callback object and bind in registry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            System.err.println("export callback object and bind in registry");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            obj = new CallbackImpl();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            Callback proxy =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                (Callback) UnicastRemoteObject.exportObject(obj, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            Registry registry =
13256
5886d7607acd 7142596: RMI JPRT tests are failing
dmocek
parents: 5506
diff changeset
    97
                LocateRegistry.createRegistry(
5886d7607acd 7142596: RMI JPRT tests are failing
dmocek
parents: 5506
diff changeset
    98
                    TestLibrary.INHERITEDCHANNELNOTSERVERSOCKET_REGISTRY_PORT);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            registry.bind("Callback", proxy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
             * Start rmid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            System.err.println("start rmid with inherited channel");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            RMID.removeLog();
13256
5886d7607acd 7142596: RMI JPRT tests are failing
dmocek
parents: 5506
diff changeset
   106
            rmid = RMID.createRMID(System.out, System.err, true, true,
5886d7607acd 7142596: RMI JPRT tests are failing
dmocek
parents: 5506
diff changeset
   107
                                   TestLibrary.INHERITEDCHANNELNOTSERVERSOCKET_ACTIVATION_PORT);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 32835
diff changeset
   108
            rmid.addOptions(
9d0388c6b336 8142968: Module System implementation
alanb
parents: 32835
diff changeset
   109
                "-XaddExports:java.base/sun.nio.ch=ALL-UNNAMED",
9d0388c6b336 8142968: Module System implementation
alanb
parents: 32835
diff changeset
   110
                "-Djava.nio.channels.spi.SelectorProvider=InheritedChannelNotServerSocket$SP");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            rmid.start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
             * Get activation system and wait to be notified via callback
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
             * from rmid's selector provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            System.err.println("get activation system");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            ActivationSystem system = ActivationGroup.getSystem();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            System.err.println("ActivationSystem = " + system);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            synchronized (lock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                while (!notified) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                    lock.wait();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            System.err.println("TEST PASSED");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            if (obj != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                UnicastRemoteObject.unexportObject(obj, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            }
31247
6423385b99fe 8129499: Structure of java/rmi/activation/rmidViaInheritedChannel tests masks exception
bpb
parents: 30820
diff changeset
   130
            if (rmid != null) {
6423385b99fe 8129499: Structure of java/rmi/activation/rmidViaInheritedChannel tests masks exception
bpb
parents: 30820
diff changeset
   131
                rmid.cleanup();
6423385b99fe 8129499: Structure of java/rmi/activation/rmidViaInheritedChannel tests masks exception
bpb
parents: 30820
diff changeset
   132
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    public static class SP extends SelectorProvider {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        private final SelectorProvider provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        private volatile SocketChannel channel = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        public SP() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            provider = sun.nio.ch.DefaultSelectorProvider.create();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        public DatagramChannel openDatagramChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            return provider.openDatagramChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
2443
4bcc75ed04c0 6824141: test/java/rmi/activation/rmidViaInheritedChannel tests fail
alanb
parents: 2
diff changeset
   148
        public DatagramChannel openDatagramChannel(ProtocolFamily family)
4bcc75ed04c0 6824141: test/java/rmi/activation/rmidViaInheritedChannel tests fail
alanb
parents: 2
diff changeset
   149
            throws IOException
4bcc75ed04c0 6824141: test/java/rmi/activation/rmidViaInheritedChannel tests fail
alanb
parents: 2
diff changeset
   150
        {
4bcc75ed04c0 6824141: test/java/rmi/activation/rmidViaInheritedChannel tests fail
alanb
parents: 2
diff changeset
   151
            return provider.openDatagramChannel(family);
4bcc75ed04c0 6824141: test/java/rmi/activation/rmidViaInheritedChannel tests fail
alanb
parents: 2
diff changeset
   152
        }
4bcc75ed04c0 6824141: test/java/rmi/activation/rmidViaInheritedChannel tests fail
alanb
parents: 2
diff changeset
   153
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        public Pipe openPipe() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            return provider.openPipe();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        public AbstractSelector openSelector() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            return provider.openSelector();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        public ServerSocketChannel openServerSocketChannel()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
            return provider.openServerSocketChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        public SocketChannel openSocketChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            return provider.openSocketChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        public synchronized Channel inheritedChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            System.err.println("SP.inheritedChannel");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            if (channel == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                channel = SocketChannel.open();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                Socket socket = channel.socket();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                System.err.println("socket = " + socket);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                 * Notify test that inherited channel was created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                    System.err.println("notify test...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                    Registry registry =
13256
5886d7607acd 7142596: RMI JPRT tests are failing
dmocek
parents: 5506
diff changeset
   185
                        LocateRegistry.getRegistry(TestLibrary.INHERITEDCHANNELNOTSERVERSOCKET_REGISTRY_PORT);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                    Callback obj = (Callback) registry.lookup("Callback");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
                    obj.notifyTest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                } catch (NotBoundException nbe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                    throw (IOException)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                        new IOException("callback object not bound").
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
                            initCause(nbe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            return channel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
}