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

gg.jte.CodeResolver Maven / Gradle / Ivy

There is a newer version: 3.1.12
Show newest version
package gg.jte;

import java.util.List;

/**
 * Responsible for resolving template code.
 * Used by the {@link TemplateEngine} to transfer templates into native Java/Kotlin code.
 * When running in production with precompiled templates, no {@link CodeResolver} is required.
 */
public interface CodeResolver {

    /**
     * Resolves the code of a template.
     * @param name The name of the template, e.g. "tag/util/card.jte".
     * @return The code of the resolved template, or null if no template with this name exists.
     */
    String resolve(String name);

    /**
     * Resolves the code of a template, which is required to exist.
     * @param name The name of the template, e.g. "tag/util/card.jte".
     * @return The code of the resolved template, this is never null.
     * @throws TemplateNotFoundException if no template with this name exists.
     *
     * Implementations that have better knowledge why the loading failed, are expected to
     * override this method and provide information about the problem in the thrown exception message.
     */
    default String resolveRequired(String name) throws TemplateNotFoundException {
        String code = resolve(name);
        if (code == null) {
            throw new TemplateNotFoundException(name + " not found");
        }

        return code;
    }

    /**
     * Resolves the last modification time of a template.
     * @param name The name of the template, e.g. "tag/util/card.jte".
     * @return The last modification time of this template in milliseconds, or 0L if no template with this name exists.
     * In case this {@link CodeResolver} does not support modification times 0L should be returned.
     */
    long getLastModified(String name);

    /**
     * Resolves all template names this {@link CodeResolver} can resolve.
     * @return A list of all existing templates.
     * @throws UnsupportedOperationException in case this operation is not supported by this code resolver
     */
    default List resolveAllTemplateNames() {
        throw new UnsupportedOperationException("This code resolver does not support finding all template names!");
    }

    /**
     * Checks if a template with this name exists.
     * @param name The name of the template, e.g. "tag/util/card.jte".
     * @return true if a template with this name exists, otherwise false.
     */
    default boolean exists(String name) {
        return resolve(name) != null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy