我想将 Rakucomb
函数与来自语法的正则表达式一起使用,而不是使用独立的正则表达式。例如,在以下解析来自 stdin 的日志的代码中journalctl
,我想将&h
in替换MAIN
为类似以下内容&Journalctl::full_log
:
role Log {
token preamble { ... };
token message { <-preamble>* };
regex full_log { <preamble> <message> };
}
grammar Journalctl does Log {
token date { \S+\s\d\d\s\d\d\:\d\d\:\d\d};
token hostname { \S* };
token ctl_unit { <-[\[]>+ };
token pid { \d+ };
regex preamble { <date> <.ws> <hostname> <.ws> <ctl_unit> \[ <pid> \]\: };
}
sub MAIN( ) {
my regex h { h. };
for $*IN.comb(&h) -> $wof { # FIXME
say $wof;
}
}
以下是一些示例journalctl
日志,供参考:
Jun 25 14:45:54 cpu-hostname systemd-timesyncd[725]: Initial synchronization to time server 185.125.190.56:123 (ntp.ubuntu.com).
Jun 25 14:45:54 cpu-hostname systemd-resolved[722]: Clock change detected. Flushing caches.