blob: 1ba3abb2b65aa7c4ed4343da9b37b99362f96fe2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.internal.ui.editor.plugin;
import java.util.*;
import org.eclipse.jface.text.*;
import org.eclipse.pde.core.plugin.IExtensions;
import org.eclipse.pde.core.plugin.IPluginExtension;
import org.eclipse.pde.internal.core.text.IDocumentElementNode;
import org.eclipse.pde.internal.core.text.IEditingModel;
import org.eclipse.pde.internal.core.text.plugin.PluginModel;
import org.eclipse.pde.internal.ui.editor.AbstractFoldingStructureProvider;
import org.eclipse.pde.internal.ui.editor.PDESourcePage;
public class PluginFoldingStructureProvider extends AbstractFoldingStructureProvider {
private Map fPositionToElement = new HashMap();
public PluginFoldingStructureProvider(PDESourcePage editor, IEditingModel model) {
super(editor, model);
}
public void addFoldingRegions(Set currentRegions, IEditingModel model) throws BadLocationException {
IExtensions extensions = ((PluginModel) model).getExtensions();
IPluginExtension[] pluginExtensions = extensions.getExtensions();
addFoldingRegions(currentRegions, pluginExtensions, model.getDocument());
}
private void addFoldingRegions(Set regions, IPluginExtension[] nodes, IDocument document) throws BadLocationException {
for (int i = 0; i < nodes.length; i++) {
IDocumentElementNode element = (IDocumentElementNode) nodes[i];
int startLine = document.getLineOfOffset(element.getOffset());
int endLine = document.getLineOfOffset(element.getOffset() + element.getLength());
if (startLine < endLine) {
int start = document.getLineOffset(startLine);
int end = document.getLineOffset(endLine) + document.getLineLength(endLine);
Position position = new Position(start, end - start);
regions.add(position);
fPositionToElement.put(position, element);
}
IDocumentElementNode[] children = element.getChildNodes();
if (children != null) {
addFoldingRegions(regions, children, document);
}
}
}
private void addFoldingRegions(Set regions, IDocumentElementNode[] nodes, IDocument document) throws BadLocationException {
for (int i = 0; i < nodes.length; i++) {
IDocumentElementNode element = nodes[i];
int startLine = document.getLineOfOffset(element.getOffset());
int endLine = document.getLineOfOffset(element.getOffset() + element.getLength());
if (startLine < endLine) {
int start = document.getLineOffset(startLine);
int end = document.getLineOffset(endLine) + document.getLineLength(endLine);
Position position = new Position(start, end - start);
regions.add(position);
fPositionToElement.put(position, element);
}
IDocumentElementNode[] children = element.getChildNodes();
if (children != null) {
addFoldingRegions(regions, children, document);
}
}
}
}