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 247 248 249 250
|
/*
* 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.TestBug;
/*
* Subclasses of this class generate events and if needed
* save debug information about generated events
*/
abstract class EventActionsExecutor {
// should this event generator save information about generated events
public boolean saveEventData;
// information about generated events(this data available for debugger)
public List<DebuggeeEventData.DebugEventData> debugEventDataList = new ArrayList<DebuggeeEventData.DebugEventData>();
public abstract void doEventAction();
protected void addEventData(DebuggeeEventData.DebugEventData eventData) {
if (saveEventData)
debugEventDataList.add(eventData);
}
public void clearDebugData() {
debugEventDataList.clear();
}
}
/*
* Class handles commands for running given number of threads which generate
* given events. Objects which generate events save information about generated
* events and this data available for debugger
*
* Class was written to test monitor evens(MonitorWaitEvent, MonitorWaitedEvent,
* MonitorContendedEnterEvent, MonitorContendedEnteredEvent), possible it can be
* used in tests for other events
*/
abstract public class JDIEventsDebuggee extends AbstractJDIDebuggee {
protected String[] doInit(String[] args) {
Thread.currentThread().setName(MAIN_THREAD_NAME);
return super.doInit(args);
}
public static final String MAIN_THREAD_NAME = "JDIEventsDebuggee_MainThread";
// command:events_count:event types
public static final String COMMAND_CREATE_ACTIONS_EXECUTORS = "createActionsExecutors";
// command
public static final String COMMAND_START_EXECUTION = "startExecution";
// command
public static final String COMMAND_WAIT_EXECUTION_COMPLETION = "waitExecutionCompletion";
// command
public static final String COMMAND_STOP_EXECUTION = "stopExecution";
protected List<EventActionsThread> eventActionsExecutorsPool = new ArrayList<EventActionsThread>();
// initialize with empty array
public static DebuggeeEventData.DebugEventData generatedEvents[] = new DebuggeeEventData.DebugEventData[0];
// debuggee's main thread also can generate events and information about
// this events should be saved (like for event generators)
protected boolean saveEventData;
public boolean parseCommand(String command) {
if (super.parseCommand(command))
return true;
StreamTokenizer tokenizer = new StreamTokenizer(new StringReader(
command));
tokenizer.whitespaceChars(':', ':');
tokenizer.wordChars('_', '_');
tokenizer.wordChars(' ', ' ');
try {
if (command.startsWith(COMMAND_CREATE_ACTIONS_EXECUTORS)) {
tokenizer.nextToken();
if (tokenizer.nextToken() != StreamTokenizer.TT_NUMBER)
throw new TestBug("Invalid command format: " + command);
int eventsCount = (int) tokenizer.nval;
if (tokenizer.nextToken() != StreamTokenizer.TT_WORD)
throw new TestBug("Invalid command format: " + command);
// pass to the createActionsExecutors() string describing types
// of tested events
createActionsExecutors(tokenizer.sval, eventsCount);
return true;
} else if (command.equals(COMMAND_START_EXECUTION)) {
startExecution();
return true;
} else if (command.equals(COMMAND_WAIT_EXECUTION_COMPLETION)) {
if (executionControllingThread == null)
throw new TestBug("executionControllingThread wasn't started");
try {
executionControllingThread.join();
executionControllingThread = null;
} catch (InterruptedException e) {
unexpectedException(e);
}
return true;
} else if (command.equals(COMMAND_STOP_EXECUTION)) {
if (executionControllingThread == null)
throw new TestBug("executionControllingThread wasn't started");
for (EventActionsThread thread : eventActionsExecutorsPool) {
thread.stopExecution();
}
return true;
}
} catch (IOException e) {
throw new TestBug("Invalid command format: " + command);
}
return false;
}
// debugee waits completion of test threads in separate thread to free thread listening commands
protected Thread executionControllingThread;
protected void startExecution() {
if (eventActionsExecutorsPool.size() == 0) {
throw new TestBug("ActionsExecutors were not created");
}
for (EventActionsThread thread : eventActionsExecutorsPool) {
thread.startExecution();
}
// debugee waits completion of test threads in separate thread to free thread listening commands
executionControllingThread = new Thread(
new Runnable() {
public void run() {
for (EventActionsThread thread : eventActionsExecutorsPool) {
try {
thread.join();
} catch (InterruptedException e) {
unexpectedException(e);
}
}
completeExecution();
}
});
executionControllingThread.start();
}
protected void completeExecution() {
// save information about all generated events in array 'generatedEvents'
List<DebuggeeEventData.DebugEventData> generatedEventsList = new ArrayList<DebuggeeEventData.DebugEventData>();
for (EventActionsThread thread : eventActionsExecutorsPool)
generatedEventsList.addAll(thread.executor.debugEventDataList);
generatedEvents = generatedEventsList.toArray(new DebuggeeEventData.DebugEventData[]{});
// stop at breakpoint when all events was generated
breakpointMethod();
// clear data about generated events to allow execute command
// several times
clearResults();
}
// clear data about generated events to allow execute test several times
protected void clearResults() {
for (EventActionsThread thread : eventActionsExecutorsPool)
thread.executor.clearDebugData();
eventActionsExecutorsPool.clear();
generatedEvents = new DebuggeeEventData.DebugEventData[0];
}
// create threads generating events
abstract protected void createActionsExecutors(String description,
int eventsCount);
/*
* Thread generating events, call in loop
* EventActionsExecutor.doEventAction()
*/
static class EventActionsThread extends Thread {
// how many times call executor.doMonitorAction()
private int actionsNumber;
// object generating events
public EventActionsExecutor executor;
public EventActionsThread(EventActionsExecutor executor,
int actionsNumber) {
this.actionsNumber = actionsNumber;
this.executor = executor;
}
private volatile boolean startExecution;
private volatile boolean stopExecution;
public void run() {
while (!startExecution)
yield();
for (int i = 0; (i < actionsNumber) && !stopExecution; i++)
executor.doEventAction();
}
public void startExecution() {
startExecution = true;
}
public void stopExecution() {
stopExecution = true;
}
}
}
|