Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a1e2e1169c3816a1412766e6b861ae2f26c738ee (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
/*******************************************************************************
 * Copyright (c) 2004, 2007 QNX Software Systems and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * QNX Software Systems - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.debug.internal.ui;

import java.util.Map;
import org.eclipse.cdt.debug.core.ICBreakpointListener;
import org.eclipse.cdt.debug.core.model.ICBreakpoint;
import org.eclipse.cdt.debug.core.model.ICDebugTarget;
import org.eclipse.cdt.debug.ui.CDebugUIPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.model.IBreakpoint;
import org.eclipse.debug.core.model.IDebugTarget;
import org.eclipse.swt.widgets.Display;

/**
 * Provides UI-related handles for the breakpoint events.
 */
public class CBreakpointUpdater implements ICBreakpointListener {

	private static CBreakpointUpdater fInstance;

	public static CBreakpointUpdater getInstance() {
		if ( fInstance == null ) {
			fInstance = new CBreakpointUpdater();
		}
		return fInstance;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.cdt.debug.core.ICBreakpointListener#installingBreakpoint(org.eclipse.debug.core.model.IDebugTarget,
	 *      org.eclipse.debug.core.model.IBreakpoint)
	 */
	public boolean installingBreakpoint( IDebugTarget target, IBreakpoint breakpoint ) {
		return true;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.cdt.debug.core.ICBreakpointListener#breakpointInstalled(org.eclipse.debug.core.model.IDebugTarget,
	 *      org.eclipse.debug.core.model.IBreakpoint)
	 */
	public void breakpointInstalled( final IDebugTarget target, IBreakpoint breakpoint ) {
		if ( breakpoint instanceof ICBreakpoint && target instanceof ICDebugTarget ) {
			final ICBreakpoint b = (ICBreakpoint)breakpoint;
			asyncExec( new Runnable() {
	
				public void run() {
						try {
							if ( b.incrementInstallCount() == 1 )
								DebugPlugin.getDefault().getBreakpointManager().fireBreakpointChanged( b );
						}
						catch( CoreException e ) {
							CDebugUIPlugin.log( e.getStatus() );
						}
					}
			} );
		}
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.cdt.debug.core.ICBreakpointListener#breakpointChanged(org.eclipse.debug.core.model.IDebugTarget,
	 *      org.eclipse.debug.core.model.IBreakpoint, java.util.Map)
	 */
	public void breakpointChanged( IDebugTarget target, final IBreakpoint breakpoint, final Map attributes ) {
		asyncExec( new Runnable() {

			public void run() {
				try {
					Boolean enabled = (Boolean)attributes.get( IBreakpoint.ENABLED );
					breakpoint.setEnabled( (enabled != null) ? enabled.booleanValue() : false );
					Integer ignoreCount = (Integer)attributes.get( ICBreakpoint.IGNORE_COUNT );
					((ICBreakpoint)breakpoint).setIgnoreCount( (ignoreCount != null) ? ignoreCount.intValue() : 0 );
					String condition = (String)attributes.get( ICBreakpoint.CONDITION );
					((ICBreakpoint)breakpoint).setCondition( (condition != null) ? condition : "" ); //$NON-NLS-1$
				}
				catch( CoreException e ) {
					CDebugUIPlugin.log( e.getStatus() );
				}
			}
		} );
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.cdt.debug.core.ICBreakpointListener#breakpointRemoved(org.eclipse.debug.core.model.IDebugTarget,
	 *      org.eclipse.debug.core.model.IBreakpoint[])
	 */
	public void breakpointsRemoved( IDebugTarget target, final IBreakpoint[] breakpoints ) {
		asyncExec( new Runnable() {

			public void run() {
				for ( int i = 0; i < breakpoints.length; ++i ) {
					try {
						if ( ((ICBreakpoint)breakpoints[i]).decrementInstallCount() == 0 )
							DebugPlugin.getDefault().getBreakpointManager().fireBreakpointChanged( breakpoints[i] );
					}
					catch( CoreException e ) {
						// ensureMarker throws this exception 
						// if breakpoint has already been deleted 
					}
				}
			}
		} );
	}

	public void dispose() {
	}

	private void asyncExec( Runnable r ) {
		Display display = Display.getDefault();
		if ( display != null )
			display.asyncExec( r );
	}
}

Back to the top