1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
|
/*
* Copyright (c) 2006, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package nsk.share.jdi;
import java.io.*;
import java.util.*;
import nsk.share.locks.LockingThread;
import nsk.share.TestBug;
/*
* Class is used as base debuggee in tests for ThreadReference.ownedMonitorsAndFrames().
*
* Class handle commands for creating threads which acquires and relinquish locks in different ways,
* nsk.share.locks.LockingThread is used for this purposes.
*
* Information about acquired monitors can be stored in static array 'monitorsInfo' and in this way this
* data is available for debugger.
*/
public class OwnedMonitorsDebuggee extends AbstractJDIDebuggee {
// command:threadName:stackFrameDescription
public static final String COMMAND_CREATE_LOCKING_THREAD = "createLockingThread";
// command:threadName
public static final String COMMAND_STOP_LOCKING_THREAD = "stopLockingThread";
// command:threadName
public static final String COMMAND_UPDATE_MONITOR_INFO = "updateMonitorInfo";
// command:threadName
public static final String COMMAND_EXIT_SINGLE_FRAME = "exitSingleFrame";
// command:threadName:monitorIndex
public static final String COMMAND_RELINQUISH_MONITOR = "relinquishMonitor";
// command:threadName
public static final String COMMAND_ACQUIRE_RELINQUISHED_MONITOR = "acquireRelinquishedMonitor";
// from this array information about acquired monitors is available for debugger
// (this class is used in stress tests where several tests are executed consecutively, but in this case using of
// static array shouldn't cause problems because of before using of array 'monitorsInfo' debugger
// uses COMMAND_UPDATE_MONITOR_INFO which updates this array with latest data, so excution of one test shouldn't
// affect other tests)
public static LockingThread.DebugMonitorInfo monitorsInfo[];
private boolean returnJNIMonitors;
public final static String mainThreadName = "OwnedMonitorDebuggeeMainThread";
protected String[] doInit(String[] args) {
Thread.currentThread().setName(mainThreadName);
args = super.doInit(args);
ArrayList<String> standardArgs = new ArrayList<String>();
for (int i = 0; i < args.length; i++) {
if (args[i].equalsIgnoreCase("-returnJNIMonitors")) {
returnJNIMonitors = true;
} else
standardArgs.add(args[i]);
}
return standardArgs.toArray(new String[] {});
}
public boolean parseCommand(String command) {
if (super.parseCommand(command))
return true;
StreamTokenizer tokenizer = new StreamTokenizer(new StringReader(command));
tokenizer.whitespaceChars(':', ':');
tokenizer.wordChars('_', '_');
try {
if (command.startsWith(COMMAND_ACQUIRE_RELINQUISHED_MONITOR)) {
tokenizer.nextToken();
if (tokenizer.nextToken() != StreamTokenizer.TT_WORD)
throw new TestBug("Invalid command format: " + command);
String threadName = tokenizer.sval;
acquireRelinquishMonitor(threadName);
return true;
} else if (command.startsWith(COMMAND_RELINQUISH_MONITOR)) {
tokenizer.nextToken();
if (tokenizer.nextToken() != StreamTokenizer.TT_WORD)
throw new TestBug("Invalid command format: " + command);
String threadName = tokenizer.sval;
if (tokenizer.nextToken() != StreamTokenizer.TT_NUMBER)
throw new TestBug("Invalid command format: " + command);
int monitorIndex = (int) tokenizer.nval;
relinquishMonitor(threadName, monitorIndex);
return true;
} else if (command.startsWith(COMMAND_CREATE_LOCKING_THREAD)) {
tokenizer.nextToken();
if (tokenizer.nextToken() != StreamTokenizer.TT_WORD)
throw new TestBug("Invalid command format: " + command);
String threadName = tokenizer.sval;
List<String> stackFramesDescription = new ArrayList<String>();
while (tokenizer.nextToken() == StreamTokenizer.TT_WORD) {
stackFramesDescription.add(tokenizer.sval);
}
createLockingThread(threadName, stackFramesDescription);
return true;
} else if (command.startsWith(COMMAND_STOP_LOCKING_THREAD)) {
tokenizer.nextToken();
if (tokenizer.nextToken() != StreamTokenizer.TT_WORD)
throw new TestBug("Invalid command format: " + command);
String threadName = tokenizer.sval;
stopLockingThread(threadName);
return true;
} else if (command.startsWith(COMMAND_UPDATE_MONITOR_INFO)) {
tokenizer.nextToken();
if (tokenizer.nextToken() != StreamTokenizer.TT_WORD)
throw new TestBug("Invalid command format: " + command);
String threadName = tokenizer.sval;
updateMonitorInfo(threadName);
return true;
} else if (command.startsWith(COMMAND_EXIT_SINGLE_FRAME)) {
tokenizer.nextToken();
if (tokenizer.nextToken() != StreamTokenizer.TT_WORD)
throw new TestBug("Invalid command format: " + command);
String threadName = tokenizer.sval;
exitSingleFrame(threadName);
return true;
}
} catch (IOException e) {
throw new TestBug("Invalid command format: " + command);
}
return false;
}
public void acquireRelinquishMonitor(String threadName) {
LockingThread thread = getThread(threadName);
thread.acquireRelinquishedMonitor();
thread.waitState();
updateMonitorInfo(threadName);
}
public void relinquishMonitor(String threadName, int monitorIndex) {
LockingThread thread = getThread(threadName);
thread.relinquishMonitor(monitorIndex);
thread.waitState();
updateMonitorInfo(threadName);
}
private void updateMonitorInfo(String threadName) {
LockingThread thread = getThread(threadName);
monitorsInfo = thread.getMonitorsInfo(returnJNIMonitors);
}
private Map<String, LockingThread> threads = new TreeMap<String, LockingThread>();
private LockingThread getThread(String threadName) {
LockingThread thread = threads.get(threadName);
if (thread == null)
throw new TestBug("Locking thread with name: " + threadName + " was not created");
return thread;
}
private void stopLockingThread(String threadName) {
LockingThread thread = getThread(threadName);
thread.stopLockingThread();
thread.waitState();
updateMonitorInfo(threadName);
}
private void exitSingleFrame(String threadName) {
LockingThread thread = getThread(threadName);
thread.exitSingleFrame();
thread.waitState();
updateMonitorInfo(threadName);
}
private void createLockingThread(String threadName, List<String> stackFramesDescription) {
if (threads.get(threadName) != null)
throw new TestBug("Locking thread with name: " + threadName + " already exists");
LockingThread thread = new LockingThread(log, stackFramesDescription);
thread.setName(threadName);
thread.start();
thread.waitState();
threads.put(threadName, thread);
updateMonitorInfo(threadName);
}
public static void main(String args[]) {
OwnedMonitorsDebuggee debuggee = new OwnedMonitorsDebuggee();
debuggee.doTest(args);
}
}
|