You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@thrift.apache.org by "Andy Seaborne (Jira)" <ji...@apache.org> on 2019/11/20 18:49:00 UTC

[jira] [Updated] (THRIFT-5022) TIOStreamTransport.isOpen is false for InputStream or Outpstream only use.

     [ https://issues.apache.org/jira/browse/THRIFT-5022?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andy Seaborne updated THRIFT-5022:
----------------------------------
    Description: 
This follows from THRIFT-2530.

{{TIOStreamTransaport.isOpen}} changed to be
 
{noformat}
  public boolean isOpen() {
    return inputStream_ != null && outputStream_ != null;
  }
{noformat}

but constructors {{TIOStreamTransaport(InputStream)}} and {{TIOStreamTransaport(OutputStream)}} leave one of {{inputStream_}} or {{outputStream_}} null.

This makes isOpen false immediately, no close() called. open() does not change the state of object.

 Example:
{noformat}
TIOStreamTransport x1 = new TIOStreamTransport(new ByteArrayInputStream(new byte[1]));
 System.out.println(x1.isOpen());
 TIOStreamTransport x2 = new TIOStreamTransport(new ByteArrayOutputStream());
 System.out.println(x2.isOpen());
{noformat}
is prints false both times.
 
It should be:
{noformat}
  public boolean isOpen() {
    return inputStream_ != null || outputStream_ != null;
  }
{noformat}

or an explicit flag for the open/close state but {{inputStream_ != null || outputStream_ != null;}} is enough given the current close implementation.


 

 

  was:
This follows from THRIFT-2530.

{{TIOStreamTransaport.isOpen}} changed to be
 
{noformat}
  public boolean isOpen() {
    return inputStream_ != null && outputStream_ != null;
  }
{noformat}

but constructors {{TIOStreamTransaport(InputStream)}} and {{TIOStreamTransaport(OutputStream)}} leave one of {{inputStream_}} or {{outputStream_}} null.

This makes isOpen false immediately, no close() called. open() does not change the state of object.

 Example:
{noformat}
TIOStreamTransport x1 = new TIOStreamTransport(new ByteArrayInputStream(new byte[1]));
 System.out.println(x1.isOpen());
 TIOStreamTransport x2 = new TIOStreamTransport(new ByteArrayOutputStream());
 System.out.println(x2.isOpen());
{noformat}
is prints false both times.
 

 

 


> TIOStreamTransport.isOpen is false for InputStream or Outpstream only use.
> --------------------------------------------------------------------------
>
>                 Key: THRIFT-5022
>                 URL: https://issues.apache.org/jira/browse/THRIFT-5022
>             Project: Thrift
>          Issue Type: Task
>          Components: Java - Library
>    Affects Versions: 0.13.0
>            Reporter: Andy Seaborne
>            Priority: Major
>
> This follows from THRIFT-2530.
> {{TIOStreamTransaport.isOpen}} changed to be
>  
> {noformat}
>   public boolean isOpen() {
>     return inputStream_ != null && outputStream_ != null;
>   }
> {noformat}
> but constructors {{TIOStreamTransaport(InputStream)}} and {{TIOStreamTransaport(OutputStream)}} leave one of {{inputStream_}} or {{outputStream_}} null.
> This makes isOpen false immediately, no close() called. open() does not change the state of object.
>  Example:
> {noformat}
> TIOStreamTransport x1 = new TIOStreamTransport(new ByteArrayInputStream(new byte[1]));
>  System.out.println(x1.isOpen());
>  TIOStreamTransport x2 = new TIOStreamTransport(new ByteArrayOutputStream());
>  System.out.println(x2.isOpen());
> {noformat}
> is prints false both times.
>  
> It should be:
> {noformat}
>   public boolean isOpen() {
>     return inputStream_ != null || outputStream_ != null;
>   }
> {noformat}
> or an explicit flag for the open/close state but {{inputStream_ != null || outputStream_ != null;}} is enough given the current close implementation.
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)