Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c845881530de803dd4f3df87f6f8409dc7ec7ffe (plain) (blame)
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
/*
 * Created on 10 mai 2004
 */
package org.atl.eclipse.adt.debug.core;

import java.io.IOException;
import java.net.ConnectException;
import java.net.Socket;
import java.net.UnknownHostException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

import org.atl.eclipse.adt.debug.AtlDebugPlugin;
import org.atl.eclipse.adt.debug.Messages;
import org.atl.eclipse.adt.launching.AtlLauncherTools;
import org.atl.eclipse.engine.AtlNbCharFile;
import org.atl.engine.vm.adwp.ADWP;
import org.atl.engine.vm.adwp.ADWPCommand;
import org.atl.engine.vm.adwp.ADWPDebugger;
import org.atl.engine.vm.adwp.IntegerValue;
import org.atl.engine.vm.adwp.ObjectReference;
import org.atl.engine.vm.adwp.StringValue;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IMarkerDelta;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.Path;
import org.eclipse.debug.core.DebugEvent;
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.model.IBreakpoint;
import org.eclipse.debug.core.model.IDebugElement;
import org.eclipse.debug.core.model.IDebugTarget;
import org.eclipse.debug.core.model.IMemoryBlock;
import org.eclipse.debug.core.model.IProcess;
import org.eclipse.debug.core.model.IThread;


/**
 * A debug target is a debuggable execution context. It's the root of the element
 * hierarchy.
 * 
 * The AtlDebugTarget contains only one thread : the main thread.
 * The thread contains the current stackframe
 * 
 * @author Freddy Allilaire
 */
public class AtlDebugTarget extends AtlDebugElement implements IDebugTarget {

	/**
	 * current state of the debugger
	 */
	private int state;

	/**
	 * constant state possible for the debugger
	 */
	public static final int stateTerminated 	= 0;
	public static final int stateRunning 		= 1;
	public static final int stateSuspended 		= 2;
	public static final int stateDisconnected 	= 3;
	
	/**
	 * constant action possible for the debugger
	 */
	static final int TERMINATE 		= 0;
	static final int SUSPEND 		= 1;
	static final int STEP_RETURN 	= 2;
	static final int STEP_OVER 		= 3;
	static final int STEP_INTO 		= 4;
	static final int SUSPEND_STEP 	= 5;
	static final int RESUME 		= 6;
	static final int CREATE			= 7;
	
	private ADWPDebugger debugger;
	private ILaunch launch;
	
	private boolean disassemblyMode = false;

	private String prevLocation = null;
	/**
	 * Name of the process
	 */
	private String processName = AtlDebugModelConstants.DEBUGTARGETNAME;
	
	private String port = AtlDebugModelConstants.NULL;
	private String host = AtlDebugModelConstants.NULL;
	
	private Socket socket = null;
	
	private String messageFromDebuggee = "";

	/**
	 * The array of threads of the debug target
	 * In ATL, there is only one thread --> the main thread
	 */
	private AtlThread threads[];

	/**
	 * The current AtlStackFrame which contains the current current stackframe
	 * For the moment, only the current stackframe can be accessed
	 */
//	private AtlStackFrame cf;

	private AtlNbCharFile structFile;
	
	public AtlDebugTarget(ILaunch launch) {
		super(null);
 		DebugPlugin.getDefault().getBreakpointManager().addBreakpointListener(this);
//		DebugPlugin.getDefault().addDebugEventListener(this);

		try {
			disassemblyMode = launch.getLaunchConfiguration().getAttribute(AtlLauncherTools.MODEDEBUG, false);
		} catch (CoreException e) {
			e.printStackTrace();
		}
		state = stateDisconnected;
		this.launch = launch;
	}

