Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: bb0c10dfd0670472a754da454479f8c0ab6bad10 (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
/*****************************************************************
 * Copyright (c) 2011, 2015 Texas Instruments and others
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Patrick Chuong (Texas Instruments) - 
 *     	Update CDT ToggleBreakpointTargetFactory enablement (340177 )
 *****************************************************************/
package org.eclipse.cdt.dsf.debug.internal.ui.disassembly;

import org.eclipse.cdt.debug.core.CDIDebugModel;
import org.eclipse.cdt.debug.core.CDebugUtils;
import org.eclipse.cdt.debug.core.model.ICBreakpoint;
import org.eclipse.cdt.dsf.debug.internal.ui.disassembly.provisional.IDisassemblyPart;
import org.eclipse.core.expressions.PropertyTester;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.debug.core.model.IDebugElement;
import org.eclipse.debug.core.model.IDebugModelProvider;
import org.eclipse.debug.ui.DebugUITools;

/**
 * Disassembly toggle breakpoint factory enablement tester.
 * 
 * @since 2.2
 */
public class DisassemblyToggleBreakpointTester extends PropertyTester {

	/*
	 * (non-Javadoc)
	 * @see org.eclipse.core.expressions.IPropertyTester#test(java.lang.Object, java.lang.String, java.lang.Object[], java.lang.Object)
	 */
	@Override
	public boolean test(Object receiver, String property, Object[] args, Object expectedValue) {
		if ("isDisassemblyViewSupportsCBreakpoint".equals(property) && (receiver instanceof IDisassemblyPart)) { //$NON-NLS-1$
			IDisassemblyPart view = ((IDisassemblyPart) receiver);
			if (!CDebugUtils.isCustomToggleBreakpointFactory())
				return true;			
			
			IAdaptable element = DebugUITools.getPartDebugContext(view.getSite());			
	        if (element != null) {
	            IDebugModelProvider modelProvider = element.getAdapter(IDebugModelProvider.class);
	            if (modelProvider != null) {
	                String[] models = modelProvider.getModelIdentifiers();
	                for (String model : models) {
	                    if (CDIDebugModel.getPluginIdentifier().equals(model) ||
	                        ICBreakpoint.C_BREAKPOINTS_DEBUG_MODEL_ID.equals(model)) {
	                        return true;
	                    }
	                }
	            } else if (element instanceof IDebugElement) {
	                if (CDIDebugModel.getPluginIdentifier().equals(((IDebugElement)element).getModelIdentifier()) ) {
	                    return true;
	                }
	            }
	        }
		}
		return false;
	}
}

Back to the top