/* * Copyright (c) 2012, the Dart project authors. * * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.eclipse.org/legal/epl-v10.html * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. */ package com.google.dart.tools.debug.ui.internal.breakpoints; import com.google.dart.tools.core.DartCore; import com.google.dart.tools.ui.internal.text.editor.CompilationUnitEditor; import org.eclipse.core.resources.IResource; import org.eclipse.core.runtime.IAdapterFactory; import org.eclipse.debug.ui.actions.IRunToLineTarget; import org.eclipse.debug.ui.actions.IToggleBreakpointsTarget; import org.eclipse.ui.IEditorInput; import org.eclipse.ui.ide.FileStoreEditorInput; import org.eclipse.ui.texteditor.ITextEditor; /** * This adapter factory adapts the Dart compilation unit editor to an * {@link IToggleBreakpointsTarget}. */ public class DartBreakpointAdapterFactory implements IAdapterFactory { /** * Create a new DartBreakpointAdapterFactory. */ public DartBreakpointAdapterFactory() { } @SuppressWarnings("rawtypes") @Override public Object getAdapter(Object adaptableObject, Class adapterType) { if (adapterType == IRunToLineTarget.class) { return new RunToLineAdapter(); } if (adaptableObject instanceof ITextEditor) { ITextEditor editorPart = (ITextEditor) adaptableObject; IResource resource = (IResource) editorPart.getEditorInput().getAdapter(IResource.class); if (resource != null) { String name = resource.getName().toLowerCase(); if (DartCore.isDartLikeFileName(name) || name.endsWith(".html") || name.endsWith(".htm")) { return new DartBreakpointAdapter(); } } else if (editorPart instanceof CompilationUnitEditor) { IEditorInput input = editorPart.getEditorInput(); if (input instanceof FileStoreEditorInput) { String path = ((FileStoreEditorInput) input).getURI().getPath(); if (DartCore.isDartLikeFileName(path)) { return new DartBreakpointAdapter(); } } } } return null; } @SuppressWarnings("rawtypes") @Override public Class[] getAdapterList() { return new Class[] {IRunToLineTarget.class, IToggleBreakpointsTarget.class}; } }