	public void start() {
		
		System.out.println(Messages.getString("AtlDebugTarget.CONNECTIONDEBUGEE"));
		try {
			do {
				try {
					try {
						port = launch.getLaunchConfiguration().getAttribute(AtlLauncherTools.PORT, AtlDebugModelConstants.PORT);
						host = launch.getLaunchConfiguration().getAttribute(AtlLauncherTools.HOST, AtlDebugModelConstants.HOST);
						if (port.equals(""))
							port = AtlDebugModelConstants.PORT;
						if (host.equals(""))
							host = AtlDebugModelConstants.HOST;
						socket = new Socket(host, Integer.parseInt(port));
					} catch (CoreException e1) {
						e1.printStackTrace();
					}
				}
				catch(ConnectException ce) {
					try {
						Thread.sleep(100);
					} catch(InterruptedException ie) {

					}
				}
			}
			while(socket == null);
			
			debugger = new ADWPDebugger(socket.getInputStream(), socket.getOutputStream());
			System.out.println(Messages.getString("AtlDebugTarget.CONNECTED")); //$NON-NLS-1$
			state = stateSuspended;

			threads = new AtlThread[1];
			threads[0] = new AtlThread(AtlDebugModelConstants.THREADNAME, this);
			
			IBreakpoint bpArray[] = DebugPlugin.getDefault().getBreakpointManager().getBreakpoints(getModelIdentifier());
			for (int i=0; i<bpArray.length; i++)
				breakpointAdded(bpArray[i]);
		}
		catch (UnknownHostException e) {
			e.printStackTrace();
		}
		catch (IOException e) {
			e.printStackTrace();
		}
		
		new Thread() {
			public void run() {
//				final boolean debug = false;
				ADWPCommand msg;
				prevLocation = null;

				generateDebugEvent(AtlDebugTarget.CREATE, AtlDebugTarget.this);
				
				while (true) {
					msg = debugger.readMessage();

					if (msg.getCode() == ADWP.MSG_TERMINATED)
						break;
					
					messageFromDebuggee = ((StringValue) msg.getArgs().get(0)).getValue();
					
					ObjectReference currentFrame = (ObjectReference) msg.getArgs().get(1);
//					String opName = ((StringValue) msg.getArgs().get(2)).getValue();
//					int location = ((IntegerValue) msg.getArgs().get(3)).getValue();
					String sourceLocation = ((StringValue) msg.getArgs().get(4)).getValue();

					if (sourceLocation.equals("<null>") && !disassemblyMode) {
						debugger.sendCommand(ADWP.CMD_STEP, Arrays.asList(new Object[]{}));
					}
					else if(sourceLocation.equals(prevLocation) && !disassemblyMode) {
						debugger.sendCommand(ADWP.CMD_STEP, Arrays.asList(new Object[]{}));
					}
					else {
						ObjectReference stack = (ObjectReference)currentFrame.call("getStack", new ArrayList()); //$NON-NLS-1$
						int n = ((IntegerValue) stack.call("size", new ArrayList())).getValue(); //$NON-NLS-1$
						AtlStackFrame frames[] = new AtlStackFrame[n];
						for(int i = 1 ; i <= n ; i++) {
							// TODO To get current file being debugged
							try {
								String fileName = launch.getLaunchConfiguration().getAttribute(AtlLauncherTools.ATLFILENAME, AtlLauncherTools.NULLPARAMETER);

								IWorkspace wks = ResourcesPlugin.getWorkspace();
								IWorkspaceRoot wksroot = wks.getRoot();

								IFile file = wksroot.getFile(new Path(fileName));
								file.refreshLocal(IResource.DEPTH_ZERO, null);
								
								structFile = new AtlNbCharFile(file.getContents());
							} catch (CoreException e1) {
								e1.printStackTrace();
							}

//							frames[n - i] = cf = new AtlStackFrame(
							frames[n - i] = new AtlStackFrame(
								threads[0],
								(ObjectReference)stack.call("at", Arrays.asList(new Object[]{IntegerValue.valueOf(i)})), //$NON-NLS-1$
								structFile);
						}
						threads[0].setStackFrames(frames);
						setState(AtlDebugTarget.stateSuspended);
						generateDebugEvent(AtlDebugTarget.SUSPEND_STEP, AtlDebugTarget.this);
						
						prevLocation = sourceLocation;
					}
				}
				//TERMINATE
				setState(AtlDebugTarget.stateSuspended);
				try {
					terminate();
				} catch (DebugException e) {
					e.printStackTrace();
				}
			}
		}.start();
	}
	
	
	/**
	 * @see org.eclipse.debug.core.IBreakpointListener#breakpointAdded(org.eclipse.debug.core.model.IBreakpoint)
	 */
	public void breakpointAdded(IBreakpoint breakpoint) {
		AtlBreakpoint ab = (AtlBreakpoint) breakpoint;
		String location = "";
		Boolean enabled = new Boolean(false);
		try {
			location = (String)ab.getMarker().getAttribute(IMarker.LOCATION);
			enabled = (Boolean)ab.getMarker().getAttribute(IBreakpoint.ENABLED);
		}
		catch (CoreException e) {
			e.printStackTrace();
			return;
		}

		if (enabled.booleanValue()) {
			List parameter = new ArrayList();
			parameter.add(StringValue.valueOf(location));
			debugger.sendCommand(ADWP.CMD_SET_BP, parameter);
		}
	}
	
	/**
	 * @see org.eclipse.debug.core.IBreakpointListener#breakpointChanged(org.eclipse.debug.core.model.IBreakpoint, org.eclipse.core.resources.IMarkerDelta)
	 */
	public void breakpointChanged(IBreakpoint breakpoint, IMarkerDelta delta) {
		AtlBreakpoint ab = (AtlBreakpoint) breakpoint;
		String location = "";
		Boolean enabled = new Boolean(false);
		try {
			location = (String)ab.getMarker().getAttribute(IMarker.LOCATION);
			enabled = (Boolean)ab.getMarker().getAttribute(IBreakpoint.ENABLED);
		}
		catch (CoreException e) {
			e.printStackTrace();
			return;
		}

		List parameter = new ArrayList();
		parameter.add(StringValue.valueOf(location));
		
		if (enabled.booleanValue()) {
			debugger.sendCommand(ADWP.CMD_SET_BP, parameter);
		}
		else {
			debugger.sendCommand(ADWP.CMD_UNSET_BP, parameter);
		}
	}
	
	/**
	 * @see org.eclipse.debug.core.IBreakpointListener#breakpointRemoved(org.eclipse.debug.core.model.IBreakpoint, org.eclipse.core.resources.IMarkerDelta)
	 */
	public void breakpointRemoved(IBreakpoint breakpoint, IMarkerDelta delta) {
	
		AtlBreakpoint ab = (AtlBreakpoint) breakpoint;
		String location = "";
		try {
			location = (String)ab.getMarker().getAttribute(IMarker.LOCATION);
		}
		catch (CoreException e) {
			e.printStackTrace();
			return;
		}

		List parameter = new ArrayList();
		parameter.add(location);
		debugger.sendCommand(ADWP.CMD_UNSET_BP, parameter);
	}
	
	/**
	 * Return true if the debugger can be disconnected
	 * @see org.eclipse.debug.core.model.IDisconnect#canDisconnect()
	 */
	public boolean canDisconnect() 
	{
		return !isDisconnected();
	}
	
	/**
	 * Return true if the debugger can be resumed
	 * @see org.eclipse.debug.core.model.ISuspendResume#canResume()
	 */
	public boolean canResume() 
	{
		return (state != stateDisconnected && state != stateRunning);
	}
	
	/**
	 * Return true if the debugger can be suspended
	 * @see org.eclipse.debug.core.model.ISuspendResume#canSuspend()
	 */
	public boolean canSuspend() 
	{
		return false;
	}
	
	/**
	 * Return true if the debugger can be terminated
	 * @see org.eclipse.debug.core.model.ITerminate#canTerminate()
	 */
	public boolean canTerminate() 
	{
		return !isTerminated();
	}
	
	/**
	 * This method disconnect the debugger
	 * @see org.eclipse.debug.core.model.IDisconnect#disconnect()
	 */
	public void disconnect() throws DebugException {
		setState(AtlDebugTarget.stateDisconnected);
	}
		
