ada.editor/src/org/netbeans/modules/ada/editor/navigator/NavUtils.java
author Andrea Lucarelli <raster@netbeans.org>
Sun, 22 Aug 2010 23:37:11 +0200
branchrelease68
changeset 16367 d2820c029d3a
parent 15779 367c7fdb5d23
permissions -rw-r--r--
Add JVM compiler support.
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
     5  *
     6  * The contents of this file are subject to the terms of either the GNU
     7  * General Public License Version 2 only ("GPL") or the Common
     8  * Development and Distribution License("CDDL") (collectively, the
     9  * "License"). You may not use this file except in compliance with the
    10  * License. You can obtain a copy of the License at
    11  * http://www.netbeans.org/cddl-gplv2.html
    12  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    13  * specific language governing permissions and limitations under the
    14  * License.  When distributing the software, include this License Header
    15  * Notice in each file and include the License file at
    16  * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    17  * particular file as subject to the "Classpath" exception as provided
    18  * by Sun in the GPL Version 2 section of the License file that
    19  * accompanied this code. If applicable, add the following below the
    20  * License Header, with the fields enclosed by brackets [] replaced by
    21  * your own identifying information:
    22  * "Portions Copyrighted [year] [name of copyright owner]"
    23  *
    24  * If you wish your version of this file to be governed by only the CDDL
    25  * or only the GPL Version 2, indicate your decision by adding
    26  * "[Contributor] elects to include this software in this distribution
    27  * under the [CDDL or GPL Version 2] license." If you do not indicate a
    28  * single choice of license, a recipient has the option to distribute
    29  * your version of this file under either the CDDL, the GPL Version 2 or
    30  * to extend the choice of license to its licensees as provided above.
    31  * However, if you add GPL Version 2 code and therefore, elected the GPL
    32  * Version 2 license, then the option applies only if the new code is
    33  * made subject to such option by the copyright holder.
    34  *
    35  * Contributor(s):
    36  *
    37  * Portions Copyrighted 2008 Sun Microsystems, Inc.
    38  */
    39 package org.netbeans.modules.ada.editor.navigator;
    40 
    41 import java.util.Collections;
    42 import java.util.LinkedList;
    43 import java.util.List;
    44 import java.util.Stack;
    45 import javax.swing.text.Document;
    46 import org.netbeans.modules.ada.editor.ast.ASTNode;
    47 import org.netbeans.modules.ada.editor.ast.ASTUtils;
    48 import org.netbeans.modules.ada.editor.ast.nodes.FormalParameter;
    49 import org.netbeans.modules.ada.editor.ast.nodes.PackageBody;
    50 import org.netbeans.modules.ada.editor.ast.nodes.PackageName;
    51 import org.netbeans.modules.ada.editor.ast.nodes.PackageSpecification;
    52 import org.netbeans.modules.ada.editor.ast.nodes.Scalar;
    53 import org.netbeans.modules.ada.editor.ast.nodes.SubprogramBody;
    54 import org.netbeans.modules.ada.editor.ast.nodes.SubprogramSpecification;
    55 import org.netbeans.modules.ada.editor.ast.nodes.TypeDeclaration;
    56 import org.netbeans.modules.ada.editor.ast.nodes.TypeName;
    57 import org.netbeans.modules.ada.editor.ast.nodes.Variable;
    58 import org.netbeans.modules.ada.editor.ast.nodes.With;
    59 import org.netbeans.modules.ada.editor.ast.nodes.visitors.DefaultVisitor;
    60 import org.netbeans.modules.ada.editor.navigator.SemiAttribute.AttributedElement;
    61 import org.netbeans.modules.csl.spi.ParserResult;
    62 import org.openide.filesystems.FileObject;
    63 import org.openide.loaders.DataObject;
    64 
    65 /**
    66  * Based on org.netbeans.modules.php.editor.nav.NavUtils
    67  *
    68  * @author Andrea Lucarelli
    69  */
    70 public class NavUtils {
    71 
    72     public static List<ASTNode> underCaret(ParserResult info, final int offset) {
    73         class Result extends Error {
    74 
    75             private Stack<ASTNode> result;
    76 
    77             public Result(Stack<ASTNode> result) {
    78                 this.result = result;
    79             }
    80 
    81             @Override
    82             public Throwable fillInStackTrace() {
    83                 return this;
    84             }
    85         }
    86         try {
    87             new DefaultVisitor() {
    88 
    89                 private Stack<ASTNode> s = new Stack<ASTNode>();
    90 
    91                 @Override
    92                 public void scan(ASTNode node) {
    93                     if (node == null) {
    94                         return;
    95                     }
    96 
    97                     if (node.getStartOffset() <= offset && offset <= node.getEndOffset()) {
    98                         s.push(node);
    99                         super.scan(node);
   100                         throw new Result(s);
   101                     }
   102                 }
   103             }.scan(ASTUtils.getRoot(info));
   104         } catch (Result r) {
   105             return new LinkedList<ASTNode>(r.result);
   106         }
   107 
   108         return Collections.emptyList();
   109     }
   110 
   111     public static AttributedElement findElement(ParserResult info, List<ASTNode> path, int offset, SemiAttribute a) {
   112         if (path.size() == 0) {
   113             return null;
   114         }
   115 
   116         path = new LinkedList<ASTNode>(path);
   117 
   118         Collections.reverse(path);
   119 
   120         AttributedElement result = null;
   121         ASTNode previous = null;
   122 
   123         for (ASTNode leaf : path) {
   124 
   125             if (leaf instanceof FormalParameter) {
   126                 FormalParameter param = (FormalParameter) leaf;
   127                 Variable name = param.getParameterName();
   128                 if (name != null && offset < name.getEndOffset()) {
   129                     return a.getElement(name);
   130                 }
   131             }
   132             
   133             if (leaf instanceof Variable) {
   134                 result = a.getElement(leaf);
   135                 previous = leaf;
   136                 continue;
   137             }
   138 
   139             if (leaf instanceof TypeDeclaration) {
   140                 result = a.getElement(leaf);
   141                 previous = leaf;
   142                 continue;
   143             }
   144 
   145             if (leaf instanceof TypeName) {
   146                 result = a.getElement(leaf);
   147                 previous = leaf;
   148                 continue;
   149             }
   150 
   151             if (leaf instanceof Scalar) {
   152                 AttributedElement e = a.getElement(leaf);
   153 
   154                 if (e != null) {
   155                     return e;
   156                 }
   157             }
   158 
   159             if (leaf instanceof SubprogramSpecification && ((SubprogramSpecification) leaf).getSubprogramName() == previous) {
   160                 return a.getElement(leaf);
   161             }
   162 
   163             if (leaf instanceof SubprogramBody && ((SubprogramBody) leaf).getSubprogramSpecification().getSubprogramName() == previous) {
   164                 return a.getElement(leaf);
   165             }
   166 
   167             if (leaf instanceof PackageSpecification) {
   168                 PackageSpecification cDeclaration = (PackageSpecification) leaf;
   169                 //package specification declaration
   170                 if (cDeclaration.getName() == previous) {
   171                     return a.getElement(leaf);
   172                 }
   173             } else if (leaf instanceof PackageBody) {
   174                 PackageBody iDeclaration = (PackageBody) leaf;
   175                 //package body declaration
   176                 if (iDeclaration.getName() == previous) {
   177                     return a.getElement(leaf);
   178                 }
   179             }
   180 
   181             if (result != null) {
   182                 return result;
   183             }
   184 
   185             previous = leaf;
   186         }
   187 
   188         return null;
   189     }
   190 
   191     public static boolean isQuoted(String value) {
   192         return value.length() >= 2 &&
   193                 (value.startsWith("\"") || value.startsWith("'")) &&
   194                 (value.endsWith("\"") || value.endsWith("'"));
   195     }
   196 
   197     public static String dequote(String value) {
   198         assert isQuoted(value);
   199 
   200         return value.substring(1, value.length() - 1);
   201     }
   202 
   203     public static FileObject resolveInclude(ParserResult info, With with) {
   204         List<PackageName> packages = with.getPackages();
   205 
   206         // TODO: resolve packagename with file
   207 
   208         return null;
   209     }
   210 
   211     public static FileObject getFile(Document doc) {
   212         Object o = doc.getProperty(Document.StreamDescriptionProperty);
   213 
   214         if (o instanceof DataObject) {
   215             DataObject od = (DataObject) o;
   216 
   217             return od.getPrimaryFile();
   218         }
   219 
   220         return null;
   221     }
   222 }