src/jdk.jdwp.agent/share/native/libjdwp/ThreadGroupReferenceImpl.c
author rkennke
Fri, 12 Oct 2018 16:25:24 +0200
changeset 52107 0c1e44da019c
parent 47216 71c04702a3d5
permissions -rw-r--r--
8212053: A few more missing object equals barriers Reviewed-by: shade, zgu
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 21343
diff changeset
     2
 * Copyright (c) 1998, 2013, 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
#include "util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include "ThreadGroupReferenceImpl.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#include "inStream.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#include "outStream.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
static jboolean
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
name(PacketInputStream *in, PacketOutputStream *out)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
    JNIEnv *env;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
    jthreadGroup group;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
    env = getEnv();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    group = inStream_readThreadGroupRef(env, in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    if (inStream_error(in)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
        return JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    WITH_LOCAL_REFS(env, 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        jvmtiThreadGroupInfo info;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        (void)memset(&info, 0, sizeof(info));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        threadGroupInfo(group, &info);
21343
2a4c97049dc6 7105883: JDWP: agent crash if there exists a ThreadGroup with null name
egahlin
parents: 5506
diff changeset
    50
        (void)outStream_writeString(out, info.name == NULL ? "" : info.name);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        if ( info.name != NULL )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
            jvmtiDeallocate(info.name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    } END_WITH_LOCAL_REFS(env);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    return JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
static jboolean
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
parent(PacketInputStream *in, PacketOutputStream *out)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    JNIEnv *env;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    jthreadGroup group;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    env = getEnv();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    group = inStream_readThreadGroupRef(env, in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    if (inStream_error(in)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        return JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    WITH_LOCAL_REFS(env, 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        jvmtiThreadGroupInfo info;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        (void)memset(&info, 0, sizeof(info));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        threadGroupInfo(group, &info);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        (void)outStream_writeObjectRef(env, out, info.parent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        if ( info.name != NULL )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            jvmtiDeallocate(info.name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    } END_WITH_LOCAL_REFS(env);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    return JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
static jboolean
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
children(PacketInputStream *in, PacketOutputStream *out)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     JNIEnv *env;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     jthreadGroup group;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     env = getEnv();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     group = inStream_readThreadGroupRef(env, in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     if (inStream_error(in)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
         return JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     WITH_LOCAL_REFS(env, 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
         jvmtiError error;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
         jint threadCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
         jint groupCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
         jthread *theThreads;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
         jthread *theGroups;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
         error = JVMTI_FUNC_PTR(gdata->jvmti,GetThreadGroupChildren)(gdata->jvmti, group,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                                              &threadCount,&theThreads,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                                              &groupCount, &theGroups);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
         if (error != JVMTI_ERROR_NONE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
             outStream_setError(out, map2jdwpError(error));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
         } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
             int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
             /* Squish out all of the debugger-spawned threads */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
             threadCount = filterDebugThreads(theThreads, threadCount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
             (void)outStream_writeInt(out, threadCount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
             for (i = 0; i < threadCount; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                 (void)outStream_writeObjectRef(env, out, theThreads[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
             }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
             (void)outStream_writeInt(out, groupCount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
             for (i = 0; i < groupCount; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                 (void)outStream_writeObjectRef(env, out, theGroups[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
             }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
             jvmtiDeallocate(theGroups);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
             jvmtiDeallocate(theThreads);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     } END_WITH_LOCAL_REFS(env);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     return JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
void *ThreadGroupReference_Cmds[] = { (void *)3,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
                                      (void *)name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
                                      (void *)parent,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
                                      (void *)children };