You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@activemq.apache.org by "王庆焕 (JIRA)" <ji...@apache.org> on 2016/09/16 16:17:21 UTC

[jira] [Created] (AMQ-6431) BitArrayBin doesn't work well with index larger than Integer.MAX_VALUE

王庆焕 created AMQ-6431:
------------------------

             Summary: BitArrayBin doesn't work well with index larger than Integer.MAX_VALUE
                 Key: AMQ-6431
                 URL: https://issues.apache.org/jira/browse/AMQ-6431
             Project: ActiveMQ
          Issue Type: Bug
          Components: JMS client
    Affects Versions: 5.14.0
            Reporter: 王庆焕


I have a problem with "messageid deplicate". Then I found it's a bug(AMQ-5016) in activemq5.9.0 , so I download the activemq5.14.0. I run the BitArrayBinTest.java:

 public static void main(String[] args) {
       BitArrayBin toTest = new BitArrayBin(1024);
       long largeNum = Integer.MAX_VALUE*2L +100L;
       toTest.setBit(largeNum, true);
       System.out.println(toTest.getBit(largeNum));   
}

 I expect the results to be "true",but the result of running the above code is "false". 
I debug the code,and I  found a method 'getBin(long index)' in class BitArrayBin. Code as follows:

private int getBin(long index) {
        int answer = 0;
        if (longFirstIndex < 0) {
            longFirstIndex = (int) (index - (index % BitArray.LONG_SIZE));
        } else if (longFirstIndex >= 0) {
            answer = (int)((index - longFirstIndex) / BitArray.LONG_SIZE);
        }
        return answer;
    }
 I think the problem is in  code ‘longFirstIndex = (int) (index - (index % BitArray.LONG_SIZE))‘.  When  index is larger than Integer.MAX_VALUE, longFirstIndex will be negative.  I think this line of code should be modified to  ‘longFirstIndex = (long) (index - (index % BitArray.LONG_SIZE));’
   


    



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)