Giter Site home page Giter Site logo

Comments (6)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
Yes this is an issue, thanks for reporting it.

hasNext() does advance the pointer. It does not affect typical usage of the 
iterator, but it's wrong nonetheless.

But I have not been able to reproduce that particular issue with Guava. The 
following copies from a FilteringIterator into a Guava ImmutableCollection and 
the test passes:

    @Test
    public void testFilteringIterator() {
        List<String> testList = Arrays.asList("abc", "bcd", "cde");
        FilteringIterator<String> iterator = new FilteringIterator<String>(testList.iterator()) {
            @Override
            public boolean isValid(String object) {
                return true;
            }
        };
        ImmutableCollection<String> immutableCollection = ImmutableList.<String>builder().addAll(iterator).build();
        assertThat(immutableCollection.size(), is(3));
        assertThat(immutableCollection.toString(), is("[abc, bcd, cde]"));
    }

It's possible there is some other way of copying into an ImmutableCollection 
that I'm not aware of could hit this issue though. As a workaround in the 
meantime the usage above seems to work for me.

Thanks for reporting this, it will be fixed!

Original comment by [email protected] on 27 Sep 2013 at 2:16

  • Changed state: Accepted

from cqengine.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
[deleted comment]

from cqengine.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
Sorry cut and past error.

It occurs when using ImmutableSet/List.copyOf(Iterator) as it uses the 
hasNext() to optimize the returned List / Set.  This reproduction case works 
with Guava 13 and on.  I had never attempted to use the builder in place of the 
copyOf method and so hit this right away.  

    @Test
    public void testFilteringIterator() {
        List<String> testList = Arrays.asList("abc", "bcd", "cde");
        FilteringIterator<String> iterator = new FilteringIterator<String>(testList.iterator()) {
            @Override
            public boolean isValid(String object) {
                return true;
            }
        };
        ImmutableCollection<String> immutableCollection = ImmutableList.copyOf(iterator);
        assertThat(immutableCollection.size(), is(3));
        assertThat(immutableCollection.toString(), is("[abc, bcd, cde]"));
    }

Original comment by [email protected] on 27 Sep 2013 at 5:20

from cqengine.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024

Original comment by [email protected] on 2 Oct 2013 at 9:36

  • Changed state: Started

from cqengine.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
Fixed in trunk, by applying your patch. Many thanks Gabe!

I will leave this issue open until included in the next binary release, 
hopefully next week or so.

Original comment by [email protected] on 2 Oct 2013 at 10:45

from cqengine.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
Fixed in release 1.2.4. Many thanks!

Original comment by [email protected] on 22 Nov 2013 at 10:01

  • Changed state: Fixed

from cqengine.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.