src/jdk.jdi/share/classes/com/sun/tools/jdi/Packet.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 45714 jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/Packet.java@1820d351198d
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
45714
1820d351198d 8183012: Code cleanup in com.sun.tools.jdi
clanger
parents: 25859
diff changeset
     2
 * Copyright (c) 1998, 2017, 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 com.sun.tools.jdi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
public class Packet extends Object {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
    public final static short NoFlags = 0x0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
    public final static short Reply = 0x80;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
    public final static short ReplyNoError = 0x0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
    static int uID = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    final static byte[] nullData = new byte[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    // Note! flags, cmdSet, and cmd are all byte values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    // We represent them as shorts to make them easier
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    // to work with.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    int id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    short flags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    short cmdSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    short cmd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    short errorCode;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    byte[] data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    volatile boolean replied = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     * Return byte representation of the packet
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    public byte[] toByteArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        int len = data.length + 11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        byte b[] = new byte[len];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        b[0] = (byte)((len >>> 24) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        b[1] = (byte)((len >>> 16) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        b[2] = (byte)((len >>>  8) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        b[3] = (byte)((len >>>  0) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        b[4] = (byte)((id >>> 24) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        b[5] = (byte)((id >>> 16) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        b[6] = (byte)((id >>>  8) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        b[7] = (byte)((id >>>  0) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        b[8] = (byte)flags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        if ((flags & Packet.Reply) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            b[9] = (byte)cmdSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            b[10] = (byte)cmd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            b[9] = (byte)((errorCode >>>  8) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            b[10] = (byte)((errorCode >>>  0) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        if (data.length > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            System.arraycopy(data, 0, b, 11, data.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        return b;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * Create a packet from its byte array representation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    public static Packet fromByteArray(byte b[]) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        if (b.length < 11) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            throw new IOException("packet is insufficient size");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        int b0 = b[0] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        int b1 = b[1] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        int b2 = b[2] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        int b3 = b[3] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        int len = ((b0 << 24) | (b1 << 16) | (b2 << 8) | (b3 << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        if (len != b.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            throw new IOException("length size mis-match");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        int b4 = b[4] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        int b5 = b[5] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        int b6 = b[6] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        int b7 = b[7] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        Packet p = new Packet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        p.id = ((b4 << 24) | (b5 << 16) | (b6 << 8) | (b7 << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        p.flags = (short)(b[8] & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        if ((p.flags & Packet.Reply) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            p.cmdSet = (short)(b[9] & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            p.cmd = (short)(b[10] & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            short b9 = (short)(b[9] & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            short b10 = (short)(b[10] & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            p.errorCode = (short)((b9 << 8) + (b10 << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        p.data = new byte[b.length - 11];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        System.arraycopy(b, 11, p.data, 0, p.data.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        return p;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
45714
1820d351198d 8183012: Code cleanup in com.sun.tools.jdi
clanger
parents: 25859
diff changeset
   118
    Packet() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        id = uniqID();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        flags = NoFlags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        data = nullData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
45714
1820d351198d 8183012: Code cleanup in com.sun.tools.jdi
clanger
parents: 25859
diff changeset
   124
    static synchronized private int uniqID() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
         * JDWP spec does not require this id to be sequential and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
         * increasing, but our implementation does. See
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
         * VirtualMachine.notifySuspend, for example.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        return uID++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
}