~pierrenn/ripgrep

a fork of ripgrep to be used with hyperscan
d97e554a — pierrenn 4 years ago
update README
fbc4f4bd — pierrenn 4 years ago
hyperscan: upgrade to grep-hyperscan 0.0.2
5d0e6667 — pierrenn 4 years ago
add hyperscan support and options

refs

master
browse  log 

clone

read-only
https://git.sr.ht/~pierrenn/ripgrep
read/write
git@git.sr.ht:~pierrenn/ripgrep

You can also use your local clone with git send-email.

#'hyper'grep - a fork of ripgrep (rg) with hyperscan support

This is a fork of ripgrep adding support for hyperscan.

This can be useful if for all the conditions below, you have :

  1. at the very least several hundreds of regexps to parse simultaneously
  2. several dozens GB of data on a fast (>500MBs) disk / not a lot of CPU (<2) to spend for the regexp search
  3. regexps rarely changing while your data to parse is changing often

The fork was born out of necessity to extract a bunch of fediverse addresses from scraped web pages.

We only here describe differences between this fork and the original ripgrep. Please refer to the original readme for complete infos.

#Installation / Building

Compared to ripgrep we just offer basic installation facilities, e.g. using cargo. You can install cargo if you don't have it already.

Beforehand, please refer to the original section of the readme

Don't forget to install the hyperscan library and sources on your system first. Most distributions provide ready-to-go packages (e.g. libhyperscan-dev on Debian/Ubuntu) or you can compile it from source.

Note that on some environments if you compile from source (e.g. AWS EC-2) you need to add -fPIC to the library compilation.

Finally checkout this repository and compile the fork:

$ git clone http://git.sr.ht/~pierrenn/ripgrep
$ cd ripgrep
$ git submodule update --init --recursive
$ cargo install --path . --features 'hyperscan,pcre2' # if you want all 3 engines: default,pcre2,hyperscan
$ # cargo install --path . --features 'hyperscan' # or if you want only 2 engines: default,hyperscan

And don't forget to add Cargo's bin directory to your path.

Note that the binary name for this fork of ripgrep is also rg so it will overwrite the original binary (since we only add functionality this shouldn't be a problem).

#Functionalities only available in this fork

TLDR: We just add a new engine named hyperscan to ripgrep.

To use it :

$ rg --engine hyperscan "my pattern" my_file

or via a file:

$ rg --engine hyperscan -f myregexps my_file

Where myregexps is a compiled hyperscan DB or a list of regexps in the standard format or the hyperscan format, e.g.:

some default regexp
/some hyperscan regexp/imsHV8WcQ

where imsHV8WcQ can be any subset of the following (case sensitive) option :

  • 'i' : HS_FLAG_CASELESS
  • 'm' : HS_FLAG_MULTILINE
  • 's' : HS_FLAG_DOTALL
  • 'H' : HS_FLAG_SINGLEMATCH
  • 'V' : HS_FLAG_ALLOWEMPTY
  • '8' : HS_FLAG_UTF8
  • 'W' : HS_FLAG_UCP
  • 'C' : HS_FLAG_COMBINATION
  • 'Q' : HS_FLAG_QUIET

We also provide options --hyper--allow-empty, --hyper-utf8 and --hyper-ucp to override the value of each textual regular expression provided to hyperscan (ignored if you provide a compiled DB as we don't support DB edition). caseless, multiline and dotall default ripgrep options also override all regexps options (again, except when using a compiled hyperscan DB).

Finally, you can also save a compiled database DB to your disk. This can be useful as sometimes most of the time spent by ripgrep is to compile the DB (on a single core). Use the -d/--hyper-write parameter to save the DB to disk before starting the search :

$ # tell rg to read the myregexps text file, compile the regexps, write them to db.hs and finally search my_file
$ rg --engine hyperscan -f myregexps -d db.hs my_file
$
$ # now tell rg to directly read the compiled DB and search my_file2 - this will be quicker
$ rg --engine hyperscan -f db.hs my_file2

#Others

Please refer to the original readme