factor/basis/cocoa/subclassing/subclassing.factor

82 lines
2.4 KiB
Factor
Raw Normal View History

2008-12-04 22:22:48 -05:00
! Copyright (C) 2006, 2008 Slava Pestov, Joe Groff.
2007-09-20 18:09:08 -04:00
! See http://factorcode.org/license.txt for BSD license.
2008-04-20 06:15:46 -04:00
USING: alien alien.c-types alien.strings arrays assocs
combinators compiler hashtables kernel libc math namespaces
2008-12-04 22:22:48 -05:00
parser sequences words cocoa.messages cocoa.runtime locals
compiler.units io.encodings.utf8 continuations make fry ;
2007-09-20 18:09:08 -04:00
IN: cocoa.subclassing
: init-method ( method -- sel imp types )
first3 swap
[ sel_registerName ] [ execute ] [ utf8 string>alien ]
2008-09-12 23:18:47 -04:00
tri* ;
2008-09-12 23:01:07 -04:00
2008-12-04 22:22:48 -05:00
: throw-if-false ( obj what -- )
swap { f 0 } member?
[ "Failed to " prepend throw ] [ drop ] if ;
: add-method ( class sel imp types -- )
class_addMethod "add method to class" throw-if-false ;
2007-09-20 18:09:08 -04:00
: add-methods ( methods class -- )
2008-12-04 22:22:48 -05:00
'[ [ _ ] dip init-method add-method ] each ;
: add-protocol ( class protocol -- )
class_addProtocol "add protocol to class" throw-if-false ;
2007-09-20 18:09:08 -04:00
: add-protocols ( protocols class -- )
2008-12-04 22:22:48 -05:00
'[ [ _ ] dip objc-protocol add-protocol ] each ;
2007-09-20 18:09:08 -04:00
2008-12-04 22:22:48 -05:00
: (define-objc-class) ( imeth protocols superclass name -- )
[ objc-class ] dip 0 objc_allocateClassPair
2008-12-04 22:22:48 -05:00
[ add-protocols ] [ add-methods ] [ objc_registerClassPair ]
tri ;
2007-09-20 18:09:08 -04:00
: encode-type ( type -- encoded )
dup alien>objc-types get at [ ] [ no-objc-type ] ?if ;
2007-09-20 18:09:08 -04:00
: encode-types ( return types -- encoding )
swap prefix [ encode-type "0" append ] map concat ;
2007-09-20 18:09:08 -04:00
: prepare-method ( ret types quot -- type imp )
[ [ encode-types ] 2keep ] dip
'[ _ _ "cdecl" _ alien-callback ]
(( -- callback )) define-temp ;
2007-09-20 18:09:08 -04:00
: prepare-methods ( methods -- methods )
[
[ first4 prepare-method 3array ] map
] with-compilation-unit ;
2007-09-20 18:09:08 -04:00
2008-12-04 22:22:48 -05:00
:: (redefine-objc-method) ( class method -- )
method init-method [| sel imp types |
class sel class_getInstanceMethod [
imp method_setImplementation drop
] [
class sel imp types add-method
] if*
] call ;
2008-09-09 01:53:22 -04:00
: redefine-objc-methods ( imeth name -- )
dup class-exists? [
2008-12-04 22:22:48 -05:00
objc_getClass '[ [ _ ] dip (redefine-objc-method) ] each
] [ 2drop ] if ;
2007-09-20 18:09:08 -04:00
SYMBOL: +name+
SYMBOL: +protocols+
SYMBOL: +superclass+
: define-objc-class ( imeth hash -- )
clone [
prepare-methods
+name+ get "cocoa.classes" create drop
2008-12-04 22:22:48 -05:00
+name+ get 2dup redefine-objc-methods swap
+protocols+ get +superclass+ get +name+ get
'[ _ _ _ _ (define-objc-class) ]
import-objc-class
2007-09-20 18:09:08 -04:00
] bind ;
: CLASS:
parse-definition unclip
>hashtable define-objc-class ; parsing