Path: blob/master/src/java.base/share/classes/sun/net/www/http/HttpCaptureInputStream.java
41161 views
/*1* Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package sun.net.www.http;26import java.io.*;2728/**29* A Simple FilterInputStream subclass to capture HTTP traffic.30* Every byte read is also passed to the HttpCapture class.31*32* @author jccollet33*/34public class HttpCaptureInputStream extends FilterInputStream {35private HttpCapture capture = null;3637public HttpCaptureInputStream(InputStream in, HttpCapture cap) {38super(in);39capture = cap;40}4142@Override43public int read() throws IOException {44int i = super.read();45capture.received(i);46return i;47}4849@Override50public void close() throws IOException {51try {52capture.flush();53} catch (IOException iOException) {54}55super.close();56}5758@Override59public int read(byte[] b) throws IOException {60int ret = super.read(b);61for (int i = 0; i < ret; i++) {62capture.received(b[i]);63}64return ret;65}6667@Override68public int read(byte[] b, int off, int len) throws IOException {69int ret = super.read(b, off, len);70for (int i = 0; i < ret; i++) {71capture.received(b[off+i]);72}73return ret;74}75}767778