factor/library/win32/win32-io-internals.factor

132 lines
4.3 KiB
Factor
Raw Normal View History

2004-12-23 06:51:42 -05:00
! $Id$
!
2005-02-08 10:48:12 -05:00
! Copyright (C) 2004, 2005 Mackenzie Straight.
2004-12-23 06:51:42 -05:00
!
! Redistribution and use in source and binary forms, with or without
! modification, are permitted provided that the following conditions are met:
!
! 1. Redistributions of source code must retain the above copyright notice,
! this list of conditions and the following disclaimer.
!
! 2. Redistributions in binary form must reproduce the above copyright notice,
! this list of conditions and the following disclaimer in the documentation
! and/or other materials provided with the distribution.
!
! THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
! INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
! FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
! DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
! PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
! OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
IN: win32-io-internals
2005-02-07 18:04:49 -05:00
USING: alien errors kernel kernel-internals lists math namespaces threads
2005-07-23 05:30:17 -04:00
vectors win32-api io generic io-internals sequences ;
2004-12-23 06:51:42 -05:00
2004-12-25 05:49:30 -05:00
SYMBOL: completion-port
SYMBOL: io-queue
2005-07-23 02:11:07 -04:00
TUPLE: io-queue free-list callbacks ;
TUPLE: io-callback overlapped quotation stream ;
GENERIC: expire
2004-12-25 05:49:30 -05:00
2005-02-12 02:23:38 -05:00
: expected-error? ( -- bool )
[
2005-02-07 18:04:49 -05:00
ERROR_IO_PENDING ERROR_HANDLE_EOF ERROR_SUCCESS WAIT_TIMEOUT
2005-07-16 22:16:18 -04:00
] member? ;
2005-02-12 02:23:38 -05:00
: handle-io-error ( -- )
GetLastError expected-error? [ win32-throw-error ] unless ;
: queue-error ( len/status -- len/status )
GetLastError expected-error? [ drop f ] unless ;
2004-12-25 05:49:30 -05:00
2004-12-29 02:16:03 -05:00
: add-completion ( handle -- )
2005-09-03 14:48:25 -04:00
completion-port get f 1 CreateIoCompletionPort drop ;
2004-12-29 02:16:03 -05:00
2004-12-23 06:51:42 -05:00
: get-access ( -- file-mode )
2004-12-25 05:49:30 -05:00
"file-mode" get uncons
2004-12-26 21:40:45 -05:00
GENERIC_WRITE 0 ? >r
GENERIC_READ 0 ? r> bitor ;
2004-12-23 06:51:42 -05:00
: get-sharemode ( -- share-mode )
2004-12-26 21:40:45 -05:00
FILE_SHARE_READ FILE_SHARE_WRITE bitor ;
2004-12-23 06:51:42 -05:00
: get-create ( -- creation-disposition )
"file-mode" get uncons [
[ OPEN_ALWAYS ] [ CREATE_ALWAYS ] ifte
] [
[ OPEN_EXISTING ] [ 0 ] ifte
] ifte ;
: win32-open-file ( file r w -- handle )
[
cons "file-mode" set
2005-09-03 14:48:25 -04:00
get-access get-sharemode f get-create FILE_FLAG_OVERLAPPED f
2004-12-23 06:51:42 -05:00
CreateFile dup INVALID_HANDLE_VALUE = [ win32-throw-error ] when
2004-12-29 02:16:03 -05:00
dup add-completion
2004-12-23 06:51:42 -05:00
] with-scope ;
2004-12-25 05:49:30 -05:00
BEGIN-STRUCT: indirect-pointer
FIELD: int value
END-STRUCT
2005-07-23 02:11:07 -04:00
: <overlapped> ( -- overlapped )
"overlapped-ext" c-size malloc <alien> ;
C: io-queue ( -- queue )
2005-08-25 15:27:38 -04:00
{ } clone over set-io-queue-callbacks ;
2005-07-23 02:11:07 -04:00
C: io-callback ( -- callback )
io-queue get io-queue-callbacks [ push ] 2keep
length 1 - <overlapped> [ set-overlapped-ext-user-data ] keep
swap [ set-io-callback-overlapped ] keep ;
: alloc-io-callback ( quot stream -- overlapped )
io-queue get io-queue-free-list [
uncons io-queue get [ set-io-queue-free-list ] keep
io-queue-callbacks nth
] [ <io-callback> ] ifte*
[ set-io-callback-stream ] keep
[ set-io-callback-quotation ] keep
io-callback-overlapped ;
2004-12-25 05:49:30 -05:00
: get-io-callback ( index -- callback )
2005-07-23 02:11:07 -04:00
dup io-queue get io-queue-callbacks nth swap
io-queue get [ io-queue-free-list cons ] keep set-io-queue-free-list
[ f swap set-io-callback-stream ] keep
io-callback-quotation ;
2004-12-25 05:49:30 -05:00
2005-02-12 02:23:38 -05:00
: (wait-for-io) ( timeout -- error overlapped len )
2005-02-07 18:04:49 -05:00
>r completion-port get
<indirect-pointer> [ 0 swap set-indirect-pointer-value ] keep
<indirect-pointer>
<indirect-pointer>
pick over r> -rot >r >r GetQueuedCompletionStatus r> r> ;
: overlapped>callback ( overlapped -- callback )
indirect-pointer-value dup 0 = [
drop f
] [
<alien> overlapped-ext-user-data get-io-callback
] ifte ;
2005-07-23 02:11:07 -04:00
: cancel-timedout ( -- )
io-queue get
io-queue-callbacks [ io-callback-stream [ expire ] when* ] each ;
2005-02-07 18:04:49 -05:00
: wait-for-io ( timeout -- callback len )
2005-02-12 02:23:38 -05:00
(wait-for-io) overlapped>callback swap indirect-pointer-value
rot [ queue-error ] unless ;
2005-02-07 18:04:49 -05:00
: win32-init-stdio ( -- )
2005-09-03 14:48:25 -04:00
INVALID_HANDLE_VALUE f f 1 CreateIoCompletionPort
2005-02-07 18:04:49 -05:00
completion-port set
2005-08-31 01:39:37 -04:00
<io-queue> io-queue set ;
2004-12-25 05:49:30 -05:00