org.icefaces.ace.util.ScriptWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icefaces-ace Show documentation
Show all versions of icefaces-ace Show documentation
${icefaces.product.name} ACE Component Library
The newest version!
/*
* Copyright 2004-2014 ICEsoft Technologies Canada Corp.
*
* 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 org.icefaces.ace.util;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.context.ResponseWriter;
import java.io.IOException;
/**
* A utility class used to easily insert a script element into the markup. It allows the writing of the script in one
* call or writing it out gradually.
*/
public class ScriptWriter {
private final ResponseWriter writer;
private final UIComponent component;
/**
* Write script markup and script code in one method call.
*
* @param context the curent FacesContext
* @param component the component making the call
* @param script the code
* @throws IOException
*/
public static void insertScript(FacesContext context, final UIComponent component, String script) throws IOException {
ResponseWriter writer = context.getResponseWriter();
writeScriptStart(writer, component);
writer.write(script);
writeScriptEnd(writer);
}
/**
* Write script markup and script code in one method call.
*
* @param context the curent FacesContext
* @param component the component making the call
* @param script the code
* @param id the id of the rendered span
* @throws IOException
*/
public static void insertScript(FacesContext context, final UIComponent component, String script, String id) throws IOException {
ResponseWriter writer = context.getResponseWriter();
writeScriptStart(writer, component, id);
writer.write(script);
writeScriptEnd(writer);
}
/**
* Write the script markup and then gradually write the script code by calling the 'write' write methods on the
* ScriptWriter instance.
*
* @param context the curent FacesContext
* @param component the component making the call
* @return ScriptWriter instance used for streaming the code
* @throws IOException
*/
public static ScriptWriter insertScript(FacesContext context, final UIComponent component) throws IOException {
return new ScriptWriter(context.getResponseWriter(), component);
}
public ScriptWriter(ResponseWriter writer, UIComponent component) {
this.writer = writer;
this.component = component;
}
public void startScript() throws IOException {
writeScriptStart(writer, component);
}
public void write(String val) throws IOException {
writer.write(val);
}
public void write(int val) throws IOException {
writer.write(Integer.toString(val));
}
public void write(long val) throws IOException {
writer.write(Long.toString(val));
}
public void write(double val) throws IOException {
writer.write(Double.toString(val));
}
public void write(float val) throws IOException {
writer.write(Float.toString(val));
}
public void write(boolean val) throws IOException {
writer.write(Boolean.toString(val));
}
public void write(char val) throws IOException {
writer.write(val);
}
public void write(Object val) throws IOException {
writer.write(String.valueOf(val));
}
public void endScript() throws IOException {
writeScriptEnd(writer);
}
private static void writeScriptStart(ResponseWriter writer, UIComponent component) throws IOException {
writer.startElement("span", component);
writer.writeAttribute("id", component.getClientId() + "_script", null);
writer.startElement("script", component);
}
private static void writeScriptStart(ResponseWriter writer, UIComponent component, String id) throws IOException {
writer.startElement("span", component);
writer.writeAttribute("id", id, null);
writer.startElement("script", component);
}
private static void writeScriptEnd(ResponseWriter writer) throws IOException {
writer.endElement("script");
writer.endElement("span");
}
}