	/**
	 * Returns the debugTarget
	 * @see org.eclipse.debug.core.model.IDebugElement#getDebugTarget()
	 */
	public IDebugTarget getDebugTarget() 
	{
		return this;
	}
	
	/**
	 * Returns the launch
	 * @see org.eclipse.debug.core.model.IDebugElement#getLaunch()
	 */
	public ILaunch getLaunch() 
	{
		return launch;
	}
	
	/**
	 * Not use in ATL debugger
	 * @see org.eclipse.debug.core.model.IMemoryBlockRetrieval#getMemoryBlock(long, long)
	 */
	public IMemoryBlock getMemoryBlock(long startAddress, long length) throws DebugException 
	{
		return null;
	}
	
	/**
	 * Returns the unique identifier of the plug-in
	 * @see org.eclipse.debug.core.model.IDebugElement#getModelIdentifier()
	 */
	public String getModelIdentifier() 
	{
		return AtlDebugPlugin.getUniqueIdentifier();
	}
	
	/**
	 * Returns the name of the process
	 * @see org.eclipse.debug.core.model.IDebugTarget#getName()
	 */
	public String getName() throws DebugException {
		return processName;
	}
	
	/**
	 * Not use in ATL debugger
	 * @see org.eclipse.debug.core.model.IDebugTarget#getProcess()
	 */
	public IProcess getProcess() {
		return null;
	}
	
	/**
	 * This method returns the array of threads.
	 * In our context, this method returns an array with only the main thread
	 * @see org.eclipse.debug.core.model.IDebugTarget#getThreads()
	 */
	public IThread[] getThreads() throws DebugException	{
		return threads;
	}
	
	/**
	 * This method allows to know if there is a thread in the debugTarget
	 * In ATL, there is always one and only one thread : the main thread
	 * @see org.eclipse.debug.core.model.IDebugTarget#hasThreads()
	 */
	public boolean hasThreads() throws DebugException {
		return (getThreads() != null && getThreads().length > 0) ;
	}
	
	/**
	 * This method allows to know if the debugger is in a state "Disconnected"
	 * @see org.eclipse.debug.core.model.IDisconnect#isDisconnected()
	 */
	public boolean isDisconnected() {
		return (state == stateDisconnected);
	}
	
	/**
	 * This method allows to know if the debugger is in a state "Suspended"
	 * @see org.eclipse.debug.core.model.ISuspendResume#isSuspended()
	 */
	public boolean isSuspended() {		
		return (state == stateSuspended);
	}
	
	/**
	 * This method allows to know if the debugger is in a state "Terminated"
	 * @see org.eclipse.debug.core.model.ITerminate#isTerminated()
	 */
	public boolean isTerminated() {
		return (state == stateTerminated);
	}
	
	/**
	 * This method resume the debugger
	 * @see org.eclipse.debug.core.model.ISuspendResume#resume()
	 */
	public void resume() throws DebugException {
		if (!isSuspended())
			return;
		
		prevLocation = null;
		setState(AtlDebugTarget.stateRunning);
		generateDebugEvent(RESUME, this);
		debugger.sendCommand(ADWP.CMD_CONTINUE, Arrays.asList(new Object[]{}));
	}
	
	/**
	 * @see org.eclipse.debug.core.model.IDebugTarget#supportsBreakpoint(org.eclipse.debug.core.model.IBreakpoint)
	 */
	public boolean supportsBreakpoint(IBreakpoint breakpoint) {
		return (breakpoint instanceof AtlBreakpoint);
	}
	
	/**
	 * Not use in our context
	 *  @see org.eclipse.debug.core.model.IMemoryBlockRetrieval#supportsStorageRetrieval()
	 */
	public boolean supportsStorageRetrieval() {
		return false;
	}
	
	/**
	 * This method suspends the debugger
	 * @see org.eclipse.debug.core.model.ISuspendResume#suspend()
	 */
	public void suspend() throws DebugException	{
		if (isSuspended())
			return;

		setState(AtlDebugTarget.stateSuspended);
		generateDebugEvent(SUSPEND, this);
	}
	
