You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@mina.apache.org by "Julien Vermillard (JIRA)" <ji...@apache.org> on 2011/06/14 20:22:47 UTC

[jira] [Updated] (DIRMINA-829) AbstractIoBuffer.getSlice(int index, int length) has incorrect behavior

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

Julien Vermillard updated DIRMINA-829:
--------------------------------------

    Fix Version/s:     (was: 2.0.4)
                   2.0.5

> AbstractIoBuffer.getSlice(int index, int length) has incorrect behavior
> -----------------------------------------------------------------------
>
>                 Key: DIRMINA-829
>                 URL: https://issues.apache.org/jira/browse/DIRMINA-829
>             Project: MINA
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 2.0.2, 2.0.3
>            Reporter: Anton Sitnikov
>            Assignee: Emmanuel Lecharny
>            Priority: Minor
>             Fix For: 2.0.5
>
>
> All indexed access function of IoBuffer (getXXX(int index, ...)) supposed to keep IoBuffer state intact. getSlice(int index, int length) method in AbstractIoBuffer class behave differenlty. After its execution buffer posistion is moved to value of index parameter:
> {code}
>     public final IoBuffer getSlice(int index, int length) {
>         if (length < 0) {
>             throw new IllegalArgumentException("length: " + length);
>         }
>         
>         int limit = limit();
>         
>         if (index > limit) {
>             throw new IllegalArgumentException("index: " + index);
>         }
>         
>         int endIndex = index + length;
>         if (capacity() < endIndex) {
>             throw new IndexOutOfBoundsException("index + length (" + endIndex
>                     + ") is greater " + "than capacity (" + capacity() + ").");
>         }
>         clear();
>         position(index);
>         limit(endIndex);
>         IoBuffer slice = slice();
>         position(index);
>         limit(limit);
>         return slice;
>     }
> {code}
> As you can see, this method checks also resulting slice upper limit against original buffer capcity (not against limit), which I suppose is wrong too.
> I think this method should be changed like this:
> {code}
>     public final IoBuffer getSlice(int index, int length) {
>         if (length < 0) {
>             throw new IllegalArgumentException("length: " + length);
>         }
>         
>         int pos = position();
>         int limit = limit();
>         
>         if (index > limit) {
>             throw new IllegalArgumentException("index: " + index);
>         }
>         
>         int endIndex = index + length;
>         if (endIndex > limit) {
>             throw new IndexOutOfBoundsException("index + length (" + endIndex
>                     + ") is greater " + "than limit (" + limit + ").");
>         }
>         clear();
>         position(index);
>         limit(endIndex);
>         IoBuffer slice = slice();
>         position(pos);
>         limit(limit);
>         return slice;
>     }
> {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira