Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3885dc9fff65f6ecb3c5141940c9aae156385d7c (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
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
/*
 *(c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 * 
 */

package org.eclipse.cdt.debug.internal.core;

import java.util.HashMap;
import java.util.Set;

import org.eclipse.cdt.debug.core.CDebugCorePlugin;
import org.eclipse.cdt.debug.core.CDebugModel;
import org.eclipse.cdt.debug.core.CDebugUtils;
import org.eclipse.cdt.debug.core.ICBreakpointManager;
import org.eclipse.cdt.debug.core.cdi.CDIException;
import org.eclipse.cdt.debug.core.cdi.ICDIBreakpointManager;
import org.eclipse.cdt.debug.core.cdi.ICDICondition;
import org.eclipse.cdt.debug.core.cdi.ICDILocation;
import org.eclipse.cdt.debug.core.cdi.event.ICDIChangedEvent;
import org.eclipse.cdt.debug.core.cdi.event.ICDICreatedEvent;
import org.eclipse.cdt.debug.core.cdi.event.ICDIDestroyedEvent;
import org.eclipse.cdt.debug.core.cdi.event.ICDIEvent;
import org.eclipse.cdt.debug.core.cdi.event.ICDIEventListener;
import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDILocationBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIObject;
import org.eclipse.cdt.debug.core.cdi.model.ICDIWatchpoint;
import org.eclipse.cdt.debug.core.model.ICAddressBreakpoint;
import org.eclipse.cdt.debug.core.model.ICBreakpoint;
import org.eclipse.cdt.debug.core.model.ICDebugTarget;
import org.eclipse.cdt.debug.core.model.ICFunctionBreakpoint;
import org.eclipse.cdt.debug.core.model.ICLineBreakpoint;
import org.eclipse.cdt.debug.core.model.ICWatchpoint;
import org.eclipse.cdt.debug.core.sourcelookup.ICSourceLocator;
import org.eclipse.cdt.debug.internal.core.breakpoints.CBreakpoint;
import org.eclipse.cdt.debug.internal.core.model.CDebugTarget;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IMarkerDelta;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.model.IBreakpoint;
import org.eclipse.debug.core.model.IDebugTarget;
import org.eclipse.debug.core.model.ISourceLocator;

/**
 * Enter type comment.
 * 
 * @since Nov 3, 2003
 */
public class CBreakpointManager implements ICBreakpointManager, ICDIEventListener, IAdaptable
{
	public class BreakpointMap
	{
		/**
		 * Maps CBreakpoints to CDI breakpoints.
		 */
		private HashMap fCBreakpoints;

		/**
		 * Maps CDI breakpoints to CBreakpoints.
		 */
		private HashMap fCDIBreakpoints;

		protected BreakpointMap()
		{
			fCBreakpoints = new HashMap( 10 );
			fCDIBreakpoints = new HashMap( 10 );
		}

		protected synchronized void put( ICBreakpoint breakpoint, ICDIBreakpoint cdiBreakpoint )
		{
			fCBreakpoints.put( breakpoint, cdiBreakpoint );
			fCDIBreakpoints.put( cdiBreakpoint, breakpoint );
		}

		protected synchronized ICDIBreakpoint getCDIBreakpoint( ICBreakpoint breakpoint )
		{
			return (ICDIBreakpoint)fCBreakpoints.get( breakpoint );
		}

		protected synchronized ICBreakpoint getCBreakpoint( ICDIBreakpoint cdiBreakpoint )
		{
			return (ICBreakpoint)fCDIBreakpoints.get( cdiBreakpoint );
		}

		protected void removeCBreakpoint( ICBreakpoint breakpoint )
		{
			if ( breakpoint != null )
			{
				ICDIBreakpoint cdiBreakpoint = (ICDIBreakpoint)fCBreakpoints.remove( breakpoint );
				if ( cdiBreakpoint != null )
					fCDIBreakpoints.remove( cdiBreakpoint ); 
			}
		}

		protected void removeCDIBreakpoint( ICBreakpoint breakpoin, ICDIBreakpoint cdiBreakpoint )
		{
			if ( cdiBreakpoint != null )
			{
				ICBreakpoint breakpoint = (ICBreakpoint)fCDIBreakpoints.remove( cdiBreakpoint );
				if ( breakpoint != null )
					fCBreakpoints.remove( breakpoint ); 
			}
		}

		protected ICBreakpoint[] getAllCBreakpoints()
		{
			Set set = fCBreakpoints.keySet();
			return (ICBreakpoint[])set.toArray( new ICBreakpoint[set.size()]);
		}

		protected ICDIBreakpoint[] getAllCDIBreakpoints()
		{
			Set set = fCDIBreakpoints.keySet();
			return (ICDIBreakpoint[])set.toArray( new ICDIBreakpoint[set.size()]);
		}

		protected void dispose()
		{
			fCBreakpoints.clear();
			fCDIBreakpoints.clear();
		}
	}
	
	private CDebugTarget fDebugTarget;
	
	private BreakpointMap fMap;

	public CBreakpointManager( CDebugTarget target )
	{
		super();
		setDebugTarget( target );
		fMap = new BreakpointMap();
		getDebugTarget().getCDISession().getEventManager().addEventListener( this );
	}

	/* (non-Javadoc)
	 * @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
	 */
	public Object getAdapter( Class adapter )
	{
		if ( CBreakpointManager.class.equals( adapter ) )
			return this;
		if ( CDebugTarget.class.equals( adapter ) )
			return getDebugTarget();
		if ( ICDebugTarget.class.equals( adapter ) )
			return getDebugTarget();
		if ( IDebugTarget.class.equals( adapter ) )
			return getDebugTarget();
		return null;
	}

	public CDebugTarget getDebugTarget()
	{
		return fDebugTarget;
	}

	private void setDebugTarget( CDebugTarget target )
	{
		fDebugTarget = target;
	}

	protected ICDIBreakpointManager getCDIBreakpointManager()
	{
		return getDebugTarget().getCDISession().getBreakpointManager();
	}

	protected ICSourceLocator getCSourceLocator()
	{
		ISourceLocator locator = getDebugTarget().getLaunch().getSourceLocator();
		if ( locator instanceof IAdaptable ) 
			return (ICSourceLocator)((IAdaptable)locator).getAdapter( ICSourceLocator.class );
		return null;
	}

	public void dispose()
	{
		getDebugTarget().getCDISession().getEventManager().removeEventListener( this );
		removeAllBreakpoints();
		getBreakpointMap().dispose();
	}

	/* (non-Javadoc)
	 * @see org.eclipse.cdt.debug.core.cdi.event.ICDIEventListener#handleDebugEvent(org.eclipse.cdt.debug.core.cdi.event.ICDIEvent)
	 */
	public void handleDebugEvent( ICDIEvent event )
	{
		ICDIObject source = event.getSource();
		if ( source != null && source.getTarget().equals( getDebugTarget().getCDITarget() ) )
		{
			if ( event instanceof ICDICreatedEvent )
			{
				if ( source instanceof ICDIBreakpoint )
					handleBreakpointCreatedEvent( (ICDIBreakpoint)source );
			}
			else if ( event instanceof ICDIDestroyedEvent )
			{
				if ( source instanceof ICDIBreakpoint )
					handleBreakpointDestroyedEvent( (ICDIBreakpoint)source );
			}
			else if ( event instanceof ICDIChangedEvent )
			{
				if ( source instanceof ICDIBreakpoint )
					handleBreakpointChangedEvent( (ICDIBreakpoint)source );
			}
		}
	}

	public boolean isTargetBreakpoint( ICBreakpoint breakpoint )
	{
		IResource resource = breakpoint.getMarker().getResource();
		if ( breakpoint instanceof ICAddressBreakpoint )
			return supportsAddressBreakpoint( (ICAddressBreakpoint)breakpoint );
		if ( breakpoint instanceof ICLineBreakpoint )
		{ 
			ICSourceLocator sl = getSourceLocator();
			if ( sl != null )
				return sl.contains( resource );
		}
		else
		{
			IProject project = resource.getProject();
			if ( project != null && project.exists() )
			{
				ICSourceLocator sl = getSourceLocator();
				if ( sl != null )
					return sl.contains( project );
				else
				{
					if ( project.equals( getExecFile().getProject() ) )
						return true;
					return CDebugUtils.isReferencedProject( getExecFile().getProject(), project );
				}
			}
		}
		return true;
	}

	public boolean isCDIRegistered( ICBreakpoint breakpoint )
	{
		return ( getBreakpointMap().getCDIBreakpoint( breakpoint ) != null );
	}

	public boolean supportsAddressBreakpoint( ICAddressBreakpoint breakpoint )
	{
		return ( getExecFile() != null && 
				 getExecFile().getLocation().toOSString().equals( breakpoint.getMarker().getResource().getLocation().toOSString() ) );		
	}

	public IFile getCDIBreakpointFile( ICDIBreakpoint cdiBreakpoint )
	{
		IBreakpoint breakpoint = getBreakpointMap().getCBreakpoint( cdiBreakpoint );
		if ( breakpoint instanceof ICLineBreakpoint && !(breakpoint instanceof ICAddressBreakpoint) )
		{
			IResource resource = ((ICLineBreakpoint)breakpoint).getMarker().getResource();
			if ( resource instanceof IFile )
				return (IFile)resource;
		}
		return null;
	}

	public ICBreakpoint getBreakpoint( ICDIBreakpoint cdiBreakpoint )
	{
		return getBreakpointMap().getCBreakpoint( cdiBreakpoint );
	}

	public long getBreakpointAddress( ICBreakpoint breakpoint )
	{
		if ( breakpoint != null )
		{
			ICDIBreakpoint cdiBreakpoint = getBreakpointMap().getCDIBreakpoint( breakpoint );
			if ( cdiBreakpoint instanceof ICDILocationBreakpoint )
			{
				try
				{
					ICDILocation location = ((ICDILocationBreakpoint)cdiBreakpoint).getLocation();
					if ( location != null )
						return location.getAddress();
				}
				catch( CDIException e )
				{
				}
			}
		}
		return 0;
	}

	public void setBreakpoint( ICBreakpoint breakpoint ) throws DebugException
	{
		try
		{
			ICDIBreakpoint cdiBreakpoint = getBreakpointMap().getCDIBreakpoint( breakpoint );
			if ( cdiBreakpoint == null )
			{
				if ( breakpoint instanceof ICFunctionBreakpoint )
					cdiBreakpoint = setFunctionBreakpoint( (ICFunctionBreakpoint)breakpoint );
				else if ( breakpoint instanceof ICAddressBreakpoint )
					cdiBreakpoint = setAddressBreakpoint( (ICAddressBreakpoint)breakpoint );
				else if ( breakpoint instanceof ICLineBreakpoint )
					cdiBreakpoint = setLineBreakpoint( (ICLineBreakpoint)breakpoint );
				else if ( breakpoint instanceof ICWatchpoint )
					cdiBreakpoint = setWatchpoint( (ICWatchpoint)breakpoint );
			}
			if ( cdiBreakpoint == null )
				return;
			if ( !breakpoint.isEnabled() )
				cdiBreakpoint.setEnabled( false );
			setBreakpointCondition( breakpoint );
		}
		catch( CoreException e )
		{
			requestFailed( "Set breakpoint failed. Reason: " + e.getMessage(), e );
		}
		catch( NumberFormatException e )
		{
			requestFailed( "Set breakpoint failed. Reason: " + e.getMessage(), e );
		}
		catch( CDIException e )
		{
			targetRequestFailed( "Set breakpoint failed. Reason: " + e.getMessage(), e );
		}
	}

	public void removeBreakpoint( ICBreakpoint breakpoint ) throws DebugException
	{
		ICDIBreakpoint cdiBreakpoint = getBreakpointMap().getCDIBreakpoint( breakpoint );
		if ( cdiBreakpoint != null )
		{
			ICDIBreakpointManager bm = getCDIBreakpointManager();
			try
			{
				bm.deleteBreakpoints( new ICDIBreakpoint[] { cdiBreakpoint } );
			}
			catch( CDIException e )
			{
				targetRequestFailed( "Delete breakpoint failed. Reason: " + e.getMessage(), e );
			}
		}
	}

	public void changeBreakpointProperties( ICBreakpoint breakpoint, IMarkerDelta delta ) throws DebugException
	{
		ICDIBreakpoint cdiBreakpoint = getBreakpointMap().getCDIBreakpoint( breakpoint );
		if ( cdiBreakpoint == null )
			return;
		ICDIBreakpointManager bm = getCDIBreakpointManager();
		try
		{
			boolean enabled = breakpoint.isEnabled();
			boolean oldEnabled = delta.getAttribute( IBreakpoint.ENABLED, true );
			int ignoreCount = breakpoint.getIgnoreCount();
			int oldIgnoreCount = delta.getAttribute( ICBreakpoint.IGNORE_COUNT, 0 );
			String condition = breakpoint.getCondition();
			String oldCondition = delta.getAttribute( ICBreakpoint.CONDITION, "" );
			if ( enabled != oldEnabled )
			{
				cdiBreakpoint.setEnabled( enabled );
			}
			if ( ignoreCount != oldIgnoreCount || !condition.equals( oldCondition ) )
			{
				ICDICondition cdiCondition = bm.createCondition( ignoreCount, condition );
				cdiBreakpoint.setCondition( cdiCondition );
			}
		}
		catch( CoreException e )
		{
			requestFailed( "Change breakpoint properties failed. Reason: " + e.getMessage(), e );
		}
		catch( CDIException e )
		{
			targetRequestFailed( "Change breakpoint properties failed. Reason: " + e.getMessage(), e );
		}
	}

	private void handleBreakpointCreatedEvent( final ICDIBreakpoint cdiBreakpoint )
	{
		Runnable runnable = new Runnable()
								{
									public void run()
									{
										if ( cdiBreakpoint instanceof ICDILocationBreakpoint )
											doHandleLocationBreakpointCreatedEvent( (ICDILocationBreakpoint)cdiBreakpoint );
										else if ( cdiBreakpoint instanceof ICDIWatchpoint )
											doHandleWatchpointCreatedEvent( (ICDIWatchpoint)cdiBreakpoint );
									}
								};
		CDebugCorePlugin.getDefault().asyncExec( runnable );
	}

	protected void doHandleLocationBreakpointCreatedEvent( ICDILocationBreakpoint cdiBreakpoint )
	{
		if ( cdiBreakpoint.isTemporary() )
			return;
		ICBreakpoint breakpoint = getBreakpointMap().getCBreakpoint( cdiBreakpoint );
		if ( breakpoint == null )
		{
			try
			{
				if ( cdiBreakpoint.getLocation().getFile() != null && cdiBreakpoint.getLocation().getFile().length() > 0 )
				{
					ICSourceLocator locator = getSourceLocator();
					if ( locator != null )
					{
						Object sourceElement = locator.findSourceElement( cdiBreakpoint.getLocation().getFile() );
						if ( sourceElement != null && sourceElement instanceof IFile )
						{
							breakpoint = createLineBreakpoint( (IFile)sourceElement, cdiBreakpoint );
						}
						else if ( cdiBreakpoint.getLocation().getAddress() > 0 )
						{
							breakpoint = createAddressBreakpoint( cdiBreakpoint );
						}
					}
				}
				else if ( cdiBreakpoint.getLocation().getAddress() > 0 )
				{
					breakpoint = createAddressBreakpoint( cdiBreakpoint );
				}
			}
			catch( CDIException e )
			{
			}
			catch( CoreException e )
			{
			}
		}
		if ( breakpoint != null )
		{
			try
			{
				((CBreakpoint)breakpoint).incrementInstallCount();
			}
			catch( CoreException e )
			{
				CDebugCorePlugin.log( e.getStatus() );
			}
		}
	}

	protected void doHandleWatchpointCreatedEvent( ICDIWatchpoint cdiWatchpoint )
	{
		ICBreakpoint breakpoint = getBreakpointMap().getCBreakpoint( cdiWatchpoint );
		if ( breakpoint == null )
		{
			try
			{
				breakpoint = CDebugModel.createWatchpoint( getExecFile().getProject(),
														   cdiWatchpoint.isWriteType(),
														   cdiWatchpoint.isReadType(),
														   cdiWatchpoint.getWatchExpression(),
														   cdiWatchpoint.isEnabled(),
														   cdiWatchpoint.getCondition().getIgnoreCount(),
														   cdiWatchpoint.getCondition().getExpression(),
														   false );
				getBreakpointMap().put( breakpoint, cdiWatchpoint );
				((CBreakpoint)breakpoint).register( true );
			}
			catch( CDIException e )
			{
			}
			catch( CoreException e )
			{
			}
		}
		if ( breakpoint != null )
		{
			try
			{
				((CBreakpoint)breakpoint).incrementInstallCount();
			}
			catch( CoreException e )
			{
				CDebugCorePlugin.log( e.getStatus() );
			}
		}
	}

	private void handleBreakpointDestroyedEvent( ICDIBreakpoint cdiBreakpoint )
	{
		ICBreakpoint breakpoint = getBreakpointMap().getCBreakpoint( cdiBreakpoint );
		if ( breakpoint != null )
		{
			getBreakpointMap().removeCDIBreakpoint( breakpoint, cdiBreakpoint );
			try
			{
				((CBreakpoint)breakpoint).decrementInstallCount();
			}
			catch( CoreException e )
			{
				CDebugCorePlugin.log( e.getStatus() );
			}
		}
	}

	private void handleBreakpointChangedEvent( final ICDIBreakpoint cdiBreakpoint )
	{
		Runnable runnable = new Runnable()
								{
									public void run()
									{
										doHandleBreakpointChangedEvent( cdiBreakpoint );
									}
 
								};
		CDebugCorePlugin.getDefault().asyncExec( runnable );
	}

	protected void doHandleBreakpointChangedEvent( ICDIBreakpoint cdiBreakpoint )
	{
		ICBreakpoint breakpoint = getBreakpointMap().getCBreakpoint( cdiBreakpoint );
		if ( breakpoint != null )
		{
			try
			{
				breakpoint.setEnabled( cdiBreakpoint.isEnabled() );
				breakpoint.setIgnoreCount( cdiBreakpoint.getCondition().getIgnoreCount() );
				breakpoint.setCondition( cdiBreakpoint.getCondition().getExpression() );
			}
			catch( CDIException e )
			{
			}
			catch( CoreException e )
			{
			}
		}
	}

	private void removeAllBreakpoints()
	{
		ICDIBreakpoint[] cdiBreakpoints = getBreakpointMap().getAllCDIBreakpoints();
		ICDIBreakpointManager bm = getCDIBreakpointManager();
		if ( cdiBreakpoints.length > 0 )
		{
			try
			{
				bm.deleteBreakpoints( cdiBreakpoints );
			}
			catch( CDIException e )
			{
				CDebugCorePlugin.log( e.getMessage() );
			}
			ICBreakpoint[] breakpoints = getBreakpointMap().getAllCBreakpoints();
			for ( int i = 0; i < breakpoints.length; ++i )
			{
				try
				{
					((CBreakpoint)breakpoints[i]).decrementInstallCount();
				}
				catch( CoreException e )
				{
					CDebugCorePlugin.log( e.getMessage() );
				}
			}
		}
	}

	private synchronized ICDIBreakpoint setFunctionBreakpoint( ICFunctionBreakpoint breakpoint ) throws CDIException, CoreException
	{
		ICDIBreakpointManager bm = getCDIBreakpointManager();
		String function = breakpoint.getFunction();
		String fileName = ( function != null && function.indexOf( "::" ) == -1  ) ? breakpoint.getFileName() : null;
		ICDILocation location = bm.createLocation( fileName, function, -1 );
		ICDIBreakpoint cdiBreakpoint = bm.setLocationBreakpoint( ICDIBreakpoint.REGULAR, location, null, null, true );
		getBreakpointMap().put( breakpoint, cdiBreakpoint );
		return cdiBreakpoint;
	}

	private synchronized ICDIBreakpoint setAddressBreakpoint( ICAddressBreakpoint breakpoint ) throws CDIException, CoreException, NumberFormatException
	{
		ICDIBreakpointManager bm = getCDIBreakpointManager();
		ICDILocation location = bm.createLocation( Long.parseLong( breakpoint.getAddress() ) );
		ICDIBreakpoint cdiBreakpoint = bm.setLocationBreakpoint( ICDIBreakpoint.REGULAR, location, null, null, true );
		getBreakpointMap().put( breakpoint, cdiBreakpoint );
		return cdiBreakpoint;
	}

	private synchronized ICDIBreakpoint setLineBreakpoint( ICLineBreakpoint breakpoint ) throws CDIException, CoreException
	{
		ICDIBreakpointManager bm = getCDIBreakpointManager();
		ICDILocation location = bm.createLocation( breakpoint.getMarker().getResource().getLocation().lastSegment(), null, breakpoint.getLineNumber() );
		ICDIBreakpoint cdiBreakpoint = bm.setLocationBreakpoint( ICDIBreakpoint.REGULAR, location, null, null, true );
		getBreakpointMap().put( breakpoint, cdiBreakpoint );
		return cdiBreakpoint;
	}

	private synchronized ICDIBreakpoint setWatchpoint( ICWatchpoint watchpoint ) throws CDIException, CoreException
	{
		ICDIBreakpointManager bm = getCDIBreakpointManager();
		int accessType = 0;
		accessType |= ( watchpoint.isWriteType() ) ? ICDIWatchpoint.WRITE : 0;
		accessType |= ( watchpoint.isReadType() ) ? ICDIWatchpoint.READ : 0;
		String expression = watchpoint.getExpression();
		ICDIWatchpoint cdiWatchpoint = bm.setWatchpoint( ICDIBreakpoint.REGULAR, accessType, expression, null );
		getBreakpointMap().put( watchpoint, cdiWatchpoint );
		return cdiWatchpoint;
	}

	private void setBreakpointCondition( ICBreakpoint breakpoint ) throws CoreException, CDIException
	{
		ICDIBreakpoint cdiBreakpoint = getBreakpointMap().getCDIBreakpoint( breakpoint );
		ICDIBreakpointManager bm = getCDIBreakpointManager();
		ICDICondition condition = bm.createCondition( breakpoint.getIgnoreCount(), breakpoint.getCondition() );
		cdiBreakpoint.setCondition( condition );
	}

	private BreakpointMap getBreakpointMap()
	{
		return fMap;
	}

	protected void targetRequestFailed( String message, Throwable e ) throws DebugException
	{
		requestFailed0( message, e, DebugException.TARGET_REQUEST_FAILED );
	}

	protected void requestFailed( String message, Throwable e ) throws DebugException
	{
		requestFailed0( message, e, DebugException.REQUEST_FAILED );
	}

	private void requestFailed0( String message, Throwable e, int code ) throws DebugException
	{
		throw new DebugException( new Status( IStatus.ERROR, 
											  CDebugModel.getPluginIdentifier(),
											  code, 
											  message, 
											  e ) );
	}

	private ICLineBreakpoint createLineBreakpoint( IFile file, ICDILocationBreakpoint cdiBreakpoint ) throws CDIException, CoreException
	{
		ICLineBreakpoint breakpoint = CDebugModel.createLineBreakpoint( file,
																		cdiBreakpoint.getLocation().getLineNumber(),
																		cdiBreakpoint.isEnabled(),
																		cdiBreakpoint.getCondition().getIgnoreCount(),
																		cdiBreakpoint.getCondition().getExpression(),
																		false );
		getBreakpointMap().put( breakpoint, cdiBreakpoint );
		((CBreakpoint)breakpoint).register( true );
		return breakpoint;
	}

	private ICAddressBreakpoint createAddressBreakpoint( ICDILocationBreakpoint cdiBreakpoint ) throws CDIException, CoreException
	{
		ICAddressBreakpoint breakpoint = CDebugModel.createAddressBreakpoint( getExecFile(),
																			  cdiBreakpoint.getLocation().getAddress(),
																			  cdiBreakpoint.isEnabled(),
																			  cdiBreakpoint.getCondition().getIgnoreCount(),
																			  cdiBreakpoint.getCondition().getExpression(),
																			  false );
		getBreakpointMap().put( breakpoint, cdiBreakpoint );
		((CBreakpoint)breakpoint).register( true );
		return breakpoint;
	}

	private ICSourceLocator getSourceLocator()
	{
		ISourceLocator locator = getDebugTarget().getLaunch().getSourceLocator();
		return ( locator instanceof IAdaptable ) ? (ICSourceLocator)((IAdaptable)locator).getAdapter( ICSourceLocator.class ) : null;
	}

	private IFile getExecFile()
	{
		return getDebugTarget().getExecFile();
	}
}

Back to the top