io.vertx.ext.web.templ.rocker.impl.VertxBufferOutput Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2014 Red Hat, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* The Apache License v2.0 is available at
* http://www.opensource.org/licenses/apache2.0.php
*
* You may elect to redistribute this code under either of these licenses.
*/
package io.vertx.ext.web.templ.rocker.impl;
import com.fizzed.rocker.ContentType;
import com.fizzed.rocker.runtime.AbstractRockerOutput;
import io.vertx.core.buffer.Buffer;
import java.nio.charset.Charset;
/**
* @author Xianguang Zhou
*/
public class VertxBufferOutput extends AbstractRockerOutput {
public static final VertxBufferOutputFactory FACTORY = new VertxBufferOutputFactory();
private static int maxRuntimeSize = 0;
private final Buffer buffer;
public VertxBufferOutput(ContentType contentType, String charsetName) {
super(contentType, charsetName, 0);
this.buffer = Buffer.buffer(maxRuntimeSize);
}
public VertxBufferOutput(ContentType contentType, Charset charset) {
super(contentType, charset, 0);
this.buffer = Buffer.buffer(maxRuntimeSize);
}
public Buffer getBuffer() {
maxRuntimeSize = Math.max(maxRuntimeSize, buffer.length());
return buffer;
}
@Override
public VertxBufferOutput w(String string) {
buffer.appendString(string, charset.name());
byteLength = buffer.length();
return this;
}
@Override
public VertxBufferOutput w(byte[] bytes) {
buffer.appendBytes(bytes);
byteLength = buffer.length();
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy