Giter Club home page Giter Club logo

Comments (3)

ogoffart avatar ogoffart commented on August 22, 2024

I've tried to investigate the problem. It appear that for the specific pattern in the testcase, the prefilter used is RareBytesOne { byte1: 106, offset: RareByteOffset { max: 4 } })
What happens is that calling earliest_find_at from ahocorasick::StreamChunkIter::next will not find that byte in the buffer and will therefore skip everything. Then buf.roll will be called to rotate the buffer and read from the Reader. But the next call to earliest_find_at will only search from the newly read data (despite the match is still in the buffer)
RareBytesOne::next_candidate will find the rare byte, but will then discard the match because its start position is earlier than the at argument.

I've tried replacing this line

cmp::max(at, pos.saturating_sub(self.offset.max as usize))

with

pos.saturating_sub(self.offset.max as usize)

so that RareBytesOne::next_candidate can return a match smaller than at, also adjusting the call to update_skipped_bytes to handle negative values. And this solve the testcase.
However it causes some other test to run into infinite loops, so that's not quite right.

from aho-corasick.

BurntSushi avatar BurntSushi commented on August 22, 2024

@ogoffart Thanks so much for that investigation! That was enough to tell me where the problem was and helped me craft a fix. See #67 for a bit more detail, but the short story is that I've disabled the prefilter in this case unfortunately. Fixing stream searching to work with the rare byte prefilter is delicate and I don't trust my test coverage enough to attempt that.

from aho-corasick.

BurntSushi avatar BurntSushi commented on August 22, 2024

A fix for this is on crates.io in aho-corasick 0.7.14.

from aho-corasick.

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.