215 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			215 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			Factor
		
	
	
! Copyright (C) 2008, 2009 Doug Coleman, Daniel Ehrenberg.
 | 
						|
! See http://factorcode.org/license.txt for BSD license.
 | 
						|
USING: accessors combinators kernel math sequences strings sets
 | 
						|
assocs prettyprint.backend prettyprint.custom make lexer
 | 
						|
namespaces parser arrays fry locals regexp.parser splitting
 | 
						|
sorting regexp.ast regexp.negation regexp.compiler words
 | 
						|
call call.private math.ranges ;
 | 
						|
IN: regexp
 | 
						|
 | 
						|
TUPLE: regexp
 | 
						|
    { raw read-only }
 | 
						|
    { parse-tree read-only }
 | 
						|
    { options read-only }
 | 
						|
    dfa next-match ;
 | 
						|
 | 
						|
TUPLE: reverse-regexp < regexp ;
 | 
						|
 | 
						|
<PRIVATE
 | 
						|
 | 
						|
: maybe-negated ( lookaround quot -- regexp-quot )
 | 
						|
    '[ term>> @ ] [ positive?>> [ ] [ not ] ? ] bi compose ; inline
 | 
						|
 | 
						|
M: lookahead question>quot ! Returns ( index string -- ? )
 | 
						|
    [ ast>dfa dfa>shortest-word '[ f _ execute ] ] maybe-negated ;
 | 
						|
 | 
						|
: <reversed-option> ( ast -- reversed )
 | 
						|
    "r" string>options <with-options> ;
 | 
						|
 | 
						|
M: lookbehind question>quot ! Returns ( index string -- ? )
 | 
						|
    [
 | 
						|
        <reversed-option>
 | 
						|
        ast>dfa dfa>reverse-shortest-word
 | 
						|
        '[ [ 1- ] dip f _ execute ]
 | 
						|
    ] maybe-negated ;
 | 
						|
 | 
						|
<PRIVATE
 | 
						|
 | 
						|
: check-string ( string -- string )
 | 
						|
    ! Make this configurable
 | 
						|
    dup string? [ "String required" throw ] unless ;
 | 
						|
 | 
						|
: match-index-from ( i string regexp -- index/f )
 | 
						|
    ! This word is unsafe. It assumes that i is a fixnum
 | 
						|
    ! and that string is a string.
 | 
						|
    dup dfa>> execute( index string regexp -- i/f ) ;
 | 
						|
 | 
						|
: match-index-head ( string regexp -- index/f )
 | 
						|
    [ 0 ] 2dip [ check-string ] dip match-index-from ;
 | 
						|
 | 
						|
PRIVATE>
 | 
						|
 | 
						|
: matches? ( string regexp -- ? )
 | 
						|
    dupd match-index-head
 | 
						|
    [ swap length = ] [ drop f ] if* ;
 | 
						|
 | 
						|
<PRIVATE
 | 
						|
 | 
						|
: match-slice ( i string quot -- slice/f )
 | 
						|
    [ 2dup ] dip call
 | 
						|
    [ swap <slice> ] [ 2drop f ] if* ; inline
 | 
						|
 | 
						|
: match-from ( i string quot -- slice/f )
 | 
						|
    [ [ length [a,b) ] keep ] dip
 | 
						|
    '[ _ _ match-slice ] map-find drop ; inline
 | 
						|
 | 
						|
: next-match ( i string quot -- i match/f )
 | 
						|
    match-from [ dup [ to>> ] when ] keep ; inline
 | 
						|
 | 
						|
: do-next-match ( i string regexp -- i match/f )
 | 
						|
    dup next-match>> execute( i string regexp -- i match/f ) ;
 | 
						|
 | 
						|
PRIVATE>
 | 
						|
 | 
						|
: all-matches ( string regexp -- seq )
 | 
						|
    [ check-string ] dip
 | 
						|
    [ 0 [ dup ] ] 2dip '[ _ _ do-next-match ] produce
 | 
						|
    nip but-last ;
 | 
						|
 | 
						|
: count-matches ( string regexp -- n )
 | 
						|
    all-matches length ;
 | 
						|
 | 
						|
<PRIVATE
 | 
						|
 | 
						|
:: split-slices ( string slices -- new-slices )
 | 
						|
    slices [ to>> ] map 0 prefix
 | 
						|
    slices [ from>> ] map string length suffix
 | 
						|
    [ string <slice> ] 2map ;
 | 
						|
 | 
						|
: match-head ( str regexp -- slice/f )
 | 
						|
    [
 | 
						|
        [ 0 ] [ check-string ] [ dup dfa>> '[ _ _ execute ] ] tri*
 | 
						|
        match-from
 | 
						|
    ] call( str regexp -- slice/f ) ;
 | 
						|
 | 
						|
PRIVATE>
 | 
						|
 | 
						|
: re-split1 ( string regexp -- before after/f )
 | 
						|
    dupd match-head [ 1array split-slices first2 ] [ f ] if* ;
 | 
						|
 | 
						|
: re-split ( string regexp -- seq )
 | 
						|
    dupd all-matches split-slices ;
 | 
						|
 | 
						|
: re-replace ( string regexp replacement -- result )
 | 
						|
    [ re-split ] dip join ;
 | 
						|
 | 
						|
<PRIVATE
 | 
						|
 | 
						|
: get-ast ( regexp -- ast )
 | 
						|
    [ parse-tree>> ] [ options>> ] bi <with-options> ;
 | 
						|
 | 
						|
GENERIC: compile-regexp ( regex -- regexp )
 | 
						|
 | 
						|
: regexp-initial-word ( i string regexp -- i/f )
 | 
						|
    compile-regexp match-index-from ;
 | 
						|
 | 
						|
: do-compile-regexp ( regexp -- regexp )
 | 
						|
    dup '[
 | 
						|
        dup \ regexp-initial-word =
 | 
						|
        [ drop _ get-ast ast>dfa dfa>word ] when
 | 
						|
    ] change-dfa ;
 | 
						|
 | 
						|
M: regexp compile-regexp ( regexp -- regexp )
 | 
						|
    do-compile-regexp ;
 | 
						|
 | 
						|
M: reverse-regexp compile-regexp ( regexp -- regexp )
 | 
						|
    t backwards? [ do-compile-regexp ] with-variable ;
 | 
						|
 | 
						|
GENERIC: compile-next-match ( regexp -- regexp )
 | 
						|
 | 
						|
: next-initial-word ( i string regexp -- i slice/f )
 | 
						|
    compile-next-match do-next-match ;
 | 
						|
 | 
						|
M: regexp compile-next-match ( regexp -- regexp )
 | 
						|
    dup '[
 | 
						|
        dup \ next-initial-word = [
 | 
						|
            drop _ compile-regexp dfa>>
 | 
						|
            '[ _ '[ _ _ execute ] next-match ]
 | 
						|
            (( i string -- i match/f )) simple-define-temp
 | 
						|
        ] when
 | 
						|
    ] change-next-match ;
 | 
						|
 | 
						|
