net.bull.javamelody.internal.web.CounterResponseStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javamelody-core Show documentation
Show all versions of javamelody-core Show documentation
Monitoring of JavaEE applications
/*
* Copyright 2008-2019 by Emeric Vernat
*
* This file is part of Java Melody.
*
* 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 net.bull.javamelody.internal.web;
import java.io.IOException;
import java.io.OutputStream;
import javax.servlet.http.HttpServletResponse;
/**
* Implémentation de ServletOutputStream qui fonctionne avec le {@link CounterServletResponseWrapper}.
* @author Emeric Vernat
*/
public class CounterResponseStream extends FilterServletOutputStream {
private long dataLength;
/**
* Construit un servlet output stream associé avec la réponse spécifiée.
* @param response HttpServletResponse
* @throws IOException Erreur d'entrée/sortie
*/
CounterResponseStream(HttpServletResponse response) throws IOException {
super(response.getOutputStream());
}
/**
* Construit un servlet output stream associé avec l'output stream spécifiée.
* @param output OutputStream
*/
public CounterResponseStream(OutputStream output) {
super(output);
}
/**
* Retourne la valeur de la propriété dataLength.
* @return long
*/
public long getDataLength() {
return dataLength;
}
/**
* Réinitialiser dataLength à 0.
*/
public void reset() {
dataLength = 0;
}
/** {@inheritDoc} */
@Override
public void write(int i) throws IOException {
super.write(i);
dataLength++;
}
/** {@inheritDoc} */
@Override
public void write(byte[] bytes) throws IOException {
super.write(bytes);
dataLength += bytes.length;
}
/** {@inheritDoc} */
@Override
public void write(byte[] bytes, int off, int len) throws IOException {
super.write(bytes, off, len);
dataLength += len;
}
}