jdk/test/java/rmi/testlibrary/RegistryRunner.java
author amurillo
Wed, 15 Aug 2012 16:49:38 -0700
changeset 13465 d3fc5d192448
parent 13256 5886d7607acd
child 42775 a45fa7082c81
permissions -rw-r--r--
7191765: make jdk8 the default jprt release for hs24 Reviewed-by: jcoomes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
13256
5886d7607acd 7142596: RMI JPRT tests are failing
dmocek
parents: 5506
diff changeset
     2
 * Copyright (c) 1999, 2012, 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
/**/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
import java.rmi.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.rmi.registry.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.rmi.server.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * Class to run a registry whos VM can be told to exit remotely; using
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * the rmiregistry in this fashion makes tests more robust under
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * windows where Process.destroy() seems not to be 100% reliable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
public class RegistryRunner extends UnicastRemoteObject
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    implements RemoteExiter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    private static Registry registry = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    private static RemoteExiter exiter = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    public RegistryRunner() throws RemoteException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
     * Ask the registry to exit instead of forcing it do so; this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
     * works better on windows...
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    public void exit() throws RemoteException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        // REMIND: create a thread to do this to avoid
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        // a remote exception?
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        System.err.println("received call to exit");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        System.exit(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * Request that the registry process exit and handle
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     * related exceptions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     */
13256
5886d7607acd 7142596: RMI JPRT tests are failing
dmocek
parents: 5506
diff changeset
    59
    public static void requestExit(int port) {
5886d7607acd 7142596: RMI JPRT tests are failing
dmocek
parents: 5506
diff changeset
    60
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            RemoteExiter exiter =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                (RemoteExiter)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
                Naming.lookup("rmi://localhost:" +
13256
5886d7607acd 7142596: RMI JPRT tests are failing
dmocek
parents: 5506
diff changeset
    65
                              port +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
                              "/RemoteExiter");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
                exiter.exit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            } catch (RemoteException re) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            exiter = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        } catch (java.net.MalformedURLException mfue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            // will not happen
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        } catch (NotBoundException nbe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            TestLibrary.bomb("exiter not bound?", nbe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        } catch (RemoteException re) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            TestLibrary.bomb("remote exception trying to exit",
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
                             re);
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) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            if (args.length == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
                System.err.println("Usage: <port>");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                System.exit(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            }
13256
5886d7607acd 7142596: RMI JPRT tests are failing
dmocek
parents: 5506
diff changeset
    88
            int port = -1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
                port = Integer.parseInt(args[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            } catch (NumberFormatException nfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            // create a registry
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            registry = LocateRegistry.createRegistry(port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            // create a remote object to tell this VM to exit
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            exiter = new RegistryRunner();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            Naming.rebind("rmi://localhost:" + port +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                          "/RemoteExiter", exiter);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            System.err.println(e.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            e.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            System.exit(-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
}