factor/extra/windows/com/syntax/syntax.factor

103 lines
2.9 KiB
Factor
Raw Normal View History

USING: alien alien.c-types effects kernel windows.ole32 combinators.lib
2008-06-26 23:38:59 -04:00
parser lexer splitting grouping sequences.lib sequences namespaces
2008-06-09 06:22:21 -04:00
assocs quotations shuffle accessors words macros alien.syntax
fry arrays ;
2008-04-28 17:30:11 -04:00
IN: windows.com.syntax
<PRIVATE
C-STRUCT: com-interface
{ "void*" "vtbl" } ;
MACRO: com-invoke ( n return parameters -- )
dup length -roll
'[
, npick com-interface-vtbl , swap void*-nth , ,
"stdcall" alien-indirect
] ;
TUPLE: com-interface-definition name parent iid functions ;
C: <com-interface-definition> com-interface-definition
TUPLE: com-function-definition name return parameters ;
C: <com-function-definition> com-function-definition
SYMBOL: +com-interface-definitions+
+com-interface-definitions+ get-global
[ H{ } +com-interface-definitions+ set-global ]
unless
: find-com-interface-definition ( name -- definition )
dup "f" = [ drop f ] [
dup +com-interface-definitions+ get-global at*
[ nip ]
[ swap " COM interface hasn't been defined" append throw ]
if
] if ;
: save-com-interface-definition ( definition -- )
dup name>> +com-interface-definitions+ get-global set-at ;
: (parse-com-function) ( tokens -- definition )
[ second ]
[ first ]
[ 3 tail [ CHAR: , swap remove ] map 2 group { "void*" "this" } prefix ]
2008-04-28 17:30:11 -04:00
tri
<com-function-definition> ;
: parse-com-functions ( -- functions )
2008-05-14 00:36:55 -04:00
";" parse-tokens { ")" } split harvest
2008-04-28 17:30:11 -04:00
[ (parse-com-function) ] map ;
: (iid-word) ( definition -- word )
name>> "-iid" append create-in ;
: (function-word) ( function interface -- word )
name>> "::" rot name>> 3append create-in ;
: family-tree ( definition -- definitions )
dup parent>> [ family-tree ] [ { } ] if*
swap suffix ;
: family-tree-functions ( definition -- functions )
dup parent>> [ family-tree-functions ] [ { } ] if*
swap functions>> append ;
: (invocation-quot) ( function return parameters -- quot )
[ first ] map [ com-invoke ] 3curry ;
: (stack-effect-from-return-and-parameters) ( return parameters -- stack-effect )
swap
[ [ second ] map ]
[ dup "void" = [ drop { } ] [ 1array ] if ] bi*
<effect> ;
2008-04-28 17:30:11 -04:00
: (define-word-for-function) ( function interface n -- )
-rot [ (function-word) swap ] 2keep drop
{ return>> parameters>> } get-slots
[ (invocation-quot) ] 2keep
(stack-effect-from-return-and-parameters)
define-declared ;
2008-04-28 17:30:11 -04:00
: define-words-for-com-interface ( definition -- )
[ [ (iid-word) ] [ iid>> 1quotation ] bi (( -- iid )) define-declared ]
2008-04-28 17:30:11 -04:00
[ name>> "com-interface" swap typedef ]
[
dup family-tree-functions
[ (define-word-for-function) ] with each-index
]
tri ;
PRIVATE>
: COM-INTERFACE:
scan
scan find-com-interface-definition
scan string>guid
parse-com-functions
<com-interface-definition>
dup save-com-interface-definition
define-words-for-com-interface
; parsing