Package net.ishchenko.idea.nginx

Source Code of net.ishchenko.idea.nginx.NginxFoldingBuilder

/*
* Copyright 2009 Max Ishchenko
*
* Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
*
* 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 net.ishchenko.idea.nginx;

import com.intellij.lang.ASTNode;
import com.intellij.lang.folding.FoldingBuilder;
import com.intellij.lang.folding.FoldingDescriptor;
import com.intellij.openapi.editor.Document;
import net.ishchenko.idea.nginx.lexer.NginxElementTypes;
import net.ishchenko.idea.nginx.psi.NginxDirective;

import java.util.ArrayList;
import java.util.List;

/**
* Created by IntelliJ IDEA.
* User: Max
* Date: 13.07.2009
* Time: 22:00:02
*/

public class NginxFoldingBuilder implements FoldingBuilder {

    public FoldingDescriptor[] buildFoldRegions(ASTNode node, Document document) {

        List<FoldingDescriptor> descriptors = new ArrayList<FoldingDescriptor>();
        doAppend(node, document, descriptors);
        return descriptors.toArray(new FoldingDescriptor[descriptors.size()]);
    }

    private static ASTNode doAppend(final ASTNode node, final Document document, final List<FoldingDescriptor> descriptors) {

        if (node.getElementType() == NginxElementTypes.DIRECTIVE) {
            //let's fold multiline directives only
            if (document.getLineNumber(node.getStartOffset()) < document.getLineNumber(node.getTextRange().getEndOffset())) {
                descriptors.add(new FoldingDescriptor(node, node.getTextRange()));
            }
        }

        if (node.getElementType() == NginxElementTypes.FILE) {
            node.getPsi().getFirstChild();
        }

        ASTNode child = node.getFirstChildNode();
        while (child != null) {
            child = doAppend(child, document, descriptors).getTreeNext();
        }

        return node;
    }

    public String getPlaceholderText(ASTNode node) {
        return ((NginxDirective) node.getPsi()).getNameString() + " {...}";
    }

    public boolean isCollapsedByDefault(ASTNode node) {
        return false;
    }


}
TOP

Related Classes of net.ishchenko.idea.nginx.NginxFoldingBuilder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.