mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 12:47:45 +03:00
137 lines
4.8 KiB
Scheme
137 lines
4.8 KiB
Scheme
;; Copyright (C) 2015
|
|
;; "Mu Lei" known as "NalaGinrut" <NalaGinrut@gmail.com>
|
|
;; This file is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; This file is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
(library (pcre)
|
|
(export new-pcre
|
|
pcre-match
|
|
pcre-get-substring
|
|
pcre-search)
|
|
(import (guile) (rnrs) (system foreign)))
|
|
|
|
(define (make-blob-pointer len)
|
|
(bytevector->pointer (make-bytevector len)))
|
|
|
|
(define pcre-ffi (dynamic-link "libpcre"))
|
|
|
|
(define %pcre-compile2
|
|
(pointer->procedure '*
|
|
(dynamic-func "pcre_compile2" pcre-ffi)
|
|
(list '* int '* '* '* '*)))
|
|
|
|
(define %pcre-compile
|
|
(pointer->procedure '*
|
|
(dynamic-func "pcre_compile" pcre-ffi)
|
|
(list '* int '* '* '*)))
|
|
|
|
(define %pcre-exec
|
|
(pointer->procedure int
|
|
(dynamic-func "pcre_exec" pcre-ffi)
|
|
(list '* '* '* int int int '* int)))
|
|
|
|
(define %pcre-study
|
|
(pointer->procedure '*
|
|
(dynamic-func "pcre_study" pcre-ffi)
|
|
(list '* int '*)))
|
|
|
|
(define %pcre-get-substring
|
|
(pointer->procedure '*
|
|
(dynamic-func "pcre_get_substring" pcre-ffi)
|
|
(list '* '* int int '*)))
|
|
|
|
(define %pcre-free
|
|
(pointer->procedure void
|
|
(dynamic-func "pcre_free" pcre-ffi)
|
|
(list '*)))
|
|
|
|
(define %pcre-free-study (dynamic-func "pcre_free_study" pcre-ffi))
|
|
|
|
(define %pcre-free-substring (dynamic-func "pcre_free_substring" pcre-ffi))
|
|
|
|
(define-record-type pcre
|
|
(fields
|
|
errptr
|
|
(mutable strptr)
|
|
(mutable ovector)
|
|
(mutable matched)
|
|
(mutable code)
|
|
(mutable extra)))
|
|
|
|
(define (%new-pcre)
|
|
(make-pcre (make-blob-pointer (sizeof ptrdiff_t)) ; errptr
|
|
#f #f 0 #f #f))
|
|
|
|
(define* (new-pcre re #:optional (options 0))
|
|
(let ((reptr (string->pointer re))
|
|
;;(errcodeptr (make-blob-pointer int))
|
|
(erroffset (make-blob-pointer int))
|
|
(tableptr %null-pointer)
|
|
(pcre (%new-pcre)))
|
|
;; FIXME: add exception handling
|
|
(pcre-code-set! pcre (%pcre-compile reptr options (pcre-errptr pcre)
|
|
erroffset tableptr))
|
|
;;(set-pointer-finalizer! (pcre-code pcre) %pcre-free)
|
|
pcre))
|
|
|
|
(define* (pcre-match pcre str #:key (study-options 0) (exec-options 0)
|
|
(ovecsize 30) (offset 0))
|
|
(let ((extra (%pcre-study (pcre-code pcre) study-options (pcre-errptr pcre)))
|
|
(strptr (string->pointer str))
|
|
(ovector (make-blob-pointer (* int ovecsize))))
|
|
(pcre-matched-set! pcre
|
|
(%pcre-exec (pcre-code pcre)
|
|
extra
|
|
strptr
|
|
(string-length str)
|
|
offset
|
|
exec-options
|
|
ovector
|
|
ovecsize))
|
|
(pcre-ovector-set! pcre ovector)
|
|
(pcre-strptr-set! pcre strptr)
|
|
(set-pointer-finalizer! extra %pcre-free-study)
|
|
pcre))
|
|
|
|
(define (pcre-get-substring pcre index)
|
|
(let ((strptr (pcre-strptr pcre))
|
|
(ovector (pcre-ovector pcre))
|
|
(matched (pcre-matched pcre))
|
|
(buf (make-blob-pointer (sizeof ptrdiff_t))))
|
|
(%pcre-get-substring strptr ovector matched index buf)
|
|
(let ((ret (pointer->string (dereference-pointer buf))))
|
|
(set-pointer-finalizer! (dereference-pointer buf) %pcre-free-substring)
|
|
ret)))
|
|
|
|
(define* (pcre-search pcre str #:key (study-options 0) (exec-options 0)
|
|
(exclude " "))
|
|
(define (trim s)
|
|
(string-trim-both s (lambda (x) (string-contains exclude (string x)))))
|
|
(define len (string-length str))
|
|
(let lp((i 0) (ret '()))
|
|
(cond
|
|
((>= i len) (reverse ret))
|
|
(else
|
|
(pcre-match pcre str #:study-options study-options #:exec-options exec-options #:offset i)
|
|
(if (<= (pcre-matched pcre) 0)
|
|
(lp len ret)
|
|
(let ((hit (trim (pcre-get-substring pcre 1)))
|
|
(sublen (string-length (pcre-get-substring pcre 0))))
|
|
(if (zero? sublen)
|
|
(lp len ret)
|
|
(lp (+ i sublen) (cons hit ret)))))))))
|
|
|
|
(define (pcre-free pcre)
|
|
(and (not (null-pointer? (pcre-code pcre)))
|
|
(%pcre-free (pcre-code pcre))))
|