You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "Doug Cutting (JIRA)" <ji...@apache.org> on 2010/12/08 23:24:03 UTC

[jira] Commented: (AVRO-705) DirectBinaryDecoder not correctly re-initialized with reuse option

    [ https://issues.apache.org/jira/browse/AVRO-705?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12969529#action_12969529 ] 

Doug Cutting commented on AVRO-705:
-----------------------------------

+1 Looks good and passes tests for me.

> DirectBinaryDecoder not correctly re-initialized with reuse option
> ------------------------------------------------------------------
>
>                 Key: AVRO-705
>                 URL: https://issues.apache.org/jira/browse/AVRO-705
>             Project: Avro
>          Issue Type: Bug
>          Components: java
>    Affects Versions: 1.4.1
>            Reporter: Gilles Gaillard
>            Assignee: Thiruvalluvan M. G.
>         Attachments: AVRO-705.patch
>
>
> Calling {{DecoderFactory.createBinaryDecoder(InputStream in, BinaryDecoder reuse)}}  with {{reuse}} being a non null {{DirectBinaryDecoder}}, this {{DirectBinaryDecoder}} is simply reinitialized by a call to {{DirectBinaryDecoder.init}} which reinitializes the internal {{InputStream}}.
> The problem is that the {{byteReader}} attribute of {{DirectBinaryDecoder}} is not reinitialized and still points to the previously assigned {{ByteBufferInputStream}}
> The following is a proposition of correction at rev 1041110: 
> {noformat}
>     private ByteReader byteReader;
>     DirectBinaryDecoder(InputStream in) {
>         super();
>         init(in);
>     }
>     @Override
>     public void init(InputStream in) {
>         this.in = in;
>         byteReader = (in instanceof ByteBufferInputStream)
>                 ? new ReuseByteReader((ByteBufferInputStream) in)
>                 : new ByteReader();
>     }
> {noformat}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.