pire

Perl Incompatible Regular Expressions library

  • 所有者: yandex/pire
  • 平台:
  • 许可证: Other
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

This is PIRE, Perl Incompatible Regular Expressions library.

This library is aimed at checking a huge amount of text against
relatively many regular expressions. Roughly speaking, it can just
check whether given text maches the certain regexp, but can do it
really fast (more than 400 MB/s on our hardware is common). Even more,
multiple regexps can be combined together, giving capability to
check the text against apx.10 regexps in a single pass (and mantaining
the same speed).

Since Pire examines each character only once, without any lookaheads
or rollbacks, spending about five machine instructions per each character,
it can be used even in realtime tasks.

On the other hand, Pire has very limited functionality (compared to
other regexp libraries). Pire does not have any Perlish conditional
regexps, lookaheads & backtrackings, greedy/nongreedy matches; neither
has it any capturing facilities.

Pire was developed in Yandex (http://company.yandex.ru/) as a part of its
web crawler.

More information can be found in README.ru (in Russian), which is
yet to be translated.

Please report bugs to dprokoptsev@yandex-team.ru or davenger@yandex-team.ru.

Quick Start

#include <stdio.h>
#include
#include <pire/pire.h>

Pire::NonrelocScanner CompileRegexp(const char* pattern)
{
// Transform the pattern from UTF-8 into UCS4
std::vectorPire::wchar32 ucs4;
Pire::Encodings::Utf8().FromLocal(pattern, pattern + strlen(pattern), std::back_inserter(ucs4));

return Pire::Lexer(ucs4.begin(), ucs4.end())
	.AddFeature(Pire::Features::CaseInsensitive())	// enable case insensitivity
	.SetEncoding(Pire::Encodings::Utf8())		// set input text encoding
	.Parse() 					// create an FSM 
	.Surround()					// PCRE_ANCHORED behavior
	.Compile<Pire::NonrelocScanner>();		// compile the FSM

}

bool Matches(const Pire::NonrelocScanner& scanner, const char* ptr, size_t len)
{
return Pire::Runner(scanner)
.Begin() // '^'
.Run(ptr, len) // the text
.End(); // '$'
// implicitly cast to bool
}

int main()
{
char re[] = "hello\s+w.+d$";
char str[] = "Hello world";

Pire::NonrelocScanner sc = CompileRegexp(re);

bool res = Matches(sc, str, strlen(str));

printf("String \"%s\" %s \"%s\"\n", str, (res ? "matches" : "doesn't match"), re);
	
return 0;

}

主要指标

概览
名称与所有者yandex/pire
主编程语言C++
编程语言C (语言数: 7)
平台
许可证Other
所有者活动
创建于2010-10-15 00:37:08
推送于2020-09-08 21:23:28
最后一次提交2020-06-13 20:53:04
发布数4
最新版本名称release-0.0.6 (发布于 )
第一版名称release-0.0.3 (发布于 )
用户参与
星数334
关注者数21
派生数30
提交数271
已启用问题?
问题数20
打开的问题数11
拉请求数49
打开的拉请求数9
关闭的拉请求数8
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?