qcap/tests: Add media tests for the SmartTee filter.
[wine/multimedia.git] / programs / wineconsole / wineconsole.c
blobed5f816357e3c716573ee8ae2b74d09bb2c703a4
1 /*
2 * an application for displaying Win32 console
4 * Copyright 2001, 2002 Eric Pouech
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library 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 GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <stdio.h>
25 #include <stdarg.h>
26 #include "wine/server.h"
27 #include "winecon_private.h"
28 #include "winnls.h"
29 #include "winuser.h"
31 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(wineconsole);
35 void WINECON_Fatal(const char* msg)
37 WINE_ERR("%s\n", msg);
38 ExitProcess(0);
41 static void printf_res(UINT uResId, ...)
43 WCHAR buffer[1024];
44 CHAR ansi[1024];
45 va_list args;
47 va_start(args, uResId);
48 LoadStringW(GetModuleHandleW(NULL), uResId, buffer, sizeof(buffer)/sizeof(buffer[0]));
49 WideCharToMultiByte(CP_UNIXCP, 0, buffer, -1, ansi, sizeof(ansi), NULL, NULL);
50 vprintf(ansi, args);
51 va_end(args);
54 static void WINECON_Usage(void)
56 printf_res(IDS_USAGE_HEADER);
57 printf_res(IDS_USAGE_BACKEND);
58 printf_res(IDS_USAGE_COMMAND);
59 printf_res(IDS_USAGE_FOOTER);
62 /******************************************************************
63 * WINECON_FetchCells
65 * updates the local copy of cells (band to update)
67 static void WINECON_FetchCells(struct inner_data* data, int upd_tp, int upd_bm)
69 SERVER_START_REQ( read_console_output )
71 req->handle = wine_server_obj_handle( data->hConOut );
72 req->x = 0;
73 req->y = upd_tp;
74 req->mode = CHAR_INFO_MODE_TEXTATTR;
75 req->wrap = TRUE;
76 wine_server_set_reply( req, &data->cells[upd_tp * data->curcfg.sb_width],
77 (upd_bm-upd_tp+1) * data->curcfg.sb_width * sizeof(CHAR_INFO) );
78 wine_server_call( req );
80 SERVER_END_REQ;
81 data->fnRefresh(data, upd_tp, upd_bm);
84 /******************************************************************
85 * WINECON_ResizeWithContainer
87 * For console embedded in a container (e.g. user in a win32 window, or (n)curses
88 * in a TERM, perform resize of console (screen buffer and window) to fit in
89 * (new) container size.
91 void WINECON_ResizeWithContainer(struct inner_data* data, int width, int height)
93 struct config_data cfg;
95 if (data->in_set_config) return;
97 cfg = data->curcfg;
98 cfg.win_width = width;
99 cfg.win_height = height;
101 /* auto size screen-buffer if it's now smaller than window */
102 if (cfg.sb_width < cfg.win_width) cfg.sb_width = cfg.win_width;
103 if (cfg.sb_height < cfg.win_height) cfg.sb_height = cfg.win_height;
105 /* and reset window pos so that we don't display outside of the screen-buffer */
106 if (cfg.win_pos.X + cfg.win_width > cfg.sb_width) cfg.win_pos.X = cfg.sb_width - cfg.win_width;
107 if (cfg.win_pos.Y + cfg.win_height > cfg.sb_height) cfg.win_pos.Y = cfg.sb_height - cfg.win_height;
109 WINECON_SetConfig(data, &cfg);
112 /******************************************************************
113 * WINECON_SetHistorySize
117 static BOOL WINECON_SetHistorySize(HANDLE hConIn, int size)
119 BOOL ret;
121 SERVER_START_REQ(set_console_input_info)
123 req->handle = wine_server_obj_handle( hConIn );
124 req->mask = SET_CONSOLE_INPUT_INFO_HISTORY_SIZE;
125 req->history_size = size;
126 ret = !wine_server_call_err( req );
128 SERVER_END_REQ;
129 return ret;
132 /******************************************************************
133 * WINECON_SetHistoryMode
137 static BOOL WINECON_SetHistoryMode(HANDLE hConIn, int mode)
139 BOOL ret;
141 SERVER_START_REQ(set_console_input_info)
143 req->handle = wine_server_obj_handle( hConIn );
144 req->mask = SET_CONSOLE_INPUT_INFO_HISTORY_MODE;
145 req->history_mode = mode;
146 ret = !wine_server_call_err( req );
148 SERVER_END_REQ;
149 return ret;
152 /******************************************************************
153 * WINECON_GetConsoleTitle
157 BOOL WINECON_GetConsoleTitle(HANDLE hConIn, WCHAR* buffer, size_t len)
159 BOOL ret;
161 if (len < sizeof(WCHAR)) return FALSE;
163 SERVER_START_REQ( get_console_input_info )
165 req->handle = wine_server_obj_handle( hConIn );
166 wine_server_set_reply( req, buffer, len - sizeof(WCHAR) );
167 if ((ret = !wine_server_call_err( req )))
169 len = wine_server_reply_size( reply );
170 buffer[len / sizeof(WCHAR)] = 0;
173 SERVER_END_REQ;
174 return ret;
177 /******************************************************************
178 * WINECON_SetEditionMode
182 static BOOL WINECON_SetEditionMode(HANDLE hConIn, int edition_mode)
184 BOOL ret;
186 SERVER_START_REQ( set_console_input_info )
188 req->handle = wine_server_obj_handle( hConIn );
189 req->mask = SET_CONSOLE_INPUT_INFO_EDITION_MODE;
190 req->edition_mode = edition_mode;
191 ret = !wine_server_call_err( req );
193 SERVER_END_REQ;
194 return ret;
197 /******************************************************************
198 * WINECON_GrabChanges
200 * A change occurs, try to figure out which
202 void WINECON_GrabChanges(struct inner_data* data)
204 struct console_renderer_event evts[256];
205 int i, num, ev_found;
206 HANDLE h;
208 if (data->in_grab_changes) return;
210 SERVER_START_REQ( get_console_renderer_events )
212 wine_server_set_reply( req, evts, sizeof(evts) );
213 req->handle = wine_server_obj_handle( data->hSynchro );
214 if (!wine_server_call_err( req )) num = wine_server_reply_size(reply) / sizeof(evts[0]);
215 else num = 0;
217 SERVER_END_REQ;
218 if (!num) {WINE_WARN("hmm renderer signaled but no events available\n"); return;}
219 WINE_TRACE( "got %u events\n", num );
221 /* FIXME: should do some event compression here (cursor pos, update) */
222 /* step 1: keep only last cursor pos event */
223 ev_found = -1;
224 for (i = num - 1; i >= 0; i--)
226 if (evts[i].event == CONSOLE_RENDERER_CURSOR_POS_EVENT)
228 if (ev_found != -1)
230 WINE_TRACE("%u/%u: curs-pos(%d,%d) ignoring\n", i+1, num, evts[i].u.cursor_pos.x, evts[i].u.cursor_pos.y);
231 evts[i].event = CONSOLE_RENDERER_NONE_EVENT;
233 ev_found = i;
236 /* step 2: manage update events */
237 ev_found = -1;
238 for (i = 0; i < num; i++)
240 if (evts[i].event == CONSOLE_RENDERER_NONE_EVENT ||
241 evts[i].event == CONSOLE_RENDERER_CURSOR_POS_EVENT ||
242 evts[i].event == CONSOLE_RENDERER_CURSOR_GEOM_EVENT) continue;
243 if (evts[i].event != CONSOLE_RENDERER_UPDATE_EVENT)
245 ev_found = -1;
246 continue;
249 if (ev_found != -1 && /* Only 2 cases where they CANNOT merge */
250 !(evts[i ].u.update.bottom + 1 < evts[ev_found].u.update.top ||
251 evts[ev_found].u.update.bottom + 1 < evts[i ].u.update.top))
253 WINE_TRACE("%u/%u: update(%d,%d) merging with %u\n", ev_found+1, num, evts[i].u.update.top, evts[i].u.update.bottom, i+1);
254 evts[i].u.update.top = min(evts[i ].u.update.top,
255 evts[ev_found].u.update.top);
256 evts[i].u.update.bottom = max(evts[i ].u.update.bottom,
257 evts[ev_found].u.update.bottom);
258 evts[ev_found].event = CONSOLE_RENDERER_NONE_EVENT;
260 ev_found = i;
263 data->in_grab_changes = TRUE;
264 for (i = 0; i < num; i++)
266 switch (evts[i].event)
268 case CONSOLE_RENDERER_NONE_EVENT:
269 WINE_TRACE("%u/%u: NOP\n", i+1, num);
270 break;
271 case CONSOLE_RENDERER_TITLE_EVENT:
272 WINE_TRACE("%u/%u: title()\n", i+1, num);
273 data->fnSetTitle(data);
274 break;
275 case CONSOLE_RENDERER_ACTIVE_SB_EVENT:
276 SERVER_START_REQ( open_console )
278 req->from = wine_server_obj_handle( data->hConIn );
279 req->access = GENERIC_READ | GENERIC_WRITE;
280 req->attributes = 0;
281 req->share = FILE_SHARE_READ | FILE_SHARE_WRITE;
282 h = wine_server_call_err( req ) ? 0 : wine_server_ptr_handle(reply->handle);
284 SERVER_END_REQ;
285 WINE_TRACE("%u/%u: active(%p)\n", i+1, num, h);
286 if (h)
288 CloseHandle(data->hConOut);
289 data->hConOut = h;
291 break;
292 case CONSOLE_RENDERER_SB_RESIZE_EVENT:
293 if (data->curcfg.sb_width != evts[i].u.resize.width ||
294 data->curcfg.sb_height != evts[i].u.resize.height)
296 WINE_TRACE("%u/%u: resize(%d,%d)\n", i+1, num, evts[i].u.resize.width, evts[i].u.resize.height);
297 data->curcfg.sb_width = evts[i].u.resize.width;
298 data->curcfg.sb_height = evts[i].u.resize.height;
300 data->cells = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, data->cells,
301 data->curcfg.sb_width * data->curcfg.sb_height * sizeof(CHAR_INFO));
303 if (!data->cells) WINECON_Fatal("OOM\n");
304 data->fnResizeScreenBuffer(data);
305 data->fnComputePositions(data);
307 break;
308 case CONSOLE_RENDERER_UPDATE_EVENT:
309 WINE_TRACE("%u/%u: update(%d,%d)\n", i+1, num, evts[i].u.update.top, evts[i].u.update.bottom);
310 WINECON_FetchCells(data, evts[i].u.update.top, evts[i].u.update.bottom);
311 break;
312 case CONSOLE_RENDERER_CURSOR_POS_EVENT:
313 if (evts[i].u.cursor_pos.x != data->cursor.X || evts[i].u.cursor_pos.y != data->cursor.Y)
315 WINE_TRACE("%u/%u: curs-pos(%d,%d)\n", i+1, num, evts[i].u.cursor_pos.x, evts[i].u.cursor_pos.y);
316 data->cursor.X = evts[i].u.cursor_pos.x;
317 data->cursor.Y = evts[i].u.cursor_pos.y;
318 data->fnPosCursor(data);
320 break;
321 case CONSOLE_RENDERER_CURSOR_GEOM_EVENT:
322 if (evts[i].u.cursor_geom.size != data->curcfg.cursor_size ||
323 evts[i].u.cursor_geom.visible != data->curcfg.cursor_visible)
325 WINE_TRACE("%u/%u: curs-geom(%d,%d)\n", i+1, num,
326 evts[i].u.cursor_geom.size, evts[i].u.cursor_geom.visible);
327 data->fnShapeCursor(data, evts[i].u.cursor_geom.size,
328 evts[i].u.cursor_geom.visible, FALSE);
330 break;
331 case CONSOLE_RENDERER_DISPLAY_EVENT:
332 if (evts[i].u.display.left != data->curcfg.win_pos.X)
334 WINE_TRACE("%u/%u: h-scroll(%d)\n", i+1, num, evts[i].u.display.left);
335 data->fnScroll(data, evts[i].u.display.left, TRUE);
336 data->fnPosCursor(data);
338 if (evts[i].u.display.top != data->curcfg.win_pos.Y)
340 WINE_TRACE("%u/%u: v-scroll(%d)\n", i+1, num, evts[i].u.display.top);
341 data->fnScroll(data, evts[i].u.display.top, FALSE);
342 data->fnPosCursor(data);
344 if (evts[i].u.display.width != data->curcfg.win_width ||
345 evts[i].u.display.height != data->curcfg.win_height)
347 WINE_TRACE("%u/%u: win-size(%d,%d)\n", i+1, num, evts[i].u.display.width, evts[i].u.display.height);
348 data->curcfg.win_width = evts[i].u.display.width;
349 data->curcfg.win_height = evts[i].u.display.height;
350 data->fnComputePositions(data);
352 break;
353 case CONSOLE_RENDERER_EXIT_EVENT:
354 data->dying = TRUE;
355 WINE_TRACE("%u/%u: Exit!!\n", i+1, num);
356 return;
357 default:
358 WINE_FIXME("Unknown event type (%d)\n", evts[i].event);
361 data->in_grab_changes = FALSE;
364 /******************************************************************
365 * WINECON_SetConfig
367 * Apply to data all the configuration elements from cfg. This includes modification
368 * of server side equivalent and visual parts.
369 * If force is FALSE, only the changed items are modified.
371 void WINECON_SetConfig(struct inner_data* data, const struct config_data* cfg)
373 if (data->in_set_config) return;
374 data->in_set_config = TRUE;
375 if (data->curcfg.cursor_size != cfg->cursor_size ||
376 data->curcfg.cursor_visible != cfg->cursor_visible)
378 CONSOLE_CURSOR_INFO cinfo;
379 cinfo.dwSize = cfg->cursor_size;
380 /* <FIXME>: this hack is needed to pass through the invariant test operation on the server side
381 * (no notification is sent when invariant operation is requested)
383 cinfo.bVisible = !cfg->cursor_visible;
384 SetConsoleCursorInfo(data->hConOut, &cinfo);
385 /* </FIXME> */
386 cinfo.bVisible = cfg->cursor_visible;
387 /* this shall update (through notif) curcfg */
388 SetConsoleCursorInfo(data->hConOut, &cinfo);
390 if (data->curcfg.history_size != cfg->history_size)
392 data->curcfg.history_size = cfg->history_size;
393 WINECON_SetHistorySize(data->hConIn, cfg->history_size);
395 if (data->curcfg.history_nodup != cfg->history_nodup)
397 data->curcfg.history_nodup = cfg->history_nodup;
398 WINECON_SetHistoryMode(data->hConIn, cfg->history_nodup);
400 data->curcfg.menu_mask = cfg->menu_mask;
401 data->curcfg.quick_edit = cfg->quick_edit;
402 if (1 /* FIXME: font info has changed */)
404 data->fnSetFont(data, cfg->face_name, cfg->cell_height, cfg->font_weight);
406 if (data->curcfg.def_attr != cfg->def_attr)
408 data->curcfg.def_attr = cfg->def_attr;
409 SetConsoleTextAttribute(data->hConOut, cfg->def_attr);
411 /* now let's look at the window / sb size changes...
412 * since the server checks that sb is always bigger than window,
413 * we have to take care of doing the operations in the right order
415 /* a set of macros to make things easier to read
416 * The Test<A><B> macros test if the <A> (width/height) needs to be changed
417 * for <B> (window / ScreenBuffer)
418 * The Change<A><B> actually modify the <B> dimension of <A>.
420 #define TstSBfWidth() (data->curcfg.sb_width != cfg->sb_width)
421 #define TstWinHPos() (data->curcfg.win_width != cfg->win_width || data->curcfg.win_pos.X != cfg->win_pos.X)
423 #define ChgSBfWidth() do {c.X = cfg->sb_width; \
424 c.Y = data->curcfg.sb_height;\
425 SetConsoleScreenBufferSize(data->hConOut, c);\
426 } while (0)
427 #define ChgWinHPos() do {pos.Left = cfg->win_pos.X - data->curcfg.win_pos.X; \
428 pos.Top = 0; \
429 pos.Right = pos.Left + cfg->win_width - data->curcfg.win_width; \
430 pos.Bottom = 0; \
431 SetConsoleWindowInfo(data->hConOut, FALSE, &pos);\
432 } while (0)
433 #define TstSBfHeight() (data->curcfg.sb_height != cfg->sb_height)
434 #define TstWinVPos() (data->curcfg.win_height != cfg->win_height || data->curcfg.win_pos.Y != cfg->win_pos.Y)
436 /* since we're going to apply height after width is done, we use width as defined
437 * in cfg, and not in data->curcfg because if won't be updated yet */
438 #define ChgSBfHeight() do {c.X = cfg->sb_width; c.Y = cfg->sb_height; \
439 SetConsoleScreenBufferSize(data->hConOut, c); \
440 } while (0)
441 #define ChgWinVPos() do {pos.Left = 0; \
442 pos.Top = cfg->win_pos.Y - data->curcfg.win_pos.Y; \
443 pos.Right = 0; \
444 pos.Bottom = pos.Top + cfg->win_height - data->curcfg.win_height; \
445 SetConsoleWindowInfo(data->hConOut, FALSE, &pos);\
446 } while (0)
450 COORD c;
451 SMALL_RECT pos;
453 if (TstSBfWidth())
455 if (TstWinHPos())
457 /* we're changing both at the same time, do it in the right order */
458 if (cfg->sb_width >= data->curcfg.win_width)
460 ChgSBfWidth(); ChgWinHPos();
462 else
464 ChgWinHPos(); ChgSBfWidth();
467 else ChgSBfWidth();
469 else if (TstWinHPos()) ChgWinHPos();
470 if (TstSBfHeight())
472 if (TstWinVPos())
474 if (cfg->sb_height >= data->curcfg.win_height)
476 ChgSBfHeight(); ChgWinVPos();
478 else
480 ChgWinVPos(); ChgSBfHeight();
483 else ChgSBfHeight();
485 else if (TstWinVPos()) ChgWinVPos();
486 } while (0);
487 #undef TstSBfWidth
488 #undef TstWinHPos
489 #undef ChgSBfWidth
490 #undef ChgWinHPos
491 #undef TstSBfHeight
492 #undef TstWinVPos
493 #undef ChgSBfHeight
494 #undef ChgWinVPos
496 data->curcfg.exit_on_die = cfg->exit_on_die;
497 if (data->curcfg.edition_mode != cfg->edition_mode)
499 data->curcfg.edition_mode = cfg->edition_mode;
500 WINECON_SetEditionMode(data->hConIn, cfg->edition_mode);
502 /* we now need to gather all events we got from the operations above,
503 * in order to get data correctly updated
505 WINECON_GrabChanges(data);
506 data->in_set_config = FALSE;
509 /******************************************************************
510 * WINECON_Delete
512 * Destroy wineconsole internal data
514 static void WINECON_Delete(struct inner_data* data)
516 if (!data) return;
518 if (data->fnDeleteBackend) data->fnDeleteBackend(data);
519 if (data->hConIn) CloseHandle(data->hConIn);
520 if (data->hConOut) CloseHandle(data->hConOut);
521 if (data->hSynchro) CloseHandle(data->hSynchro);
522 HeapFree(GetProcessHeap(), 0, data->curcfg.registry);
523 HeapFree(GetProcessHeap(), 0, data->cells);
524 HeapFree(GetProcessHeap(), 0, data);
527 /******************************************************************
528 * WINECON_GetServerConfig
530 * Fills data->curcfg with the actual configuration running in the server
531 * (getting real information on the server, and not relying on cached
532 * information in data)
534 static BOOL WINECON_GetServerConfig(struct inner_data* data)
536 BOOL ret;
538 SERVER_START_REQ(get_console_input_info)
540 req->handle = wine_server_obj_handle( data->hConIn );
541 ret = !wine_server_call_err( req );
542 data->curcfg.history_size = reply->history_size;
543 data->curcfg.history_nodup = reply->history_mode;
544 data->curcfg.edition_mode = reply->edition_mode;
546 SERVER_END_REQ;
547 if (!ret) return FALSE;
548 SERVER_START_REQ(get_console_output_info)
550 req->handle = wine_server_obj_handle( data->hConOut );
551 ret = !wine_server_call_err( req );
552 data->curcfg.cursor_size = reply->cursor_size;
553 data->curcfg.cursor_visible = reply->cursor_visible;
554 data->curcfg.def_attr = reply->attr;
555 data->curcfg.sb_width = reply->width;
556 data->curcfg.sb_height = reply->height;
557 data->curcfg.win_width = reply->win_right - reply->win_left + 1;
558 data->curcfg.win_height = reply->win_bottom - reply->win_top + 1;
560 SERVER_END_REQ;
561 WINECON_DumpConfig("first cfg: ", &data->curcfg);
563 return ret;
566 /******************************************************************
567 * WINECON_Init
569 * Initialisation part I. Creation of server object (console input and
570 * active screen buffer)
572 static struct inner_data* WINECON_Init(HINSTANCE hInst, DWORD pid, LPCWSTR appname,
573 enum init_return (*backend)(struct inner_data*),
574 INT nCmdShow)
576 struct inner_data* data = NULL;
577 DWORD ret;
578 struct config_data cfg;
579 STARTUPINFOW si;
581 data = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*data));
582 if (!data) return 0;
584 GetStartupInfoW(&si);
586 if (pid == 0)
588 if (!si.lpTitle) WINECON_Fatal("Should have a title set");
589 appname = si.lpTitle;
592 data->nCmdShow = nCmdShow;
593 /* load settings */
594 WINECON_RegLoad(appname, &cfg);
596 /* some overrides */
597 if (pid == 0)
599 if (si.dwFlags & STARTF_USECOUNTCHARS)
601 cfg.sb_width = si.dwXCountChars;
602 cfg.sb_height = si.dwYCountChars;
604 if (si.dwFlags & STARTF_USEFILLATTRIBUTE)
605 cfg.def_attr = si.dwFillAttribute;
606 /* should always be defined */
609 /* the handles here are created without the whistles and bells required by console
610 * (mainly because wineconsole doesn't need it)
611 * - they are not inheritable
612 * - hConIn is not synchronizable
614 SERVER_START_REQ(alloc_console)
616 req->access = GENERIC_READ | GENERIC_WRITE;
617 req->attributes = 0;
618 req->pid = pid;
619 req->input_fd = -1;
621 ret = !wine_server_call_err( req );
622 data->hConIn = wine_server_ptr_handle( reply->handle_in );
623 data->hSynchro = wine_server_ptr_handle( reply->event );
625 SERVER_END_REQ;
626 if (!ret) goto error;
627 WINE_TRACE("using hConIn %p, hSynchro event %p\n", data->hConIn, data->hSynchro);
629 SERVER_START_REQ(create_console_output)
631 req->handle_in = wine_server_obj_handle( data->hConIn );
632 req->access = GENERIC_WRITE|GENERIC_READ;
633 req->attributes = 0;
634 req->share = FILE_SHARE_READ|FILE_SHARE_WRITE;
635 req->fd = -1;
636 ret = !wine_server_call_err( req );
637 data->hConOut = wine_server_ptr_handle( reply->handle_out );
639 SERVER_END_REQ;
640 if (!ret) goto error;
641 WINE_TRACE("using hConOut %p\n", data->hConOut);
643 /* filling data->curcfg from cfg */
644 switch ((*backend)(data))
646 case init_not_supported:
647 if (backend == WCCURSES_InitBackend)
649 if (WCUSER_InitBackend( data ) != init_success) break;
651 else if (backend == WCUSER_InitBackend)
653 if (WCCURSES_InitBackend( data ) != init_success) break;
655 /* fall through */
656 case init_success:
657 WINECON_GetServerConfig(data);
658 data->cells = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
659 data->curcfg.sb_width * data->curcfg.sb_height * sizeof(CHAR_INFO));
660 if (!data->cells) WINECON_Fatal("OOM\n");
661 data->fnResizeScreenBuffer(data);
662 data->fnComputePositions(data);
663 WINECON_SetConfig(data, &cfg);
664 data->curcfg.registry = cfg.registry;
665 WINECON_DumpConfig("fint", &data->curcfg);
666 SERVER_START_REQ( set_console_input_info )
668 req->handle = wine_server_obj_handle( data->hConIn );
669 req->win = wine_server_user_handle( data->hWnd );
670 req->mask = SET_CONSOLE_INPUT_INFO_TITLE |
671 SET_CONSOLE_INPUT_INFO_WIN;
672 wine_server_add_data( req, appname, lstrlenW(appname) * sizeof(WCHAR) );
673 ret = !wine_server_call_err( req );
675 SERVER_END_REQ;
676 if (!ret) goto error;
678 return data;
679 case init_failed:
680 break;
683 error:
684 WINE_ERR("failed to init.\n");
686 WINECON_Delete(data);
687 return NULL;
690 /******************************************************************
691 * WINECON_Spawn
693 * Spawn the child process when invoked with wineconsole foo bar
695 static BOOL WINECON_Spawn(struct inner_data* data, LPWSTR cmdLine)
697 PROCESS_INFORMATION info;
698 STARTUPINFOW startup;
699 BOOL done;
701 /* we're in the case wineconsole <exe> <options>... spawn the new process */
702 memset(&startup, 0, sizeof(startup));
703 startup.cb = sizeof(startup);
704 startup.dwFlags = STARTF_USESTDHANDLES;
706 /* the attributes of wineconsole's handles are not adequate for inheritance, so
707 * get them with the correct attributes before process creation
709 if (!DuplicateHandle(GetCurrentProcess(), data->hConIn, GetCurrentProcess(),
710 &startup.hStdInput, GENERIC_READ|GENERIC_WRITE|SYNCHRONIZE, TRUE, 0) ||
711 !DuplicateHandle(GetCurrentProcess(), data->hConOut, GetCurrentProcess(),
712 &startup.hStdOutput, GENERIC_READ|GENERIC_WRITE, TRUE, 0) ||
713 !DuplicateHandle(GetCurrentProcess(), data->hConOut, GetCurrentProcess(),
714 &startup.hStdError, GENERIC_READ|GENERIC_WRITE, TRUE, 0))
716 WINE_ERR("Can't dup handles\n");
717 /* no need to delete handles, we're exiting the program anyway */
718 return FALSE;
721 done = CreateProcessW(NULL, cmdLine, NULL, NULL, TRUE, 0L, NULL, NULL, &startup, &info);
723 /* we no longer need the handles passed to the child for the console */
724 CloseHandle(startup.hStdInput);
725 CloseHandle(startup.hStdOutput);
726 CloseHandle(startup.hStdError);
728 CloseHandle(info.hProcess);
729 CloseHandle(info.hThread);
731 return done;
734 struct wc_init {
735 LPCSTR ptr;
736 enum {from_event, from_process_name} mode;
737 enum init_return (*backend)(struct inner_data*);
738 HANDLE event;
741 #define WINECON_CMD_SHOW_USAGE 0x10000
743 /******************************************************************
744 * WINECON_ParseOptions
746 * RETURNS
747 * On success: 0
748 * On error: error string id optionally with the CMD_SHOW_USAGE flag
750 static UINT WINECON_ParseOptions(const char* lpCmdLine, struct wc_init* wci)
752 memset(wci, 0, sizeof(*wci));
753 wci->ptr = lpCmdLine;
754 wci->mode = from_process_name;
755 wci->backend = WCUSER_InitBackend;
757 for (;;)
759 while (*wci->ptr == ' ' || *wci->ptr == '\t') wci->ptr++;
760 if (wci->ptr[0] != '-') break;
761 if (strncmp(wci->ptr, "--use-event=", 12) == 0)
763 char* end;
764 wci->event = ULongToHandle( strtoul(wci->ptr + 12, &end, 10) );
765 if (end == wci->ptr + 12) return IDS_CMD_INVALID_EVENT_ID;
766 wci->mode = from_event;
767 wci->ptr = end;
769 else if (strncmp(wci->ptr, "--backend=", 10) == 0)
771 if (strncmp(wci->ptr + 10, "user", 4) == 0)
773 wci->backend = WCUSER_InitBackend;
774 wci->ptr += 14;
776 else if (strncmp(wci->ptr + 10, "curses", 6) == 0)
778 wci->backend = WCCURSES_InitBackend;
779 wci->ptr += 16;
781 else
782 return IDS_CMD_INVALID_BACKEND;
784 else if (!strncmp(wci->ptr, "--help", 6) &&
785 (!wci->ptr[6] || wci->ptr[6] == ' ' || wci->ptr[6] == '\t'))
786 return IDS_CMD_ABOUT|WINECON_CMD_SHOW_USAGE;
787 else
788 return IDS_CMD_INVALID_OPTION|WINECON_CMD_SHOW_USAGE;
791 if (wci->mode == from_event)
792 return 0;
794 while (*wci->ptr == ' ' || *wci->ptr == '\t') wci->ptr++;
795 if (*wci->ptr == 0) wci->ptr = "cmd";
797 return 0;
800 /******************************************************************
801 * WinMain
803 * wineconsole can either be started as:
804 * wineconsole --use-event=<int> used when a new console is created (AllocConsole)
805 * wineconsole <pgm> <arguments> used to start the program <pgm> from the command line in
806 * a freshly created console
807 * --backend=(curses|user) can also be used to select the desired backend
809 int PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR lpCmdLine, INT nCmdShow)
811 struct inner_data* data;
812 int ret = 1;
813 struct wc_init wci;
815 if ((ret = WINECON_ParseOptions(lpCmdLine, &wci)) != 0)
817 printf_res(ret & 0xffff);
818 if (ret & WINECON_CMD_SHOW_USAGE)
819 WINECON_Usage();
820 return 0;
823 switch (wci.mode)
825 case from_event:
826 /* case of wineconsole <evt>, signal process that created us that we're up and running */
827 if (!(data = WINECON_Init(hInst, 0, NULL, wci.backend, nCmdShow))) return 0;
828 ret = SetEvent(wci.event);
829 if (!ret) WINE_ERR("SetEvent failed.\n");
830 break;
831 case from_process_name:
833 int len;
834 WCHAR *buffer;
836 len = MultiByteToWideChar(CP_ACP, 0, wci.ptr, -1, NULL, 0);
838 buffer = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
839 if (!buffer)
840 return 0;
842 MultiByteToWideChar(CP_ACP, 0, wci.ptr, -1, buffer, len);
844 if (!(data = WINECON_Init(hInst, GetCurrentProcessId(), buffer, wci.backend, nCmdShow)))
846 HeapFree(GetProcessHeap(), 0, buffer);
847 return 0;
849 ret = WINECON_Spawn(data, buffer);
850 HeapFree(GetProcessHeap(), 0, buffer);
851 if (!ret)
853 WINECON_Delete(data);
854 printf_res(IDS_CMD_LAUNCH_FAILED, wine_dbgstr_a(wci.ptr));
855 return 0;
858 break;
859 default:
860 return 0;
863 if (ret)
865 WINE_TRACE("calling MainLoop.\n");
866 ret = data->fnMainLoop(data);
869 WINECON_Delete(data);
871 return ret;