! Write M: reverse-regexp compile-next-match
 | 
						|
 | 
						|
PRIVATE>
 | 
						|
 | 
						|
: new-regexp ( string ast options class -- regexp )
 | 
						|
    [ \ regexp-initial-word \ next-initial-word ] dip boa ; inline
 | 
						|
 | 
						|
: make-regexp ( string ast -- regexp )
 | 
						|
    f f <options> regexp new-regexp ;
 | 
						|
 | 
						|
: <optioned-regexp> ( string options -- regexp )
 | 
						|
    [ dup parse-regexp ] [ string>options ] bi*
 | 
						|
    dup on>> reversed-regexp swap member?
 | 
						|
    [ reverse-regexp new-regexp ]
 | 
						|
    [ regexp new-regexp ] if ;
 | 
						|
 | 
						|
: <regexp> ( string -- regexp ) "" <optioned-regexp> ;
 | 
						|
 | 
						|
<PRIVATE
 | 
						|
 | 
						|
! The following two should do some caching
 | 
						|
 | 
						|
: find-regexp-syntax ( string -- prefix suffix )
 | 
						|
    {
 | 
						|
        { "R/ "  "/"  }
 | 
						|
        { "R! "  "!"  }
 | 
						|
        { "R\" " "\"" }
 | 
						|
        { "R# "  "#"  }
 | 
						|
        { "R' "  "'"  }
 | 
						|
        { "R( "  ")"  }
 | 
						|
        { "R@ "  "@"  }
 | 
						|
        { "R[ "  "]"  }
 | 
						|
        { "R` "  "`"  }
 | 
						|
        { "R{ "  "}"  }
 | 
						|
        { "R| "  "|"  }
 | 
						|
    } swap [ subseq? not nip ] curry assoc-find drop ;
 | 
						|
 | 
						|
: take-until ( end lexer -- string )
 | 
						|
    dup skip-blank [
 | 
						|
        [ index-from ] 2keep
 | 
						|
        [ swapd subseq ]
 | 
						|
        [ 2drop 1+ ] 3bi
 | 
						|
    ] change-lexer-column ;
 | 
						|
 | 
						|
: parse-noblank-token ( lexer -- str/f )
 | 
						|
    dup still-parsing-line? [ (parse-token) ] [ drop f ] if ;
 | 
						|
 | 
						|
: parsing-regexp ( accum end -- accum )
 | 
						|
    lexer get [ take-until ] [ parse-noblank-token ] bi
 | 
						|
    <optioned-regexp> compile-next-match parsed ;
 | 
						|
 | 
						|
PRIVATE>
 | 
						|
 | 
						|
: R! CHAR: ! parsing-regexp ; parsing
 | 
						|
: R" CHAR: " parsing-regexp ; parsing
 | 
						|
: R# CHAR: # parsing-regexp ; parsing
 | 
						|
: R' CHAR: ' parsing-regexp ; parsing
 | 
						|
: R( CHAR: ) parsing-regexp ; parsing
 | 
						|
: R/ CHAR: / parsing-regexp ; parsing
 | 
						|
: R@ CHAR: @ parsing-regexp ; parsing
 | 
						|
: R[ CHAR: ] parsing-regexp ; parsing
 | 
						|
: R` CHAR: ` parsing-regexp ; parsing
 | 
						|
: R{ CHAR: } parsing-regexp ; parsing
 | 
						|
: R| CHAR: | parsing-regexp ; parsing
 | 
						|
 | 
						|
M: regexp pprint*
 | 
						|
    [
 | 
						|
        [
 | 
						|
            [ raw>> dup find-regexp-syntax swap % swap % % ]
 | 
						|
            [ options>> options>string % ] bi
 | 
						|
        ] "" make
 | 
						|
    ] keep present-text ;
 | 
						|
 |