Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E938E200C3B for ; Sat, 18 Mar 2017 10:51:46 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id E7CE5160B7F; Sat, 18 Mar 2017 09:51:46 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 3B3AE160B71 for ; Sat, 18 Mar 2017 10:51:46 +0100 (CET) Received: (qmail 98023 invoked by uid 500); 18 Mar 2017 09:51:45 -0000 Mailing-List: contact dev-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list dev@hc.apache.org Received: (qmail 98012 invoked by uid 99); 18 Mar 2017 09:51:44 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Mar 2017 09:51:44 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 7C6FFC1FBE for ; Sat, 18 Mar 2017 09:51:44 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.952 X-Spam-Level: * X-Spam-Status: No, score=1.952 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_NUMSUBJECT=0.5, RP_MATCHES_RCVD=-0.001, SPF_NEUTRAL=0.652, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id yq6qXQnLuCCL for ; Sat, 18 Mar 2017 09:51:43 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id DA0535FB1E for ; Sat, 18 Mar 2017 09:51:42 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 02B7FE05EE for ; Sat, 18 Mar 2017 09:51:41 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id A2BAB243A6 for ; Sat, 18 Mar 2017 09:51:41 +0000 (UTC) Date: Sat, 18 Mar 2017 09:51:41 +0000 (UTC) From: "Oleg Kalnichevski (JIRA)" To: dev@hc.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Resolved] (HTTPCORE-449) IdentityInputStream.available() erroneously returns 0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Sat, 18 Mar 2017 09:51:47 -0000 [ https://issues.apache.org/jira/browse/HTTPCORE-449?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Oleg Kalnichevski resolved HTTPCORE-449. ---------------------------------------- Resolution: Fixed Fix Version/s: (was: 4.4.7) John, I found no reasonable way to implement this change in 4.5.x, which would not involve violation of the BufferInfo contract or introduction of yet another optional interface. I ended up implementing the change in 5.x only. Please review and close. Oleg > IdentityInputStream.available() erroneously returns 0 > ----------------------------------------------------- > > Key: HTTPCORE-449 > URL: https://issues.apache.org/jira/browse/HTTPCORE-449 > Project: HttpComponents HttpCore > Issue Type: Improvement > Components: HttpCore > Affects Versions: 4.4.5, 4.4.6 > Reporter: John Flavin > Priority: Minor > Fix For: 5.0-alpha3 > > > h5. BACKGROUND > I have an application that reads data from a stream. When data is available, I can read from the stream perfectly fine. However, sometimes the stream will remain open with no data, in which case reading from the stream blocks. I would like to use the {{available()}} method on the stream to first check whether anything can be read before attempting to read. > h5. PROBLEM > When I attempt to use the {{available()}} method on my {{InputStream}} instance it returns {{0}}, i.e. no data available, even when I can successfully call {{read(...)}} and read data off the stream. > h5. INVESTIGATION INTO PROBLEM > I have traced the {{available()}} method on my {{InputStream}} instance through several layers of wrapper classes around more {{InputStream}} instances. Each layer's {{available()}} method simply calls into its wrapped {{InputStream}}'s {{available()}} method. That is, until I reach the {{IdentityInputStream.available()}} method. The latter does this: > {code:java} > @Override > public int available() throws IOException { > if (this.in instanceof BufferInfo) { > return ((BufferInfo) this.in).length(); > } else { > return 0; > } > } > {code} > The {{in}} in the above code is a {{SessionInputBufferImpl}}, which has a few methods that are seemingly relevant to this: > {code:java} > @Override > public int capacity() { > return this.buffer.length; > } > @Override > public int length() { > return this.bufferlen - this.bufferpos; > } > @Override > public int available() { > return capacity() - length(); > } > {code} > h5. QUESTION > Why does {{IdentityInputStream.available()}} call {{((BufferInfo) this.in).length()}} instead of {{((BufferInfo) this.in).available()}}? The former returns {{0}} when I call it on a stream that has data which can be read, but has not been; the latter returns a number greater than {{0}}. -- This message was sent by Atlassian JIRA (v6.3.15#6346) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org For additional commands, e-mail: dev-help@hc.apache.org