2008-01-24 02:27:15 -05:00
|
|
|
! Copyright (C) 2007, 2008 Doug Coleman, Slava Pestov.
|
2007-11-21 01:18:46 -05:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2007-11-17 23:06:51 -05:00
|
|
|
USING: alien alien.c-types arrays continuations destructors io
|
2008-02-14 03:20:20 -05:00
|
|
|
io.windows io.windows.nt.pipes libc io.nonblocking
|
2008-01-25 00:49:03 -05:00
|
|
|
io.streams.duplex windows.types math windows.kernel32 windows
|
|
|
|
namespaces io.launcher kernel sequences windows.errors assocs
|
2008-02-18 08:30:16 -05:00
|
|
|
splitting system threads init strings combinators
|
2008-02-18 06:07:40 -05:00
|
|
|
io.backend ;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: io.windows.launcher
|
|
|
|
|
|
|
|
TUPLE: CreateProcess-args
|
2007-11-13 01:10:26 -05:00
|
|
|
lpApplicationName
|
|
|
|
lpCommandLine
|
|
|
|
lpProcessAttributes
|
|
|
|
lpThreadAttributes
|
|
|
|
bInheritHandles
|
|
|
|
dwCreateFlags
|
|
|
|
lpEnvironment
|
|
|
|
lpCurrentDirectory
|
|
|
|
lpStartupInfo
|
|
|
|
lpProcessInformation
|
|
|
|
stdout-pipe stdin-pipe ;
|
|
|
|
|
|
|
|
: default-CreateProcess-args ( -- obj )
|
2007-09-20 18:09:08 -04:00
|
|
|
0
|
|
|
|
"STARTUPINFO" <c-object>
|
|
|
|
"STARTUPINFO" heap-size over set-STARTUPINFO-cb
|
|
|
|
"PROCESS_INFORMATION" <c-object>
|
2008-01-25 01:21:27 -05:00
|
|
|
TRUE
|
2007-09-20 18:09:08 -04:00
|
|
|
{
|
|
|
|
set-CreateProcess-args-dwCreateFlags
|
|
|
|
set-CreateProcess-args-lpStartupInfo
|
|
|
|
set-CreateProcess-args-lpProcessInformation
|
2008-01-25 01:21:27 -05:00
|
|
|
set-CreateProcess-args-bInheritHandles
|
2007-09-20 18:09:08 -04:00
|
|
|
} \ CreateProcess-args construct ;
|
|
|
|
|
|
|
|
: call-CreateProcess ( CreateProcess-args -- )
|
|
|
|
{
|
|
|
|
CreateProcess-args-lpApplicationName
|
|
|
|
CreateProcess-args-lpCommandLine
|
|
|
|
CreateProcess-args-lpProcessAttributes
|
|
|
|
CreateProcess-args-lpThreadAttributes
|
|
|
|
CreateProcess-args-bInheritHandles
|
|
|
|
CreateProcess-args-dwCreateFlags
|
|
|
|
CreateProcess-args-lpEnvironment
|
|
|
|
CreateProcess-args-lpCurrentDirectory
|
|
|
|
CreateProcess-args-lpStartupInfo
|
|
|
|
CreateProcess-args-lpProcessInformation
|
|
|
|
} get-slots CreateProcess win32-error=0/f ;
|
|
|
|
|
2007-11-24 18:05:34 -05:00
|
|
|
: escape-argument ( str -- newstr )
|
2008-02-03 15:23:14 -05:00
|
|
|
CHAR: \s over member? [ "\"" swap "\"" 3append ] when ;
|
2007-11-24 18:05:34 -05:00
|
|
|
|
2007-11-17 23:06:51 -05:00
|
|
|
: join-arguments ( args -- cmd-line )
|
2008-02-03 15:23:14 -05:00
|
|
|
[ escape-argument ] map " " join ;
|
2007-11-17 23:06:51 -05:00
|
|
|
|
|
|
|
: app-name/cmd-line ( -- app-name cmd-line )
|
2007-11-13 01:10:26 -05:00
|
|
|
+command+ get [
|
2007-11-17 23:06:51 -05:00
|
|
|
" " split1
|
|
|
|
] [
|
|
|
|
+arguments+ get unclip swap join-arguments
|
|
|
|
] if* ;
|
|
|
|
|
|
|
|
: cmd-line ( -- cmd-line )
|
|
|
|
+command+ get [ +arguments+ get join-arguments ] unless* ;
|
|
|
|
|
|
|
|
: fill-lpApplicationName
|
|
|
|
app-name/cmd-line
|
|
|
|
pick set-CreateProcess-args-lpCommandLine
|
|
|
|
over set-CreateProcess-args-lpApplicationName ;
|
|
|
|
|
|
|
|
: fill-lpCommandLine
|
|
|
|
cmd-line over set-CreateProcess-args-lpCommandLine ;
|
2007-11-13 01:10:26 -05:00
|
|
|
|
|
|
|
: fill-dwCreateFlags
|
2007-11-17 23:06:51 -05:00
|
|
|
0
|
|
|
|
pass-environment? [ CREATE_UNICODE_ENVIRONMENT bitor ] when
|
2007-11-21 01:18:46 -05:00
|
|
|
+detached+ get winnt? and [ DETACHED_PROCESS bitor ] when
|
2007-11-13 01:10:26 -05:00
|
|
|
over set-CreateProcess-args-dwCreateFlags ;
|
|
|
|
|
|
|
|
: fill-lpEnvironment
|
|
|
|
pass-environment? [
|
|
|
|
[
|
|
|
|
get-environment
|
2007-12-06 02:28:08 -05:00
|
|
|
[ "=" swap 3append string>u16-alien % ] assoc-each
|
2007-11-13 01:10:26 -05:00
|
|
|
"\0" %
|
2007-12-06 02:28:08 -05:00
|
|
|
] { } make >c-ushort-array
|
2007-11-13 01:10:26 -05:00
|
|
|
over set-CreateProcess-args-lpEnvironment
|
|
|
|
] when ;
|
|
|
|
|
2008-01-25 00:49:03 -05:00
|
|
|
: fill-startup-info
|
|
|
|
dup CreateProcess-args-lpStartupInfo
|
2008-02-14 03:20:20 -05:00
|
|
|
STARTF_USESTDHANDLES swap set-STARTUPINFO-dwFlags ;
|
2008-01-25 00:49:03 -05:00
|
|
|
|
2008-02-14 03:20:20 -05:00
|
|
|
HOOK: fill-redirection io-backend ( args -- args )
|
2008-01-25 00:49:03 -05:00
|
|
|
|
2008-02-14 03:20:20 -05:00
|
|
|
M: windows-ce-io fill-redirection ;
|
2008-01-25 00:49:03 -05:00
|
|
|
|
2007-11-21 01:18:46 -05:00
|
|
|
: make-CreateProcess-args ( -- args )
|
|
|
|
default-CreateProcess-args
|
|
|
|
wince? [ fill-lpApplicationName ] [ fill-lpCommandLine ] if
|
|
|
|
fill-dwCreateFlags
|
2008-02-14 03:20:20 -05:00
|
|
|
fill-lpEnvironment
|
|
|
|
fill-startup-info ;
|
2007-11-21 01:18:46 -05:00
|
|
|
|
2008-02-15 00:29:06 -05:00
|
|
|
M: windows-io current-process-handle ( -- handle )
|
|
|
|
GetCurrentProcessId ;
|
|
|
|
|
2008-01-24 02:27:15 -05:00
|
|
|
M: windows-io run-process* ( desc -- handle )
|
2007-09-20 18:09:08 -04:00
|
|
|
[
|
2008-01-25 00:49:03 -05:00
|
|
|
[
|
2008-02-14 03:20:20 -05:00
|
|
|
make-CreateProcess-args
|
|
|
|
fill-redirection
|
2008-01-25 00:49:03 -05:00
|
|
|
dup call-CreateProcess
|
|
|
|
CreateProcess-args-lpProcessInformation <process>
|
|
|
|
] with-descriptor
|
|
|
|
] with-destructors ;
|
2008-01-24 02:27:15 -05:00
|
|
|
|
2008-02-03 15:23:14 -05:00
|
|
|
M: windows-io kill-process* ( handle -- )
|
|
|
|
PROCESS_INFORMATION-hProcess
|
|
|
|
255 TerminateProcess win32-error=0/f ;
|
|
|
|
|
2008-01-24 02:27:15 -05:00
|
|
|
: dispose-process ( process-information -- )
|
|
|
|
#! From MSDN: "Handles in PROCESS_INFORMATION must be closed
|
|
|
|
#! with CloseHandle when they are no longer needed."
|
|
|
|
dup PROCESS_INFORMATION-hProcess [ CloseHandle drop ] when*
|
|
|
|
PROCESS_INFORMATION-hThread [ CloseHandle drop ] when* ;
|
|
|
|
|
|
|
|
: exit-code ( process -- n )
|
|
|
|
PROCESS_INFORMATION-hProcess
|
|
|
|
0 <ulong> [ GetExitCodeProcess ] keep *ulong
|
|
|
|
swap win32-error=0/f ;
|
|
|
|
|
2008-01-24 03:19:15 -05:00
|
|
|
: process-exited ( process -- )
|
|
|
|
dup process-handle exit-code
|
|
|
|
over process-handle dispose-process
|
|
|
|
swap notify-exit ;
|
2008-01-24 02:27:15 -05:00
|
|
|
|
|
|
|
: wait-for-processes ( processes -- ? )
|
|
|
|
keys dup
|
|
|
|
[ process-handle PROCESS_INFORMATION-hProcess ] map
|
|
|
|
dup length swap >c-void*-array 0 0
|
|
|
|
WaitForMultipleObjects
|
|
|
|
dup HEX: ffffffff = [ win32-error ] when
|
2008-01-24 03:19:15 -05:00
|
|
|
dup WAIT_TIMEOUT = [ 2drop t ] [ swap nth process-exited f ] if ;
|
2008-01-24 02:27:15 -05:00
|
|
|
|
|
|
|
: wait-loop ( -- )
|
|
|
|
processes get dup assoc-empty?
|
2008-02-25 07:31:18 -05:00
|
|
|
[ drop f sleep-until ]
|
|
|
|
[ wait-for-processes [ 100 sleep ] when ] if ;
|
2008-02-21 20:12:55 -05:00
|
|
|
|
|
|
|
SYMBOL: wait-thread
|
2008-01-24 02:27:15 -05:00
|
|
|
|
|
|
|
: start-wait-thread ( -- )
|
2008-02-21 20:12:55 -05:00
|
|
|
[ wait-loop t ] "Process wait" spawn-server
|
|
|
|
wait-thread set-global ;
|
|
|
|
|
|
|
|
M: windows-io register-process
|
|
|
|
drop wait-thread get-global interrupt ;
|
2008-01-24 03:19:15 -05:00
|
|
|
|
|
|
|
[ start-wait-thread ] "io.windows.launcher" add-init-hook
|