All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ceilfors.groovy.gq.ast.SourceUnitUtils.groovy Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2016 Wisen Tanasa
 *
 * 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 com.ceilfors.groovy.gq.ast

import org.codehaus.groovy.ast.ASTNode
import org.codehaus.groovy.ast.ClassHelper
import org.codehaus.groovy.ast.ImportNode
import org.codehaus.groovy.ast.expr.BinaryExpression
import org.codehaus.groovy.control.Janitor
import org.codehaus.groovy.control.SourceUnit

/**
 * @author ceilfors
 */
class SourceUnitUtils {

    /**
     * Returns the source text for a BinaryExpression. This method tries to workaround
     * the weird behavior of BinaryExpression where the columnNumber and lastColumnNumber properties
     * are only covering the operator e.g. lookupText(3 + 5) will return +.
     */
    @SuppressWarnings('Instanceof')
    static String lookupBinary(SourceUnit sourceUnit, ASTNode node) {
        if (node instanceof BinaryExpression) {
            String space = ' ' // Could not figure out how to get the real space used in source code
            lookupBinary(sourceUnit, node.leftExpression) + space +
                    lookupText(sourceUnit, node as ASTNode) + space +
                    lookupBinary(sourceUnit, node.rightExpression)
        } else {
            lookupText(sourceUnit, node)
        }
    }

    /**
     * Lookup for the real source code text. This method is more accurate than calling expression.getText as
     * it is really grabbing the text from the source code.
     *
     * @param sourceUnit the source unit
     * @param node the node which text to be looked up
     * @return the representation of the text in source code
     */
    static String lookupText(SourceUnit sourceUnit, ASTNode node) {
        Janitor janitor = new Janitor()
        StringBuilder text = new StringBuilder()
        for (int i = node.lineNumber; i <= node.lastLineNumber; i++) {
            String currentLine = sourceUnit.getSample(i, 0, janitor)
            String newLine = '\n'

            if (i == node.lineNumber && i == node.lastLineNumber) {
                text.append(currentLine.substring(node.columnNumber - 1, node.lastColumnNumber - 1))
            } else if (i == node.lineNumber) {
                text.append(currentLine.substring(node.columnNumber - 1))
                text.append(newLine)
            } else if (i == node.lastLineNumber) {
                text.append(currentLine.substring(0, node.lastColumnNumber - 1))
            } else {
                text.append(currentLine)
                text.append(newLine)
            }
        }
        text.toString().trim()
    }

    /**
     * Searches the alias for a particular class import.
     *
     * @param sourceUnit the source unit
     * @param clazz the class which alias to be searched
     * @return the alias if the SourceUnit imports the searched class, otherwise null
     */
    static String getImportAlias(SourceUnit sourceUnit, Class clazz) {
        ImportNode importNode = sourceUnit.AST.imports.find { it.type == ClassHelper.make(clazz) }
        importNode ? importNode.alias : null
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy