winex11: Consider zero-size windows mapped even when they are positioned at 0,0.
[wine/multimedia.git] / dlls / kernel32 / console.c
blob6d429f095f5ad706341c9d44bc2b232218725943
1 /*
2 * Win32 console functions
4 * Copyright 1995 Martin von Loewis and Cameron Heide
5 * Copyright 1997 Karl Garrison
6 * Copyright 1998 John Richardson
7 * Copyright 1998 Marcus Meissner
8 * Copyright 2001,2002,2004,2005,2010 Eric Pouech
9 * Copyright 2001 Alexandre Julliard
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 /* Reference applications:
27 * - IDA (interactive disassembler) full version 3.75. Works.
28 * - LYNX/W32. Works mostly, some keys crash it.
31 #include "config.h"
32 #include "wine/port.h"
34 #include <stdarg.h>
35 #include <stdio.h>
36 #include <string.h>
37 #ifdef HAVE_UNISTD_H
38 # include <unistd.h>
39 #endif
40 #include <assert.h>
41 #ifdef HAVE_TERMIOS_H
42 # include <termios.h>
43 #endif
44 #ifdef HAVE_SYS_POLL_H
45 # include <sys/poll.h>
46 #endif
48 #define NONAMELESSUNION
49 #include "ntstatus.h"
50 #define WIN32_NO_STATUS
51 #include "windef.h"
52 #include "winbase.h"
53 #include "winnls.h"
54 #include "winerror.h"
55 #include "wincon.h"
56 #include "wine/server.h"
57 #include "wine/exception.h"
58 #include "wine/unicode.h"
59 #include "wine/debug.h"
60 #include "excpt.h"
61 #include "console_private.h"
62 #include "kernel_private.h"
64 WINE_DEFAULT_DEBUG_CHANNEL(console);
66 static CRITICAL_SECTION CONSOLE_CritSect;
67 static CRITICAL_SECTION_DEBUG critsect_debug =
69 0, 0, &CONSOLE_CritSect,
70 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
71 0, 0, { (DWORD_PTR)(__FILE__ ": CONSOLE_CritSect") }
73 static CRITICAL_SECTION CONSOLE_CritSect = { &critsect_debug, -1, 0, 0, 0, 0 };
75 static const WCHAR coninW[] = {'C','O','N','I','N','$',0};
76 static const WCHAR conoutW[] = {'C','O','N','O','U','T','$',0};
78 /* FIXME: this is not thread safe */
79 static HANDLE console_wait_event;
81 /* map input records to ASCII */
82 static void input_records_WtoA( INPUT_RECORD *buffer, int count )
84 int i;
85 char ch;
87 for (i = 0; i < count; i++)
89 if (buffer[i].EventType != KEY_EVENT) continue;
90 WideCharToMultiByte( GetConsoleCP(), 0,
91 &buffer[i].Event.KeyEvent.uChar.UnicodeChar, 1, &ch, 1, NULL, NULL );
92 buffer[i].Event.KeyEvent.uChar.AsciiChar = ch;
96 /* map input records to Unicode */
97 static void input_records_AtoW( INPUT_RECORD *buffer, int count )
99 int i;
100 WCHAR ch;
102 for (i = 0; i < count; i++)
104 if (buffer[i].EventType != KEY_EVENT) continue;
105 MultiByteToWideChar( GetConsoleCP(), 0,
106 &buffer[i].Event.KeyEvent.uChar.AsciiChar, 1, &ch, 1 );
107 buffer[i].Event.KeyEvent.uChar.UnicodeChar = ch;
111 /* map char infos to ASCII */
112 static void char_info_WtoA( CHAR_INFO *buffer, int count )
114 char ch;
116 while (count-- > 0)
118 WideCharToMultiByte( GetConsoleOutputCP(), 0, &buffer->Char.UnicodeChar, 1,
119 &ch, 1, NULL, NULL );
120 buffer->Char.AsciiChar = ch;
121 buffer++;
125 /* map char infos to Unicode */
126 static void char_info_AtoW( CHAR_INFO *buffer, int count )
128 WCHAR ch;
130 while (count-- > 0)
132 MultiByteToWideChar( GetConsoleOutputCP(), 0, &buffer->Char.AsciiChar, 1, &ch, 1 );
133 buffer->Char.UnicodeChar = ch;
134 buffer++;
138 static struct termios S_termios; /* saved termios for bare consoles */
139 static BOOL S_termios_raw /* = FALSE */;
141 /* The scheme for bare consoles for managing raw/cooked settings is as follows:
142 * - a bare console is created for all CUI programs started from command line (without
143 * wineconsole) (let's call those PS)
144 * - of course, every child of a PS which requires console inheritance will get it
145 * - the console termios attributes are saved at the start of program which is attached to be
146 * bare console
147 * - if any program attached to a bare console requests input from console, the console is
148 * turned into raw mode
149 * - when the program which created the bare console (the program started from command line)
150 * exits, it will restore the console termios attributes it saved at startup (this
151 * will put back the console into cooked mode if it had been put in raw mode)
152 * - if any other program attached to this bare console is still alive, the Unix shell will put
153 * it in the background, hence forbidding access to the console. Therefore, reading console
154 * input will not be available when the bare console creator has died.
155 * FIXME: This is a limitation of current implementation
158 /* returns the fd for a bare console (-1 otherwise) */
159 static int get_console_bare_fd(HANDLE hin)
161 int fd;
163 if (wine_server_handle_to_fd(wine_server_ptr_handle(console_handle_unmap(hin)),
164 0, &fd, NULL) == STATUS_SUCCESS)
165 return fd;
166 return -1;
169 static BOOL save_console_mode(HANDLE hin)
171 int fd;
172 BOOL ret;
174 if ((fd = get_console_bare_fd(hin)) == -1) return FALSE;
175 ret = tcgetattr(fd, &S_termios) >= 0;
176 close(fd);
177 return ret;
180 static BOOL put_console_into_raw_mode(int fd)
182 RtlEnterCriticalSection(&CONSOLE_CritSect);
183 if (!S_termios_raw)
185 struct termios term = S_termios;
187 term.c_lflag &= ~(ECHO | ECHONL | ICANON | IEXTEN);
188 term.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON);
189 term.c_cflag &= ~(CSIZE | PARENB);
190 term.c_cflag |= CS8;
191 /* FIXME: we should actually disable output processing here
192 * and let kernel32/console.c do the job (with support of enable/disable of
193 * processed output)
195 /* term.c_oflag &= ~(OPOST); */
196 term.c_cc[VMIN] = 1;
197 term.c_cc[VTIME] = 0;
198 S_termios_raw = tcsetattr(fd, TCSANOW, &term) >= 0;
200 RtlLeaveCriticalSection(&CONSOLE_CritSect);
202 return S_termios_raw;
205 /* put back the console in cooked mode iff we're the process which created the bare console
206 * we don't test if this process has set the console in raw mode as it could be one of its
207 * children who did it
209 static BOOL restore_console_mode(HANDLE hin)
211 int fd;
212 BOOL ret;
214 if (!S_termios_raw ||
215 RtlGetCurrentPeb()->ProcessParameters->ConsoleHandle != KERNEL32_CONSOLE_SHELL)
216 return TRUE;
217 if ((fd = get_console_bare_fd(hin)) == -1) return FALSE;
218 ret = tcsetattr(fd, TCSANOW, &S_termios) >= 0;
219 close(fd);
220 TERM_Exit();
221 return ret;
224 /******************************************************************************
225 * GetConsoleWindow [KERNEL32.@] Get hwnd of the console window.
227 * RETURNS
228 * Success: hwnd of the console window.
229 * Failure: NULL
231 HWND WINAPI GetConsoleWindow(VOID)
233 HWND hWnd = NULL;
235 SERVER_START_REQ(get_console_input_info)
237 req->handle = 0;
238 if (!wine_server_call_err(req)) hWnd = wine_server_ptr_handle( reply->win );
240 SERVER_END_REQ;
242 return hWnd;
246 /******************************************************************************
247 * GetConsoleCP [KERNEL32.@] Returns the OEM code page for the console
249 * RETURNS
250 * Code page code
252 UINT WINAPI GetConsoleCP(VOID)
254 BOOL ret;
255 UINT codepage = GetOEMCP(); /* default value */
257 SERVER_START_REQ(get_console_input_info)
259 req->handle = 0;
260 ret = !wine_server_call_err(req);
261 if (ret && reply->input_cp)
262 codepage = reply->input_cp;
264 SERVER_END_REQ;
266 return codepage;
270 /******************************************************************************
271 * SetConsoleCP [KERNEL32.@]
273 BOOL WINAPI SetConsoleCP(UINT cp)
275 BOOL ret;
277 if (!IsValidCodePage(cp))
279 SetLastError(ERROR_INVALID_PARAMETER);
280 return FALSE;
283 SERVER_START_REQ(set_console_input_info)
285 req->handle = 0;
286 req->mask = SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE;
287 req->input_cp = cp;
288 ret = !wine_server_call_err(req);
290 SERVER_END_REQ;
292 return ret;
296 /***********************************************************************
297 * GetConsoleOutputCP (KERNEL32.@)
299 UINT WINAPI GetConsoleOutputCP(VOID)
301 BOOL ret;
302 UINT codepage = GetOEMCP(); /* default value */
304 SERVER_START_REQ(get_console_input_info)
306 req->handle = 0;
307 ret = !wine_server_call_err(req);
308 if (ret && reply->output_cp)
309 codepage = reply->output_cp;
311 SERVER_END_REQ;
313 return codepage;
317 /******************************************************************************
318 * SetConsoleOutputCP [KERNEL32.@] Set the output codepage used by the console
320 * PARAMS
321 * cp [I] code page to set
323 * RETURNS
324 * Success: TRUE
325 * Failure: FALSE
327 BOOL WINAPI SetConsoleOutputCP(UINT cp)
329 BOOL ret;
331 if (!IsValidCodePage(cp))
333 SetLastError(ERROR_INVALID_PARAMETER);
334 return FALSE;
337 SERVER_START_REQ(set_console_input_info)
339 req->handle = 0;
340 req->mask = SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE;
341 req->output_cp = cp;
342 ret = !wine_server_call_err(req);
344 SERVER_END_REQ;
346 return ret;
350 /***********************************************************************
351 * Beep (KERNEL32.@)
353 BOOL WINAPI Beep( DWORD dwFreq, DWORD dwDur )
355 static const char beep = '\a';
356 /* dwFreq and dwDur are ignored by Win95 */
357 if (isatty(2)) write( 2, &beep, 1 );
358 return TRUE;
362 /******************************************************************
363 * OpenConsoleW (KERNEL32.@)
365 * Undocumented
366 * Open a handle to the current process console.
367 * Returns INVALID_HANDLE_VALUE on failure.
369 HANDLE WINAPI OpenConsoleW(LPCWSTR name, DWORD access, BOOL inherit, DWORD creation)
371 HANDLE output = INVALID_HANDLE_VALUE;
372 HANDLE ret;
374 TRACE("(%s, 0x%08x, %d, %u)\n", debugstr_w(name), access, inherit, creation);
376 if (name)
378 if (strcmpiW(coninW, name) == 0)
379 output = (HANDLE) FALSE;
380 else if (strcmpiW(conoutW, name) == 0)
381 output = (HANDLE) TRUE;
384 if (output == INVALID_HANDLE_VALUE)
386 SetLastError(ERROR_INVALID_PARAMETER);
387 return INVALID_HANDLE_VALUE;
389 else if (creation != OPEN_EXISTING)
391 if (!creation || creation == CREATE_NEW || creation == CREATE_ALWAYS)
392 SetLastError(ERROR_SHARING_VIOLATION);
393 else
394 SetLastError(ERROR_INVALID_PARAMETER);
395 return INVALID_HANDLE_VALUE;
398 SERVER_START_REQ( open_console )
400 req->from = wine_server_obj_handle( output );
401 req->access = access;
402 req->attributes = inherit ? OBJ_INHERIT : 0;
403 req->share = FILE_SHARE_READ | FILE_SHARE_WRITE;
404 wine_server_call_err( req );
405 ret = wine_server_ptr_handle( reply->handle );
407 SERVER_END_REQ;
408 if (ret)
409 ret = console_handle_map(ret);
411 return ret;
414 /******************************************************************
415 * VerifyConsoleIoHandle (KERNEL32.@)
417 * Undocumented
419 BOOL WINAPI VerifyConsoleIoHandle(HANDLE handle)
421 BOOL ret;
423 if (!is_console_handle(handle)) return FALSE;
424 SERVER_START_REQ(get_console_mode)
426 req->handle = console_handle_unmap(handle);
427 ret = !wine_server_call( req );
429 SERVER_END_REQ;
430 return ret;
433 /******************************************************************
434 * DuplicateConsoleHandle (KERNEL32.@)
436 * Undocumented
438 HANDLE WINAPI DuplicateConsoleHandle(HANDLE handle, DWORD access, BOOL inherit,
439 DWORD options)
441 HANDLE ret;
443 if (!is_console_handle(handle) ||
444 !DuplicateHandle(GetCurrentProcess(), wine_server_ptr_handle(console_handle_unmap(handle)),
445 GetCurrentProcess(), &ret, access, inherit, options))
446 return INVALID_HANDLE_VALUE;
447 return console_handle_map(ret);
450 /******************************************************************
451 * CloseConsoleHandle (KERNEL32.@)
453 * Undocumented
455 BOOL WINAPI CloseConsoleHandle(HANDLE handle)
457 if (!is_console_handle(handle))
459 SetLastError(ERROR_INVALID_PARAMETER);
460 return FALSE;
462 return CloseHandle(wine_server_ptr_handle(console_handle_unmap(handle)));
465 /******************************************************************
466 * GetConsoleInputWaitHandle (KERNEL32.@)
468 * Undocumented
470 HANDLE WINAPI GetConsoleInputWaitHandle(void)
472 if (!console_wait_event)
474 SERVER_START_REQ(get_console_wait_event)
476 if (!wine_server_call_err( req ))
477 console_wait_event = wine_server_ptr_handle( reply->handle );
479 SERVER_END_REQ;
481 return console_wait_event;
485 /******************************************************************************
486 * WriteConsoleInputA [KERNEL32.@]
488 BOOL WINAPI WriteConsoleInputA( HANDLE handle, const INPUT_RECORD *buffer,
489 DWORD count, LPDWORD written )
491 INPUT_RECORD *recW = NULL;
492 BOOL ret;
494 if (count > 0)
496 if (!buffer)
498 SetLastError( ERROR_INVALID_ACCESS );
499 return FALSE;
502 if (!(recW = HeapAlloc( GetProcessHeap(), 0, count * sizeof(*recW) )))
504 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
505 return FALSE;
508 memcpy( recW, buffer, count * sizeof(*recW) );
509 input_records_AtoW( recW, count );
512 ret = WriteConsoleInputW( handle, recW, count, written );
513 HeapFree( GetProcessHeap(), 0, recW );
514 return ret;
518 /******************************************************************************
519 * WriteConsoleInputW [KERNEL32.@]
521 BOOL WINAPI WriteConsoleInputW( HANDLE handle, const INPUT_RECORD *buffer,
522 DWORD count, LPDWORD written )
524 DWORD events_written = 0;
525 BOOL ret;
527 TRACE("(%p,%p,%d,%p)\n", handle, buffer, count, written);
529 if (count > 0 && !buffer)
531 SetLastError(ERROR_INVALID_ACCESS);
532 return FALSE;
535 SERVER_START_REQ( write_console_input )
537 req->handle = console_handle_unmap(handle);
538 wine_server_add_data( req, buffer, count * sizeof(INPUT_RECORD) );
539 if ((ret = !wine_server_call_err( req )))
540 events_written = reply->written;
542 SERVER_END_REQ;
544 if (written) *written = events_written;
545 else
547 SetLastError(ERROR_INVALID_ACCESS);
548 ret = FALSE;
550 return ret;
554 /***********************************************************************
555 * WriteConsoleOutputA (KERNEL32.@)
557 BOOL WINAPI WriteConsoleOutputA( HANDLE hConsoleOutput, const CHAR_INFO *lpBuffer,
558 COORD size, COORD coord, LPSMALL_RECT region )
560 int y;
561 BOOL ret;
562 COORD new_size, new_coord;
563 CHAR_INFO *ciw;
565 new_size.X = min( region->Right - region->Left + 1, size.X - coord.X );
566 new_size.Y = min( region->Bottom - region->Top + 1, size.Y - coord.Y );
568 if (new_size.X <= 0 || new_size.Y <= 0)
570 region->Bottom = region->Top + new_size.Y - 1;
571 region->Right = region->Left + new_size.X - 1;
572 return TRUE;
575 /* only copy the useful rectangle */
576 if (!(ciw = HeapAlloc( GetProcessHeap(), 0, sizeof(CHAR_INFO) * new_size.X * new_size.Y )))
577 return FALSE;
578 for (y = 0; y < new_size.Y; y++)
580 memcpy( &ciw[y * new_size.X], &lpBuffer[(y + coord.Y) * size.X + coord.X],
581 new_size.X * sizeof(CHAR_INFO) );
582 char_info_AtoW( &ciw[ y * new_size.X ], new_size.X );
584 new_coord.X = new_coord.Y = 0;
585 ret = WriteConsoleOutputW( hConsoleOutput, ciw, new_size, new_coord, region );
586 HeapFree( GetProcessHeap(), 0, ciw );
587 return ret;
591 /***********************************************************************
592 * WriteConsoleOutputW (KERNEL32.@)
594 BOOL WINAPI WriteConsoleOutputW( HANDLE hConsoleOutput, const CHAR_INFO *lpBuffer,
595 COORD size, COORD coord, LPSMALL_RECT region )
597 int width, height, y;
598 BOOL ret = TRUE;
600 TRACE("(%p,%p,(%d,%d),(%d,%d),(%d,%dx%d,%d)\n",
601 hConsoleOutput, lpBuffer, size.X, size.Y, coord.X, coord.Y,
602 region->Left, region->Top, region->Right, region->Bottom);
604 width = min( region->Right - region->Left + 1, size.X - coord.X );
605 height = min( region->Bottom - region->Top + 1, size.Y - coord.Y );
607 if (width > 0 && height > 0)
609 for (y = 0; y < height; y++)
611 SERVER_START_REQ( write_console_output )
613 req->handle = console_handle_unmap(hConsoleOutput);
614 req->x = region->Left;
615 req->y = region->Top + y;
616 req->mode = CHAR_INFO_MODE_TEXTATTR;
617 req->wrap = FALSE;
618 wine_server_add_data( req, &lpBuffer[(y + coord.Y) * size.X + coord.X],
619 width * sizeof(CHAR_INFO));
620 if ((ret = !wine_server_call_err( req )))
622 width = min( width, reply->width - region->Left );
623 height = min( height, reply->height - region->Top );
626 SERVER_END_REQ;
627 if (!ret) break;
630 region->Bottom = region->Top + height - 1;
631 region->Right = region->Left + width - 1;
632 return ret;
636 /******************************************************************************
637 * WriteConsoleOutputCharacterA [KERNEL32.@]
639 * See WriteConsoleOutputCharacterW.
641 BOOL WINAPI WriteConsoleOutputCharacterA( HANDLE hConsoleOutput, LPCSTR str, DWORD length,
642 COORD coord, LPDWORD lpNumCharsWritten )
644 BOOL ret;
645 LPWSTR strW = NULL;
646 DWORD lenW = 0;
648 TRACE("(%p,%s,%d,%dx%d,%p)\n", hConsoleOutput,
649 debugstr_an(str, length), length, coord.X, coord.Y, lpNumCharsWritten);
651 if (length > 0)
653 if (!str)
655 SetLastError( ERROR_INVALID_ACCESS );
656 return FALSE;
659 lenW = MultiByteToWideChar( GetConsoleOutputCP(), 0, str, length, NULL, 0 );
661 if (!(strW = HeapAlloc( GetProcessHeap(), 0, lenW * sizeof(WCHAR) )))
663 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
664 return FALSE;
667 MultiByteToWideChar( GetConsoleOutputCP(), 0, str, length, strW, lenW );
670 ret = WriteConsoleOutputCharacterW( hConsoleOutput, strW, lenW, coord, lpNumCharsWritten );
671 HeapFree( GetProcessHeap(), 0, strW );
672 return ret;
676 /******************************************************************************
677 * WriteConsoleOutputAttribute [KERNEL32.@] Sets attributes for some cells in
678 * the console screen buffer
680 * PARAMS
681 * hConsoleOutput [I] Handle to screen buffer
682 * attr [I] Pointer to buffer with write attributes
683 * length [I] Number of cells to write to
684 * coord [I] Coords of first cell
685 * lpNumAttrsWritten [O] Pointer to number of cells written
687 * RETURNS
688 * Success: TRUE
689 * Failure: FALSE
692 BOOL WINAPI WriteConsoleOutputAttribute( HANDLE hConsoleOutput, CONST WORD *attr, DWORD length,
693 COORD coord, LPDWORD lpNumAttrsWritten )
695 BOOL ret;
697 TRACE("(%p,%p,%d,%dx%d,%p)\n", hConsoleOutput,attr,length,coord.X,coord.Y,lpNumAttrsWritten);
699 if ((length > 0 && !attr) || !lpNumAttrsWritten)
701 SetLastError(ERROR_INVALID_ACCESS);
702 return FALSE;
705 *lpNumAttrsWritten = 0;
707 SERVER_START_REQ( write_console_output )
709 req->handle = console_handle_unmap(hConsoleOutput);
710 req->x = coord.X;
711 req->y = coord.Y;
712 req->mode = CHAR_INFO_MODE_ATTR;
713 req->wrap = TRUE;
714 wine_server_add_data( req, attr, length * sizeof(WORD) );
715 if ((ret = !wine_server_call_err( req )))
716 *lpNumAttrsWritten = reply->written;
718 SERVER_END_REQ;
719 return ret;
723 /******************************************************************************
724 * FillConsoleOutputCharacterA [KERNEL32.@]
726 * See FillConsoleOutputCharacterW.
728 BOOL WINAPI FillConsoleOutputCharacterA( HANDLE hConsoleOutput, CHAR ch, DWORD length,
729 COORD coord, LPDWORD lpNumCharsWritten )
731 WCHAR wch;
733 MultiByteToWideChar( GetConsoleOutputCP(), 0, &ch, 1, &wch, 1 );
734 return FillConsoleOutputCharacterW(hConsoleOutput, wch, length, coord, lpNumCharsWritten);
738 /******************************************************************************
739 * FillConsoleOutputCharacterW [KERNEL32.@] Writes characters to console
741 * PARAMS
742 * hConsoleOutput [I] Handle to screen buffer
743 * ch [I] Character to write
744 * length [I] Number of cells to write to
745 * coord [I] Coords of first cell
746 * lpNumCharsWritten [O] Pointer to number of cells written
748 * RETURNS
749 * Success: TRUE
750 * Failure: FALSE
752 BOOL WINAPI FillConsoleOutputCharacterW( HANDLE hConsoleOutput, WCHAR ch, DWORD length,
753 COORD coord, LPDWORD lpNumCharsWritten)
755 BOOL ret;
757 TRACE("(%p,%s,%d,(%dx%d),%p)\n",
758 hConsoleOutput, debugstr_wn(&ch, 1), length, coord.X, coord.Y, lpNumCharsWritten);
760 if (!lpNumCharsWritten)
762 SetLastError(ERROR_INVALID_ACCESS);
763 return FALSE;
766 *lpNumCharsWritten = 0;
768 SERVER_START_REQ( fill_console_output )
770 req->handle = console_handle_unmap(hConsoleOutput);
771 req->x = coord.X;
772 req->y = coord.Y;
773 req->mode = CHAR_INFO_MODE_TEXT;
774 req->wrap = TRUE;
775 req->data.ch = ch;
776 req->count = length;
777 if ((ret = !wine_server_call_err( req )))
778 *lpNumCharsWritten = reply->written;
780 SERVER_END_REQ;
781 return ret;
785 /******************************************************************************
786 * FillConsoleOutputAttribute [KERNEL32.@] Sets attributes for console
788 * PARAMS
789 * hConsoleOutput [I] Handle to screen buffer
790 * attr [I] Color attribute to write
791 * length [I] Number of cells to write to
792 * coord [I] Coords of first cell
793 * lpNumAttrsWritten [O] Pointer to number of cells written
795 * RETURNS
796 * Success: TRUE
797 * Failure: FALSE
799 BOOL WINAPI FillConsoleOutputAttribute( HANDLE hConsoleOutput, WORD attr, DWORD length,
800 COORD coord, LPDWORD lpNumAttrsWritten )
802 BOOL ret;
804 TRACE("(%p,%d,%d,(%dx%d),%p)\n",
805 hConsoleOutput, attr, length, coord.X, coord.Y, lpNumAttrsWritten);
807 if (!lpNumAttrsWritten)
809 SetLastError(ERROR_INVALID_ACCESS);
810 return FALSE;
813 *lpNumAttrsWritten = 0;
815 SERVER_START_REQ( fill_console_output )
817 req->handle = console_handle_unmap(hConsoleOutput);
818 req->x = coord.X;
819 req->y = coord.Y;
820 req->mode = CHAR_INFO_MODE_ATTR;
821 req->wrap = TRUE;
822 req->data.attr = attr;
823 req->count = length;
824 if ((ret = !wine_server_call_err( req )))
825 *lpNumAttrsWritten = reply->written;
827 SERVER_END_REQ;
828 return ret;
832 /******************************************************************************
833 * ReadConsoleOutputCharacterA [KERNEL32.@]
836 BOOL WINAPI ReadConsoleOutputCharacterA(HANDLE hConsoleOutput, LPSTR lpstr, DWORD count,
837 COORD coord, LPDWORD read_count)
839 DWORD read;
840 BOOL ret;
841 LPWSTR wptr;
843 if (!read_count)
845 SetLastError(ERROR_INVALID_ACCESS);
846 return FALSE;
849 *read_count = 0;
851 if (!(wptr = HeapAlloc(GetProcessHeap(), 0, count * sizeof(WCHAR))))
853 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
854 return FALSE;
857 if ((ret = ReadConsoleOutputCharacterW( hConsoleOutput, wptr, count, coord, &read )))
859 read = WideCharToMultiByte( GetConsoleOutputCP(), 0, wptr, read, lpstr, count, NULL, NULL);
860 *read_count = read;
862 HeapFree( GetProcessHeap(), 0, wptr );
863 return ret;
867 /******************************************************************************
868 * ReadConsoleOutputCharacterW [KERNEL32.@]
871 BOOL WINAPI ReadConsoleOutputCharacterW( HANDLE hConsoleOutput, LPWSTR buffer, DWORD count,
872 COORD coord, LPDWORD read_count )
874 BOOL ret;
876 TRACE( "(%p,%p,%d,%dx%d,%p)\n", hConsoleOutput, buffer, count, coord.X, coord.Y, read_count );
878 if (!read_count)
880 SetLastError(ERROR_INVALID_ACCESS);
881 return FALSE;
884 *read_count = 0;
886 SERVER_START_REQ( read_console_output )
888 req->handle = console_handle_unmap(hConsoleOutput);
889 req->x = coord.X;
890 req->y = coord.Y;
891 req->mode = CHAR_INFO_MODE_TEXT;
892 req->wrap = TRUE;
893 wine_server_set_reply( req, buffer, count * sizeof(WCHAR) );
894 if ((ret = !wine_server_call_err( req )))
895 *read_count = wine_server_reply_size(reply) / sizeof(WCHAR);
897 SERVER_END_REQ;
898 return ret;
902 /******************************************************************************
903 * ReadConsoleOutputAttribute [KERNEL32.@]
905 BOOL WINAPI ReadConsoleOutputAttribute(HANDLE hConsoleOutput, LPWORD lpAttribute, DWORD length,
906 COORD coord, LPDWORD read_count)
908 BOOL ret;
910 TRACE("(%p,%p,%d,%dx%d,%p)\n",
911 hConsoleOutput, lpAttribute, length, coord.X, coord.Y, read_count);
913 if (!read_count)
915 SetLastError(ERROR_INVALID_ACCESS);
916 return FALSE;
919 *read_count = 0;
921 SERVER_START_REQ( read_console_output )
923 req->handle = console_handle_unmap(hConsoleOutput);
924 req->x = coord.X;
925 req->y = coord.Y;
926 req->mode = CHAR_INFO_MODE_ATTR;
927 req->wrap = TRUE;
928 wine_server_set_reply( req, lpAttribute, length * sizeof(WORD) );
929 if ((ret = !wine_server_call_err( req )))
930 *read_count = wine_server_reply_size(reply) / sizeof(WORD);
932 SERVER_END_REQ;
933 return ret;
937 /******************************************************************************
938 * ReadConsoleOutputA [KERNEL32.@]
941 BOOL WINAPI ReadConsoleOutputA( HANDLE hConsoleOutput, LPCHAR_INFO lpBuffer, COORD size,
942 COORD coord, LPSMALL_RECT region )
944 BOOL ret;
945 int y;
947 ret = ReadConsoleOutputW( hConsoleOutput, lpBuffer, size, coord, region );
948 if (ret && region->Right >= region->Left)
950 for (y = 0; y <= region->Bottom - region->Top; y++)
952 char_info_WtoA( &lpBuffer[(coord.Y + y) * size.X + coord.X],
953 region->Right - region->Left + 1 );
956 return ret;
960 /******************************************************************************
961 * ReadConsoleOutputW [KERNEL32.@]
963 * NOTE: The NT4 (sp5) kernel crashes on me if size is (0,0). I don't
964 * think we need to be *that* compatible. -- AJ
966 BOOL WINAPI ReadConsoleOutputW( HANDLE hConsoleOutput, LPCHAR_INFO lpBuffer, COORD size,
967 COORD coord, LPSMALL_RECT region )
969 int width, height, y;
970 BOOL ret = TRUE;
972 width = min( region->Right - region->Left + 1, size.X - coord.X );
973 height = min( region->Bottom - region->Top + 1, size.Y - coord.Y );
975 if (width > 0 && height > 0)
977 for (y = 0; y < height; y++)
979 SERVER_START_REQ( read_console_output )
981 req->handle = console_handle_unmap(hConsoleOutput);
982 req->x = region->Left;
983 req->y = region->Top + y;
984 req->mode = CHAR_INFO_MODE_TEXTATTR;
985 req->wrap = FALSE;
986 wine_server_set_reply( req, &lpBuffer[(y+coord.Y) * size.X + coord.X],
987 width * sizeof(CHAR_INFO) );
988 if ((ret = !wine_server_call_err( req )))
990 width = min( width, reply->width - region->Left );
991 height = min( height, reply->height - region->Top );
994 SERVER_END_REQ;
995 if (!ret) break;
998 region->Bottom = region->Top + height - 1;
999 region->Right = region->Left + width - 1;
1000 return ret;
1004 /******************************************************************************
1005 * ReadConsoleInputA [KERNEL32.@] Reads data from a console
1007 * PARAMS
1008 * handle [I] Handle to console input buffer
1009 * buffer [O] Address of buffer for read data
1010 * count [I] Number of records to read
1011 * pRead [O] Address of number of records read
1013 * RETURNS
1014 * Success: TRUE
1015 * Failure: FALSE
1017 BOOL WINAPI ReadConsoleInputA( HANDLE handle, PINPUT_RECORD buffer, DWORD count, LPDWORD pRead )
1019 DWORD read;
1021 if (!ReadConsoleInputW( handle, buffer, count, &read )) return FALSE;
1022 input_records_WtoA( buffer, read );
1023 if (pRead) *pRead = read;
1024 return TRUE;
1028 /***********************************************************************
1029 * PeekConsoleInputA (KERNEL32.@)
1031 * Gets 'count' first events (or less) from input queue.
1033 BOOL WINAPI PeekConsoleInputA( HANDLE handle, PINPUT_RECORD buffer, DWORD count, LPDWORD pRead )
1035 DWORD read;
1037 if (!PeekConsoleInputW( handle, buffer, count, &read )) return FALSE;
1038 input_records_WtoA( buffer, read );
1039 if (pRead) *pRead = read;
1040 return TRUE;
1044 /***********************************************************************
1045 * PeekConsoleInputW (KERNEL32.@)
1047 BOOL WINAPI PeekConsoleInputW( HANDLE handle, PINPUT_RECORD buffer, DWORD count, LPDWORD read )
1049 BOOL ret;
1050 SERVER_START_REQ( read_console_input )
1052 req->handle = console_handle_unmap(handle);
1053 req->flush = FALSE;
1054 wine_server_set_reply( req, buffer, count * sizeof(INPUT_RECORD) );
1055 if ((ret = !wine_server_call_err( req )))
1057 if (read) *read = count ? reply->read : 0;
1060 SERVER_END_REQ;
1061 return ret;
1065 /***********************************************************************
1066 * GetNumberOfConsoleInputEvents (KERNEL32.@)
1068 BOOL WINAPI GetNumberOfConsoleInputEvents( HANDLE handle, LPDWORD nrofevents )
1070 BOOL ret;
1071 SERVER_START_REQ( read_console_input )
1073 req->handle = console_handle_unmap(handle);
1074 req->flush = FALSE;
1075 if ((ret = !wine_server_call_err( req )))
1077 if (nrofevents)
1078 *nrofevents = reply->read;
1079 else
1081 SetLastError(ERROR_INVALID_ACCESS);
1082 ret = FALSE;
1086 SERVER_END_REQ;
1087 return ret;
1091 /******************************************************************************
1092 * read_console_input
1094 * Helper function for ReadConsole, ReadConsoleInput and FlushConsoleInputBuffer
1096 * Returns
1097 * 0 for error, 1 for no INPUT_RECORD ready, 2 with INPUT_RECORD ready
1099 enum read_console_input_return {rci_error = 0, rci_timeout = 1, rci_gotone = 2};
1101 static enum read_console_input_return bare_console_fetch_input(HANDLE handle, int fd, DWORD timeout)
1103 enum read_console_input_return ret;
1104 char input[8];
1105 WCHAR inputw[8];
1106 int i;
1107 size_t idx = 0, idxw;
1108 unsigned numEvent;
1109 INPUT_RECORD ir[8];
1110 DWORD written;
1111 struct pollfd pollfd;
1112 BOOL locked = FALSE, next_char;
1116 if (idx == sizeof(input))
1118 FIXME("buffer too small (%s)\n", wine_dbgstr_an(input, idx));
1119 ret = rci_error;
1120 break;
1122 pollfd.fd = fd;
1123 pollfd.events = POLLIN;
1124 pollfd.revents = 0;
1125 next_char = FALSE;
1127 switch (poll(&pollfd, 1, timeout))
1129 case 1:
1130 if (!locked)
1132 RtlEnterCriticalSection(&CONSOLE_CritSect);
1133 locked = TRUE;
1135 i = read(fd, &input[idx], 1);
1136 if (i < 0)
1138 ret = rci_error;
1139 break;
1141 if (i == 0)
1143 /* actually another thread likely beat us to reading the char
1144 * return rci_gotone, while not perfect, it should work in most of the cases (as the new event
1145 * should be now in the queue, fed from the other thread)
1147 ret = rci_gotone;
1148 break;
1151 idx++;
1152 numEvent = TERM_FillInputRecord(input, idx, ir);
1153 switch (numEvent)
1155 case 0:
1156 /* we need more char(s) to tell if it matches a key-db entry. wait 1/2s for next char */
1157 timeout = 500;
1158 next_char = TRUE;
1159 break;
1160 case -1:
1161 /* we haven't found the string into key-db, push full input string into server */
1162 idxw = MultiByteToWideChar(CP_UNIXCP, 0, input, idx, inputw, sizeof(inputw) / sizeof(inputw[0]));
1164 /* we cannot translate yet... likely we need more chars (wait max 1/2s for next char) */
1165 if (idxw == 0)
1167 timeout = 500;
1168 next_char = TRUE;
1169 break;
1171 for (i = 0; i < idxw; i++)
1173 numEvent = TERM_FillSimpleChar(inputw[i], ir);
1174 WriteConsoleInputW(handle, ir, numEvent, &written);
1176 ret = rci_gotone;
1177 break;
1178 default:
1179 /* we got a transformation from key-db... push this into server */
1180 ret = WriteConsoleInputW(handle, ir, numEvent, &written) ? rci_gotone : rci_error;
1181 break;
1183 break;
1184 case 0: ret = rci_timeout; break;
1185 default: ret = rci_error; break;
1187 } while (next_char);
1188 if (locked) RtlLeaveCriticalSection(&CONSOLE_CritSect);
1190 return ret;
1193 static enum read_console_input_return read_console_input(HANDLE handle, PINPUT_RECORD ir, DWORD timeout)
1195 int fd;
1196 enum read_console_input_return ret;
1198 if ((fd = get_console_bare_fd(handle)) != -1)
1200 put_console_into_raw_mode(fd);
1201 if (WaitForSingleObject(GetConsoleInputWaitHandle(), 0) != WAIT_OBJECT_0)
1203 ret = bare_console_fetch_input(handle, fd, timeout);
1205 else ret = rci_gotone;
1206 close(fd);
1207 if (ret != rci_gotone) return ret;
1209 else
1211 if (!VerifyConsoleIoHandle(handle)) return rci_error;
1213 if (WaitForSingleObject(GetConsoleInputWaitHandle(), timeout) != WAIT_OBJECT_0)
1214 return rci_timeout;
1217 SERVER_START_REQ( read_console_input )
1219 req->handle = console_handle_unmap(handle);
1220 req->flush = TRUE;
1221 wine_server_set_reply( req, ir, sizeof(INPUT_RECORD) );
1222 if (wine_server_call_err( req ) || !reply->read) ret = rci_error;
1223 else ret = rci_gotone;
1225 SERVER_END_REQ;
1227 return ret;
1231 /***********************************************************************
1232 * FlushConsoleInputBuffer (KERNEL32.@)
1234 BOOL WINAPI FlushConsoleInputBuffer( HANDLE handle )
1236 enum read_console_input_return last;
1237 INPUT_RECORD ir;
1239 while ((last = read_console_input(handle, &ir, 0)) == rci_gotone);
1241 return last == rci_timeout;
1245 /***********************************************************************
1246 * SetConsoleTitleA (KERNEL32.@)
1248 BOOL WINAPI SetConsoleTitleA( LPCSTR title )
1250 LPWSTR titleW;
1251 BOOL ret;
1253 DWORD len = MultiByteToWideChar( GetConsoleOutputCP(), 0, title, -1, NULL, 0 );
1254 if (!(titleW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR)))) return FALSE;
1255 MultiByteToWideChar( GetConsoleOutputCP(), 0, title, -1, titleW, len );
1256 ret = SetConsoleTitleW(titleW);
1257 HeapFree(GetProcessHeap(), 0, titleW);
1258 return ret;
1262 /***********************************************************************
1263 * GetConsoleKeyboardLayoutNameA (KERNEL32.@)
1265 BOOL WINAPI GetConsoleKeyboardLayoutNameA(LPSTR layoutName)
1267 FIXME( "stub %p\n", layoutName);
1268 return TRUE;
1271 /***********************************************************************
1272 * GetConsoleKeyboardLayoutNameW (KERNEL32.@)
1274 BOOL WINAPI GetConsoleKeyboardLayoutNameW(LPWSTR layoutName)
1276 FIXME( "stub %p\n", layoutName);
1277 return TRUE;
1280 static WCHAR input_exe[MAX_PATH + 1];
1282 /***********************************************************************
1283 * GetConsoleInputExeNameW (KERNEL32.@)
1285 BOOL WINAPI GetConsoleInputExeNameW(DWORD buflen, LPWSTR buffer)
1287 TRACE("%u %p\n", buflen, buffer);
1289 RtlEnterCriticalSection(&CONSOLE_CritSect);
1290 if (buflen > strlenW(input_exe)) strcpyW(buffer, input_exe);
1291 else SetLastError(ERROR_BUFFER_OVERFLOW);
1292 RtlLeaveCriticalSection(&CONSOLE_CritSect);
1294 return TRUE;
1297 /***********************************************************************
1298 * GetConsoleInputExeNameA (KERNEL32.@)
1300 BOOL WINAPI GetConsoleInputExeNameA(DWORD buflen, LPSTR buffer)
1302 TRACE("%u %p\n", buflen, buffer);
1304 RtlEnterCriticalSection(&CONSOLE_CritSect);
1305 if (WideCharToMultiByte(CP_ACP, 0, input_exe, -1, NULL, 0, NULL, NULL) <= buflen)
1306 WideCharToMultiByte(CP_ACP, 0, input_exe, -1, buffer, buflen, NULL, NULL);
1307 else SetLastError(ERROR_BUFFER_OVERFLOW);
1308 RtlLeaveCriticalSection(&CONSOLE_CritSect);
1310 return TRUE;
1313 /***********************************************************************
1314 * GetConsoleTitleA (KERNEL32.@)
1316 * See GetConsoleTitleW.
1318 DWORD WINAPI GetConsoleTitleA(LPSTR title, DWORD size)
1320 WCHAR *ptr = HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR) * size);
1321 DWORD ret;
1323 if (!ptr) return 0;
1324 ret = GetConsoleTitleW( ptr, size );
1325 if (ret)
1327 WideCharToMultiByte( GetConsoleOutputCP(), 0, ptr, ret + 1, title, size, NULL, NULL);
1328 ret = strlen(title);
1330 HeapFree(GetProcessHeap(), 0, ptr);
1331 return ret;
1335 /******************************************************************************
1336 * GetConsoleTitleW [KERNEL32.@] Retrieves title string for console
1338 * PARAMS
1339 * title [O] Address of buffer for title
1340 * size [I] Size of buffer
1342 * RETURNS
1343 * Success: Length of string copied
1344 * Failure: 0
1346 DWORD WINAPI GetConsoleTitleW(LPWSTR title, DWORD size)
1348 DWORD ret = 0;
1350 SERVER_START_REQ( get_console_input_info )
1352 req->handle = 0;
1353 wine_server_set_reply( req, title, (size-1) * sizeof(WCHAR) );
1354 if (!wine_server_call_err( req ))
1356 ret = wine_server_reply_size(reply) / sizeof(WCHAR);
1357 title[ret] = 0;
1360 SERVER_END_REQ;
1361 return ret;
1365 /***********************************************************************
1366 * GetLargestConsoleWindowSize (KERNEL32.@)
1368 * NOTE
1369 * This should return a COORD, but calling convention for returning
1370 * structures is different between Windows and gcc on i386.
1372 * VERSION: [i386]
1374 #ifdef __i386__
1375 #undef GetLargestConsoleWindowSize
1376 DWORD WINAPI GetLargestConsoleWindowSize(HANDLE hConsoleOutput)
1378 union {
1379 COORD c;
1380 DWORD w;
1381 } x;
1382 x.c.X = 80;
1383 x.c.Y = 24;
1384 TRACE("(%p), returning %dx%d (%x)\n", hConsoleOutput, x.c.X, x.c.Y, x.w);
1385 return x.w;
1387 #endif /* defined(__i386__) */
1390 /***********************************************************************
1391 * GetLargestConsoleWindowSize (KERNEL32.@)
1393 * NOTE
1394 * This should return a COORD, but calling convention for returning
1395 * structures is different between Windows and gcc on i386.
1397 * VERSION: [!i386]
1399 #ifndef __i386__
1400 COORD WINAPI GetLargestConsoleWindowSize(HANDLE hConsoleOutput)
1402 COORD c;
1403 c.X = 80;
1404 c.Y = 24;
1405 TRACE("(%p), returning %dx%d\n", hConsoleOutput, c.X, c.Y);
1406 return c;
1408 #endif /* defined(__i386__) */
1410 static WCHAR* S_EditString /* = NULL */;
1411 static unsigned S_EditStrPos /* = 0 */;
1413 /***********************************************************************
1414 * FreeConsole (KERNEL32.@)
1416 BOOL WINAPI FreeConsole(VOID)
1418 BOOL ret;
1420 /* invalidate local copy of input event handle */
1421 console_wait_event = 0;
1423 SERVER_START_REQ(free_console)
1425 ret = !wine_server_call_err( req );
1427 SERVER_END_REQ;
1428 return ret;
1431 /******************************************************************
1432 * start_console_renderer
1434 * helper for AllocConsole
1435 * starts the renderer process
1437 static BOOL start_console_renderer_helper(const char* appname, STARTUPINFOA* si,
1438 HANDLE hEvent)
1440 char buffer[1024];
1441 int ret;
1442 PROCESS_INFORMATION pi;
1444 /* FIXME: use dynamic allocation for most of the buffers below */
1445 ret = snprintf(buffer, sizeof(buffer), "%s --use-event=%ld", appname, (DWORD_PTR)hEvent);
1446 if ((ret > -1) && (ret < sizeof(buffer)) &&
1447 CreateProcessA(NULL, buffer, NULL, NULL, TRUE, DETACHED_PROCESS,
1448 NULL, NULL, si, &pi))
1450 HANDLE wh[2];
1451 DWORD res;
1453 wh[0] = hEvent;
1454 wh[1] = pi.hProcess;
1455 res = WaitForMultipleObjects(2, wh, FALSE, INFINITE);
1457 CloseHandle(pi.hThread);
1458 CloseHandle(pi.hProcess);
1460 if (res != WAIT_OBJECT_0) return FALSE;
1462 TRACE("Started wineconsole pid=%08x tid=%08x\n",
1463 pi.dwProcessId, pi.dwThreadId);
1465 return TRUE;
1467 return FALSE;
1470 static BOOL start_console_renderer(STARTUPINFOA* si)
1472 HANDLE hEvent = 0;
1473 LPSTR p;
1474 OBJECT_ATTRIBUTES attr;
1475 BOOL ret = FALSE;
1477 attr.Length = sizeof(attr);
1478 attr.RootDirectory = 0;
1479 attr.Attributes = OBJ_INHERIT;
1480 attr.ObjectName = NULL;
1481 attr.SecurityDescriptor = NULL;
1482 attr.SecurityQualityOfService = NULL;
1484 NtCreateEvent(&hEvent, EVENT_ALL_ACCESS, &attr, NotificationEvent, FALSE);
1485 if (!hEvent) return FALSE;
1487 /* first try environment variable */
1488 if ((p = getenv("WINECONSOLE")) != NULL)
1490 ret = start_console_renderer_helper(p, si, hEvent);
1491 if (!ret)
1492 ERR("Couldn't launch Wine console from WINECONSOLE env var (%s)... "
1493 "trying default access\n", p);
1496 /* then try the regular PATH */
1497 if (!ret)
1498 ret = start_console_renderer_helper("wineconsole", si, hEvent);
1500 CloseHandle(hEvent);
1501 return ret;
1504 /***********************************************************************
1505 * AllocConsole (KERNEL32.@)
1507 * creates an xterm with a pty to our program
1509 BOOL WINAPI AllocConsole(void)
1511 HANDLE handle_in = INVALID_HANDLE_VALUE;
1512 HANDLE handle_out = INVALID_HANDLE_VALUE;
1513 HANDLE handle_err = INVALID_HANDLE_VALUE;
1514 STARTUPINFOA siCurrent;
1515 STARTUPINFOA siConsole;
1516 char buffer[1024];
1518 TRACE("()\n");
1520 handle_in = OpenConsoleW( coninW, GENERIC_READ|GENERIC_WRITE|SYNCHRONIZE,
1521 FALSE, OPEN_EXISTING );
1523 if (VerifyConsoleIoHandle(handle_in))
1525 /* we already have a console opened on this process, don't create a new one */
1526 CloseHandle(handle_in);
1527 return FALSE;
1530 /* invalidate local copy of input event handle */
1531 console_wait_event = 0;
1533 GetStartupInfoA(&siCurrent);
1535 memset(&siConsole, 0, sizeof(siConsole));
1536 siConsole.cb = sizeof(siConsole);
1537 /* setup a view arguments for wineconsole (it'll use them as default values) */
1538 if (siCurrent.dwFlags & STARTF_USECOUNTCHARS)
1540 siConsole.dwFlags |= STARTF_USECOUNTCHARS;
1541 siConsole.dwXCountChars = siCurrent.dwXCountChars;
1542 siConsole.dwYCountChars = siCurrent.dwYCountChars;
1544 if (siCurrent.dwFlags & STARTF_USEFILLATTRIBUTE)
1546 siConsole.dwFlags |= STARTF_USEFILLATTRIBUTE;
1547 siConsole.dwFillAttribute = siCurrent.dwFillAttribute;
1549 if (siCurrent.dwFlags & STARTF_USESHOWWINDOW)
1551 siConsole.dwFlags |= STARTF_USESHOWWINDOW;
1552 siConsole.wShowWindow = siCurrent.wShowWindow;
1554 /* FIXME (should pass the unicode form) */
1555 if (siCurrent.lpTitle)
1556 siConsole.lpTitle = siCurrent.lpTitle;
1557 else if (GetModuleFileNameA(0, buffer, sizeof(buffer)))
1559 buffer[sizeof(buffer) - 1] = '\0';
1560 siConsole.lpTitle = buffer;
1563 if (!start_console_renderer(&siConsole))
1564 goto the_end;
1566 if( !(siCurrent.dwFlags & STARTF_USESTDHANDLES) ) {
1567 /* all std I/O handles are inheritable by default */
1568 handle_in = OpenConsoleW( coninW, GENERIC_READ|GENERIC_WRITE|SYNCHRONIZE,
1569 TRUE, OPEN_EXISTING );
1570 if (handle_in == INVALID_HANDLE_VALUE) goto the_end;
1572 handle_out = OpenConsoleW( conoutW, GENERIC_READ|GENERIC_WRITE,
1573 TRUE, OPEN_EXISTING );
1574 if (handle_out == INVALID_HANDLE_VALUE) goto the_end;
1576 if (!DuplicateHandle(GetCurrentProcess(), handle_out, GetCurrentProcess(),
1577 &handle_err, 0, TRUE, DUPLICATE_SAME_ACCESS))
1578 goto the_end;
1579 } else {
1580 /* STARTF_USESTDHANDLES flag: use handles from StartupInfo */
1581 handle_in = siCurrent.hStdInput;
1582 handle_out = siCurrent.hStdOutput;
1583 handle_err = siCurrent.hStdError;
1586 /* NT resets the STD_*_HANDLEs on console alloc */
1587 SetStdHandle(STD_INPUT_HANDLE, handle_in);
1588 SetStdHandle(STD_OUTPUT_HANDLE, handle_out);
1589 SetStdHandle(STD_ERROR_HANDLE, handle_err);
1591 SetLastError(ERROR_SUCCESS);
1593 return TRUE;
1595 the_end:
1596 ERR("Can't allocate console\n");
1597 if (handle_in != INVALID_HANDLE_VALUE) CloseHandle(handle_in);
1598 if (handle_out != INVALID_HANDLE_VALUE) CloseHandle(handle_out);
1599 if (handle_err != INVALID_HANDLE_VALUE) CloseHandle(handle_err);
1600 FreeConsole();
1601 return FALSE;
1605 /***********************************************************************
1606 * ReadConsoleA (KERNEL32.@)
1608 BOOL WINAPI ReadConsoleA(HANDLE hConsoleInput, LPVOID lpBuffer, DWORD nNumberOfCharsToRead,
1609 LPDWORD lpNumberOfCharsRead, LPVOID lpReserved)
1611 LPWSTR ptr = HeapAlloc(GetProcessHeap(), 0, nNumberOfCharsToRead * sizeof(WCHAR));
1612 DWORD ncr = 0;
1613 BOOL ret;
1615 if ((ret = ReadConsoleW(hConsoleInput, ptr, nNumberOfCharsToRead, &ncr, NULL)))
1616 ncr = WideCharToMultiByte(GetConsoleCP(), 0, ptr, ncr, lpBuffer, nNumberOfCharsToRead, NULL, NULL);
1618 if (lpNumberOfCharsRead) *lpNumberOfCharsRead = ncr;
1619 HeapFree(GetProcessHeap(), 0, ptr);
1621 return ret;
1624 /***********************************************************************
1625 * ReadConsoleW (KERNEL32.@)
1627 BOOL WINAPI ReadConsoleW(HANDLE hConsoleInput, LPVOID lpBuffer,
1628 DWORD nNumberOfCharsToRead, LPDWORD lpNumberOfCharsRead, LPVOID lpReserved)
1630 DWORD charsread;
1631 LPWSTR xbuf = lpBuffer;
1632 DWORD mode;
1633 BOOL is_bare = FALSE;
1634 int fd;
1636 TRACE("(%p,%p,%d,%p,%p)\n",
1637 hConsoleInput, lpBuffer, nNumberOfCharsToRead, lpNumberOfCharsRead, lpReserved);
1639 if (!GetConsoleMode(hConsoleInput, &mode))
1640 return FALSE;
1641 if ((fd = get_console_bare_fd(hConsoleInput)) != -1)
1643 close(fd);
1644 is_bare = TRUE;
1646 if (mode & ENABLE_LINE_INPUT)
1648 if (!S_EditString || S_EditString[S_EditStrPos] == 0)
1650 HeapFree(GetProcessHeap(), 0, S_EditString);
1651 if (!(S_EditString = CONSOLE_Readline(hConsoleInput, !is_bare)))
1652 return FALSE;
1653 S_EditStrPos = 0;
1655 charsread = lstrlenW(&S_EditString[S_EditStrPos]);
1656 if (charsread > nNumberOfCharsToRead) charsread = nNumberOfCharsToRead;
1657 memcpy(xbuf, &S_EditString[S_EditStrPos], charsread * sizeof(WCHAR));
1658 S_EditStrPos += charsread;
1660 else
1662 INPUT_RECORD ir;
1663 DWORD timeout = INFINITE;
1665 /* FIXME: should we read at least 1 char? The SDK does not say */
1666 /* wait for at least one available input record (it doesn't mean we'll have
1667 * chars stored in xbuf...)
1669 * Although SDK doc keeps silence about 1 char, SDK examples assume
1670 * that we should wait for at least one character (not key). --KS
1672 charsread = 0;
1675 if (read_console_input(hConsoleInput, &ir, timeout) != rci_gotone) break;
1676 if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown &&
1677 ir.Event.KeyEvent.uChar.UnicodeChar)
1679 xbuf[charsread++] = ir.Event.KeyEvent.uChar.UnicodeChar;
1680 timeout = 0;
1682 } while (charsread < nNumberOfCharsToRead);
1683 /* nothing has been read */
1684 if (timeout == INFINITE) return FALSE;
1687 if (lpNumberOfCharsRead) *lpNumberOfCharsRead = charsread;
1689 return TRUE;
1693 /***********************************************************************
1694 * ReadConsoleInputW (KERNEL32.@)
1696 BOOL WINAPI ReadConsoleInputW(HANDLE hConsoleInput, PINPUT_RECORD lpBuffer,
1697 DWORD nLength, LPDWORD lpNumberOfEventsRead)
1699 DWORD idx = 0;
1700 DWORD timeout = INFINITE;
1702 if (!nLength)
1704 if (lpNumberOfEventsRead) *lpNumberOfEventsRead = 0;
1705 return TRUE;
1708 /* loop until we get at least one event */
1709 while (read_console_input(hConsoleInput, &lpBuffer[idx], timeout) == rci_gotone &&
1710 ++idx < nLength)
1711 timeout = 0;
1713 if (lpNumberOfEventsRead) *lpNumberOfEventsRead = idx;
1714 return idx != 0;
1718 /******************************************************************************
1719 * WriteConsoleOutputCharacterW [KERNEL32.@]
1721 * Copy character to consecutive cells in the console screen buffer.
1723 * PARAMS
1724 * hConsoleOutput [I] Handle to screen buffer
1725 * str [I] Pointer to buffer with chars to write
1726 * length [I] Number of cells to write to
1727 * coord [I] Coords of first cell
1728 * lpNumCharsWritten [O] Pointer to number of cells written
1730 * RETURNS
1731 * Success: TRUE
1732 * Failure: FALSE
1735 BOOL WINAPI WriteConsoleOutputCharacterW( HANDLE hConsoleOutput, LPCWSTR str, DWORD length,
1736 COORD coord, LPDWORD lpNumCharsWritten )
1738 BOOL ret;
1740 TRACE("(%p,%s,%d,%dx%d,%p)\n", hConsoleOutput,
1741 debugstr_wn(str, length), length, coord.X, coord.Y, lpNumCharsWritten);
1743 if ((length > 0 && !str) || !lpNumCharsWritten)
1745 SetLastError(ERROR_INVALID_ACCESS);
1746 return FALSE;
1749 *lpNumCharsWritten = 0;
1751 SERVER_START_REQ( write_console_output )
1753 req->handle = console_handle_unmap(hConsoleOutput);
1754 req->x = coord.X;
1755 req->y = coord.Y;
1756 req->mode = CHAR_INFO_MODE_TEXT;
1757 req->wrap = TRUE;
1758 wine_server_add_data( req, str, length * sizeof(WCHAR) );
1759 if ((ret = !wine_server_call_err( req )))
1760 *lpNumCharsWritten = reply->written;
1762 SERVER_END_REQ;
1763 return ret;
1767 /******************************************************************************
1768 * SetConsoleTitleW [KERNEL32.@] Sets title bar string for console
1770 * PARAMS
1771 * title [I] Address of new title
1773 * RETURNS
1774 * Success: TRUE
1775 * Failure: FALSE
1777 BOOL WINAPI SetConsoleTitleW(LPCWSTR title)
1779 BOOL ret;
1781 TRACE("(%s)\n", debugstr_w(title));
1782 SERVER_START_REQ( set_console_input_info )
1784 req->handle = 0;
1785 req->mask = SET_CONSOLE_INPUT_INFO_TITLE;
1786 wine_server_add_data( req, title, strlenW(title) * sizeof(WCHAR) );
1787 ret = !wine_server_call_err( req );
1789 SERVER_END_REQ;
1790 return ret;
1794 /***********************************************************************
1795 * GetNumberOfConsoleMouseButtons (KERNEL32.@)
1797 BOOL WINAPI GetNumberOfConsoleMouseButtons(LPDWORD nrofbuttons)
1799 FIXME("(%p): stub\n", nrofbuttons);
1800 *nrofbuttons = 2;
1801 return TRUE;
1804 /******************************************************************************
1805 * SetConsoleInputExeNameW [KERNEL32.@]
1807 BOOL WINAPI SetConsoleInputExeNameW(LPCWSTR name)
1809 TRACE("(%s)\n", debugstr_w(name));
1811 if (!name || !name[0])
1813 SetLastError(ERROR_INVALID_PARAMETER);
1814 return FALSE;
1817 RtlEnterCriticalSection(&CONSOLE_CritSect);
1818 if (strlenW(name) < sizeof(input_exe)/sizeof(WCHAR)) strcpyW(input_exe, name);
1819 RtlLeaveCriticalSection(&CONSOLE_CritSect);
1821 return TRUE;
1824 /******************************************************************************
1825 * SetConsoleInputExeNameA [KERNEL32.@]
1827 BOOL WINAPI SetConsoleInputExeNameA(LPCSTR name)
1829 int len;
1830 LPWSTR nameW;
1831 BOOL ret;
1833 if (!name || !name[0])
1835 SetLastError(ERROR_INVALID_PARAMETER);
1836 return FALSE;
1839 len = MultiByteToWideChar(CP_ACP, 0, name, -1, NULL, 0);
1840 if (!(nameW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR)))) return FALSE;
1842 MultiByteToWideChar(CP_ACP, 0, name, -1, nameW, len);
1843 ret = SetConsoleInputExeNameW(nameW);
1844 HeapFree(GetProcessHeap(), 0, nameW);
1846 return ret;
1849 /******************************************************************
1850 * CONSOLE_DefaultHandler
1852 * Final control event handler
1854 static BOOL WINAPI CONSOLE_DefaultHandler(DWORD dwCtrlType)
1856 FIXME("Terminating process %x on event %x\n", GetCurrentProcessId(), dwCtrlType);
1857 ExitProcess(0);
1858 /* should never go here */
1859 return TRUE;
1862 /******************************************************************************
1863 * SetConsoleCtrlHandler [KERNEL32.@] Adds function to calling process list
1865 * PARAMS
1866 * func [I] Address of handler function
1867 * add [I] Handler to add or remove
1869 * RETURNS
1870 * Success: TRUE
1871 * Failure: FALSE
1874 struct ConsoleHandler
1876 PHANDLER_ROUTINE handler;
1877 struct ConsoleHandler* next;
1880 static struct ConsoleHandler CONSOLE_DefaultConsoleHandler = {CONSOLE_DefaultHandler, NULL};
1881 static struct ConsoleHandler* CONSOLE_Handlers = &CONSOLE_DefaultConsoleHandler;
1883 /*****************************************************************************/
1885 /******************************************************************
1886 * SetConsoleCtrlHandler (KERNEL32.@)
1888 BOOL WINAPI SetConsoleCtrlHandler(PHANDLER_ROUTINE func, BOOL add)
1890 BOOL ret = TRUE;
1892 TRACE("(%p,%i)\n", func, add);
1894 if (!func)
1896 RtlEnterCriticalSection(&CONSOLE_CritSect);
1897 if (add)
1898 NtCurrentTeb()->Peb->ProcessParameters->ConsoleFlags |= 1;
1899 else
1900 NtCurrentTeb()->Peb->ProcessParameters->ConsoleFlags &= ~1;
1901 RtlLeaveCriticalSection(&CONSOLE_CritSect);
1903 else if (add)
1905 struct ConsoleHandler* ch = HeapAlloc(GetProcessHeap(), 0, sizeof(struct ConsoleHandler));
1907 if (!ch) return FALSE;
1908 ch->handler = func;
1909 RtlEnterCriticalSection(&CONSOLE_CritSect);
1910 ch->next = CONSOLE_Handlers;
1911 CONSOLE_Handlers = ch;
1912 RtlLeaveCriticalSection(&CONSOLE_CritSect);
1914 else
1916 struct ConsoleHandler** ch;
1917 RtlEnterCriticalSection(&CONSOLE_CritSect);
1918 for (ch = &CONSOLE_Handlers; *ch; ch = &(*ch)->next)
1920 if ((*ch)->handler == func) break;
1922 if (*ch)
1924 struct ConsoleHandler* rch = *ch;
1926 /* sanity check */
1927 if (rch == &CONSOLE_DefaultConsoleHandler)
1929 ERR("Who's trying to remove default handler???\n");
1930 SetLastError(ERROR_INVALID_PARAMETER);
1931 ret = FALSE;
1933 else
1935 *ch = rch->next;
1936 HeapFree(GetProcessHeap(), 0, rch);
1939 else
1941 WARN("Attempt to remove non-installed CtrlHandler %p\n", func);
1942 SetLastError(ERROR_INVALID_PARAMETER);
1943 ret = FALSE;
1945 RtlLeaveCriticalSection(&CONSOLE_CritSect);
1947 return ret;
1950 static LONG WINAPI CONSOLE_CtrlEventHandler(EXCEPTION_POINTERS *eptr)
1952 TRACE("(%x)\n", eptr->ExceptionRecord->ExceptionCode);
1953 return EXCEPTION_EXECUTE_HANDLER;
1956 /******************************************************************
1957 * CONSOLE_SendEventThread
1959 * Internal helper to pass an event to the list on installed handlers
1961 static DWORD WINAPI CONSOLE_SendEventThread(void* pmt)
1963 DWORD_PTR event = (DWORD_PTR)pmt;
1964 struct ConsoleHandler* ch;
1966 if (event == CTRL_C_EVENT)
1968 BOOL caught_by_dbg = TRUE;
1969 /* First, try to pass the ctrl-C event to the debugger (if any)
1970 * If it continues, there's nothing more to do
1971 * Otherwise, we need to send the ctrl-C event to the handlers
1973 __TRY
1975 RaiseException( DBG_CONTROL_C, 0, 0, NULL );
1977 __EXCEPT(CONSOLE_CtrlEventHandler)
1979 caught_by_dbg = FALSE;
1981 __ENDTRY;
1982 if (caught_by_dbg) return 0;
1983 /* the debugger didn't continue... so, pass to ctrl handlers */
1985 RtlEnterCriticalSection(&CONSOLE_CritSect);
1986 for (ch = CONSOLE_Handlers; ch; ch = ch->next)
1988 if (ch->handler(event)) break;
1990 RtlLeaveCriticalSection(&CONSOLE_CritSect);
1991 return 1;
1994 /******************************************************************
1995 * CONSOLE_HandleCtrlC
1997 * Check whether the shall manipulate CtrlC events
1999 int CONSOLE_HandleCtrlC(unsigned sig)
2001 HANDLE thread;
2003 /* FIXME: better test whether a console is attached to this process ??? */
2004 extern unsigned CONSOLE_GetNumHistoryEntries(void);
2005 if (CONSOLE_GetNumHistoryEntries() == (unsigned)-1) return 0;
2007 /* check if we have to ignore ctrl-C events */
2008 if (!(NtCurrentTeb()->Peb->ProcessParameters->ConsoleFlags & 1))
2010 /* Create a separate thread to signal all the events.
2011 * This is needed because:
2012 * - this function can be called in an Unix signal handler (hence on an
2013 * different stack than the thread that's running). This breaks the
2014 * Win32 exception mechanisms (where the thread's stack is checked).
2015 * - since the current thread, while processing the signal, can hold the
2016 * console critical section, we need another execution environment where
2017 * we can wait on this critical section
2019 thread = CreateThread(NULL, 0, CONSOLE_SendEventThread, (void*)CTRL_C_EVENT, 0, NULL);
2020 if (thread == NULL)
2021 return 0;
2023 CloseHandle(thread);
2025 return 1;
2028 /******************************************************************************
2029 * GenerateConsoleCtrlEvent [KERNEL32.@] Simulate a CTRL-C or CTRL-BREAK
2031 * PARAMS
2032 * dwCtrlEvent [I] Type of event
2033 * dwProcessGroupID [I] Process group ID to send event to
2035 * RETURNS
2036 * Success: True
2037 * Failure: False (and *should* [but doesn't] set LastError)
2039 BOOL WINAPI GenerateConsoleCtrlEvent(DWORD dwCtrlEvent,
2040 DWORD dwProcessGroupID)
2042 BOOL ret;
2044 TRACE("(%d, %d)\n", dwCtrlEvent, dwProcessGroupID);
2046 if (dwCtrlEvent != CTRL_C_EVENT && dwCtrlEvent != CTRL_BREAK_EVENT)
2048 ERR("Invalid event %d for PGID %d\n", dwCtrlEvent, dwProcessGroupID);
2049 return FALSE;
2052 SERVER_START_REQ( send_console_signal )
2054 req->signal = dwCtrlEvent;
2055 req->group_id = dwProcessGroupID;
2056 ret = !wine_server_call_err( req );
2058 SERVER_END_REQ;
2060 /* FIXME: Shall this function be synchronous, i.e., only return when all events
2061 * have been handled by all processes in the given group?
2062 * As of today, we don't wait...
2064 return ret;
2068 /******************************************************************************
2069 * CreateConsoleScreenBuffer [KERNEL32.@] Creates a console screen buffer
2071 * PARAMS
2072 * dwDesiredAccess [I] Access flag
2073 * dwShareMode [I] Buffer share mode
2074 * sa [I] Security attributes
2075 * dwFlags [I] Type of buffer to create
2076 * lpScreenBufferData [I] Reserved
2078 * NOTES
2079 * Should call SetLastError
2081 * RETURNS
2082 * Success: Handle to new console screen buffer
2083 * Failure: INVALID_HANDLE_VALUE
2085 HANDLE WINAPI CreateConsoleScreenBuffer(DWORD dwDesiredAccess, DWORD dwShareMode,
2086 LPSECURITY_ATTRIBUTES sa, DWORD dwFlags,
2087 LPVOID lpScreenBufferData)
2089 HANDLE ret = INVALID_HANDLE_VALUE;
2091 TRACE("(%d,%d,%p,%d,%p)\n",
2092 dwDesiredAccess, dwShareMode, sa, dwFlags, lpScreenBufferData);
2094 if (dwFlags != CONSOLE_TEXTMODE_BUFFER || lpScreenBufferData != NULL)
2096 SetLastError(ERROR_INVALID_PARAMETER);
2097 return INVALID_HANDLE_VALUE;
2100 SERVER_START_REQ(create_console_output)
2102 req->handle_in = 0;
2103 req->access = dwDesiredAccess;
2104 req->attributes = (sa && sa->bInheritHandle) ? OBJ_INHERIT : 0;
2105 req->share = dwShareMode;
2106 req->fd = -1;
2107 if (!wine_server_call_err( req ))
2108 ret = console_handle_map( wine_server_ptr_handle( reply->handle_out ));
2110 SERVER_END_REQ;
2112 return ret;
2116 /***********************************************************************
2117 * GetConsoleScreenBufferInfo (KERNEL32.@)
2119 BOOL WINAPI GetConsoleScreenBufferInfo(HANDLE hConsoleOutput, LPCONSOLE_SCREEN_BUFFER_INFO csbi)
2121 BOOL ret;
2123 SERVER_START_REQ(get_console_output_info)
2125 req->handle = console_handle_unmap(hConsoleOutput);
2126 if ((ret = !wine_server_call_err( req )))
2128 csbi->dwSize.X = reply->width;
2129 csbi->dwSize.Y = reply->height;
2130 csbi->dwCursorPosition.X = reply->cursor_x;
2131 csbi->dwCursorPosition.Y = reply->cursor_y;
2132 csbi->wAttributes = reply->attr;
2133 csbi->srWindow.Left = reply->win_left;
2134 csbi->srWindow.Right = reply->win_right;
2135 csbi->srWindow.Top = reply->win_top;
2136 csbi->srWindow.Bottom = reply->win_bottom;
2137 csbi->dwMaximumWindowSize.X = reply->max_width;
2138 csbi->dwMaximumWindowSize.Y = reply->max_height;
2141 SERVER_END_REQ;
2143 TRACE("(%p,(%d,%d) (%d,%d) %d (%d,%d-%d,%d) (%d,%d)\n",
2144 hConsoleOutput, csbi->dwSize.X, csbi->dwSize.Y,
2145 csbi->dwCursorPosition.X, csbi->dwCursorPosition.Y,
2146 csbi->wAttributes,
2147 csbi->srWindow.Left, csbi->srWindow.Top, csbi->srWindow.Right, csbi->srWindow.Bottom,
2148 csbi->dwMaximumWindowSize.X, csbi->dwMaximumWindowSize.Y);
2150 return ret;
2154 /******************************************************************************
2155 * SetConsoleActiveScreenBuffer [KERNEL32.@] Sets buffer to current console
2157 * RETURNS
2158 * Success: TRUE
2159 * Failure: FALSE
2161 BOOL WINAPI SetConsoleActiveScreenBuffer(HANDLE hConsoleOutput)
2163 BOOL ret;
2165 TRACE("(%p)\n", hConsoleOutput);
2167 SERVER_START_REQ( set_console_input_info )
2169 req->handle = 0;
2170 req->mask = SET_CONSOLE_INPUT_INFO_ACTIVE_SB;
2171 req->active_sb = wine_server_obj_handle( hConsoleOutput );
2172 ret = !wine_server_call_err( req );
2174 SERVER_END_REQ;
2175 return ret;
2179 /***********************************************************************
2180 * GetConsoleMode (KERNEL32.@)
2182 BOOL WINAPI GetConsoleMode(HANDLE hcon, LPDWORD mode)
2184 BOOL ret;
2186 SERVER_START_REQ( get_console_mode )
2188 req->handle = console_handle_unmap(hcon);
2189 if ((ret = !wine_server_call_err( req )))
2191 if (mode) *mode = reply->mode;
2194 SERVER_END_REQ;
2195 return ret;
2199 /******************************************************************************
2200 * SetConsoleMode [KERNEL32.@] Sets input mode of console's input buffer
2202 * PARAMS
2203 * hcon [I] Handle to console input or screen buffer
2204 * mode [I] Input or output mode to set
2206 * RETURNS
2207 * Success: TRUE
2208 * Failure: FALSE
2210 * mode:
2211 * ENABLE_PROCESSED_INPUT 0x01
2212 * ENABLE_LINE_INPUT 0x02
2213 * ENABLE_ECHO_INPUT 0x04
2214 * ENABLE_WINDOW_INPUT 0x08
2215 * ENABLE_MOUSE_INPUT 0x10
2217 BOOL WINAPI SetConsoleMode(HANDLE hcon, DWORD mode)
2219 BOOL ret;
2221 SERVER_START_REQ(set_console_mode)
2223 req->handle = console_handle_unmap(hcon);
2224 req->mode = mode;
2225 ret = !wine_server_call_err( req );
2227 SERVER_END_REQ;
2228 /* FIXME: when resetting a console input to editline mode, I think we should
2229 * empty the S_EditString buffer
2232 TRACE("(%p,%x) retval == %d\n", hcon, mode, ret);
2234 return ret;
2238 /******************************************************************
2239 * CONSOLE_WriteChars
2241 * WriteConsoleOutput helper: hides server call semantics
2242 * writes a string at a given pos with standard attribute
2244 static int CONSOLE_WriteChars(HANDLE hCon, LPCWSTR lpBuffer, int nc, COORD* pos)
2246 int written = -1;
2248 if (!nc) return 0;
2250 SERVER_START_REQ( write_console_output )
2252 req->handle = console_handle_unmap(hCon);
2253 req->x = pos->X;
2254 req->y = pos->Y;
2255 req->mode = CHAR_INFO_MODE_TEXTSTDATTR;
2256 req->wrap = FALSE;
2257 wine_server_add_data( req, lpBuffer, nc * sizeof(WCHAR) );
2258 if (!wine_server_call_err( req )) written = reply->written;
2260 SERVER_END_REQ;
2262 if (written > 0) pos->X += written;
2263 return written;
2266 /******************************************************************
2267 * next_line
2269 * WriteConsoleOutput helper: handles passing to next line (+scrolling if necessary)
2272 static int next_line(HANDLE hCon, CONSOLE_SCREEN_BUFFER_INFO* csbi)
2274 SMALL_RECT src;
2275 CHAR_INFO ci;
2276 COORD dst;
2278 csbi->dwCursorPosition.X = 0;
2279 csbi->dwCursorPosition.Y++;
2281 if (csbi->dwCursorPosition.Y < csbi->dwSize.Y) return 1;
2283 src.Top = 1;
2284 src.Bottom = csbi->dwSize.Y - 1;
2285 src.Left = 0;
2286 src.Right = csbi->dwSize.X - 1;
2288 dst.X = 0;
2289 dst.Y = 0;
2291 ci.Attributes = csbi->wAttributes;
2292 ci.Char.UnicodeChar = ' ';
2294 csbi->dwCursorPosition.Y--;
2295 if (!ScrollConsoleScreenBufferW(hCon, &src, NULL, dst, &ci))
2296 return 0;
2297 return 1;
2300 /******************************************************************
2301 * write_block
2303 * WriteConsoleOutput helper: writes a block of non special characters
2304 * Block can spread on several lines, and wrapping, if needed, is
2305 * handled
2308 static int write_block(HANDLE hCon, CONSOLE_SCREEN_BUFFER_INFO* csbi,
2309 DWORD mode, LPCWSTR ptr, int len)
2311 int blk; /* number of chars to write on current line */
2312 int done; /* number of chars already written */
2314 if (len <= 0) return 1;
2316 if (mode & ENABLE_WRAP_AT_EOL_OUTPUT) /* writes remaining on next line */
2318 for (done = 0; done < len; done += blk)
2320 blk = min(len - done, csbi->dwSize.X - csbi->dwCursorPosition.X);
2322 if (CONSOLE_WriteChars(hCon, ptr + done, blk, &csbi->dwCursorPosition) != blk)
2323 return 0;
2324 if (csbi->dwCursorPosition.X == csbi->dwSize.X && !next_line(hCon, csbi))
2325 return 0;
2328 else
2330 int pos = csbi->dwCursorPosition.X;
2331 /* FIXME: we could reduce the number of loops
2332 * but, in most cases we wouldn't gain lots of time (it would only
2333 * happen if we're asked to overwrite more than twice the part of the line,
2334 * which is unlikely
2336 for (done = 0; done < len; done += blk)
2338 blk = min(len - done, csbi->dwSize.X - csbi->dwCursorPosition.X);
2340 csbi->dwCursorPosition.X = pos;
2341 if (CONSOLE_WriteChars(hCon, ptr + done, blk, &csbi->dwCursorPosition) != blk)
2342 return 0;
2346 return 1;
2349 /***********************************************************************
2350 * WriteConsoleW (KERNEL32.@)
2352 BOOL WINAPI WriteConsoleW(HANDLE hConsoleOutput, LPCVOID lpBuffer, DWORD nNumberOfCharsToWrite,
2353 LPDWORD lpNumberOfCharsWritten, LPVOID lpReserved)
2355 DWORD mode;
2356 DWORD nw = 0;
2357 const WCHAR* psz = lpBuffer;
2358 CONSOLE_SCREEN_BUFFER_INFO csbi;
2359 int k, first = 0, fd;
2361 TRACE("%p %s %d %p %p\n",
2362 hConsoleOutput, debugstr_wn(lpBuffer, nNumberOfCharsToWrite),
2363 nNumberOfCharsToWrite, lpNumberOfCharsWritten, lpReserved);
2365 if (lpNumberOfCharsWritten) *lpNumberOfCharsWritten = 0;
2367 if ((fd = get_console_bare_fd(hConsoleOutput)) != -1)
2369 char* ptr;
2370 unsigned len;
2371 HANDLE hFile;
2372 NTSTATUS status;
2373 IO_STATUS_BLOCK iosb;
2375 close(fd);
2376 /* FIXME: mode ENABLED_OUTPUT is not processed (or actually we rely on underlying Unix/TTY fd
2377 * to do the job
2379 len = WideCharToMultiByte(CP_UNIXCP, 0, lpBuffer, nNumberOfCharsToWrite, NULL, 0, NULL, NULL);
2380 if ((ptr = HeapAlloc(GetProcessHeap(), 0, len)) == NULL)
2381 return FALSE;
2383 WideCharToMultiByte(CP_UNIXCP, 0, lpBuffer, nNumberOfCharsToWrite, ptr, len, NULL, NULL);
2384 hFile = wine_server_ptr_handle(console_handle_unmap(hConsoleOutput));
2385 status = NtWriteFile(hFile, NULL, NULL, NULL, &iosb, ptr, len, 0, NULL);
2386 if (status == STATUS_PENDING)
2388 WaitForSingleObject(hFile, INFINITE);
2389 status = iosb.u.Status;
2392 if (status != STATUS_PENDING && lpNumberOfCharsWritten)
2394 if (iosb.Information == len)
2395 *lpNumberOfCharsWritten = nNumberOfCharsToWrite;
2396 else
2397 FIXME("Conversion not supported yet\n");
2399 HeapFree(GetProcessHeap(), 0, ptr);
2400 if (status != STATUS_SUCCESS)
2402 SetLastError(RtlNtStatusToDosError(status));
2403 return FALSE;
2405 return TRUE;
2408 if (!GetConsoleMode(hConsoleOutput, &mode) || !GetConsoleScreenBufferInfo(hConsoleOutput, &csbi))
2409 return FALSE;
2411 if (!nNumberOfCharsToWrite) return TRUE;
2413 if (mode & ENABLE_PROCESSED_OUTPUT)
2415 unsigned int i;
2417 for (i = 0; i < nNumberOfCharsToWrite; i++)
2419 switch (psz[i])
2421 case '\b': case '\t': case '\n': case '\a': case '\r':
2422 /* don't handle here the i-th char... done below */
2423 if ((k = i - first) > 0)
2425 if (!write_block(hConsoleOutput, &csbi, mode, &psz[first], k))
2426 goto the_end;
2427 nw += k;
2429 first = i + 1;
2430 nw++;
2432 switch (psz[i])
2434 case '\b':
2435 if (csbi.dwCursorPosition.X > 0) csbi.dwCursorPosition.X--;
2436 break;
2437 case '\t':
2439 static const WCHAR tmp[] = {' ',' ',' ',' ',' ',' ',' ',' '};
2440 if (!write_block(hConsoleOutput, &csbi, mode, tmp,
2441 ((csbi.dwCursorPosition.X + 8) & ~7) - csbi.dwCursorPosition.X))
2442 goto the_end;
2444 break;
2445 case '\n':
2446 next_line(hConsoleOutput, &csbi);
2447 break;
2448 case '\a':
2449 Beep(400, 300);
2450 break;
2451 case '\r':
2452 csbi.dwCursorPosition.X = 0;
2453 break;
2454 default:
2455 break;
2460 /* write the remaining block (if any) if processed output is enabled, or the
2461 * entire buffer otherwise
2463 if ((k = nNumberOfCharsToWrite - first) > 0)
2465 if (!write_block(hConsoleOutput, &csbi, mode, &psz[first], k))
2466 goto the_end;
2467 nw += k;
2470 the_end:
2471 SetConsoleCursorPosition(hConsoleOutput, csbi.dwCursorPosition);
2472 if (lpNumberOfCharsWritten) *lpNumberOfCharsWritten = nw;
2473 return nw != 0;
2477 /***********************************************************************
2478 * WriteConsoleA (KERNEL32.@)
2480 BOOL WINAPI WriteConsoleA(HANDLE hConsoleOutput, LPCVOID lpBuffer, DWORD nNumberOfCharsToWrite,
2481 LPDWORD lpNumberOfCharsWritten, LPVOID lpReserved)
2483 BOOL ret;
2484 LPWSTR xstring;
2485 DWORD n;
2487 n = MultiByteToWideChar(GetConsoleOutputCP(), 0, lpBuffer, nNumberOfCharsToWrite, NULL, 0);
2489 if (lpNumberOfCharsWritten) *lpNumberOfCharsWritten = 0;
2490 xstring = HeapAlloc(GetProcessHeap(), 0, n * sizeof(WCHAR));
2491 if (!xstring) return 0;
2493 MultiByteToWideChar(GetConsoleOutputCP(), 0, lpBuffer, nNumberOfCharsToWrite, xstring, n);
2495 ret = WriteConsoleW(hConsoleOutput, xstring, n, lpNumberOfCharsWritten, 0);
2497 HeapFree(GetProcessHeap(), 0, xstring);
2499 return ret;
2502 /******************************************************************************
2503 * SetConsoleCursorPosition [KERNEL32.@]
2504 * Sets the cursor position in console
2506 * PARAMS
2507 * hConsoleOutput [I] Handle of console screen buffer
2508 * dwCursorPosition [I] New cursor position coordinates
2510 * RETURNS
2511 * Success: TRUE
2512 * Failure: FALSE
2514 BOOL WINAPI SetConsoleCursorPosition(HANDLE hcon, COORD pos)
2516 BOOL ret;
2517 CONSOLE_SCREEN_BUFFER_INFO csbi;
2518 int do_move = 0;
2519 int w, h;
2521 TRACE("%p %d %d\n", hcon, pos.X, pos.Y);
2523 SERVER_START_REQ(set_console_output_info)
2525 req->handle = console_handle_unmap(hcon);
2526 req->cursor_x = pos.X;
2527 req->cursor_y = pos.Y;
2528 req->mask = SET_CONSOLE_OUTPUT_INFO_CURSOR_POS;
2529 ret = !wine_server_call_err( req );
2531 SERVER_END_REQ;
2533 if (!ret || !GetConsoleScreenBufferInfo(hcon, &csbi))
2534 return FALSE;
2536 /* if cursor is no longer visible, scroll the visible window... */
2537 w = csbi.srWindow.Right - csbi.srWindow.Left + 1;
2538 h = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
2539 if (pos.X < csbi.srWindow.Left)
2541 csbi.srWindow.Left = min(pos.X, csbi.dwSize.X - w);
2542 do_move++;
2544 else if (pos.X > csbi.srWindow.Right)
2546 csbi.srWindow.Left = max(pos.X, w) - w + 1;
2547 do_move++;
2549 csbi.srWindow.Right = csbi.srWindow.Left + w - 1;
2551 if (pos.Y < csbi.srWindow.Top)
2553 csbi.srWindow.Top = min(pos.Y, csbi.dwSize.Y - h);
2554 do_move++;
2556 else if (pos.Y > csbi.srWindow.Bottom)
2558 csbi.srWindow.Top = max(pos.Y, h) - h + 1;
2559 do_move++;
2561 csbi.srWindow.Bottom = csbi.srWindow.Top + h - 1;
2563 ret = (do_move) ? SetConsoleWindowInfo(hcon, TRUE, &csbi.srWindow) : TRUE;
2565 return ret;
2568 /******************************************************************************
2569 * GetConsoleCursorInfo [KERNEL32.@] Gets size and visibility of console
2571 * PARAMS
2572 * hcon [I] Handle to console screen buffer
2573 * cinfo [O] Address of cursor information
2575 * RETURNS
2576 * Success: TRUE
2577 * Failure: FALSE
2579 BOOL WINAPI GetConsoleCursorInfo(HANDLE hCon, LPCONSOLE_CURSOR_INFO cinfo)
2581 BOOL ret;
2583 SERVER_START_REQ(get_console_output_info)
2585 req->handle = console_handle_unmap(hCon);
2586 ret = !wine_server_call_err( req );
2587 if (ret && cinfo)
2589 cinfo->dwSize = reply->cursor_size;
2590 cinfo->bVisible = reply->cursor_visible;
2593 SERVER_END_REQ;
2595 if (!ret) return FALSE;
2597 if (!cinfo)
2599 SetLastError(ERROR_INVALID_ACCESS);
2600 ret = FALSE;
2602 else TRACE("(%p) returning (%d,%d)\n", hCon, cinfo->dwSize, cinfo->bVisible);
2604 return ret;
2608 /******************************************************************************
2609 * SetConsoleCursorInfo [KERNEL32.@] Sets size and visibility of cursor
2611 * PARAMS
2612 * hcon [I] Handle to console screen buffer
2613 * cinfo [I] Address of cursor information
2614 * RETURNS
2615 * Success: TRUE
2616 * Failure: FALSE
2618 BOOL WINAPI SetConsoleCursorInfo(HANDLE hCon, LPCONSOLE_CURSOR_INFO cinfo)
2620 BOOL ret;
2622 TRACE("(%p,%d,%d)\n", hCon, cinfo->dwSize, cinfo->bVisible);
2623 SERVER_START_REQ(set_console_output_info)
2625 req->handle = console_handle_unmap(hCon);
2626 req->cursor_size = cinfo->dwSize;
2627 req->cursor_visible = cinfo->bVisible;
2628 req->mask = SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM;
2629 ret = !wine_server_call_err( req );
2631 SERVER_END_REQ;
2632 return ret;
2636 /******************************************************************************
2637 * SetConsoleWindowInfo [KERNEL32.@] Sets size and position of console
2639 * PARAMS
2640 * hcon [I] Handle to console screen buffer
2641 * bAbsolute [I] Coordinate type flag
2642 * window [I] Address of new window rectangle
2643 * RETURNS
2644 * Success: TRUE
2645 * Failure: FALSE
2647 BOOL WINAPI SetConsoleWindowInfo(HANDLE hCon, BOOL bAbsolute, LPSMALL_RECT window)
2649 SMALL_RECT p = *window;
2650 BOOL ret;
2652 TRACE("(%p,%d,(%d,%d-%d,%d))\n", hCon, bAbsolute, p.Left, p.Top, p.Right, p.Bottom);
2654 if (!bAbsolute)
2656 CONSOLE_SCREEN_BUFFER_INFO csbi;
2658 if (!GetConsoleScreenBufferInfo(hCon, &csbi))
2659 return FALSE;
2660 p.Left += csbi.srWindow.Left;
2661 p.Top += csbi.srWindow.Top;
2662 p.Right += csbi.srWindow.Right;
2663 p.Bottom += csbi.srWindow.Bottom;
2665 SERVER_START_REQ(set_console_output_info)
2667 req->handle = console_handle_unmap(hCon);
2668 req->win_left = p.Left;
2669 req->win_top = p.Top;
2670 req->win_right = p.Right;
2671 req->win_bottom = p.Bottom;
2672 req->mask = SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW;
2673 ret = !wine_server_call_err( req );
2675 SERVER_END_REQ;
2677 return ret;
2681 /******************************************************************************
2682 * SetConsoleTextAttribute [KERNEL32.@] Sets colors for text
2684 * Sets the foreground and background color attributes of characters
2685 * written to the screen buffer.
2687 * RETURNS
2688 * Success: TRUE
2689 * Failure: FALSE
2691 BOOL WINAPI SetConsoleTextAttribute(HANDLE hConsoleOutput, WORD wAttr)
2693 BOOL ret;
2695 TRACE("(%p,%d)\n", hConsoleOutput, wAttr);
2696 SERVER_START_REQ(set_console_output_info)
2698 req->handle = console_handle_unmap(hConsoleOutput);
2699 req->attr = wAttr;
2700 req->mask = SET_CONSOLE_OUTPUT_INFO_ATTR;
2701 ret = !wine_server_call_err( req );
2703 SERVER_END_REQ;
2704 return ret;
2708 /******************************************************************************
2709 * SetConsoleScreenBufferSize [KERNEL32.@] Changes size of console
2711 * PARAMS
2712 * hConsoleOutput [I] Handle to console screen buffer
2713 * dwSize [I] New size in character rows and cols
2715 * RETURNS
2716 * Success: TRUE
2717 * Failure: FALSE
2719 BOOL WINAPI SetConsoleScreenBufferSize(HANDLE hConsoleOutput, COORD dwSize)
2721 BOOL ret;
2723 TRACE("(%p,(%d,%d))\n", hConsoleOutput, dwSize.X, dwSize.Y);
2724 SERVER_START_REQ(set_console_output_info)
2726 req->handle = console_handle_unmap(hConsoleOutput);
2727 req->width = dwSize.X;
2728 req->height = dwSize.Y;
2729 req->mask = SET_CONSOLE_OUTPUT_INFO_SIZE;
2730 ret = !wine_server_call_err( req );
2732 SERVER_END_REQ;
2733 return ret;
2737 /******************************************************************************
2738 * ScrollConsoleScreenBufferA [KERNEL32.@]
2741 BOOL WINAPI ScrollConsoleScreenBufferA(HANDLE hConsoleOutput, LPSMALL_RECT lpScrollRect,
2742 LPSMALL_RECT lpClipRect, COORD dwDestOrigin,
2743 LPCHAR_INFO lpFill)
2745 CHAR_INFO ciw;
2747 ciw.Attributes = lpFill->Attributes;
2748 MultiByteToWideChar(GetConsoleOutputCP(), 0, &lpFill->Char.AsciiChar, 1, &ciw.Char.UnicodeChar, 1);
2750 return ScrollConsoleScreenBufferW(hConsoleOutput, lpScrollRect, lpClipRect,
2751 dwDestOrigin, &ciw);
2754 /******************************************************************
2755 * CONSOLE_FillLineUniform
2757 * Helper function for ScrollConsoleScreenBufferW
2758 * Fills a part of a line with a constant character info
2760 void CONSOLE_FillLineUniform(HANDLE hConsoleOutput, int i, int j, int len, LPCHAR_INFO lpFill)
2762 SERVER_START_REQ( fill_console_output )
2764 req->handle = console_handle_unmap(hConsoleOutput);
2765 req->mode = CHAR_INFO_MODE_TEXTATTR;
2766 req->x = i;
2767 req->y = j;
2768 req->count = len;
2769 req->wrap = FALSE;
2770 req->data.ch = lpFill->Char.UnicodeChar;
2771 req->data.attr = lpFill->Attributes;
2772 wine_server_call_err( req );
2774 SERVER_END_REQ;
2777 /******************************************************************************
2778 * ScrollConsoleScreenBufferW [KERNEL32.@]
2782 BOOL WINAPI ScrollConsoleScreenBufferW(HANDLE hConsoleOutput, LPSMALL_RECT lpScrollRect,
2783 LPSMALL_RECT lpClipRect, COORD dwDestOrigin,
2784 LPCHAR_INFO lpFill)
2786 SMALL_RECT dst;
2787 DWORD ret;
2788 int i, j;
2789 int start = -1;
2790 SMALL_RECT clip;
2791 CONSOLE_SCREEN_BUFFER_INFO csbi;
2792 BOOL inside;
2793 COORD src;
2795 if (lpClipRect)
2796 TRACE("(%p,(%d,%d-%d,%d),(%d,%d-%d,%d),%d-%d,%p)\n", hConsoleOutput,
2797 lpScrollRect->Left, lpScrollRect->Top,
2798 lpScrollRect->Right, lpScrollRect->Bottom,
2799 lpClipRect->Left, lpClipRect->Top,
2800 lpClipRect->Right, lpClipRect->Bottom,
2801 dwDestOrigin.X, dwDestOrigin.Y, lpFill);
2802 else
2803 TRACE("(%p,(%d,%d-%d,%d),(nil),%d-%d,%p)\n", hConsoleOutput,
2804 lpScrollRect->Left, lpScrollRect->Top,
2805 lpScrollRect->Right, lpScrollRect->Bottom,
2806 dwDestOrigin.X, dwDestOrigin.Y, lpFill);
2808 if (!GetConsoleScreenBufferInfo(hConsoleOutput, &csbi))
2809 return FALSE;
2811 src.X = lpScrollRect->Left;
2812 src.Y = lpScrollRect->Top;
2814 /* step 1: get dst rect */
2815 dst.Left = dwDestOrigin.X;
2816 dst.Top = dwDestOrigin.Y;
2817 dst.Right = dst.Left + (lpScrollRect->Right - lpScrollRect->Left);
2818 dst.Bottom = dst.Top + (lpScrollRect->Bottom - lpScrollRect->Top);
2820 /* step 2a: compute the final clip rect (optional passed clip and screen buffer limits */
2821 if (lpClipRect)
2823 clip.Left = max(0, lpClipRect->Left);
2824 clip.Right = min(csbi.dwSize.X - 1, lpClipRect->Right);
2825 clip.Top = max(0, lpClipRect->Top);
2826 clip.Bottom = min(csbi.dwSize.Y - 1, lpClipRect->Bottom);
2828 else
2830 clip.Left = 0;
2831 clip.Right = csbi.dwSize.X - 1;
2832 clip.Top = 0;
2833 clip.Bottom = csbi.dwSize.Y - 1;
2835 if (clip.Left > clip.Right || clip.Top > clip.Bottom) return FALSE;
2837 /* step 2b: clip dst rect */
2838 if (dst.Left < clip.Left ) {src.X += clip.Left - dst.Left; dst.Left = clip.Left;}
2839 if (dst.Top < clip.Top ) {src.Y += clip.Top - dst.Top; dst.Top = clip.Top;}
2840 if (dst.Right > clip.Right ) dst.Right = clip.Right;
2841 if (dst.Bottom > clip.Bottom) dst.Bottom = clip.Bottom;
2843 /* step 3: transfer the bits */
2844 SERVER_START_REQ(move_console_output)
2846 req->handle = console_handle_unmap(hConsoleOutput);
2847 req->x_src = src.X;
2848 req->y_src = src.Y;
2849 req->x_dst = dst.Left;
2850 req->y_dst = dst.Top;
2851 req->w = dst.Right - dst.Left + 1;
2852 req->h = dst.Bottom - dst.Top + 1;
2853 ret = !wine_server_call_err( req );
2855 SERVER_END_REQ;
2857 if (!ret) return FALSE;
2859 /* step 4: clean out the exposed part */
2861 /* have to write cell [i,j] if it is not in dst rect (because it has already
2862 * been written to by the scroll) and is in clip (we shall not write
2863 * outside of clip)
2865 for (j = max(lpScrollRect->Top, clip.Top); j <= min(lpScrollRect->Bottom, clip.Bottom); j++)
2867 inside = dst.Top <= j && j <= dst.Bottom;
2868 start = -1;
2869 for (i = max(lpScrollRect->Left, clip.Left); i <= min(lpScrollRect->Right, clip.Right); i++)
2871 if (inside && dst.Left <= i && i <= dst.Right)
2873 if (start != -1)
2875 CONSOLE_FillLineUniform(hConsoleOutput, start, j, i - start, lpFill);
2876 start = -1;
2879 else
2881 if (start == -1) start = i;
2884 if (start != -1)
2885 CONSOLE_FillLineUniform(hConsoleOutput, start, j, i - start, lpFill);
2888 return TRUE;
2891 /******************************************************************
2892 * AttachConsole (KERNEL32.@)
2894 BOOL WINAPI AttachConsole(DWORD dwProcessId)
2896 FIXME("stub %x\n",dwProcessId);
2897 return TRUE;
2900 /******************************************************************
2901 * GetConsoleDisplayMode (KERNEL32.@)
2903 BOOL WINAPI GetConsoleDisplayMode(LPDWORD lpModeFlags)
2905 TRACE("semi-stub: %p\n", lpModeFlags);
2906 /* It is safe to successfully report windowed mode */
2907 *lpModeFlags = 0;
2908 return TRUE;
2911 /******************************************************************
2912 * SetConsoleDisplayMode (KERNEL32.@)
2914 BOOL WINAPI SetConsoleDisplayMode(HANDLE hConsoleOutput, DWORD dwFlags,
2915 COORD *lpNewScreenBufferDimensions)
2917 TRACE("(%p, %x, (%d, %d))\n", hConsoleOutput, dwFlags,
2918 lpNewScreenBufferDimensions->X, lpNewScreenBufferDimensions->Y);
2919 if (dwFlags == 1)
2921 /* We cannot switch to fullscreen */
2922 return FALSE;
2924 return TRUE;
2928 /* ====================================================================
2930 * Console manipulation functions
2932 * ====================================================================*/
2934 /* some missing functions...
2935 * FIXME: those are likely to be defined as undocumented function in kernel32 (or part of them)
2936 * should get the right API and implement them
2937 * SetConsoleCommandHistoryMode
2938 * SetConsoleNumberOfCommands[AW]
2940 int CONSOLE_GetHistory(int idx, WCHAR* buf, int buf_len)
2942 int len = 0;
2944 SERVER_START_REQ( get_console_input_history )
2946 req->handle = 0;
2947 req->index = idx;
2948 if (buf && buf_len > 1)
2950 wine_server_set_reply( req, buf, (buf_len - 1) * sizeof(WCHAR) );
2952 if (!wine_server_call_err( req ))
2954 if (buf) buf[wine_server_reply_size(reply) / sizeof(WCHAR)] = 0;
2955 len = reply->total / sizeof(WCHAR) + 1;
2958 SERVER_END_REQ;
2959 return len;
2962 /******************************************************************
2963 * CONSOLE_AppendHistory
2967 BOOL CONSOLE_AppendHistory(const WCHAR* ptr)
2969 size_t len = strlenW(ptr);
2970 BOOL ret;
2972 while (len && (ptr[len - 1] == '\n' || ptr[len - 1] == '\r')) len--;
2973 if (!len) return FALSE;
2975 SERVER_START_REQ( append_console_input_history )
2977 req->handle = 0;
2978 wine_server_add_data( req, ptr, len * sizeof(WCHAR) );
2979 ret = !wine_server_call_err( req );
2981 SERVER_END_REQ;
2982 return ret;
2985 /******************************************************************
2986 * CONSOLE_GetNumHistoryEntries
2990 unsigned CONSOLE_GetNumHistoryEntries(void)
2992 unsigned ret = -1;
2993 SERVER_START_REQ(get_console_input_info)
2995 req->handle = 0;
2996 if (!wine_server_call_err( req )) ret = reply->history_index;
2998 SERVER_END_REQ;
2999 return ret;
3002 /******************************************************************
3003 * CONSOLE_GetEditionMode
3007 BOOL CONSOLE_GetEditionMode(HANDLE hConIn, int* mode)
3009 unsigned ret = FALSE;
3010 SERVER_START_REQ(get_console_input_info)
3012 req->handle = console_handle_unmap(hConIn);
3013 if ((ret = !wine_server_call_err( req )))
3014 *mode = reply->edition_mode;
3016 SERVER_END_REQ;
3017 return ret;
3020 /******************************************************************
3021 * GetConsoleAliasW
3024 * RETURNS
3025 * 0 if an error occurred, non-zero for success
3028 DWORD WINAPI GetConsoleAliasW(LPWSTR lpSource, LPWSTR lpTargetBuffer,
3029 DWORD TargetBufferLength, LPWSTR lpExename)
3031 FIXME("(%s,%p,%d,%s): stub\n", debugstr_w(lpSource), lpTargetBuffer, TargetBufferLength, debugstr_w(lpExename));
3032 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3033 return 0;
3036 /******************************************************************
3037 * GetConsoleProcessList (KERNEL32.@)
3039 DWORD WINAPI GetConsoleProcessList(LPDWORD processlist, DWORD processcount)
3041 FIXME("(%p,%d): stub\n", processlist, processcount);
3043 if (!processlist || processcount < 1)
3045 SetLastError(ERROR_INVALID_PARAMETER);
3046 return 0;
3049 return 0;
3052 BOOL CONSOLE_Init(RTL_USER_PROCESS_PARAMETERS *params)
3054 memset(&S_termios, 0, sizeof(S_termios));
3055 if (params->ConsoleHandle == KERNEL32_CONSOLE_SHELL)
3057 HANDLE conin;
3059 /* FIXME: to be done even if program is a GUI ? */
3060 /* This is wine specific: we have no parent (we're started from unix)
3061 * so, create a simple console with bare handles
3063 TERM_Init();
3064 wine_server_send_fd(0);
3065 SERVER_START_REQ( alloc_console )
3067 req->access = GENERIC_READ | GENERIC_WRITE;
3068 req->attributes = OBJ_INHERIT;
3069 req->pid = 0xffffffff;
3070 req->input_fd = 0;
3071 wine_server_call( req );
3072 conin = wine_server_ptr_handle( reply->handle_in );
3073 /* reply->event shouldn't be created by server */
3075 SERVER_END_REQ;
3077 if (!params->hStdInput)
3078 params->hStdInput = conin;
3080 if (!params->hStdOutput)
3082 wine_server_send_fd(1);
3083 SERVER_START_REQ( create_console_output )
3085 req->handle_in = wine_server_obj_handle(conin);
3086 req->access = GENERIC_WRITE|GENERIC_READ;
3087 req->attributes = OBJ_INHERIT;
3088 req->share = FILE_SHARE_READ|FILE_SHARE_WRITE;
3089 req->fd = 1;
3090 wine_server_call(req);
3091 params->hStdOutput = wine_server_ptr_handle(reply->handle_out);
3093 SERVER_END_REQ;
3095 if (!params->hStdError)
3097 wine_server_send_fd(2);
3098 SERVER_START_REQ( create_console_output )
3100 req->handle_in = wine_server_obj_handle(conin);
3101 req->access = GENERIC_WRITE|GENERIC_READ;
3102 req->attributes = OBJ_INHERIT;
3103 req->share = FILE_SHARE_READ|FILE_SHARE_WRITE;
3104 req->fd = 2;
3105 wine_server_call(req);
3106 params->hStdError = wine_server_ptr_handle(reply->handle_out);
3108 SERVER_END_REQ;
3112 /* convert value from server:
3113 * + 0 => INVALID_HANDLE_VALUE
3114 * + console handle needs to be mapped
3116 if (!params->hStdInput)
3117 params->hStdInput = INVALID_HANDLE_VALUE;
3118 else if (VerifyConsoleIoHandle(console_handle_map(params->hStdInput)))
3120 params->hStdInput = console_handle_map(params->hStdInput);
3121 save_console_mode(params->hStdInput);
3124 if (!params->hStdOutput)
3125 params->hStdOutput = INVALID_HANDLE_VALUE;
3126 else if (VerifyConsoleIoHandle(console_handle_map(params->hStdOutput)))
3127 params->hStdOutput = console_handle_map(params->hStdOutput);
3129 if (!params->hStdError)
3130 params->hStdError = INVALID_HANDLE_VALUE;
3131 else if (VerifyConsoleIoHandle(console_handle_map(params->hStdError)))
3132 params->hStdError = console_handle_map(params->hStdError);
3134 return TRUE;
3137 BOOL CONSOLE_Exit(void)
3139 /* the console is in raw mode, put it back in cooked mode */
3140 return restore_console_mode(GetStdHandle(STD_INPUT_HANDLE));
3143 /* Undocumented, called by native doskey.exe */
3144 /* FIXME: Should use CONSOLE_GetHistory() above for full implementation */
3145 DWORD WINAPI GetConsoleCommandHistoryA(DWORD unknown1, DWORD unknown2, DWORD unknown3)
3147 FIXME(": (0x%x, 0x%x, 0x%x) stub!\n", unknown1, unknown2, unknown3);
3148 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3149 return 0;
3152 /* Undocumented, called by native doskey.exe */
3153 /* FIXME: Should use CONSOLE_GetHistory() above for full implementation */
3154 DWORD WINAPI GetConsoleCommandHistoryW(DWORD unknown1, DWORD unknown2, DWORD unknown3)
3156 FIXME(": (0x%x, 0x%x, 0x%x) stub!\n", unknown1, unknown2, unknown3);
3157 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3158 return 0;
3161 /* Undocumented, called by native doskey.exe */
3162 /* FIXME: Should use CONSOLE_GetHistory() above for full implementation */
3163 DWORD WINAPI GetConsoleCommandHistoryLengthA(LPCSTR unknown)
3165 FIXME(": (%s) stub!\n", debugstr_a(unknown));
3166 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3167 return 0;
3170 /* Undocumented, called by native doskey.exe */
3171 /* FIXME: Should use CONSOLE_GetHistory() above for full implementation */
3172 DWORD WINAPI GetConsoleCommandHistoryLengthW(LPCWSTR unknown)
3174 FIXME(": (%s) stub!\n", debugstr_w(unknown));
3175 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3176 return 0;
3179 DWORD WINAPI GetConsoleAliasesLengthA(LPSTR unknown)
3181 FIXME(": (%s) stub!\n", debugstr_a(unknown));
3182 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3183 return 0;
3186 DWORD WINAPI GetConsoleAliasesLengthW(LPWSTR unknown)
3188 FIXME(": (%s) stub!\n", debugstr_w(unknown));
3189 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3190 return 0;
3193 VOID WINAPI ExpungeConsoleCommandHistoryA(LPCSTR unknown)
3195 FIXME(": (%s) stub!\n", debugstr_a(unknown));
3196 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3199 VOID WINAPI ExpungeConsoleCommandHistoryW(LPCWSTR unknown)
3201 FIXME(": (%s) stub!\n", debugstr_w(unknown));
3202 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3205 BOOL WINAPI AddConsoleAliasA(LPSTR source, LPSTR target, LPSTR exename)
3207 FIXME(": (%s, %s, %s) stub!\n", debugstr_a(source), debugstr_a(target), debugstr_a(exename));
3208 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3209 return FALSE;
3212 BOOL WINAPI AddConsoleAliasW(LPWSTR source, LPWSTR target, LPWSTR exename)
3214 FIXME(": (%s, %s, %s) stub!\n", debugstr_w(source), debugstr_w(target), debugstr_w(exename));
3215 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3216 return FALSE;