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

com.hazelcast.org.codehaus.commons.compiler.ICookable Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version

/*
 * Janino - An embedded Java[TM] com.hazelcast.com.iler
 *
 * Copyright (c) 2001-2010 Arno Unkrig. All rights reserved.
 * Copyright (c) 2015-2016 TIBCO Software Inc. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
 * following conditions are met:
 *
 *    1. Redistributions of source code must retain the above copyright notice, this list of conditions and the
 *       following disclaimer.
 *    2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
 *       following disclaimer in the documentation and/or other materials provided with the distribution.
 *    3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
 *       products derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

package com.hazelcast.org.codehaus.com.hazelcast.com.ons.com.hazelcast.com.iler;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;

import com.hazelcast.org.codehaus.com.hazelcast.com.ons.nullanalysis.Nullable;

/**
 * "Cooking" means scanning a sequence of characters and turning them into some JVM-executable artifact. For example,
 * if you cook an {@link IClassBodyEvaluator}, then the tokens are interpreted as a class body and
 * com.hazelcast.com.iled into a {@link Class} which is accessible through {@link IClassBodyEvaluator#getClazz()}.
 */
public
interface ICookable {

    /**
     * The {@link ClassLoader} that loads this classes on the boot class path, i.e. the JARs in the JRE's "lib" and
     * "lib/ext" directories, but not the JARs and class directories specified through the class path.
     */
    ClassLoader BOOT_CLASS_LOADER = ClassLoader.getSystemClassLoader().getParent();

    /**
     * The "parent class loader" is used to load referenced classes. Useful values are:
     * 
     *   
     *   
     * 
     *   
     *   
     * 
     *   
     *   
     * 
{@code System.getSystemClassLoader()}The running JVM's class path
{@code Thread.currentThread().getContextClassLoader()} or {@code null}The class loader effective for the invoking thread
{@link #BOOT_CLASS_LOADER}The running JVM's boot class path
*

* The parent class loader defaults to the current thread's context class loader. *

*/ void setParentClassLoader(@Nullable ClassLoader optionalParentClassLoader); /** * Setting this system property to 'true' enables source-level debugging. Typically, this means that com.hazelcast.com.ilation * is executed with "{@code -g:all}" instead of "{@code -g:none}". */ String SYSTEM_PROPERTY_SOURCE_DEBUGGING_ENABLE = "com.hazelcast.org.codehaus.janino.source_debugging.enable"; /** * If the source code is not read from a file, debuggers have a hard time locating the source file for source-level * debugging. As a workaround, a copy of the source code is written to a temporary file, which must be included * in the debugger's source path. If this system property is set, the temporary source file is created in that * directory, otherwise in the default temporary-file directory. * * @see File#createTempFile(String, String, File) */ String SYSTEM_PROPERTY_SOURCE_DEBUGGING_DIR = "com.hazelcast.org.codehaus.janino.source_debugging.dir"; /** * Determines what kind of debugging information is included in the generates classes. The default is typically * "{@code -g:none}", and "{@code -g:all}" if the system property {@value #SYSTEM_PROPERTY_SOURCE_DEBUGGING_ENABLE} * is set to "{@code true}". */ void setDebuggingInformation(boolean debugSource, boolean debugLines, boolean debugVars); /** * Reads, scans, parses and com.hazelcast.com.iles Java tokens from the given {@link Reader}. * * @param optionalFileName Used when reporting errors and warnings */ void cook(@Nullable String optionalFileName, Reader r) throws CompileException, IOException; /** * Reads, scans, parses and com.hazelcast.com.iles Java tokens from the given {@link Reader}. */ void cook(Reader r) throws CompileException, IOException; /** * Reads, scans, parses and com.hazelcast.com.iles Java tokens from the given {@link InputStream}, encoded * in the "platform default encoding". */ void cook(InputStream is) throws CompileException, IOException; /** * Reads, scans, parses and com.hazelcast.com.iles Java tokens from the given {@link InputStream}, encoded * in the "platform default encoding". * * @param optionalFileName Used when reporting errors and warnings */ void cook(@Nullable String optionalFileName, InputStream is) throws CompileException, IOException; /** * Reads, scans, parses and com.hazelcast.com.iles Java tokens from the given {@link InputStream} with the given {@code * encoding}. */ void cook(InputStream is, @Nullable String optionalEncoding) throws CompileException, IOException; /** * Reads, scans, parses and com.hazelcast.com.iles Java tokens from the given {@link InputStream} with the given {@code * encoding}. * * @param optionalFileName Used when reporting errors and warnings */ void cook( @Nullable String optionalFileName, InputStream is, @Nullable String optionalEncoding ) throws CompileException, IOException; /** * Reads, scans, parses and com.hazelcast.com.iles Java tokens from the given {@link String}. */ void cook(String s) throws CompileException; /** * Reads, scans, parses and com.hazelcast.com.iles Java tokens from the given {@link String}. * * @param optionalFileName Used when reporting errors and warnings */ void cook(@Nullable String optionalFileName, String s) throws CompileException; /** * Reads, scans, parses and com.hazelcast.com.iles Java tokens from the given {@link File}, encoded in the "platform default * encoding". */ void cookFile(File file) throws CompileException, IOException; /** * Reads, scans, parses and com.hazelcast.com.iles Java tokens from the given {@link File} with the given {@code encoding}. */ void cookFile(File file, @Nullable String optionalEncoding) throws CompileException, IOException; /** * Reads, scans, parses and com.hazelcast.com.iles Java tokens from the named file, encoded in the "platform default encoding". */ void cookFile(String fileName) throws CompileException, IOException; /** * Reads, scans, parses and com.hazelcast.com.iles Java tokens from the named file with the given optionalEncoding. */ void cookFile(String fileName, @Nullable String optionalEncoding) throws CompileException, IOException; /** * By default, {@link CompileException}s are thrown on com.hazelcast.com.ile errors, but an application my install its own * {@link ErrorHandler}. *

* Be aware that a single problem during com.hazelcast.com.ilation often causes a bunch of com.hazelcast.com.ile errors, so a good {@link * ErrorHandler} counts errors and throws a {@link CompileException} when a limit is reached. *

*

* If the given {@link ErrorHandler} throws {@link CompileException}s, then the com.hazelcast.com.ilation is terminated and * the exception is propagated. *

*

* If the given {@link ErrorHandler} does not throw {@link CompileException}s, then the com.hazelcast.com.iler may or may not * continue com.hazelcast.com.ilation, but must eventually throw a {@link CompileException}. *

*

* In other words: The {@link ErrorHandler} may throw a {@link CompileException} or not, but the com.hazelcast.com.iler must * definitely throw a {@link CompileException} if one or more com.hazelcast.com.ile errors have occurred. *

* * @param optionalCompileErrorHandler {@code null} to restore the default behavior (throwing a {@link * CompileException} */ void setCompileErrorHandler(@Nullable ErrorHandler optionalCompileErrorHandler); /** * By default, warnings are discarded, but an application my install a custom {@link WarningHandler}. * * @param optionalWarningHandler {@code null} to indicate that no warnings be issued */ void setWarningHandler(@Nullable WarningHandler optionalWarningHandler); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy