jdk/src/jdk.jvmstat/share/classes/sun/tools/jstatd/RemoteHostImpl.java
author chegar
Sun, 17 Aug 2014 15:54:13 +0100
changeset 25859 3317bb8137f4
parent 25522 jdk/src/share/classes/sun/tools/jstatd/RemoteHostImpl.java@10d789df41bb
child 27957 24b4e6082f19
permissions -rw-r--r--
8054834: Modular Source Code Reviewed-by: alanb, chegar, ihse, mduigou Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, chris.hegarty@oracle.com, erik.joelsson@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, magnus.ihse.bursie@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, paul.sandoz@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2004, 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
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.tools.jstatd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.nio.*;
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.rmi.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.rmi.server.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.jvmstat.monitor.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import sun.jvmstat.monitor.event.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import sun.jvmstat.monitor.remote.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * Concrete implementation of the RemoteHost interface for the HotSpot
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * PerfData <em>rmi:</em> protocol.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * This class provides remote access to the instrumentation exported
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * by HotSpot Java Virtual Machines through the PerfData shared memory
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * @author Brian Doherty
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
public class RemoteHostImpl implements RemoteHost, HostListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    private MonitoredHost monitoredHost;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    private Set<Integer> activeVms;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    public RemoteHostImpl() throws MonitorException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            monitoredHost = MonitoredHost.getMonitoredHost("localhost");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        } catch (URISyntaxException e) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        activeVms = monitoredHost.activeVms();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        monitoredHost.addHostListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    public RemoteVm attachVm(int lvmid, String mode)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
                    throws RemoteException, MonitorException {
25522
10d789df41bb 8049892: Replace uses of 'new Integer()' with appropriate alternative across core classes
prr
parents: 24969
diff changeset
    65
        Integer v = lvmid;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        RemoteVm stub = null;
24969
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 5506
diff changeset
    67
        StringBuilder sb = new StringBuilder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        sb.append("local://").append(lvmid).append("@localhost");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        if (mode != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            sb.append("?mode=" + mode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        String vmidStr = sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            VmIdentifier vmid = new VmIdentifier(vmidStr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            MonitoredVm mvm = monitoredHost.getMonitoredVm(vmid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            RemoteVmImpl rvm = new RemoteVmImpl((BufferedMonitoredVm)mvm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            stub = (RemoteVm) UnicastRemoteObject.exportObject(rvm, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        catch (URISyntaxException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            throw new RuntimeException("Malformed VmIdentifier URI: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
                                       + vmidStr, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        return stub;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    public void detachVm(RemoteVm rvm) throws RemoteException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        rvm.detach();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    public int[] activeVms() throws MonitorException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        Object[] vms = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        int[] vmids = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        vms = monitoredHost.activeVms().toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        vmids = new int[vms.length];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        for (int i = 0; i < vmids.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            vmids[i] = ((Integer)vms[i]).intValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        return vmids;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    public void vmStatusChanged(VmStatusChangeEvent ev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        synchronized(this.activeVms) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            activeVms.retainAll(ev.getActive());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    public void disconnected(HostEvent ev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        // we only monitor the local host, so this event shouldn't occur.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
}