com.squarespace.template.Formatter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of template-core Show documentation
Show all versions of template-core Show documentation
Squarespace template compiler
/**
* Copyright (c) 2014 SQUARESPACE, Inc.
*
* 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.squarespace.template;
/**
* A Formatter is a function that examines a value and emits a string. Formatters
* can have zero or more arguments.
*
* NOTE: Formatter instances must be stateless and thread-safe, e.g. they
* should only ever access read-only, thread-safe shared data. The only exception
* to this rule are the Context and Arguments that are passed in.
*/
public interface Formatter {
/**
* Name used to uniquely identify this formatter. This determines
* the syntax used to invoke the formatter.
*/
String identifier();
/**
* Indicates whether the formatter requires arguments.
*/
boolean requiresArgs();
/**
* Initialize an instance of a formatter, allowing it to perform tasks
* like tokenizing private templates.
*/
void initialize(Compiler compiler) throws CodeException;
/**
* For Formatters that take arguments, they will be called with the raw StringView
* covering their arguments during the tokenization phase. The Formatter must
* raise a syntax error if the arguments are invalid.
*
* For example, for a DATE formatter that takes a formatting string, an invalid
* format escape should be caught in this method and an error thrown.
*/
void validateArgs(Arguments args) throws ArgumentsException;
/**
* During execution of the template, the Formatter will be called with a Context
* instance and the arguments that were returned by convertArgs(). It is the
* Formatter's responsibility to emit output using the context. If any
* runtime errors occur that are severe, the Formatter can throw an exception.
*/
void apply(Context ctx, Arguments args, Variables variables) throws CodeExecuteException;
}