1 /* Process support for GNU Emacs on the Microsoft Windows API.
2 Copyright (C) 1992, 1995, 1999-2012 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 Drew Bliss Oct 14, 1993
21 Adapted from alarm.c by Tim Fleehart
33 /* must include CRT headers *before* config.h */
44 /* This definition is missing from mingw32 headers. */
45 extern BOOL WINAPI
IsValidLocale (LCID
, DWORD
);
48 #ifdef HAVE_LANGINFO_CODESET
55 #include "w32common.h"
60 #include "syssignal.h"
62 #include "dispextern.h" /* for xstrcasecmp */
65 #define RVA_TO_PTR(var,section,filedata) \
66 ((void *)((section)->PointerToRawData \
67 + ((DWORD_PTR)(var) - (section)->VirtualAddress) \
68 + (filedata).file_base))
70 Lisp_Object Qhigh
, Qlow
;
72 /* Signal handlers...SIG_DFL == 0 so this is initialized correctly. */
73 static signal_handler sig_handlers
[NSIG
];
75 static sigset_t sig_mask
;
77 static CRITICAL_SECTION crit_sig
;
79 /* Improve on the CRT 'signal' implementation so that we could record
80 the SIGCHLD handler and fake interval timers. */
82 sys_signal (int sig
, signal_handler handler
)
86 /* SIGCHLD is needed for supporting subprocesses, see sys_kill
87 below. SIGALRM and SIGPROF are used by setitimer. All the
88 others are the only ones supported by the MS runtime. */
89 if (!(sig
== SIGCHLD
|| sig
== SIGSEGV
|| sig
== SIGILL
90 || sig
== SIGFPE
|| sig
== SIGABRT
|| sig
== SIGTERM
91 || sig
== SIGALRM
|| sig
== SIGPROF
))
96 old
= sig_handlers
[sig
];
97 /* SIGABRT is treated specially because w32.c installs term_ntproc
98 as its handler, so we don't want to override that afterwards.
99 Aborting Emacs works specially anyway: either by calling
100 emacs_abort directly or through terminate_due_to_signal, which
101 calls emacs_abort through emacs_raise. */
102 if (!(sig
== SIGABRT
&& old
== term_ntproc
))
104 sig_handlers
[sig
] = handler
;
105 if (!(sig
== SIGCHLD
|| sig
== SIGALRM
|| sig
== SIGPROF
))
106 signal (sig
, handler
);
111 /* Emulate sigaction. */
113 sigaction (int sig
, const struct sigaction
*act
, struct sigaction
*oact
)
115 signal_handler old
= SIG_DFL
;
119 old
= sys_signal (sig
, act
->sa_handler
);
121 old
= sig_handlers
[sig
];
130 oact
->sa_handler
= old
;
132 oact
->sa_mask
= empty_mask
;
137 /* Emulate signal sets and blocking of signals used by timers. */
140 sigemptyset (sigset_t
*set
)
147 sigaddset (sigset_t
*set
, int signo
)
154 if (signo
< 0 || signo
>= NSIG
)
160 *set
|= (1U << signo
);
166 sigfillset (sigset_t
*set
)
179 sigprocmask (int how
, const sigset_t
*set
, sigset_t
*oset
)
181 if (!(how
== SIG_BLOCK
|| how
== SIG_UNBLOCK
|| how
== SIG_SETMASK
))
202 /* FIXME: Catch signals that are blocked and reissue them when
203 they are unblocked. Important for SIGALRM and SIGPROF only. */
212 pthread_sigmask (int how
, const sigset_t
*set
, sigset_t
*oset
)
214 if (sigprocmask (how
, set
, oset
) == -1)
220 sigismember (const sigset_t
*set
, int signo
)
222 if (signo
< 0 || signo
>= NSIG
)
227 if (signo
> sizeof (*set
) * BITS_PER_CHAR
)
230 return (*set
& (1U << signo
)) != 0;
234 setpgrp (int pid
, int gid
)
239 /* Emulations of interval timers.
241 Limitations: only ITIMER_REAL and ITIMER_PROF are supported.
243 Implementation: a separate thread is started for each timer type,
244 the thread calls the appropriate signal handler when the timer
245 expires, after stopping the thread which installed the timer. */
248 volatile ULONGLONG expire
;
249 volatile ULONGLONG reload
;
250 volatile int terminate
;
252 HANDLE caller_thread
;
256 static ULONGLONG ticks_now
;
257 static struct itimer_data real_itimer
, prof_itimer
;
258 static ULONGLONG clocks_min
;
259 /* If non-zero, itimers are disabled. Used during shutdown, when we
260 delete the critical sections used by the timer threads. */
261 static int disable_itimers
;
263 static CRITICAL_SECTION crit_real
, crit_prof
;
265 /* GetThreadTimes is not available on Windows 9X and possibly also on 2K. */
266 typedef BOOL (WINAPI
*GetThreadTimes_Proc
) (
268 LPFILETIME lpCreationTime
,
269 LPFILETIME lpExitTime
,
270 LPFILETIME lpKernelTime
,
271 LPFILETIME lpUserTime
);
273 static GetThreadTimes_Proc s_pfn_Get_Thread_Times
;
275 /* Return a suitable time value, in 1-ms units, for THREAD, a handle
276 to a thread. If THREAD is NULL or an invalid handle, return the
277 current wall-clock time since January 1, 1601 (UTC). Otherwise,
278 return the sum of kernel and user times used by THREAD since it was
279 created, plus its creation time. */
281 w32_get_timer_time (HANDLE thread
)
284 int use_system_time
= 1;
286 if (thread
&& thread
!= INVALID_HANDLE_VALUE
287 && s_pfn_Get_Thread_Times
!= NULL
)
289 FILETIME creation_ftime
, exit_ftime
, kernel_ftime
, user_ftime
;
290 ULARGE_INTEGER temp_creation
, temp_kernel
, temp_user
;
292 if (s_pfn_Get_Thread_Times (thread
, &creation_ftime
, &exit_ftime
,
293 &kernel_ftime
, &user_ftime
))
296 temp_creation
.LowPart
= creation_ftime
.dwLowDateTime
;
297 temp_creation
.HighPart
= creation_ftime
.dwHighDateTime
;
298 temp_kernel
.LowPart
= kernel_ftime
.dwLowDateTime
;
299 temp_kernel
.HighPart
= kernel_ftime
.dwHighDateTime
;
300 temp_user
.LowPart
= user_ftime
.dwLowDateTime
;
301 temp_user
.HighPart
= user_ftime
.dwHighDateTime
;
303 temp_creation
.QuadPart
/ 10000 + temp_kernel
.QuadPart
/ 10000
304 + temp_user
.QuadPart
/ 10000;
307 DebPrint (("GetThreadTimes failed with error code %lu\n",
313 FILETIME current_ftime
;
316 GetSystemTimeAsFileTime (¤t_ftime
);
318 temp
.LowPart
= current_ftime
.dwLowDateTime
;
319 temp
.HighPart
= current_ftime
.dwHighDateTime
;
321 retval
= temp
.QuadPart
/ 10000;
327 #define MAX_SINGLE_SLEEP 30
329 /* Thread function for a timer thread. */
331 timer_loop (LPVOID arg
)
333 struct itimer_data
*itimer
= (struct itimer_data
*)arg
;
334 int which
= itimer
->type
;
335 int sig
= (which
== ITIMER_REAL
) ? SIGALRM
: SIGPROF
;
336 CRITICAL_SECTION
*crit
= (which
== ITIMER_REAL
) ? &crit_real
: &crit_prof
;
337 const DWORD max_sleep
= MAX_SINGLE_SLEEP
* 1000 / CLOCKS_PER_SEC
;
338 HANDLE hth
= (which
== ITIMER_REAL
) ? NULL
: itimer
->caller_thread
;
343 signal_handler handler
;
344 ULONGLONG now
, expire
, reload
;
346 /* Load new values if requested by setitimer. */
347 EnterCriticalSection (crit
);
348 expire
= itimer
->expire
;
349 reload
= itimer
->reload
;
350 LeaveCriticalSection (crit
);
351 if (itimer
->terminate
)
361 if (expire
> (now
= w32_get_timer_time (hth
)))
362 sleep_time
= expire
- now
;
365 /* Don't sleep too long at a time, to be able to see the
366 termination flag without too long a delay. */
367 while (sleep_time
> max_sleep
)
369 if (itimer
->terminate
)
372 EnterCriticalSection (crit
);
373 expire
= itimer
->expire
;
374 LeaveCriticalSection (crit
);
376 (expire
> (now
= w32_get_timer_time (hth
))) ? expire
- now
: 0;
378 if (itimer
->terminate
)
382 Sleep (sleep_time
* 1000 / CLOCKS_PER_SEC
);
383 /* Always sleep past the expiration time, to make sure we
384 never call the handler _before_ the expiration time,
385 always slightly after it. Sleep(5) makes sure we don't
386 hog the CPU by calling 'w32_get_timer_time' with high
387 frequency, and also let other threads work. */
388 while (w32_get_timer_time (hth
) < expire
)
392 EnterCriticalSection (crit
);
393 expire
= itimer
->expire
;
394 LeaveCriticalSection (crit
);
399 handler
= sig_handlers
[sig
];
400 if (!(handler
== SIG_DFL
|| handler
== SIG_IGN
|| handler
== SIG_ERR
)
401 /* FIXME: Don't ignore masked signals. Instead, record that
402 they happened and reissue them when the signal is
404 && !sigismember (&sig_mask
, sig
)
405 /* Simulate masking of SIGALRM and SIGPROF when processing
407 && !fatal_error_in_progress
408 && itimer
->caller_thread
)
410 /* Simulate a signal delivered to the thread which installed
411 the timer, by suspending that thread while the handler
413 DWORD result
= SuspendThread (itimer
->caller_thread
);
415 if (result
== (DWORD
)-1)
419 ResumeThread (itimer
->caller_thread
);
422 /* Update expiration time and loop. */
423 EnterCriticalSection (crit
);
424 expire
= itimer
->expire
;
427 LeaveCriticalSection (crit
);
430 reload
= itimer
->reload
;
433 now
= w32_get_timer_time (hth
);
436 ULONGLONG lag
= now
- expire
;
438 /* If we missed some opportunities (presumably while
439 sleeping or while the signal handler ran), skip
442 expire
= now
- (lag
% reload
);
448 expire
= 0; /* become idle */
449 itimer
->expire
= expire
;
450 LeaveCriticalSection (crit
);
456 stop_timer_thread (int which
)
458 struct itimer_data
*itimer
=
459 (which
== ITIMER_REAL
) ? &real_itimer
: &prof_itimer
;
461 DWORD err
, exit_code
= 255;
464 /* Signal the thread that it should terminate. */
465 itimer
->terminate
= 1;
467 if (itimer
->timer_thread
== NULL
)
470 /* Wait for the timer thread to terminate voluntarily, then kill it
471 if it doesn't. This loop waits twice more than the maximum
472 amount of time a timer thread sleeps, see above. */
473 for (i
= 0; i
< MAX_SINGLE_SLEEP
/ 5; i
++)
475 if (!((status
= GetExitCodeThread (itimer
->timer_thread
, &exit_code
))
476 && exit_code
== STILL_ACTIVE
))
480 if ((status
== FALSE
&& (err
= GetLastError ()) == ERROR_INVALID_HANDLE
)
481 || exit_code
== STILL_ACTIVE
)
483 if (!(status
== FALSE
&& err
== ERROR_INVALID_HANDLE
))
484 TerminateThread (itimer
->timer_thread
, 0);
488 CloseHandle (itimer
->timer_thread
);
489 itimer
->timer_thread
= NULL
;
490 if (itimer
->caller_thread
)
492 CloseHandle (itimer
->caller_thread
);
493 itimer
->caller_thread
= NULL
;
497 /* This is called at shutdown time from term_ntproc. */
501 if (real_itimer
.timer_thread
)
502 stop_timer_thread (ITIMER_REAL
);
503 if (prof_itimer
.timer_thread
)
504 stop_timer_thread (ITIMER_PROF
);
506 /* We are going to delete the critical sections, so timers cannot
510 DeleteCriticalSection (&crit_real
);
511 DeleteCriticalSection (&crit_prof
);
512 DeleteCriticalSection (&crit_sig
);
515 /* This is called at initialization time from init_ntproc. */
519 /* GetThreadTimes is not avaiulable on all versions of Windows, so
520 need to probe for its availability dynamically, and call it
521 through a pointer. */
522 s_pfn_Get_Thread_Times
= NULL
; /* in case dumped Emacs comes with a value */
523 if (os_subtype
!= OS_9X
)
524 s_pfn_Get_Thread_Times
=
525 (GetThreadTimes_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
528 /* Make sure we start with zeroed out itimer structures, since
529 dumping may have left there traces of threads long dead. */
530 memset (&real_itimer
, 0, sizeof real_itimer
);
531 memset (&prof_itimer
, 0, sizeof prof_itimer
);
533 InitializeCriticalSection (&crit_real
);
534 InitializeCriticalSection (&crit_prof
);
535 InitializeCriticalSection (&crit_sig
);
541 start_timer_thread (int which
)
544 struct itimer_data
*itimer
=
545 (which
== ITIMER_REAL
) ? &real_itimer
: &prof_itimer
;
547 if (itimer
->timer_thread
548 && GetExitCodeThread (itimer
->timer_thread
, &exit_code
)
549 && exit_code
== STILL_ACTIVE
)
552 /* Start a new thread. */
553 itimer
->terminate
= 0;
554 itimer
->type
= which
;
555 /* Request that no more than 64KB of stack be reserved for this
556 thread, to avoid reserving too much memory, which would get in
557 the way of threads we start to wait for subprocesses. See also
559 itimer
->timer_thread
= CreateThread (NULL
, 64 * 1024, timer_loop
,
560 (void *)itimer
, 0x00010000, NULL
);
562 if (!itimer
->timer_thread
)
564 CloseHandle (itimer
->caller_thread
);
565 itimer
->caller_thread
= NULL
;
570 /* This is needed to make sure that the timer thread running for
571 profiling gets CPU as soon as the Sleep call terminates. */
572 if (which
== ITIMER_PROF
)
573 SetThreadPriority (itimer
->caller_thread
, THREAD_PRIORITY_TIME_CRITICAL
);
578 /* Most of the code of getitimer and setitimer (but not of their
579 subroutines) was shamelessly stolen from itimer.c in the DJGPP
580 library, see www.delorie.com/djgpp. */
582 getitimer (int which
, struct itimerval
*value
)
584 volatile ULONGLONG
*t_expire
;
585 volatile ULONGLONG
*t_reload
;
586 ULONGLONG expire
, reload
;
588 CRITICAL_SECTION
*crit
;
589 struct itimer_data
*itimer
;
600 if (which
!= ITIMER_REAL
&& which
!= ITIMER_PROF
)
606 itimer
= (which
== ITIMER_REAL
) ? &real_itimer
: &prof_itimer
;
608 if (!DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
609 GetCurrentProcess (), &itimer
->caller_thread
, 0,
610 FALSE
, DUPLICATE_SAME_ACCESS
))
616 ticks_now
= w32_get_timer_time ((which
== ITIMER_REAL
)
618 : itimer
->caller_thread
);
620 t_expire
= &itimer
->expire
;
621 t_reload
= &itimer
->reload
;
622 crit
= (which
== ITIMER_REAL
) ? &crit_real
: &crit_prof
;
624 EnterCriticalSection (crit
);
627 LeaveCriticalSection (crit
);
632 value
->it_value
.tv_sec
= expire
/ CLOCKS_PER_SEC
;
633 usecs
= (expire
% CLOCKS_PER_SEC
) * (__int64
)1000000 / CLOCKS_PER_SEC
;
634 value
->it_value
.tv_usec
= usecs
;
635 value
->it_interval
.tv_sec
= reload
/ CLOCKS_PER_SEC
;
636 usecs
= (reload
% CLOCKS_PER_SEC
) * (__int64
)1000000 / CLOCKS_PER_SEC
;
637 value
->it_interval
.tv_usec
= usecs
;
643 setitimer(int which
, struct itimerval
*value
, struct itimerval
*ovalue
)
645 volatile ULONGLONG
*t_expire
, *t_reload
;
646 ULONGLONG expire
, reload
, expire_old
, reload_old
;
648 CRITICAL_SECTION
*crit
;
649 struct itimerval tem
, *ptem
;
654 /* Posix systems expect timer values smaller than the resolution of
655 the system clock be rounded up to the clock resolution. First
656 time we are called, measure the clock tick resolution. */
661 for (t1
= w32_get_timer_time (NULL
);
662 (t2
= w32_get_timer_time (NULL
)) == t1
; )
664 clocks_min
= t2
- t1
;
672 if (getitimer (which
, ptem
)) /* also sets ticks_now */
673 return -1; /* errno already set */
676 (which
== ITIMER_REAL
) ? &real_itimer
.expire
: &prof_itimer
.expire
;
678 (which
== ITIMER_REAL
) ? &real_itimer
.reload
: &prof_itimer
.reload
;
680 crit
= (which
== ITIMER_REAL
) ? &crit_real
: &crit_prof
;
683 || (value
->it_value
.tv_sec
== 0 && value
->it_value
.tv_usec
== 0))
685 EnterCriticalSection (crit
);
686 /* Disable the timer. */
689 LeaveCriticalSection (crit
);
693 reload
= value
->it_interval
.tv_sec
* CLOCKS_PER_SEC
;
695 usecs
= value
->it_interval
.tv_usec
;
696 if (value
->it_interval
.tv_sec
== 0
697 && usecs
&& usecs
* CLOCKS_PER_SEC
< clocks_min
* 1000000)
701 usecs
*= CLOCKS_PER_SEC
;
702 reload
+= usecs
/ 1000000;
705 expire
= value
->it_value
.tv_sec
* CLOCKS_PER_SEC
;
706 usecs
= value
->it_value
.tv_usec
;
707 if (value
->it_value
.tv_sec
== 0
708 && usecs
* CLOCKS_PER_SEC
< clocks_min
* 1000000)
712 usecs
*= CLOCKS_PER_SEC
;
713 expire
+= usecs
/ 1000000;
718 EnterCriticalSection (crit
);
719 expire_old
= *t_expire
;
720 reload_old
= *t_reload
;
721 if (!(expire
== expire_old
&& reload
== reload_old
))
726 LeaveCriticalSection (crit
);
728 return start_timer_thread (which
);
734 #ifdef HAVE_SETITIMER
735 struct itimerval new_values
, old_values
;
737 new_values
.it_value
.tv_sec
= seconds
;
738 new_values
.it_value
.tv_usec
= 0;
739 new_values
.it_interval
.tv_sec
= new_values
.it_interval
.tv_usec
= 0;
741 if (setitimer (ITIMER_REAL
, &new_values
, &old_values
) < 0)
743 return old_values
.it_value
.tv_sec
;
749 /* Defined in <process.h> which conflicts with the local copy */
752 /* Child process management list. */
753 int child_proc_count
= 0;
754 child_process child_procs
[ MAX_CHILDREN
];
755 child_process
*dead_child
= NULL
;
757 static DWORD WINAPI
reader_thread (void *arg
);
759 /* Find an unused process slot. */
766 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
767 if (!CHILD_ACTIVE (cp
))
769 if (child_proc_count
== MAX_CHILDREN
)
771 cp
= &child_procs
[child_proc_count
++];
774 memset (cp
, 0, sizeof (*cp
));
777 cp
->procinfo
.hProcess
= NULL
;
778 cp
->status
= STATUS_READ_ERROR
;
780 /* use manual reset event so that select() will function properly */
781 cp
->char_avail
= CreateEvent (NULL
, TRUE
, FALSE
, NULL
);
784 cp
->char_consumed
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
785 if (cp
->char_consumed
)
787 /* The 0x00010000 flag is STACK_SIZE_PARAM_IS_A_RESERVATION.
788 It means that the 64K stack we are requesting in the 2nd
789 argument is how much memory should be reserved for the
790 stack. If we don't use this flag, the memory requested
791 by the 2nd argument is the amount actually _committed_,
792 but Windows reserves 8MB of memory for each thread's
793 stack. (The 8MB figure comes from the -stack
794 command-line argument we pass to the linker when building
795 Emacs, but that's because we need a large stack for
796 Emacs's main thread.) Since we request 2GB of reserved
797 memory at startup (see w32heap.c), which is close to the
798 maximum memory available for a 32-bit process on Windows,
799 the 8MB reservation for each thread causes failures in
800 starting subprocesses, because we create a thread running
801 reader_thread for each subprocess. As 8MB of stack is
802 way too much for reader_thread, forcing Windows to
803 reserve less wins the day. */
804 cp
->thrd
= CreateThread (NULL
, 64 * 1024, reader_thread
, cp
,
815 delete_child (child_process
*cp
)
819 /* Should not be deleting a child that is still needed. */
820 for (i
= 0; i
< MAXDESC
; i
++)
821 if (fd_info
[i
].cp
== cp
)
824 if (!CHILD_ACTIVE (cp
))
827 /* reap thread if necessary */
832 if (GetExitCodeThread (cp
->thrd
, &rc
) && rc
== STILL_ACTIVE
)
834 /* let the thread exit cleanly if possible */
835 cp
->status
= STATUS_READ_ERROR
;
836 SetEvent (cp
->char_consumed
);
838 /* We used to forcibly terminate the thread here, but it
839 is normally unnecessary, and in abnormal cases, the worst that
840 will happen is we have an extra idle thread hanging around
841 waiting for the zombie process. */
842 if (WaitForSingleObject (cp
->thrd
, 1000) != WAIT_OBJECT_0
)
844 DebPrint (("delete_child.WaitForSingleObject (thread) failed "
845 "with %lu for fd %ld\n", GetLastError (), cp
->fd
));
846 TerminateThread (cp
->thrd
, 0);
850 CloseHandle (cp
->thrd
);
855 CloseHandle (cp
->char_avail
);
856 cp
->char_avail
= NULL
;
858 if (cp
->char_consumed
)
860 CloseHandle (cp
->char_consumed
);
861 cp
->char_consumed
= NULL
;
864 /* update child_proc_count (highest numbered slot in use plus one) */
865 if (cp
== child_procs
+ child_proc_count
- 1)
867 for (i
= child_proc_count
-1; i
>= 0; i
--)
868 if (CHILD_ACTIVE (&child_procs
[i
]))
870 child_proc_count
= i
+ 1;
875 child_proc_count
= 0;
878 /* Find a child by pid. */
879 static child_process
*
880 find_child_pid (DWORD pid
)
884 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
885 if (CHILD_ACTIVE (cp
) && pid
== cp
->pid
)
891 /* Thread proc for child process and socket reader threads. Each thread
892 is normally blocked until woken by select() to check for input by
893 reading one char. When the read completes, char_avail is signaled
894 to wake up the select emulator and the thread blocks itself again. */
896 reader_thread (void *arg
)
901 cp
= (child_process
*)arg
;
903 /* We have to wait for the go-ahead before we can start */
905 || WaitForSingleObject (cp
->char_consumed
, INFINITE
) != WAIT_OBJECT_0
913 if (fd_info
[cp
->fd
].flags
& FILE_LISTEN
)
914 rc
= _sys_wait_accept (cp
->fd
);
916 rc
= _sys_read_ahead (cp
->fd
);
918 /* The name char_avail is a misnomer - it really just means the
919 read-ahead has completed, whether successfully or not. */
920 if (!SetEvent (cp
->char_avail
))
922 DebPrint (("reader_thread.SetEvent failed with %lu for fd %ld\n",
923 GetLastError (), cp
->fd
));
927 if (rc
== STATUS_READ_ERROR
)
930 /* If the read died, the child has died so let the thread die */
931 if (rc
== STATUS_READ_FAILED
)
934 /* Wait until our input is acknowledged before reading again */
935 if (WaitForSingleObject (cp
->char_consumed
, INFINITE
) != WAIT_OBJECT_0
)
937 DebPrint (("reader_thread.WaitForSingleObject failed with "
938 "%lu for fd %ld\n", GetLastError (), cp
->fd
));
945 /* To avoid Emacs changing directory, we just record here the directory
946 the new process should start in. This is set just before calling
947 sys_spawnve, and is not generally valid at any other time. */
948 static char * process_dir
;
951 create_child (char *exe
, char *cmdline
, char *env
, int is_gui_app
,
952 int * pPid
, child_process
*cp
)
955 SECURITY_ATTRIBUTES sec_attrs
;
957 SECURITY_DESCRIPTOR sec_desc
;
960 char dir
[ MAXPATHLEN
];
962 if (cp
== NULL
) emacs_abort ();
964 memset (&start
, 0, sizeof (start
));
965 start
.cb
= sizeof (start
);
968 if (NILP (Vw32_start_process_show_window
) && !is_gui_app
)
969 start
.dwFlags
= STARTF_USESTDHANDLES
| STARTF_USESHOWWINDOW
;
971 start
.dwFlags
= STARTF_USESTDHANDLES
;
972 start
.wShowWindow
= SW_HIDE
;
974 start
.hStdInput
= GetStdHandle (STD_INPUT_HANDLE
);
975 start
.hStdOutput
= GetStdHandle (STD_OUTPUT_HANDLE
);
976 start
.hStdError
= GetStdHandle (STD_ERROR_HANDLE
);
977 #endif /* HAVE_NTGUI */
980 /* Explicitly specify no security */
981 if (!InitializeSecurityDescriptor (&sec_desc
, SECURITY_DESCRIPTOR_REVISION
))
983 if (!SetSecurityDescriptorDacl (&sec_desc
, TRUE
, NULL
, FALSE
))
986 sec_attrs
.nLength
= sizeof (sec_attrs
);
987 sec_attrs
.lpSecurityDescriptor
= NULL
/* &sec_desc */;
988 sec_attrs
.bInheritHandle
= FALSE
;
990 strcpy (dir
, process_dir
);
991 unixtodos_filename (dir
);
993 flags
= (!NILP (Vw32_start_process_share_console
)
994 ? CREATE_NEW_PROCESS_GROUP
995 : CREATE_NEW_CONSOLE
);
996 if (NILP (Vw32_start_process_inherit_error_mode
))
997 flags
|= CREATE_DEFAULT_ERROR_MODE
;
998 if (!CreateProcess (exe
, cmdline
, &sec_attrs
, NULL
, TRUE
,
999 flags
, env
, dir
, &start
, &cp
->procinfo
))
1002 cp
->pid
= (int) cp
->procinfo
.dwProcessId
;
1004 /* Hack for Windows 95, which assigns large (ie negative) pids */
1008 /* pid must fit in a Lisp_Int */
1009 cp
->pid
= cp
->pid
& INTMASK
;
1016 DebPrint (("create_child.CreateProcess failed: %ld\n", GetLastError ()););
1020 /* create_child doesn't know what emacs' file handle will be for waiting
1021 on output from the child, so we need to make this additional call
1022 to register the handle with the process
1023 This way the select emulator knows how to match file handles with
1024 entries in child_procs. */
1026 register_child (int pid
, int fd
)
1030 cp
= find_child_pid (pid
);
1033 DebPrint (("register_child unable to find pid %lu\n", pid
));
1038 DebPrint (("register_child registered fd %d with pid %lu\n", fd
, pid
));
1043 /* thread is initially blocked until select is called; set status so
1044 that select will release thread */
1045 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
1047 /* attach child_process to fd_info */
1048 if (fd_info
[fd
].cp
!= NULL
)
1050 DebPrint (("register_child: fd_info[%d] apparently in use!\n", fd
));
1054 fd_info
[fd
].cp
= cp
;
1057 /* When a process dies its pipe will break so the reader thread will
1058 signal failure to the select emulator.
1059 The select emulator then calls this routine to clean up.
1060 Since the thread signaled failure we can assume it is exiting. */
1062 reap_subprocess (child_process
*cp
)
1064 if (cp
->procinfo
.hProcess
)
1066 /* Reap the process */
1068 /* Process should have already died before we are called. */
1069 if (WaitForSingleObject (cp
->procinfo
.hProcess
, 0) != WAIT_OBJECT_0
)
1070 DebPrint (("reap_subprocess: child fpr fd %d has not died yet!", cp
->fd
));
1072 CloseHandle (cp
->procinfo
.hProcess
);
1073 cp
->procinfo
.hProcess
= NULL
;
1074 CloseHandle (cp
->procinfo
.hThread
);
1075 cp
->procinfo
.hThread
= NULL
;
1078 /* For asynchronous children, the child_proc resources will be freed
1079 when the last pipe read descriptor is closed; for synchronous
1080 children, we must explicitly free the resources now because
1081 register_child has not been called. */
1086 /* Wait for any of our existing child processes to die
1087 When it does, close its handle
1088 Return the pid and fill in the status if non-NULL. */
1091 sys_wait (int *status
)
1093 DWORD active
, retval
;
1096 child_process
*cp
, *cps
[MAX_CHILDREN
];
1097 HANDLE wait_hnd
[MAX_CHILDREN
];
1100 if (dead_child
!= NULL
)
1102 /* We want to wait for a specific child */
1103 wait_hnd
[nh
] = dead_child
->procinfo
.hProcess
;
1104 cps
[nh
] = dead_child
;
1105 if (!wait_hnd
[nh
]) emacs_abort ();
1112 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
1113 /* some child_procs might be sockets; ignore them */
1114 if (CHILD_ACTIVE (cp
) && cp
->procinfo
.hProcess
1115 && (cp
->fd
< 0 || (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) != 0))
1117 wait_hnd
[nh
] = cp
->procinfo
.hProcess
;
1125 /* Nothing to wait on, so fail */
1132 /* Check for quit about once a second. */
1134 active
= WaitForMultipleObjects (nh
, wait_hnd
, FALSE
, 1000);
1135 } while (active
== WAIT_TIMEOUT
);
1137 if (active
== WAIT_FAILED
)
1142 else if (active
>= WAIT_OBJECT_0
1143 && active
< WAIT_OBJECT_0
+MAXIMUM_WAIT_OBJECTS
)
1145 active
-= WAIT_OBJECT_0
;
1147 else if (active
>= WAIT_ABANDONED_0
1148 && active
< WAIT_ABANDONED_0
+MAXIMUM_WAIT_OBJECTS
)
1150 active
-= WAIT_ABANDONED_0
;
1156 if (!GetExitCodeProcess (wait_hnd
[active
], &retval
))
1158 DebPrint (("Wait.GetExitCodeProcess failed with %lu\n",
1162 if (retval
== STILL_ACTIVE
)
1164 /* Should never happen */
1165 DebPrint (("Wait.WaitForMultipleObjects returned an active process\n"));
1170 /* Massage the exit code from the process to match the format expected
1171 by the WIFSTOPPED et al macros in syswait.h. Only WIFSIGNALED and
1172 WIFEXITED are supported; WIFSTOPPED doesn't make sense under NT. */
1174 if (retval
== STATUS_CONTROL_C_EXIT
)
1182 DebPrint (("Wait signaled with process pid %d\n", cp
->pid
));
1189 else if (synch_process_alive
)
1191 synch_process_alive
= 0;
1193 /* Report the status of the synchronous process. */
1194 if (WIFEXITED (retval
))
1195 synch_process_retcode
= WEXITSTATUS (retval
);
1196 else if (WIFSIGNALED (retval
))
1198 int code
= WTERMSIG (retval
);
1199 const char *signame
;
1201 synchronize_system_messages_locale ();
1202 signame
= strsignal (code
);
1205 signame
= "unknown";
1207 synch_process_death
= signame
;
1210 reap_subprocess (cp
);
1213 reap_subprocess (cp
);
1218 /* Old versions of w32api headers don't have separate 32-bit and
1219 64-bit defines, but the one they have matches the 32-bit variety. */
1220 #ifndef IMAGE_NT_OPTIONAL_HDR32_MAGIC
1221 # define IMAGE_NT_OPTIONAL_HDR32_MAGIC IMAGE_NT_OPTIONAL_HDR_MAGIC
1222 # define IMAGE_OPTIONAL_HEADER32 IMAGE_OPTIONAL_HEADER
1226 w32_executable_type (char * filename
,
1228 int * is_cygnus_app
,
1231 file_data executable
;
1234 /* Default values in case we can't tell for sure. */
1235 *is_dos_app
= FALSE
;
1236 *is_cygnus_app
= FALSE
;
1237 *is_gui_app
= FALSE
;
1239 if (!open_input_file (&executable
, filename
))
1242 p
= strrchr (filename
, '.');
1244 /* We can only identify DOS .com programs from the extension. */
1245 if (p
&& xstrcasecmp (p
, ".com") == 0)
1247 else if (p
&& (xstrcasecmp (p
, ".bat") == 0
1248 || xstrcasecmp (p
, ".cmd") == 0))
1250 /* A DOS shell script - it appears that CreateProcess is happy to
1251 accept this (somewhat surprisingly); presumably it looks at
1252 COMSPEC to determine what executable to actually invoke.
1253 Therefore, we have to do the same here as well. */
1254 /* Actually, I think it uses the program association for that
1255 extension, which is defined in the registry. */
1256 p
= egetenv ("COMSPEC");
1258 w32_executable_type (p
, is_dos_app
, is_cygnus_app
, is_gui_app
);
1262 /* Look for DOS .exe signature - if found, we must also check that
1263 it isn't really a 16- or 32-bit Windows exe, since both formats
1264 start with a DOS program stub. Note that 16-bit Windows
1265 executables use the OS/2 1.x format. */
1267 IMAGE_DOS_HEADER
* dos_header
;
1268 IMAGE_NT_HEADERS
* nt_header
;
1270 dos_header
= (PIMAGE_DOS_HEADER
) executable
.file_base
;
1271 if (dos_header
->e_magic
!= IMAGE_DOS_SIGNATURE
)
1274 nt_header
= (PIMAGE_NT_HEADERS
) ((unsigned char *) dos_header
+ dos_header
->e_lfanew
);
1276 if ((char *) nt_header
> (char *) dos_header
+ executable
.size
)
1278 /* Some dos headers (pkunzip) have bogus e_lfanew fields. */
1281 else if (nt_header
->Signature
!= IMAGE_NT_SIGNATURE
1282 && LOWORD (nt_header
->Signature
) != IMAGE_OS2_SIGNATURE
)
1286 else if (nt_header
->Signature
== IMAGE_NT_SIGNATURE
)
1288 IMAGE_DATA_DIRECTORY
*data_dir
= NULL
;
1289 if (nt_header
->OptionalHeader
.Magic
== IMAGE_NT_OPTIONAL_HDR32_MAGIC
)
1291 /* Ensure we are using the 32 bit structure. */
1292 IMAGE_OPTIONAL_HEADER32
*opt
1293 = (IMAGE_OPTIONAL_HEADER32
*) &(nt_header
->OptionalHeader
);
1294 data_dir
= opt
->DataDirectory
;
1295 *is_gui_app
= (opt
->Subsystem
== IMAGE_SUBSYSTEM_WINDOWS_GUI
);
1297 /* MingW 3.12 has the required 64 bit structs, but in case older
1298 versions don't, only check 64 bit exes if we know how. */
1299 #ifdef IMAGE_NT_OPTIONAL_HDR64_MAGIC
1300 else if (nt_header
->OptionalHeader
.Magic
1301 == IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
1303 IMAGE_OPTIONAL_HEADER64
*opt
1304 = (IMAGE_OPTIONAL_HEADER64
*) &(nt_header
->OptionalHeader
);
1305 data_dir
= opt
->DataDirectory
;
1306 *is_gui_app
= (opt
->Subsystem
== IMAGE_SUBSYSTEM_WINDOWS_GUI
);
1311 /* Look for cygwin.dll in DLL import list. */
1312 IMAGE_DATA_DIRECTORY import_dir
=
1313 data_dir
[IMAGE_DIRECTORY_ENTRY_IMPORT
];
1314 IMAGE_IMPORT_DESCRIPTOR
* imports
;
1315 IMAGE_SECTION_HEADER
* section
;
1317 section
= rva_to_section (import_dir
.VirtualAddress
, nt_header
);
1318 imports
= RVA_TO_PTR (import_dir
.VirtualAddress
, section
,
1321 for ( ; imports
->Name
; imports
++)
1323 char * dllname
= RVA_TO_PTR (imports
->Name
, section
,
1326 /* The exact name of the cygwin dll has changed with
1327 various releases, but hopefully this will be reasonably
1329 if (strncmp (dllname
, "cygwin", 6) == 0)
1331 *is_cygnus_app
= TRUE
;
1340 close_file_data (&executable
);
1344 compare_env (const void *strp1
, const void *strp2
)
1346 const char *str1
= *(const char **)strp1
, *str2
= *(const char **)strp2
;
1348 while (*str1
&& *str2
&& *str1
!= '=' && *str2
!= '=')
1350 /* Sort order in command.com/cmd.exe is based on uppercasing
1351 names, so do the same here. */
1352 if (toupper (*str1
) > toupper (*str2
))
1354 else if (toupper (*str1
) < toupper (*str2
))
1359 if (*str1
== '=' && *str2
== '=')
1361 else if (*str1
== '=')
1368 merge_and_sort_env (char **envp1
, char **envp2
, char **new_envp
)
1370 char **optr
, **nptr
;
1382 num
+= optr
- envp2
;
1384 qsort (new_envp
, num
, sizeof (char *), compare_env
);
1389 /* When a new child process is created we need to register it in our list,
1390 so intercept spawn requests. */
1392 sys_spawnve (int mode
, char *cmdname
, char **argv
, char **envp
)
1394 Lisp_Object program
, full
;
1395 char *cmdline
, *env
, *parg
, **targ
;
1399 int is_dos_app
, is_cygnus_app
, is_gui_app
;
1402 /* We pass our process ID to our children by setting up an environment
1403 variable in their environment. */
1404 char ppid_env_var_buffer
[64];
1405 char *extra_env
[] = {ppid_env_var_buffer
, NULL
};
1406 /* These are the characters that cause an argument to need quoting.
1407 Arguments with whitespace characters need quoting to prevent the
1408 argument being split into two or more. Arguments with wildcards
1409 are also quoted, for consistency with posix platforms, where wildcards
1410 are not expanded if we run the program directly without a shell.
1411 Some extra whitespace characters need quoting in Cygwin programs,
1412 so this list is conditionally modified below. */
1413 char *sepchars
= " \t*?";
1415 /* We don't care about the other modes */
1416 if (mode
!= _P_NOWAIT
)
1422 /* Handle executable names without an executable suffix. */
1423 program
= build_string (cmdname
);
1424 if (NILP (Ffile_executable_p (program
)))
1426 struct gcpro gcpro1
;
1430 openp (Vexec_path
, program
, Vexec_suffixes
, &full
, make_number (X_OK
));
1440 /* make sure argv[0] and cmdname are both in DOS format */
1441 cmdname
= SDATA (program
);
1442 unixtodos_filename (cmdname
);
1445 /* Determine whether program is a 16-bit DOS executable, or a 32-bit Windows
1446 executable that is implicitly linked to the Cygnus dll (implying it
1447 was compiled with the Cygnus GNU toolchain and hence relies on
1448 cygwin.dll to parse the command line - we use this to decide how to
1449 escape quote chars in command line args that must be quoted).
1451 Also determine whether it is a GUI app, so that we don't hide its
1452 initial window unless specifically requested. */
1453 w32_executable_type (cmdname
, &is_dos_app
, &is_cygnus_app
, &is_gui_app
);
1455 /* On Windows 95, if cmdname is a DOS app, we invoke a helper
1456 application to start it by specifying the helper app as cmdname,
1457 while leaving the real app name as argv[0]. */
1460 cmdname
= alloca (MAXPATHLEN
);
1461 if (egetenv ("CMDPROXY"))
1462 strcpy (cmdname
, egetenv ("CMDPROXY"));
1465 strcpy (cmdname
, SDATA (Vinvocation_directory
));
1466 strcat (cmdname
, "cmdproxy.exe");
1468 unixtodos_filename (cmdname
);
1471 /* we have to do some conjuring here to put argv and envp into the
1472 form CreateProcess wants... argv needs to be a space separated/null
1473 terminated list of parameters, and envp is a null
1474 separated/double-null terminated list of parameters.
1476 Additionally, zero-length args and args containing whitespace or
1477 quote chars need to be wrapped in double quotes - for this to work,
1478 embedded quotes need to be escaped as well. The aim is to ensure
1479 the child process reconstructs the argv array we start with
1480 exactly, so we treat quotes at the beginning and end of arguments
1483 The w32 GNU-based library from Cygnus doubles quotes to escape
1484 them, while MSVC uses backslash for escaping. (Actually the MSVC
1485 startup code does attempt to recognize doubled quotes and accept
1486 them, but gets it wrong and ends up requiring three quotes to get a
1487 single embedded quote!) So by default we decide whether to use
1488 quote or backslash as the escape character based on whether the
1489 binary is apparently a Cygnus compiled app.
1491 Note that using backslash to escape embedded quotes requires
1492 additional special handling if an embedded quote is already
1493 preceded by backslash, or if an arg requiring quoting ends with
1494 backslash. In such cases, the run of escape characters needs to be
1495 doubled. For consistency, we apply this special handling as long
1496 as the escape character is not quote.
1498 Since we have no idea how large argv and envp are likely to be we
1499 figure out list lengths on the fly and allocate them. */
1501 if (!NILP (Vw32_quote_process_args
))
1504 /* Override escape char by binding w32-quote-process-args to
1505 desired character, or use t for auto-selection. */
1506 if (INTEGERP (Vw32_quote_process_args
))
1507 escape_char
= XINT (Vw32_quote_process_args
);
1509 escape_char
= is_cygnus_app
? '"' : '\\';
1512 /* Cygwin apps needs quoting a bit more often. */
1513 if (escape_char
== '"')
1514 sepchars
= "\r\n\t\f '";
1522 int need_quotes
= 0;
1523 int escape_char_run
= 0;
1529 if (escape_char
== '"' && *p
== '\\')
1530 /* If it's a Cygwin app, \ needs to be escaped. */
1534 /* allow for embedded quotes to be escaped */
1537 /* handle the case where the embedded quote is already escaped */
1538 if (escape_char_run
> 0)
1540 /* To preserve the arg exactly, we need to double the
1541 preceding escape characters (plus adding one to
1542 escape the quote character itself). */
1543 arglen
+= escape_char_run
;
1546 else if (strchr (sepchars
, *p
) != NULL
)
1551 if (*p
== escape_char
&& escape_char
!= '"')
1554 escape_char_run
= 0;
1559 /* handle the case where the arg ends with an escape char - we
1560 must not let the enclosing quote be escaped. */
1561 if (escape_char_run
> 0)
1562 arglen
+= escape_char_run
;
1564 arglen
+= strlen (*targ
++) + 1;
1566 cmdline
= alloca (arglen
);
1572 int need_quotes
= 0;
1580 if ((strchr (sepchars
, *p
) != NULL
) || *p
== '"')
1585 int escape_char_run
= 0;
1591 last
= p
+ strlen (p
) - 1;
1594 /* This version does not escape quotes if they occur at the
1595 beginning or end of the arg - this could lead to incorrect
1596 behavior when the arg itself represents a command line
1597 containing quoted args. I believe this was originally done
1598 as a hack to make some things work, before
1599 `w32-quote-process-args' was added. */
1602 if (*p
== '"' && p
> first
&& p
< last
)
1603 *parg
++ = escape_char
; /* escape embedded quotes */
1611 /* double preceding escape chars if any */
1612 while (escape_char_run
> 0)
1614 *parg
++ = escape_char
;
1617 /* escape all quote chars, even at beginning or end */
1618 *parg
++ = escape_char
;
1620 else if (escape_char
== '"' && *p
== '\\')
1624 if (*p
== escape_char
&& escape_char
!= '"')
1627 escape_char_run
= 0;
1629 /* double escape chars before enclosing quote */
1630 while (escape_char_run
> 0)
1632 *parg
++ = escape_char
;
1640 strcpy (parg
, *targ
);
1641 parg
+= strlen (*targ
);
1651 numenv
= 1; /* for end null */
1654 arglen
+= strlen (*targ
++) + 1;
1657 /* extra env vars... */
1658 sprintf (ppid_env_var_buffer
, "EM_PARENT_PROCESS_ID=%lu",
1659 GetCurrentProcessId ());
1660 arglen
+= strlen (ppid_env_var_buffer
) + 1;
1663 /* merge env passed in and extra env into one, and sort it. */
1664 targ
= (char **) alloca (numenv
* sizeof (char *));
1665 merge_and_sort_env (envp
, extra_env
, targ
);
1667 /* concatenate env entries. */
1668 env
= alloca (arglen
);
1672 strcpy (parg
, *targ
);
1673 parg
+= strlen (*targ
++);
1686 /* Now create the process. */
1687 if (!create_child (cmdname
, cmdline
, env
, is_gui_app
, &pid
, cp
))
1697 /* Emulate the select call
1698 Wait for available input on any of the given rfds, or timeout if
1699 a timeout is given and no input is detected
1700 wfds and efds are not supported and must be NULL.
1702 For simplicity, we detect the death of child processes here and
1703 synchronously call the SIGCHLD handler. Since it is possible for
1704 children to be created without a corresponding pipe handle from which
1705 to read output, we wait separately on the process handles as well as
1706 the char_avail events for each process pipe. We only call
1707 wait/reap_process when the process actually terminates.
1709 To reduce the number of places in which Emacs can be hung such that
1710 C-g is not able to interrupt it, we always wait on interrupt_handle
1711 (which is signaled by the input thread when C-g is detected). If we
1712 detect that we were woken up by C-g, we return -1 with errno set to
1713 EINTR as on Unix. */
1715 /* From w32console.c */
1716 extern HANDLE keyboard_handle
;
1718 /* From w32xfns.c */
1719 extern HANDLE interrupt_handle
;
1721 /* From process.c */
1722 extern int proc_buffered_char
[];
1725 sys_select (int nfds
, SELECT_TYPE
*rfds
, SELECT_TYPE
*wfds
, SELECT_TYPE
*efds
,
1726 EMACS_TIME
*timeout
, void *ignored
)
1729 DWORD timeout_ms
, start_time
;
1732 child_process
*cp
, *cps
[MAX_CHILDREN
];
1733 HANDLE wait_hnd
[MAXDESC
+ MAX_CHILDREN
];
1734 int fdindex
[MAXDESC
]; /* mapping from wait handles back to descriptors */
1737 timeout
? (timeout
->tv_sec
* 1000 + timeout
->tv_nsec
/ 1000000) : INFINITE
;
1739 /* If the descriptor sets are NULL but timeout isn't, then just Sleep. */
1740 if (rfds
== NULL
&& wfds
== NULL
&& efds
== NULL
&& timeout
!= NULL
)
1746 /* Otherwise, we only handle rfds, so fail otherwise. */
1747 if (rfds
== NULL
|| wfds
!= NULL
|| efds
!= NULL
)
1757 /* Always wait on interrupt_handle, to detect C-g (quit). */
1758 wait_hnd
[0] = interrupt_handle
;
1761 /* Build a list of pipe handles to wait on. */
1763 for (i
= 0; i
< nfds
; i
++)
1764 if (FD_ISSET (i
, &orfds
))
1768 if (keyboard_handle
)
1770 /* Handle stdin specially */
1771 wait_hnd
[nh
] = keyboard_handle
;
1776 /* Check for any emacs-generated input in the queue since
1777 it won't be detected in the wait */
1778 if (detect_input_pending ())
1786 /* Child process and socket input */
1790 int current_status
= cp
->status
;
1792 if (current_status
== STATUS_READ_ACKNOWLEDGED
)
1794 /* Tell reader thread which file handle to use. */
1796 /* Wake up the reader thread for this process */
1797 cp
->status
= STATUS_READ_READY
;
1798 if (!SetEvent (cp
->char_consumed
))
1799 DebPrint (("nt_select.SetEvent failed with "
1800 "%lu for fd %ld\n", GetLastError (), i
));
1803 #ifdef CHECK_INTERLOCK
1804 /* slightly crude cross-checking of interlock between threads */
1806 current_status
= cp
->status
;
1807 if (WaitForSingleObject (cp
->char_avail
, 0) == WAIT_OBJECT_0
)
1809 /* char_avail has been signaled, so status (which may
1810 have changed) should indicate read has completed
1811 but has not been acknowledged. */
1812 current_status
= cp
->status
;
1813 if (current_status
!= STATUS_READ_SUCCEEDED
1814 && current_status
!= STATUS_READ_FAILED
)
1815 DebPrint (("char_avail set, but read not completed: status %d\n",
1820 /* char_avail has not been signaled, so status should
1821 indicate that read is in progress; small possibility
1822 that read has completed but event wasn't yet signaled
1823 when we tested it (because a context switch occurred
1824 or if running on separate CPUs). */
1825 if (current_status
!= STATUS_READ_READY
1826 && current_status
!= STATUS_READ_IN_PROGRESS
1827 && current_status
!= STATUS_READ_SUCCEEDED
1828 && current_status
!= STATUS_READ_FAILED
)
1829 DebPrint (("char_avail reset, but read status is bad: %d\n",
1833 wait_hnd
[nh
] = cp
->char_avail
;
1835 if (!wait_hnd
[nh
]) emacs_abort ();
1838 DebPrint (("select waiting on child %d fd %d\n",
1839 cp
-child_procs
, i
));
1844 /* Unable to find something to wait on for this fd, skip */
1846 /* Note that this is not a fatal error, and can in fact
1847 happen in unusual circumstances. Specifically, if
1848 sys_spawnve fails, eg. because the program doesn't
1849 exist, and debug-on-error is t so Fsignal invokes a
1850 nested input loop, then the process output pipe is
1851 still included in input_wait_mask with no child_proc
1852 associated with it. (It is removed when the debugger
1853 exits the nested input loop and the error is thrown.) */
1855 DebPrint (("sys_select: fd %ld is invalid! ignoring\n", i
));
1861 /* Add handles of child processes. */
1863 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
1864 /* Some child_procs might be sockets; ignore them. Also some
1865 children may have died already, but we haven't finished reading
1866 the process output; ignore them too. */
1867 if (CHILD_ACTIVE (cp
) && cp
->procinfo
.hProcess
1869 || (fd_info
[cp
->fd
].flags
& FILE_SEND_SIGCHLD
) == 0
1870 || (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) != 0)
1873 wait_hnd
[nh
+ nc
] = cp
->procinfo
.hProcess
;
1878 /* Nothing to look for, so we didn't find anything */
1886 start_time
= GetTickCount ();
1888 /* Wait for input or child death to be signaled. If user input is
1889 allowed, then also accept window messages. */
1890 if (FD_ISSET (0, &orfds
))
1891 active
= MsgWaitForMultipleObjects (nh
+ nc
, wait_hnd
, FALSE
, timeout_ms
,
1894 active
= WaitForMultipleObjects (nh
+ nc
, wait_hnd
, FALSE
, timeout_ms
);
1896 if (active
== WAIT_FAILED
)
1898 DebPrint (("select.WaitForMultipleObjects (%d, %lu) failed with %lu\n",
1899 nh
+ nc
, timeout_ms
, GetLastError ()));
1900 /* don't return EBADF - this causes wait_reading_process_output to
1901 abort; WAIT_FAILED is returned when single-stepping under
1902 Windows 95 after switching thread focus in debugger, and
1903 possibly at other times. */
1907 else if (active
== WAIT_TIMEOUT
)
1911 else if (active
>= WAIT_OBJECT_0
1912 && active
< WAIT_OBJECT_0
+MAXIMUM_WAIT_OBJECTS
)
1914 active
-= WAIT_OBJECT_0
;
1916 else if (active
>= WAIT_ABANDONED_0
1917 && active
< WAIT_ABANDONED_0
+MAXIMUM_WAIT_OBJECTS
)
1919 active
-= WAIT_ABANDONED_0
;
1924 /* Loop over all handles after active (now officially documented as
1925 being the first signaled handle in the array). We do this to
1926 ensure fairness, so that all channels with data available will be
1927 processed - otherwise higher numbered channels could be starved. */
1930 if (active
== nh
+ nc
)
1932 /* There are messages in the lisp thread's queue; we must
1933 drain the queue now to ensure they are processed promptly,
1934 because if we don't do so, we will not be woken again until
1935 further messages arrive.
1937 NB. If ever we allow window message procedures to callback
1938 into lisp, we will need to ensure messages are dispatched
1939 at a safe time for lisp code to be run (*), and we may also
1940 want to provide some hooks in the dispatch loop to cater
1941 for modeless dialogs created by lisp (ie. to register
1942 window handles to pass to IsDialogMessage).
1944 (*) Note that MsgWaitForMultipleObjects above is an
1945 internal dispatch point for messages that are sent to
1946 windows created by this thread. */
1947 drain_message_queue ();
1949 else if (active
>= nh
)
1951 cp
= cps
[active
- nh
];
1953 /* We cannot always signal SIGCHLD immediately; if we have not
1954 finished reading the process output, we must delay sending
1955 SIGCHLD until we do. */
1957 if (cp
->fd
>= 0 && (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) == 0)
1958 fd_info
[cp
->fd
].flags
|= FILE_SEND_SIGCHLD
;
1959 /* SIG_DFL for SIGCHLD is ignore */
1960 else if (sig_handlers
[SIGCHLD
] != SIG_DFL
&&
1961 sig_handlers
[SIGCHLD
] != SIG_IGN
)
1964 DebPrint (("select calling SIGCHLD handler for pid %d\n",
1968 sig_handlers
[SIGCHLD
] (SIGCHLD
);
1972 else if (fdindex
[active
] == -1)
1974 /* Quit (C-g) was detected. */
1978 else if (fdindex
[active
] == 0)
1980 /* Keyboard input available */
1986 /* must be a socket or pipe - read ahead should have
1987 completed, either succeeding or failing. */
1988 FD_SET (fdindex
[active
], rfds
);
1992 /* Even though wait_reading_process_output only reads from at most
1993 one channel, we must process all channels here so that we reap
1994 all children that have died. */
1995 while (++active
< nh
+ nc
)
1996 if (WaitForSingleObject (wait_hnd
[active
], 0) == WAIT_OBJECT_0
)
1998 } while (active
< nh
+ nc
);
2000 /* If no input has arrived and timeout hasn't expired, wait again. */
2003 DWORD elapsed
= GetTickCount () - start_time
;
2005 if (timeout_ms
> elapsed
) /* INFINITE is MAX_UINT */
2007 if (timeout_ms
!= INFINITE
)
2008 timeout_ms
-= elapsed
;
2009 goto count_children
;
2016 /* Substitute for certain kill () operations */
2018 static BOOL CALLBACK
2019 find_child_console (HWND hwnd
, LPARAM arg
)
2021 child_process
* cp
= (child_process
*) arg
;
2025 thread_id
= GetWindowThreadProcessId (hwnd
, &process_id
);
2026 if (process_id
== cp
->procinfo
.dwProcessId
)
2028 char window_class
[32];
2030 GetClassName (hwnd
, window_class
, sizeof (window_class
));
2031 if (strcmp (window_class
,
2032 (os_subtype
== OS_9X
)
2034 : "ConsoleWindowClass") == 0)
2044 /* Emulate 'kill', but only for other processes. */
2046 sys_kill (int pid
, int sig
)
2050 int need_to_free
= 0;
2053 /* Only handle signals that will result in the process dying */
2054 if (sig
!= SIGINT
&& sig
!= SIGKILL
&& sig
!= SIGQUIT
&& sig
!= SIGHUP
)
2060 cp
= find_child_pid (pid
);
2063 /* We were passed a PID of something other than our subprocess.
2064 If that is our own PID, we will send to ourself a message to
2065 close the selected frame, which does not necessarily
2066 terminates Emacs. But then we are not supposed to call
2067 sys_kill with our own PID. */
2068 proc_hand
= OpenProcess (PROCESS_TERMINATE
, 0, pid
);
2069 if (proc_hand
== NULL
)
2078 proc_hand
= cp
->procinfo
.hProcess
;
2079 pid
= cp
->procinfo
.dwProcessId
;
2081 /* Try to locate console window for process. */
2082 EnumWindows (find_child_console
, (LPARAM
) cp
);
2085 if (sig
== SIGINT
|| sig
== SIGQUIT
)
2087 if (NILP (Vw32_start_process_share_console
) && cp
&& cp
->hwnd
)
2089 BYTE control_scan_code
= (BYTE
) MapVirtualKey (VK_CONTROL
, 0);
2090 /* Fake Ctrl-C for SIGINT, and Ctrl-Break for SIGQUIT. */
2091 BYTE vk_break_code
= (sig
== SIGINT
) ? 'C' : VK_CANCEL
;
2092 BYTE break_scan_code
= (BYTE
) MapVirtualKey (vk_break_code
, 0);
2093 HWND foreground_window
;
2095 if (break_scan_code
== 0)
2097 /* Fake Ctrl-C for SIGQUIT if we can't manage Ctrl-Break. */
2098 vk_break_code
= 'C';
2099 break_scan_code
= (BYTE
) MapVirtualKey (vk_break_code
, 0);
2102 foreground_window
= GetForegroundWindow ();
2103 if (foreground_window
)
2105 /* NT 5.0, and apparently also Windows 98, will not allow
2106 a Window to be set to foreground directly without the
2107 user's involvement. The workaround is to attach
2108 ourselves to the thread that owns the foreground
2109 window, since that is the only thread that can set the
2110 foreground window. */
2111 DWORD foreground_thread
, child_thread
;
2113 GetWindowThreadProcessId (foreground_window
, NULL
);
2114 if (foreground_thread
== GetCurrentThreadId ()
2115 || !AttachThreadInput (GetCurrentThreadId (),
2116 foreground_thread
, TRUE
))
2117 foreground_thread
= 0;
2119 child_thread
= GetWindowThreadProcessId (cp
->hwnd
, NULL
);
2120 if (child_thread
== GetCurrentThreadId ()
2121 || !AttachThreadInput (GetCurrentThreadId (),
2122 child_thread
, TRUE
))
2125 /* Set the foreground window to the child. */
2126 if (SetForegroundWindow (cp
->hwnd
))
2128 /* Generate keystrokes as if user had typed Ctrl-Break or
2130 keybd_event (VK_CONTROL
, control_scan_code
, 0, 0);
2131 keybd_event (vk_break_code
, break_scan_code
,
2132 (vk_break_code
== 'C' ? 0 : KEYEVENTF_EXTENDEDKEY
), 0);
2133 keybd_event (vk_break_code
, break_scan_code
,
2134 (vk_break_code
== 'C' ? 0 : KEYEVENTF_EXTENDEDKEY
)
2135 | KEYEVENTF_KEYUP
, 0);
2136 keybd_event (VK_CONTROL
, control_scan_code
,
2137 KEYEVENTF_KEYUP
, 0);
2139 /* Sleep for a bit to give time for Emacs frame to respond
2140 to focus change events (if Emacs was active app). */
2143 SetForegroundWindow (foreground_window
);
2145 /* Detach from the foreground and child threads now that
2146 the foreground switching is over. */
2147 if (foreground_thread
)
2148 AttachThreadInput (GetCurrentThreadId (),
2149 foreground_thread
, FALSE
);
2151 AttachThreadInput (GetCurrentThreadId (),
2152 child_thread
, FALSE
);
2155 /* Ctrl-Break is NT equivalent of SIGINT. */
2156 else if (!GenerateConsoleCtrlEvent (CTRL_BREAK_EVENT
, pid
))
2158 DebPrint (("sys_kill.GenerateConsoleCtrlEvent return %d "
2159 "for pid %lu\n", GetLastError (), pid
));
2166 if (NILP (Vw32_start_process_share_console
) && cp
&& cp
->hwnd
)
2169 if (os_subtype
== OS_9X
)
2172 Another possibility is to try terminating the VDM out-right by
2173 calling the Shell VxD (id 0x17) V86 interface, function #4
2174 "SHELL_Destroy_VM", ie.
2180 First need to determine the current VM handle, and then arrange for
2181 the shellapi call to be made from the system vm (by using
2182 Switch_VM_and_callback).
2184 Could try to invoke DestroyVM through CallVxD.
2188 /* On Windows 95, posting WM_QUIT causes the 16-bit subsystem
2189 to hang when cmdproxy is used in conjunction with
2190 command.com for an interactive shell. Posting
2191 WM_CLOSE pops up a dialog that, when Yes is selected,
2192 does the same thing. TerminateProcess is also less
2193 than ideal in that subprocesses tend to stick around
2194 until the machine is shutdown, but at least it
2195 doesn't freeze the 16-bit subsystem. */
2196 PostMessage (cp
->hwnd
, WM_QUIT
, 0xff, 0);
2198 if (!TerminateProcess (proc_hand
, 0xff))
2200 DebPrint (("sys_kill.TerminateProcess returned %d "
2201 "for pid %lu\n", GetLastError (), pid
));
2208 PostMessage (cp
->hwnd
, WM_CLOSE
, 0, 0);
2210 /* Kill the process. On W32 this doesn't kill child processes
2211 so it doesn't work very well for shells which is why it's not
2212 used in every case. */
2213 else if (!TerminateProcess (proc_hand
, 0xff))
2215 DebPrint (("sys_kill.TerminateProcess returned %d "
2216 "for pid %lu\n", GetLastError (), pid
));
2223 CloseHandle (proc_hand
);
2228 /* The following two routines are used to manipulate stdin, stdout, and
2229 stderr of our child processes.
2231 Assuming that in, out, and err are *not* inheritable, we make them
2232 stdin, stdout, and stderr of the child as follows:
2234 - Save the parent's current standard handles.
2235 - Set the std handles to inheritable duplicates of the ones being passed in.
2236 (Note that _get_osfhandle() is an io.h procedure that retrieves the
2237 NT file handle for a crt file descriptor.)
2238 - Spawn the child, which inherits in, out, and err as stdin,
2239 stdout, and stderr. (see Spawnve)
2240 - Close the std handles passed to the child.
2241 - Reset the parent's standard handles to the saved handles.
2242 (see reset_standard_handles)
2243 We assume that the caller closes in, out, and err after calling us. */
2246 prepare_standard_handles (int in
, int out
, int err
, HANDLE handles
[3])
2249 HANDLE newstdin
, newstdout
, newstderr
;
2251 parent
= GetCurrentProcess ();
2253 handles
[0] = GetStdHandle (STD_INPUT_HANDLE
);
2254 handles
[1] = GetStdHandle (STD_OUTPUT_HANDLE
);
2255 handles
[2] = GetStdHandle (STD_ERROR_HANDLE
);
2257 /* make inheritable copies of the new handles */
2258 if (!DuplicateHandle (parent
,
2259 (HANDLE
) _get_osfhandle (in
),
2264 DUPLICATE_SAME_ACCESS
))
2265 report_file_error ("Duplicating input handle for child", Qnil
);
2267 if (!DuplicateHandle (parent
,
2268 (HANDLE
) _get_osfhandle (out
),
2273 DUPLICATE_SAME_ACCESS
))
2274 report_file_error ("Duplicating output handle for child", Qnil
);
2276 if (!DuplicateHandle (parent
,
2277 (HANDLE
) _get_osfhandle (err
),
2282 DUPLICATE_SAME_ACCESS
))
2283 report_file_error ("Duplicating error handle for child", Qnil
);
2285 /* and store them as our std handles */
2286 if (!SetStdHandle (STD_INPUT_HANDLE
, newstdin
))
2287 report_file_error ("Changing stdin handle", Qnil
);
2289 if (!SetStdHandle (STD_OUTPUT_HANDLE
, newstdout
))
2290 report_file_error ("Changing stdout handle", Qnil
);
2292 if (!SetStdHandle (STD_ERROR_HANDLE
, newstderr
))
2293 report_file_error ("Changing stderr handle", Qnil
);
2297 reset_standard_handles (int in
, int out
, int err
, HANDLE handles
[3])
2299 /* close the duplicated handles passed to the child */
2300 CloseHandle (GetStdHandle (STD_INPUT_HANDLE
));
2301 CloseHandle (GetStdHandle (STD_OUTPUT_HANDLE
));
2302 CloseHandle (GetStdHandle (STD_ERROR_HANDLE
));
2304 /* now restore parent's saved std handles */
2305 SetStdHandle (STD_INPUT_HANDLE
, handles
[0]);
2306 SetStdHandle (STD_OUTPUT_HANDLE
, handles
[1]);
2307 SetStdHandle (STD_ERROR_HANDLE
, handles
[2]);
2311 set_process_dir (char * dir
)
2316 /* To avoid problems with winsock implementations that work over dial-up
2317 connections causing or requiring a connection to exist while Emacs is
2318 running, Emacs no longer automatically loads winsock on startup if it
2319 is present. Instead, it will be loaded when open-network-stream is
2322 To allow full control over when winsock is loaded, we provide these
2323 two functions to dynamically load and unload winsock. This allows
2324 dial-up users to only be connected when they actually need to use
2328 extern HANDLE winsock_lib
;
2329 extern BOOL
term_winsock (void);
2330 extern BOOL
init_winsock (int load_now
);
2332 DEFUN ("w32-has-winsock", Fw32_has_winsock
, Sw32_has_winsock
, 0, 1, 0,
2333 doc
: /* Test for presence of the Windows socket library `winsock'.
2334 Returns non-nil if winsock support is present, nil otherwise.
2336 If the optional argument LOAD-NOW is non-nil, the winsock library is
2337 also loaded immediately if not already loaded. If winsock is loaded,
2338 the winsock local hostname is returned (since this may be different from
2339 the value of `system-name' and should supplant it), otherwise t is
2340 returned to indicate winsock support is present. */)
2341 (Lisp_Object load_now
)
2345 have_winsock
= init_winsock (!NILP (load_now
));
2348 if (winsock_lib
!= NULL
)
2350 /* Return new value for system-name. The best way to do this
2351 is to call init_system_name, saving and restoring the
2352 original value to avoid side-effects. */
2353 Lisp_Object orig_hostname
= Vsystem_name
;
2354 Lisp_Object hostname
;
2356 init_system_name ();
2357 hostname
= Vsystem_name
;
2358 Vsystem_name
= orig_hostname
;
2366 DEFUN ("w32-unload-winsock", Fw32_unload_winsock
, Sw32_unload_winsock
,
2368 doc
: /* Unload the Windows socket library `winsock' if loaded.
2369 This is provided to allow dial-up socket connections to be disconnected
2370 when no longer needed. Returns nil without unloading winsock if any
2371 socket connections still exist. */)
2374 return term_winsock () ? Qt
: Qnil
;
2378 /* Some miscellaneous functions that are Windows specific, but not GUI
2379 specific (ie. are applicable in terminal or batch mode as well). */
2381 DEFUN ("w32-short-file-name", Fw32_short_file_name
, Sw32_short_file_name
, 1, 1, 0,
2382 doc
: /* Return the short file name version (8.3) of the full path of FILENAME.
2383 If FILENAME does not exist, return nil.
2384 All path elements in FILENAME are converted to their short names. */)
2385 (Lisp_Object filename
)
2387 char shortname
[MAX_PATH
];
2389 CHECK_STRING (filename
);
2391 /* first expand it. */
2392 filename
= Fexpand_file_name (filename
, Qnil
);
2394 /* luckily, this returns the short version of each element in the path. */
2395 if (GetShortPathName (SDATA (ENCODE_FILE (filename
)), shortname
, MAX_PATH
) == 0)
2398 dostounix_filename (shortname
);
2400 return build_string (shortname
);
2404 DEFUN ("w32-long-file-name", Fw32_long_file_name
, Sw32_long_file_name
,
2406 doc
: /* Return the long file name version of the full path of FILENAME.
2407 If FILENAME does not exist, return nil.
2408 All path elements in FILENAME are converted to their long names. */)
2409 (Lisp_Object filename
)
2411 char longname
[ MAX_PATH
];
2414 CHECK_STRING (filename
);
2416 if (SBYTES (filename
) == 2
2417 && *(SDATA (filename
) + 1) == ':')
2420 /* first expand it. */
2421 filename
= Fexpand_file_name (filename
, Qnil
);
2423 if (!w32_get_long_filename (SDATA (ENCODE_FILE (filename
)), longname
, MAX_PATH
))
2426 dostounix_filename (longname
);
2428 /* If we were passed only a drive, make sure that a slash is not appended
2429 for consistency with directories. Allow for drive mapping via SUBST
2430 in case expand-file-name is ever changed to expand those. */
2431 if (drive_only
&& longname
[1] == ':' && longname
[2] == '/' && !longname
[3])
2434 return DECODE_FILE (build_string (longname
));
2437 DEFUN ("w32-set-process-priority", Fw32_set_process_priority
,
2438 Sw32_set_process_priority
, 2, 2, 0,
2439 doc
: /* Set the priority of PROCESS to PRIORITY.
2440 If PROCESS is nil, the priority of Emacs is changed, otherwise the
2441 priority of the process whose pid is PROCESS is changed.
2442 PRIORITY should be one of the symbols high, normal, or low;
2443 any other symbol will be interpreted as normal.
2445 If successful, the return value is t, otherwise nil. */)
2446 (Lisp_Object process
, Lisp_Object priority
)
2448 HANDLE proc_handle
= GetCurrentProcess ();
2449 DWORD priority_class
= NORMAL_PRIORITY_CLASS
;
2450 Lisp_Object result
= Qnil
;
2452 CHECK_SYMBOL (priority
);
2454 if (!NILP (process
))
2459 CHECK_NUMBER (process
);
2461 /* Allow pid to be an internally generated one, or one obtained
2462 externally. This is necessary because real pids on Windows 95 are
2465 pid
= XINT (process
);
2466 cp
= find_child_pid (pid
);
2468 pid
= cp
->procinfo
.dwProcessId
;
2470 proc_handle
= OpenProcess (PROCESS_SET_INFORMATION
, FALSE
, pid
);
2473 if (EQ (priority
, Qhigh
))
2474 priority_class
= HIGH_PRIORITY_CLASS
;
2475 else if (EQ (priority
, Qlow
))
2476 priority_class
= IDLE_PRIORITY_CLASS
;
2478 if (proc_handle
!= NULL
)
2480 if (SetPriorityClass (proc_handle
, priority_class
))
2482 if (!NILP (process
))
2483 CloseHandle (proc_handle
);
2489 #ifdef HAVE_LANGINFO_CODESET
2490 /* Emulation of nl_langinfo. Used in fns.c:Flocale_info. */
2492 nl_langinfo (nl_item item
)
2494 /* Conversion of Posix item numbers to their Windows equivalents. */
2495 static const LCTYPE w32item
[] = {
2496 LOCALE_IDEFAULTANSICODEPAGE
,
2497 LOCALE_SDAYNAME1
, LOCALE_SDAYNAME2
, LOCALE_SDAYNAME3
,
2498 LOCALE_SDAYNAME4
, LOCALE_SDAYNAME5
, LOCALE_SDAYNAME6
, LOCALE_SDAYNAME7
,
2499 LOCALE_SMONTHNAME1
, LOCALE_SMONTHNAME2
, LOCALE_SMONTHNAME3
,
2500 LOCALE_SMONTHNAME4
, LOCALE_SMONTHNAME5
, LOCALE_SMONTHNAME6
,
2501 LOCALE_SMONTHNAME7
, LOCALE_SMONTHNAME8
, LOCALE_SMONTHNAME9
,
2502 LOCALE_SMONTHNAME10
, LOCALE_SMONTHNAME11
, LOCALE_SMONTHNAME12
2505 static char *nl_langinfo_buf
= NULL
;
2506 static int nl_langinfo_len
= 0;
2508 if (nl_langinfo_len
<= 0)
2509 nl_langinfo_buf
= xmalloc (nl_langinfo_len
= 1);
2511 if (item
< 0 || item
>= _NL_NUM
)
2512 nl_langinfo_buf
[0] = 0;
2515 LCID cloc
= GetThreadLocale ();
2516 int need_len
= GetLocaleInfo (cloc
, w32item
[item
] | LOCALE_USE_CP_ACP
,
2520 nl_langinfo_buf
[0] = 0;
2523 if (item
== CODESET
)
2525 need_len
+= 2; /* for the "cp" prefix */
2526 if (need_len
< 8) /* for the case we call GetACP */
2529 if (nl_langinfo_len
<= need_len
)
2530 nl_langinfo_buf
= xrealloc (nl_langinfo_buf
,
2531 nl_langinfo_len
= need_len
);
2532 if (!GetLocaleInfo (cloc
, w32item
[item
] | LOCALE_USE_CP_ACP
,
2533 nl_langinfo_buf
, nl_langinfo_len
))
2534 nl_langinfo_buf
[0] = 0;
2535 else if (item
== CODESET
)
2537 if (strcmp (nl_langinfo_buf
, "0") == 0 /* CP_ACP */
2538 || strcmp (nl_langinfo_buf
, "1") == 0) /* CP_OEMCP */
2539 sprintf (nl_langinfo_buf
, "cp%u", GetACP ());
2542 memmove (nl_langinfo_buf
+ 2, nl_langinfo_buf
,
2543 strlen (nl_langinfo_buf
) + 1);
2544 nl_langinfo_buf
[0] = 'c';
2545 nl_langinfo_buf
[1] = 'p';
2550 return nl_langinfo_buf
;
2552 #endif /* HAVE_LANGINFO_CODESET */
2554 DEFUN ("w32-get-locale-info", Fw32_get_locale_info
,
2555 Sw32_get_locale_info
, 1, 2, 0,
2556 doc
: /* Return information about the Windows locale LCID.
2557 By default, return a three letter locale code which encodes the default
2558 language as the first two characters, and the country or regional variant
2559 as the third letter. For example, ENU refers to `English (United States)',
2560 while ENC means `English (Canadian)'.
2562 If the optional argument LONGFORM is t, the long form of the locale
2563 name is returned, e.g. `English (United States)' instead; if LONGFORM
2564 is a number, it is interpreted as an LCTYPE constant and the corresponding
2565 locale information is returned.
2567 If LCID (a 16-bit number) is not a valid locale, the result is nil. */)
2568 (Lisp_Object lcid
, Lisp_Object longform
)
2572 char abbrev_name
[32] = { 0 };
2573 char full_name
[256] = { 0 };
2575 CHECK_NUMBER (lcid
);
2577 if (!IsValidLocale (XINT (lcid
), LCID_SUPPORTED
))
2580 if (NILP (longform
))
2582 got_abbrev
= GetLocaleInfo (XINT (lcid
),
2583 LOCALE_SABBREVLANGNAME
| LOCALE_USE_CP_ACP
,
2584 abbrev_name
, sizeof (abbrev_name
));
2586 return build_string (abbrev_name
);
2588 else if (EQ (longform
, Qt
))
2590 got_full
= GetLocaleInfo (XINT (lcid
),
2591 LOCALE_SLANGUAGE
| LOCALE_USE_CP_ACP
,
2592 full_name
, sizeof (full_name
));
2594 return DECODE_SYSTEM (build_string (full_name
));
2596 else if (NUMBERP (longform
))
2598 got_full
= GetLocaleInfo (XINT (lcid
),
2600 full_name
, sizeof (full_name
));
2601 /* GetLocaleInfo's return value includes the terminating null
2602 character, when the returned information is a string, whereas
2603 make_unibyte_string needs the string length without the
2604 terminating null. */
2606 return make_unibyte_string (full_name
, got_full
- 1);
2613 DEFUN ("w32-get-current-locale-id", Fw32_get_current_locale_id
,
2614 Sw32_get_current_locale_id
, 0, 0, 0,
2615 doc
: /* Return Windows locale id for current locale setting.
2616 This is a numerical value; use `w32-get-locale-info' to convert to a
2617 human-readable form. */)
2620 return make_number (GetThreadLocale ());
2624 int_from_hex (char * s
)
2627 static char hex
[] = "0123456789abcdefABCDEF";
2630 while (*s
&& (p
= strchr (hex
, *s
)) != NULL
)
2632 unsigned digit
= p
- hex
;
2635 val
= val
* 16 + digit
;
2641 /* We need to build a global list, since the EnumSystemLocale callback
2642 function isn't given a context pointer. */
2643 Lisp_Object Vw32_valid_locale_ids
;
2645 static BOOL CALLBACK
2646 enum_locale_fn (LPTSTR localeNum
)
2648 DWORD id
= int_from_hex (localeNum
);
2649 Vw32_valid_locale_ids
= Fcons (make_number (id
), Vw32_valid_locale_ids
);
2653 DEFUN ("w32-get-valid-locale-ids", Fw32_get_valid_locale_ids
,
2654 Sw32_get_valid_locale_ids
, 0, 0, 0,
2655 doc
: /* Return list of all valid Windows locale ids.
2656 Each id is a numerical value; use `w32-get-locale-info' to convert to a
2657 human-readable form. */)
2660 Vw32_valid_locale_ids
= Qnil
;
2662 EnumSystemLocales (enum_locale_fn
, LCID_SUPPORTED
);
2664 Vw32_valid_locale_ids
= Fnreverse (Vw32_valid_locale_ids
);
2665 return Vw32_valid_locale_ids
;
2669 DEFUN ("w32-get-default-locale-id", Fw32_get_default_locale_id
, Sw32_get_default_locale_id
, 0, 1, 0,
2670 doc
: /* Return Windows locale id for default locale setting.
2671 By default, the system default locale setting is returned; if the optional
2672 parameter USERP is non-nil, the user default locale setting is returned.
2673 This is a numerical value; use `w32-get-locale-info' to convert to a
2674 human-readable form. */)
2678 return make_number (GetSystemDefaultLCID ());
2679 return make_number (GetUserDefaultLCID ());
2683 DEFUN ("w32-set-current-locale", Fw32_set_current_locale
, Sw32_set_current_locale
, 1, 1, 0,
2684 doc
: /* Make Windows locale LCID be the current locale setting for Emacs.
2685 If successful, the new locale id is returned, otherwise nil. */)
2688 CHECK_NUMBER (lcid
);
2690 if (!IsValidLocale (XINT (lcid
), LCID_SUPPORTED
))
2693 if (!SetThreadLocale (XINT (lcid
)))
2696 /* Need to set input thread locale if present. */
2697 if (dwWindowsThreadId
)
2698 /* Reply is not needed. */
2699 PostThreadMessage (dwWindowsThreadId
, WM_EMACS_SETLOCALE
, XINT (lcid
), 0);
2701 return make_number (GetThreadLocale ());
2705 /* We need to build a global list, since the EnumCodePages callback
2706 function isn't given a context pointer. */
2707 Lisp_Object Vw32_valid_codepages
;
2709 static BOOL CALLBACK
2710 enum_codepage_fn (LPTSTR codepageNum
)
2712 DWORD id
= atoi (codepageNum
);
2713 Vw32_valid_codepages
= Fcons (make_number (id
), Vw32_valid_codepages
);
2717 DEFUN ("w32-get-valid-codepages", Fw32_get_valid_codepages
,
2718 Sw32_get_valid_codepages
, 0, 0, 0,
2719 doc
: /* Return list of all valid Windows codepages. */)
2722 Vw32_valid_codepages
= Qnil
;
2724 EnumSystemCodePages (enum_codepage_fn
, CP_SUPPORTED
);
2726 Vw32_valid_codepages
= Fnreverse (Vw32_valid_codepages
);
2727 return Vw32_valid_codepages
;
2731 DEFUN ("w32-get-console-codepage", Fw32_get_console_codepage
,
2732 Sw32_get_console_codepage
, 0, 0, 0,
2733 doc
: /* Return current Windows codepage for console input. */)
2736 return make_number (GetConsoleCP ());
2740 DEFUN ("w32-set-console-codepage", Fw32_set_console_codepage
,
2741 Sw32_set_console_codepage
, 1, 1, 0,
2742 doc
: /* Make Windows codepage CP be the codepage for Emacs tty keyboard input.
2743 This codepage setting affects keyboard input in tty mode.
2744 If successful, the new CP is returned, otherwise nil. */)
2749 if (!IsValidCodePage (XINT (cp
)))
2752 if (!SetConsoleCP (XINT (cp
)))
2755 return make_number (GetConsoleCP ());
2759 DEFUN ("w32-get-console-output-codepage", Fw32_get_console_output_codepage
,
2760 Sw32_get_console_output_codepage
, 0, 0, 0,
2761 doc
: /* Return current Windows codepage for console output. */)
2764 return make_number (GetConsoleOutputCP ());
2768 DEFUN ("w32-set-console-output-codepage", Fw32_set_console_output_codepage
,
2769 Sw32_set_console_output_codepage
, 1, 1, 0,
2770 doc
: /* Make Windows codepage CP be the codepage for Emacs console output.
2771 This codepage setting affects display in tty mode.
2772 If successful, the new CP is returned, otherwise nil. */)
2777 if (!IsValidCodePage (XINT (cp
)))
2780 if (!SetConsoleOutputCP (XINT (cp
)))
2783 return make_number (GetConsoleOutputCP ());
2787 DEFUN ("w32-get-codepage-charset", Fw32_get_codepage_charset
,
2788 Sw32_get_codepage_charset
, 1, 1, 0,
2789 doc
: /* Return charset ID corresponding to codepage CP.
2790 Returns nil if the codepage is not valid. */)
2797 if (!IsValidCodePage (XINT (cp
)))
2800 if (TranslateCharsetInfo ((DWORD
*) XINT (cp
), &info
, TCI_SRCCODEPAGE
))
2801 return make_number (info
.ciCharset
);
2807 DEFUN ("w32-get-valid-keyboard-layouts", Fw32_get_valid_keyboard_layouts
,
2808 Sw32_get_valid_keyboard_layouts
, 0, 0, 0,
2809 doc
: /* Return list of Windows keyboard languages and layouts.
2810 The return value is a list of pairs of language id and layout id. */)
2813 int num_layouts
= GetKeyboardLayoutList (0, NULL
);
2814 HKL
* layouts
= (HKL
*) alloca (num_layouts
* sizeof (HKL
));
2815 Lisp_Object obj
= Qnil
;
2817 if (GetKeyboardLayoutList (num_layouts
, layouts
) == num_layouts
)
2819 while (--num_layouts
>= 0)
2821 DWORD kl
= (DWORD
) layouts
[num_layouts
];
2823 obj
= Fcons (Fcons (make_number (kl
& 0xffff),
2824 make_number ((kl
>> 16) & 0xffff)),
2833 DEFUN ("w32-get-keyboard-layout", Fw32_get_keyboard_layout
,
2834 Sw32_get_keyboard_layout
, 0, 0, 0,
2835 doc
: /* Return current Windows keyboard language and layout.
2836 The return value is the cons of the language id and the layout id. */)
2839 DWORD kl
= (DWORD
) GetKeyboardLayout (dwWindowsThreadId
);
2841 return Fcons (make_number (kl
& 0xffff),
2842 make_number ((kl
>> 16) & 0xffff));
2846 DEFUN ("w32-set-keyboard-layout", Fw32_set_keyboard_layout
,
2847 Sw32_set_keyboard_layout
, 1, 1, 0,
2848 doc
: /* Make LAYOUT be the current keyboard layout for Emacs.
2849 The keyboard layout setting affects interpretation of keyboard input.
2850 If successful, the new layout id is returned, otherwise nil. */)
2851 (Lisp_Object layout
)
2855 CHECK_CONS (layout
);
2856 CHECK_NUMBER_CAR (layout
);
2857 CHECK_NUMBER_CDR (layout
);
2859 kl
= (XINT (XCAR (layout
)) & 0xffff)
2860 | (XINT (XCDR (layout
)) << 16);
2862 /* Synchronize layout with input thread. */
2863 if (dwWindowsThreadId
)
2865 if (PostThreadMessage (dwWindowsThreadId
, WM_EMACS_SETKEYBOARDLAYOUT
,
2869 GetMessage (&msg
, NULL
, WM_EMACS_DONE
, WM_EMACS_DONE
);
2871 if (msg
.wParam
== 0)
2875 else if (!ActivateKeyboardLayout ((HKL
) kl
, 0))
2878 return Fw32_get_keyboard_layout ();
2883 syms_of_ntproc (void)
2885 DEFSYM (Qhigh
, "high");
2886 DEFSYM (Qlow
, "low");
2888 defsubr (&Sw32_has_winsock
);
2889 defsubr (&Sw32_unload_winsock
);
2891 defsubr (&Sw32_short_file_name
);
2892 defsubr (&Sw32_long_file_name
);
2893 defsubr (&Sw32_set_process_priority
);
2894 defsubr (&Sw32_get_locale_info
);
2895 defsubr (&Sw32_get_current_locale_id
);
2896 defsubr (&Sw32_get_default_locale_id
);
2897 defsubr (&Sw32_get_valid_locale_ids
);
2898 defsubr (&Sw32_set_current_locale
);
2900 defsubr (&Sw32_get_console_codepage
);
2901 defsubr (&Sw32_set_console_codepage
);
2902 defsubr (&Sw32_get_console_output_codepage
);
2903 defsubr (&Sw32_set_console_output_codepage
);
2904 defsubr (&Sw32_get_valid_codepages
);
2905 defsubr (&Sw32_get_codepage_charset
);
2907 defsubr (&Sw32_get_valid_keyboard_layouts
);
2908 defsubr (&Sw32_get_keyboard_layout
);
2909 defsubr (&Sw32_set_keyboard_layout
);
2911 DEFVAR_LISP ("w32-quote-process-args", Vw32_quote_process_args
,
2912 doc
: /* Non-nil enables quoting of process arguments to ensure correct parsing.
2913 Because Windows does not directly pass argv arrays to child processes,
2914 programs have to reconstruct the argv array by parsing the command
2915 line string. For an argument to contain a space, it must be enclosed
2916 in double quotes or it will be parsed as multiple arguments.
2918 If the value is a character, that character will be used to escape any
2919 quote characters that appear, otherwise a suitable escape character
2920 will be chosen based on the type of the program. */);
2921 Vw32_quote_process_args
= Qt
;
2923 DEFVAR_LISP ("w32-start-process-show-window",
2924 Vw32_start_process_show_window
,
2925 doc
: /* When nil, new child processes hide their windows.
2926 When non-nil, they show their window in the method of their choice.
2927 This variable doesn't affect GUI applications, which will never be hidden. */);
2928 Vw32_start_process_show_window
= Qnil
;
2930 DEFVAR_LISP ("w32-start-process-share-console",
2931 Vw32_start_process_share_console
,
2932 doc
: /* When nil, new child processes are given a new console.
2933 When non-nil, they share the Emacs console; this has the limitation of
2934 allowing only one DOS subprocess to run at a time (whether started directly
2935 or indirectly by Emacs), and preventing Emacs from cleanly terminating the
2936 subprocess group, but may allow Emacs to interrupt a subprocess that doesn't
2937 otherwise respond to interrupts from Emacs. */);
2938 Vw32_start_process_share_console
= Qnil
;
2940 DEFVAR_LISP ("w32-start-process-inherit-error-mode",
2941 Vw32_start_process_inherit_error_mode
,
2942 doc
: /* When nil, new child processes revert to the default error mode.
2943 When non-nil, they inherit their error mode setting from Emacs, which stops
2944 them blocking when trying to access unmounted drives etc. */);
2945 Vw32_start_process_inherit_error_mode
= Qt
;
2947 DEFVAR_INT ("w32-pipe-read-delay", w32_pipe_read_delay
,
2948 doc
: /* Forced delay before reading subprocess output.
2949 This is done to improve the buffering of subprocess output, by
2950 avoiding the inefficiency of frequently reading small amounts of data.
2952 If positive, the value is the number of milliseconds to sleep before
2953 reading the subprocess output. If negative, the magnitude is the number
2954 of time slices to wait (effectively boosting the priority of the child
2955 process temporarily). A value of zero disables waiting entirely. */);
2956 w32_pipe_read_delay
= 50;
2958 DEFVAR_LISP ("w32-downcase-file-names", Vw32_downcase_file_names
,
2959 doc
: /* Non-nil means convert all-upper case file names to lower case.
2960 This applies when performing completions and file name expansion.
2961 Note that the value of this setting also affects remote file names,
2962 so you probably don't want to set to non-nil if you use case-sensitive
2963 filesystems via ange-ftp. */);
2964 Vw32_downcase_file_names
= Qnil
;
2967 DEFVAR_LISP ("w32-generate-fake-inodes", Vw32_generate_fake_inodes
,
2968 doc
: /* Non-nil means attempt to fake realistic inode values.
2969 This works by hashing the truename of files, and should detect
2970 aliasing between long and short (8.3 DOS) names, but can have
2971 false positives because of hash collisions. Note that determining
2972 the truename of a file can be slow. */);
2973 Vw32_generate_fake_inodes
= Qnil
;
2976 DEFVAR_LISP ("w32-get-true-file-attributes", Vw32_get_true_file_attributes
,
2977 doc
: /* Non-nil means determine accurate file attributes in `file-attributes'.
2978 This option controls whether to issue additional system calls to determine
2979 accurate link counts, file type, and ownership information. It is more
2980 useful for files on NTFS volumes, where hard links and file security are
2981 supported, than on volumes of the FAT family.
2983 Without these system calls, link count will always be reported as 1 and file
2984 ownership will be attributed to the current user.
2985 The default value `local' means only issue these system calls for files
2986 on local fixed drives. A value of nil means never issue them.
2987 Any other non-nil value means do this even on remote and removable drives
2988 where the performance impact may be noticeable even on modern hardware. */);
2989 Vw32_get_true_file_attributes
= Qlocal
;
2991 staticpro (&Vw32_valid_locale_ids
);
2992 staticpro (&Vw32_valid_codepages
);
2994 /* end of w32proc.c */