	/**
	 * This method terminates the action of the debugger
	 * @see org.eclipse.debug.core.model.ITerminate#terminate()
	 */
	public void terminate() throws DebugException {
		if (!isSuspended())
			return;
		
		setState(AtlDebugTarget.stateTerminated);
		debugger.sendCommand(ADWP.CMD_FINISH, Arrays.asList(new Object[]{}));
		generateDebugEvent(TERMINATE, this);
	}
	
	/**
	 * @return Returns the debugger.
	 */
	public ADWPDebugger getDebugger() {
		return debugger;
	}

	/**
	 * @return Returns the state.
	 */
	public int getState() {
		return state;
	}

	/**
	 * state corresponding to the state of the debugger (running, disconnected ...)
	 * This method allows to update state
	 * @param state The state to set.
	 */
	public void setState(int state) {
		this.state = state;
	}
	
	/**
	 * This method generate a debug event corresponding to the command in parameter
	 * This allows for example to prevent DebugUI that there is an action execute.
	 * In this case, DebugUI update the display 
	 * @param command
	 * @param contextObject
	 */
	void generateDebugEvent(int command, IDebugElement contextObject) {
		DebugEvent event = null;
		try {
			switch (command) {
				case CREATE :
				event = new DebugEvent(getDebugTarget().getThreads()[0],
						DebugEvent.CREATE);
				break;
				case STEP_INTO :
					event = new DebugEvent(getDebugTarget().getThreads()[0],
							DebugEvent.RESUME, DebugEvent.STEP_INTO);
					break;
				case STEP_OVER :
					event = new DebugEvent(getDebugTarget().getThreads()[0],
							DebugEvent.RESUME, DebugEvent.STEP_OVER);
					break;
				case STEP_RETURN :
					event = new DebugEvent(getDebugTarget().getThreads()[0],
							DebugEvent.RESUME, DebugEvent.STEP_RETURN);
					break;
				case RESUME :
					event = new DebugEvent(getDebugTarget().getThreads()[0],
							DebugEvent.RESUME);
					break;
				case SUSPEND :
					event = new DebugEvent(getDebugTarget().getThreads()[0],
							DebugEvent.SUSPEND, DebugEvent.CLIENT_REQUEST);
					break;
				case TERMINATE :
					event = new DebugEvent(getDebugTarget(),
							DebugEvent.TERMINATE);
					break;
				case SUSPEND_STEP :	// The VM signals it has stopped
					event = new DebugEvent(getDebugTarget().getThreads()[0],
							DebugEvent.SUSPEND, DebugEvent.BREAKPOINT);
					break;
				default : return;
			}
			DebugEvent debugEvents[] = new DebugEvent[1];
			debugEvents[0] = event;
			DebugPlugin.getDefault().fireDebugEventSet(debugEvents);
		} catch (DebugException e) {
			e.printStackTrace();
		}
	}

	/**
	 * This method allows to receive DebugEvent sent
	 * @see org.eclipse.debug.core.IDebugEventSetListener#handleDebugEvents(org.eclipse.debug.core.DebugEvent[])
	 */
	public void handleDebugEvents(DebugEvent[] events) {
		for (int i = 0; i < events.length; i++)
			if (events[i].getDetail() == DebugEvent.SUSPEND)
				setState(AtlDebugTarget.stateSuspended);
	}

	public boolean isDisassemblyMode() {
		return disassemblyMode;
	}
	
	/**
	 * @param disassemblyMode The disassemblyMode to set.
	 */
	public void setDisassemblyMode(boolean disassemblyMode) {
		this.disassemblyMode = disassemblyMode;
	}
	
	/**
	 * @param prevLocation The prevLocation to set.
	 */
	public void setPrevLocation(String prevLocation) {
		this.prevLocation = prevLocation;
	}

	/**
	 * @return Returns the host.
	 */
	public String getHost() {
		return host;
	}

	/**
	 * @return Returns the port.
	 */
	public String getPort() {
		return port;
	}
	/**
	 * @return Returns the messageFromDebuggee.
	 */
	public String getMessageFromDebuggee() {
		return messageFromDebuggee;
	}

}

Back to the top