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

org.apache.commons.jexl3.JexlInfo Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.commons.jexl3;

import org.apache.commons.jexl3.internal.Script;

/**
 * Helper class to carry information such as a url/file name, line and column for
 * debugging information reporting.
 */
public class JexlInfo {

    /** line number. */
    private final int line;

    /** column number. */
    private final int column;

    /** name. */
    private final String name;

    /**
     * @return the detailed information in case of an error
     */
    public Detail getDetail() {
        return null;
    }

    /**
     * Describes errors more precisely.
     */
    public interface Detail {
        /**
         * @return the start column on the line that triggered the error
         */
        int start();

        /**
         * @return the end column on the line that triggered the error
         */
        int end();

        /**
         * @return the actual part of code that triggered the error
         */

        @Override
        String toString();
    }

    /**
     * Create info.
     *
     * @param source source name
     * @param l line number
     * @param c column number
     */
    public JexlInfo(final String source, final int l, final int c) {
        name = source;
        line = l;
        column = c;
    }

    /**
     * Create an information structure for dynamic set/get/invoke/new.
     * 

This gathers the class, method and line number of the first calling method * outside of o.a.c.jexl3.

*/ public JexlInfo() { final StackTraceElement[] stack = new Throwable().getStackTrace(); String cname = getClass().getName(); final String pkgname = getClass().getPackage().getName(); StackTraceElement se = null; for (int s = 1; s < stack.length; ++s) { se = stack[s]; final String className = se.getClassName(); if (!className.equals(cname)) { // go deeper if called from jexl implementation classes if (!className.startsWith(pkgname + ".internal.") && !className.startsWith(pkgname + ".Jexl") && !className.startsWith(pkgname + ".parser")) { break; } cname = className; } } this.name = se != null ? se.getClassName() + "." + se.getMethodName() + ":" + se.getLineNumber() : "?"; this.line = 0; this.column = 0; } /** * Creates info reusing the name. * * @param l the line * @param c the column * @return a new info instance */ public JexlInfo at(final int l, final int c) { return new JexlInfo(name, l, c); } /** * The copy constructor. * * @param copy the instance to copy */ protected JexlInfo(final JexlInfo copy) { name = copy.getName(); line = copy.getLine(); column = copy.getColumn(); } /** * Formats this info in the form 'name@line:column'. * * @return the formatted info */ @Override public String toString() { final StringBuilder sb = new StringBuilder(name != null? name : ""); if (line > 0) { sb.append("@"); sb.append(line); if (column > 0) { sb.append(":"); sb.append(column); } } final JexlInfo.Detail dbg = getDetail(); if (dbg!= null) { sb.append("!["); sb.append(dbg.start()); sb.append(","); sb.append(dbg.end()); sb.append("]: '"); sb.append(dbg.toString()); sb.append("'"); } return sb.toString(); } /** * Gets the file/script/url name. * * @return template name */ public final String getName() { return name; } /** * Gets the line number. * * @return line number. */ public final int getLine() { return line; } /** * Gets the column number. * * @return the column. */ public final int getColumn() { return column; } /** * @return this instance or a copy without any decorations */ public JexlInfo detach() { return this; } /** * Gets the info from a script. * @param script the script * @return the info */ public static JexlInfo from(final JexlScript script) { return script instanceof Script? ((Script) script).getInfo() : null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy