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

152 lines
4.7 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
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
SYMBOL: free-list
SYMBOL: callbacks
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-02-12 02:23:38 -05:00
] contains? ;
: 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 -- )
completion-port get NULL 1 CreateIoCompletionPort drop ;
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
get-access get-sharemode NULL get-create FILE_FLAG_OVERLAPPED NULL
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
: num-callbacks ( -- len )
#! Returns the length of the callback vector.
io-queue get [ callbacks get length ] bind ;
2004-12-25 05:49:30 -05:00
: set-callback-quot ( quot index -- )
io-queue get [
dup >r callbacks get nth car swap cons
r> callbacks get set-nth
2004-12-25 05:49:30 -05:00
] bind ;
: new-overlapped ( -- index )
#! Allocates and returns a new entry for the io queue.
#! The new index in the callback vector is returned.
io-queue get [
2005-05-04 10:24:27 -04:00
"overlapped-ext" c-type [ "width" get ] bind malloc <alien>
2004-12-25 05:49:30 -05:00
dup num-callbacks swap
set-overlapped-ext-user-data
unit num-callbacks dup >r callbacks get set-nth r>
2004-12-25 05:49:30 -05:00
] bind ;
: alloc-io-task ( quot -- overlapped )
io-queue get [
free-list get [
uncons free-list set
] [ new-overlapped ] ifte*
[ set-callback-quot ] keep
callbacks get nth car
2004-12-25 05:49:30 -05:00
] bind ;
: get-io-callback ( index -- callback )
#! Returns and frees the io queue entry at index.
io-queue get [
dup free-list [ cons ] change
callbacks get nth cdr
2004-12-25 05:49:30 -05:00
] bind ;
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 ;
: 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-next-io-task ( -- )
INFINITE wait-for-io swap call ;
: win32-io-thread ( -- )
10 wait-for-io swap [
2005-02-08 10:48:12 -05:00
[ schedule-thread call ] callcc0 2drop
2005-02-07 18:04:49 -05:00
] [
drop yield
] ifte*
win32-io-thread ;
: win32-init-stdio ( -- )
INVALID_HANDLE_VALUE NULL NULL 1 CreateIoCompletionPort
completion-port set
2005-02-12 02:23:38 -05:00
2005-02-07 18:04:49 -05:00
<namespace> [
32 <vector> callbacks set
f free-list set
] extend io-queue set
[ win32-io-thread ] in-thread ;
2004-12-25 05:49:30 -05:00