2009-04-18 03:37:35 -04:00
|
|
|
! Copyright (C) 2008, 2009 Slava Pestov.
|
2008-11-30 18:47:29 -05:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
USING: alien alien.c-types arrays assocs effects grouping kernel
|
2009-04-18 03:37:35 -04:00
|
|
|
parser sequences splitting words fry locals lexer namespaces ;
|
2008-11-30 18:47:29 -05:00
|
|
|
IN: alien.parser
|
|
|
|
|
|
|
|
: parse-arglist ( parameters return -- types effect )
|
|
|
|
[ 2 group unzip [ "," ?tail drop ] map ]
|
|
|
|
[ [ { } ] [ 1array ] if-void ]
|
|
|
|
bi* <effect> ;
|
|
|
|
|
|
|
|
: function-quot ( return library function types -- quot )
|
|
|
|
'[ _ _ _ _ alien-invoke ] ;
|
|
|
|
|
2009-04-18 03:37:35 -04:00
|
|
|
:: make-function ( return library function parameters -- word quot effect )
|
2008-11-30 18:47:29 -05:00
|
|
|
function create-in dup reset-generic
|
|
|
|
return library function
|
2009-04-18 03:37:35 -04:00
|
|
|
parameters return parse-arglist [ function-quot ] dip ;
|
|
|
|
|
|
|
|
: (FUNCTION:) ( -- word quot effect )
|
|
|
|
scan "c-library" get scan ";" parse-tokens
|
|
|
|
[ "()" subseq? not ] filter
|
|
|
|
make-function ;
|
|
|
|
|
|
|
|
: define-function ( return library function parameters -- )
|
|
|
|
make-function define-declared ;
|