2008-02-09 22:34:42 -05:00
|
|
|
! Copyright (C) 2008 Slava Pestov, Doug Coleman
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2008-05-05 03:19:25 -04:00
|
|
|
USING: kernel calendar alarms io io.encodings accessors
|
2009-01-29 19:33:19 -05:00
|
|
|
namespaces fry io.streams.null ;
|
2008-02-09 22:34:42 -05:00
|
|
|
IN: io.timeouts
|
|
|
|
|
2008-02-21 20:12:55 -05:00
|
|
|
GENERIC: timeout ( obj -- dt/f )
|
|
|
|
GENERIC: set-timeout ( dt/f obj -- )
|
2008-02-09 22:34:42 -05:00
|
|
|
|
2008-05-05 03:19:25 -04:00
|
|
|
M: decoder set-timeout stream>> set-timeout ;
|
2008-02-10 02:39:21 -05:00
|
|
|
|
2008-05-05 03:19:25 -04:00
|
|
|
M: encoder set-timeout stream>> set-timeout ;
|
2008-03-19 16:24:49 -04:00
|
|
|
|
2008-05-21 02:36:30 -04:00
|
|
|
GENERIC: cancel-operation ( obj -- )
|
2008-02-09 22:34:42 -05:00
|
|
|
|
2008-02-21 20:12:55 -05:00
|
|
|
: queue-timeout ( obj timeout -- alarm )
|
2008-12-02 04:10:13 -05:00
|
|
|
[ '[ _ cancel-operation ] ] dip later ;
|
2008-05-21 02:36:30 -04:00
|
|
|
|
|
|
|
: with-timeout* ( obj timeout quot -- )
|
2008-12-02 04:10:13 -05:00
|
|
|
3dup drop queue-timeout [ nip call ] dip cancel-alarm ;
|
2008-05-21 02:36:30 -04:00
|
|
|
inline
|
2008-02-09 22:34:42 -05:00
|
|
|
|
|
|
|
: with-timeout ( obj quot -- )
|
2008-12-02 04:10:13 -05:00
|
|
|
over timeout [ [ dup timeout ] dip with-timeout* ] [ call ] if ;
|
2008-05-21 02:36:30 -04:00
|
|
|
inline
|
2008-05-05 03:19:25 -04:00
|
|
|
|
|
|
|
: timeouts ( dt -- )
|
|
|
|
[ input-stream get set-timeout ]
|
|
|
|
[ output-stream get set-timeout ] bi ;
|
2009-01-29 19:33:19 -05:00
|
|
|
|
|
|
|
M: null-stream set-timeout 2drop ;
|