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

org.openapitools.codegen.templating.mustache.OnChangeLambda Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
package org.openapitools.codegen.templating.mustache;

import java.io.IOException;
import java.io.Writer;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.samskivert.mustache.Mustache;
import com.samskivert.mustache.Template;

/**
 * Lambda writes current fragment to the output when it is different than
 * the previous fragment.
 *
 * Register:
 * 
 * additionalProperties.put("onchange", new OnChangeLambda());
 * 
* * Use: *
 * {{#onchange}}{{name}}{{/onchange}}
 * 
*/ public class OnChangeLambda implements Mustache.Lambda { private final Logger LOGGER = LoggerFactory.getLogger(OnChangeLambda.class); private String lastVal = null; @Override public void execute(Template.Fragment frag, Writer out) throws IOException { String curVal = frag.execute(); LOGGER.debug("[lastVal={}, curVal={}]", lastVal, curVal); if (curVal != null && !curVal.equals(lastVal)) { out.write(curVal); lastVal = curVal; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy