preloader: Clear %gs again before calling the interpreter entry point.
[wine/multimedia.git] / programs / wineconsole / wineconsole.c
blob434bac52a2ac311ef6ed81006a9798688deb49ae
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(GetModuleHandle(NULL), uResId, buffer, sizeof(buffer)/sizeof(WCHAR));
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()
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 void WINECON_FetchCells(struct inner_data* data, int upd_tp, int upd_bm)
69 SERVER_START_REQ( read_console_output )
71 req->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_NotifyWindowChange
87 * Inform server that visible window on sb has changed
89 void WINECON_NotifyWindowChange(struct inner_data* data)
91 SERVER_START_REQ( set_console_output_info )
93 req->handle = data->hConOut;
94 req->win_left = data->curcfg.win_pos.X;
95 req->win_top = data->curcfg.win_pos.Y;
96 req->win_right = data->curcfg.win_pos.X + data->curcfg.win_width - 1;
97 req->win_bottom = data->curcfg.win_pos.Y + data->curcfg.win_height - 1;
98 req->mask = SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW;
99 wine_server_call( req );
101 SERVER_END_REQ;
104 /******************************************************************
105 * WINECON_GetHistorySize
109 int WINECON_GetHistorySize(HANDLE hConIn)
111 int ret = 0;
113 SERVER_START_REQ(get_console_input_info)
115 req->handle = hConIn;
116 if (!wine_server_call_err( req )) ret = reply->history_size;
118 SERVER_END_REQ;
119 return ret;
122 /******************************************************************
123 * WINECON_SetHistorySize
127 BOOL WINECON_SetHistorySize(HANDLE hConIn, int size)
129 BOOL ret;
131 SERVER_START_REQ(set_console_input_info)
133 req->handle = hConIn;
134 req->mask = SET_CONSOLE_INPUT_INFO_HISTORY_SIZE;
135 req->history_size = size;
136 ret = !wine_server_call_err( req );
138 SERVER_END_REQ;
139 return ret;
143 /******************************************************************
144 * WINECON_GetHistoryMode
148 int WINECON_GetHistoryMode(HANDLE hConIn)
150 int ret = 0;
152 SERVER_START_REQ(get_console_input_info)
154 req->handle = hConIn;
155 if (!wine_server_call_err( req )) ret = reply->history_mode;
157 SERVER_END_REQ;
158 return ret;
161 /******************************************************************
162 * WINECON_SetHistoryMode
166 BOOL WINECON_SetHistoryMode(HANDLE hConIn, int mode)
168 BOOL ret;
170 SERVER_START_REQ(set_console_input_info)
172 req->handle = hConIn;
173 req->mask = SET_CONSOLE_INPUT_INFO_HISTORY_MODE;
174 req->history_mode = mode;
175 ret = !wine_server_call_err( req );
177 SERVER_END_REQ;
178 return ret;
181 /******************************************************************
182 * WINECON_GetConsoleTitle
186 BOOL WINECON_GetConsoleTitle(HANDLE hConIn, WCHAR* buffer, size_t len)
188 BOOL ret;
190 if (len < sizeof(WCHAR)) return FALSE;
192 SERVER_START_REQ( get_console_input_info )
194 req->handle = hConIn;
195 wine_server_set_reply( req, buffer, len - sizeof(WCHAR) );
196 if ((ret = !wine_server_call_err( req )))
198 len = wine_server_reply_size( reply );
199 buffer[len / sizeof(WCHAR)] = 0;
202 SERVER_END_REQ;
203 return ret;
206 /******************************************************************
207 * WINECON_SetEditionMode
211 static BOOL WINECON_SetEditionMode(HANDLE hConIn, int edition_mode)
213 BOOL ret;
215 SERVER_START_REQ( set_console_input_info )
217 req->handle = hConIn;
218 req->mask = SET_CONSOLE_INPUT_INFO_EDITION_MODE;
219 req->edition_mode = edition_mode;
220 ret = !wine_server_call_err( req );
222 SERVER_END_REQ;
223 return ret;
226 /******************************************************************
227 * WINECON_GrabChanges
229 * A change occurs, try to figure out which
231 int WINECON_GrabChanges(struct inner_data* data)
233 struct console_renderer_event evts[256];
234 int i, num, ev_found;
235 HANDLE h;
237 SERVER_START_REQ( get_console_renderer_events )
239 wine_server_set_reply( req, evts, sizeof(evts) );
240 req->handle = data->hSynchro;
241 if (!wine_server_call_err( req )) num = wine_server_reply_size(reply) / sizeof(evts[0]);
242 else num = 0;
244 SERVER_END_REQ;
245 if (!num) {WINE_WARN("hmm renderer signaled but no events available\n"); return 1;}
247 /* FIXME: should do some event compression here (cursor pos, update) */
248 /* step 1: keep only last cursor pos event */
249 ev_found = -1;
250 for (i = num - 1; i >= 0; i--)
252 if (evts[i].event == CONSOLE_RENDERER_CURSOR_POS_EVENT)
254 if (ev_found != -1)
255 evts[i].event = CONSOLE_RENDERER_NONE_EVENT;
256 ev_found = i;
259 /* step 2: manage update events */
260 ev_found = -1;
261 for (i = 0; i < num; i++)
263 if (evts[i].event == CONSOLE_RENDERER_NONE_EVENT ||
264 evts[i].event == CONSOLE_RENDERER_CURSOR_POS_EVENT ||
265 evts[i].event == CONSOLE_RENDERER_CURSOR_GEOM_EVENT) continue;
266 if (evts[i].event != CONSOLE_RENDERER_UPDATE_EVENT)
268 ev_found = -1;
269 continue;
272 if (ev_found != -1 && /* Only 2 cases where they CANNOT merge */
273 !(evts[i ].u.update.bottom + 1 < evts[ev_found].u.update.top ||
274 evts[ev_found].u.update.bottom + 1 < evts[i ].u.update.top))
276 evts[i].u.update.top = min(evts[i ].u.update.top,
277 evts[ev_found].u.update.top);
278 evts[i].u.update.bottom = max(evts[i ].u.update.bottom,
279 evts[ev_found].u.update.bottom);
280 evts[ev_found].event = CONSOLE_RENDERER_NONE_EVENT;
282 ev_found = i;
285 WINE_TRACE("Events:");
286 for (i = 0; i < num; i++)
288 switch (evts[i].event)
290 case CONSOLE_RENDERER_NONE_EVENT:
291 WINE_TRACE(" NOP");
292 break;
293 case CONSOLE_RENDERER_TITLE_EVENT:
294 WINE_TRACE(" title()");
295 data->fnSetTitle(data);
296 break;
297 case CONSOLE_RENDERER_ACTIVE_SB_EVENT:
298 SERVER_START_REQ( open_console )
300 req->from = data->hConIn;
301 req->access = GENERIC_READ | GENERIC_WRITE;
302 req->attributes = 0;
303 req->share = FILE_SHARE_READ | FILE_SHARE_WRITE;
304 h = wine_server_call_err( req ) ? 0 : (HANDLE)reply->handle;
306 SERVER_END_REQ;
307 WINE_TRACE(" active(%d)", (int)h);
308 if (h)
310 CloseHandle(data->hConOut);
311 data->hConOut = h;
313 break;
314 case CONSOLE_RENDERER_SB_RESIZE_EVENT:
315 if (data->curcfg.sb_width != evts[i].u.resize.width ||
316 data->curcfg.sb_height != evts[i].u.resize.height)
318 WINE_TRACE(" resize(%d,%d)", evts[i].u.resize.width, evts[i].u.resize.height);
319 data->curcfg.sb_width = evts[i].u.resize.width;
320 data->curcfg.sb_height = evts[i].u.resize.height;
322 data->cells = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, data->cells,
323 data->curcfg.sb_width * data->curcfg.sb_height * sizeof(CHAR_INFO));
325 if (!data->cells) WINECON_Fatal("OOM\n");
326 data->fnResizeScreenBuffer(data);
327 data->fnComputePositions(data);
329 break;
330 case CONSOLE_RENDERER_UPDATE_EVENT:
331 WINE_TRACE(" update(%d,%d)", evts[i].u.update.top, evts[i].u.update.bottom);
332 WINECON_FetchCells(data, evts[i].u.update.top, evts[i].u.update.bottom);
333 break;
334 case CONSOLE_RENDERER_CURSOR_POS_EVENT:
335 if (evts[i].u.cursor_pos.x != data->cursor.X || evts[i].u.cursor_pos.y != data->cursor.Y)
337 WINE_TRACE(" curs-pos(%d,%d)",evts[i].u.cursor_pos.x, evts[i].u.cursor_pos.y);
338 data->cursor.X = evts[i].u.cursor_pos.x;
339 data->cursor.Y = evts[i].u.cursor_pos.y;
340 data->fnPosCursor(data);
342 break;
343 case CONSOLE_RENDERER_CURSOR_GEOM_EVENT:
344 if (evts[i].u.cursor_geom.size != data->curcfg.cursor_size ||
345 evts[i].u.cursor_geom.visible != data->curcfg.cursor_visible)
347 WINE_TRACE(" curs-geom(%d,%d)",
348 evts[i].u.cursor_geom.size, evts[i].u.cursor_geom.visible);
349 data->fnShapeCursor(data, evts[i].u.cursor_geom.size,
350 evts[i].u.cursor_geom.visible, FALSE);
352 break;
353 case CONSOLE_RENDERER_DISPLAY_EVENT:
354 if (evts[i].u.display.left != data->curcfg.win_pos.X)
356 WINE_TRACE(" h-scroll(%d)", evts[i].u.display.left);
357 data->fnScroll(data, evts[i].u.display.left, TRUE);
358 data->fnPosCursor(data);
360 if (evts[i].u.display.top != data->curcfg.win_pos.Y)
362 WINE_TRACE(" v-scroll(%d)", evts[i].u.display.top);
363 data->fnScroll(data, evts[i].u.display.top, FALSE);
364 data->fnPosCursor(data);
366 if (evts[i].u.display.width != data->curcfg.win_width ||
367 evts[i].u.display.height != data->curcfg.win_height)
369 WINE_TRACE(" win-size(%d,%d)", evts[i].u.display.width, evts[i].u.display.height);
370 data->curcfg.win_width = evts[i].u.display.width;
371 data->curcfg.win_height = evts[i].u.display.height;
372 data->fnComputePositions(data);
374 break;
375 case CONSOLE_RENDERER_EXIT_EVENT:
376 WINE_TRACE(". Exit!!\n");
377 return 0;
378 default:
379 WINE_FIXME("Unknown event type (%d)\n", evts[i].event);
383 WINE_TRACE(".\n");
384 return 1;
387 /******************************************************************
388 * WINECON_SetConfig
390 * Apply to data all the configuration elements from cfg. This includes modification
391 * of server side equivalent and visual parts.
392 * If force is FALSE, only the changed items are modified.
394 void WINECON_SetConfig(struct inner_data* data, const struct config_data* cfg)
396 if (data->curcfg.cursor_size != cfg->cursor_size ||
397 data->curcfg.cursor_visible != cfg->cursor_visible)
399 CONSOLE_CURSOR_INFO cinfo;
400 cinfo.dwSize = cfg->cursor_size;
401 /* <FIXME>: this hack is needed to pass thru the invariant test operation on server side
402 * (no notification is sent when invariant operation is requested
404 cinfo.bVisible = !cfg->cursor_visible;
405 SetConsoleCursorInfo(data->hConOut, &cinfo);
406 /* </FIXME> */
407 cinfo.bVisible = cfg->cursor_visible;
408 /* this shall update (through notif) curcfg */
409 SetConsoleCursorInfo(data->hConOut, &cinfo);
411 if (data->curcfg.history_size != cfg->history_size)
413 data->curcfg.history_size = cfg->history_size;
414 WINECON_SetHistorySize(data->hConIn, cfg->history_size);
416 if (data->curcfg.history_nodup != cfg->history_nodup)
418 data->curcfg.history_nodup = cfg->history_nodup;
419 WINECON_SetHistoryMode(data->hConIn, cfg->history_nodup);
421 data->curcfg.menu_mask = cfg->menu_mask;
422 data->curcfg.quick_edit = cfg->quick_edit;
423 if (1 /* FIXME: font info has changed */)
425 data->fnSetFont(data, cfg->face_name, cfg->cell_height, cfg->font_weight);
427 if (data->curcfg.def_attr != cfg->def_attr)
429 data->curcfg.def_attr = cfg->def_attr;
430 SetConsoleTextAttribute(data->hConOut, cfg->def_attr);
432 /* now let's look at the window / sb size changes...
433 * since the server checks that sb is always bigger than window,
434 * we have to take care of doing the operations in the right order
436 /* a set of macros to make things easier to read
437 * The Test<A><B> macros test if the <A> (width/height) needs to be changed
438 * for <B> (window / ScreenBuffer)
439 * The Change<A><B> actually modify the <B> dimension of <A>.
441 #define TstSBfWidth() (data->curcfg.sb_width != cfg->sb_width)
442 #define TstWinWidth() (data->curcfg.win_width != cfg->win_width)
444 #define ChgSBfWidth() do {c.X = cfg->sb_width; \
445 c.Y = data->curcfg.sb_height;\
446 SetConsoleScreenBufferSize(data->hConOut, c);\
447 } while (0)
448 #define ChgWinWidth() do {pos.Left = pos.Top = 0; \
449 pos.Right = cfg->win_width - data->curcfg.win_width; \
450 pos.Bottom = 0; \
451 SetConsoleWindowInfo(data->hConOut, FALSE, &pos);\
452 } while (0)
453 #define TstSBfHeight() (data->curcfg.sb_height != cfg->sb_height)
454 #define TstWinHeight() (data->curcfg.win_height != cfg->win_height)
456 /* since we're going to apply height after width is done, we use width as defined
457 * in cfg, and not in data->curcfg because if won't be updated yet */
458 #define ChgSBfHeight() do {c.X = cfg->sb_width; c.Y = cfg->sb_height; \
459 SetConsoleScreenBufferSize(data->hConOut, c); \
460 } while (0)
461 #define ChgWinHeight() do {pos.Left = pos.Top = 0; \
462 pos.Right = 0; \
463 pos.Bottom = cfg->win_height - data->curcfg.win_height; \
464 SetConsoleWindowInfo(data->hConOut, FALSE, &pos);\
465 } while (0)
469 COORD c;
470 SMALL_RECT pos;
472 if (TstSBfWidth())
474 if (TstWinWidth())
476 /* we're changing both at the same time, do it in the right order */
477 if (cfg->sb_width >= data->curcfg.win_width)
479 ChgSBfWidth(); ChgWinWidth();
481 else
483 ChgWinWidth(); ChgSBfWidth();
486 else ChgSBfWidth();
488 else if (TstWinWidth()) ChgWinWidth();
489 if (TstSBfHeight())
491 if (TstWinHeight())
493 if (cfg->sb_height >= data->curcfg.win_height)
495 ChgSBfHeight(); ChgWinHeight();
497 else
499 ChgWinHeight(); ChgSBfHeight();
502 else ChgSBfHeight();
504 else if (TstWinHeight()) ChgWinHeight();
505 } while (0);
506 #undef TstSBfWidth
507 #undef TstWinWidth
508 #undef ChgSBfWidth
509 #undef ChgWinWidth
510 #undef TstSBfHeight
511 #undef TstWinHeight
512 #undef ChgSBfHeight
513 #undef ChgWinHeight
515 data->curcfg.exit_on_die = cfg->exit_on_die;
516 if (data->curcfg.edition_mode != cfg->edition_mode)
518 data->curcfg.edition_mode = cfg->edition_mode;
519 WINECON_SetEditionMode(data->hConIn, cfg->edition_mode);
521 /* we now need to gather all events we got from the operations above,
522 * in order to get data correctly updated
524 WINECON_GrabChanges(data);
527 /******************************************************************
528 * WINECON_Delete
530 * Destroy wineconsole internal data
532 static void WINECON_Delete(struct inner_data* data)
534 if (!data) return;
536 if (data->fnDeleteBackend) data->fnDeleteBackend(data);
537 if (data->hConIn) CloseHandle(data->hConIn);
538 if (data->hConOut) CloseHandle(data->hConOut);
539 if (data->hSynchro) CloseHandle(data->hSynchro);
540 HeapFree(GetProcessHeap(), 0, data->cells);
541 HeapFree(GetProcessHeap(), 0, data);
544 /******************************************************************
545 * WINECON_GetServerConfig
547 * Fills data->curcfg with the actual configuration running in the server
548 * (getting real information on the server, and not relying on cached
549 * information in data)
551 static BOOL WINECON_GetServerConfig(struct inner_data* data)
553 BOOL ret;
555 SERVER_START_REQ(get_console_input_info)
557 req->handle = data->hConIn;
558 ret = !wine_server_call_err( req );
559 data->curcfg.history_size = reply->history_size;
560 data->curcfg.history_nodup = reply->history_mode;
561 data->curcfg.edition_mode = reply->edition_mode;
563 SERVER_END_REQ;
564 if (!ret) return FALSE;
565 SERVER_START_REQ(get_console_output_info)
567 req->handle = data->hConOut;
568 ret = !wine_server_call_err( req );
569 data->curcfg.cursor_size = reply->cursor_size;
570 data->curcfg.cursor_visible = reply->cursor_visible;
571 data->curcfg.def_attr = reply->attr;
572 data->curcfg.sb_width = reply->width;
573 data->curcfg.sb_height = reply->height;
574 data->curcfg.win_width = reply->win_right - reply->win_left + 1;
575 data->curcfg.win_height = reply->win_bottom - reply->win_top + 1;
577 SERVER_END_REQ;
578 WINECON_DumpConfig("first cfg: ", &data->curcfg);
580 return ret;
583 /******************************************************************
584 * WINECON_Init
586 * Initialisation part I. Creation of server object (console input and
587 * active screen buffer)
589 static struct inner_data* WINECON_Init(HINSTANCE hInst, DWORD pid, LPCWSTR appname,
590 enum init_return (*backend)(struct inner_data*),
591 INT nCmdShow)
593 struct inner_data* data = NULL;
594 DWORD ret;
595 struct config_data cfg;
596 STARTUPINFOW si;
598 data = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*data));
599 if (!data) return 0;
601 GetStartupInfo(&si);
603 if (pid == 0)
605 if (!si.lpTitle) WINECON_Fatal("Should have a title set");
606 appname = si.lpTitle;
609 data->nCmdShow = nCmdShow;
610 /* load settings */
611 WINECON_RegLoad(appname, &cfg);
613 /* some overrides */
614 if (pid == 0)
616 if (si.dwFlags & STARTF_USECOUNTCHARS)
618 cfg.sb_width = si.dwXCountChars;
619 cfg.sb_height = si.dwYCountChars;
621 if (si.dwFlags & STARTF_USEFILLATTRIBUTE)
622 cfg.def_attr = si.dwFillAttribute;
623 /* should always be defined */
626 /* the handles here are created without the whistles and bells required by console
627 * (mainly because wineconsole doesn't need it)
628 * - they are not inheritable
629 * - hConIn is not synchronizable
631 SERVER_START_REQ(alloc_console)
633 req->access = GENERIC_READ | GENERIC_WRITE;
634 req->attributes = 0;
635 req->pid = pid;
637 ret = !wine_server_call_err( req );
638 data->hConIn = (HANDLE)reply->handle_in;
639 data->hSynchro = (HANDLE)reply->event;
641 SERVER_END_REQ;
642 if (!ret) goto error;
643 WINE_TRACE("using hConIn %p, hSynchro event %p\n", data->hConIn, data->hSynchro);
645 SERVER_START_REQ( set_console_input_info )
647 req->handle = data->hConIn;
648 req->mask = SET_CONSOLE_INPUT_INFO_TITLE;
649 wine_server_add_data( req, appname, lstrlenW(appname) * sizeof(WCHAR) );
650 ret = !wine_server_call_err( req );
652 SERVER_END_REQ;
653 if (!ret) goto error;
655 SERVER_START_REQ(create_console_output)
657 req->handle_in = data->hConIn;
658 req->access = GENERIC_WRITE|GENERIC_READ;
659 req->attributes = 0;
660 req->share = FILE_SHARE_READ|FILE_SHARE_WRITE;
661 ret = !wine_server_call_err( req );
662 data->hConOut = (HANDLE)reply->handle_out;
664 SERVER_END_REQ;
665 if (!ret) goto error;
666 WINE_TRACE("using hConOut %p\n", data->hConOut);
668 /* filling data->curcfg from cfg */
669 retry:
670 switch ((*backend)(data))
672 case init_success:
673 WINECON_GetServerConfig(data);
674 data->cells = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
675 data->curcfg.sb_width * data->curcfg.sb_height * sizeof(CHAR_INFO));
676 if (!data->cells) WINECON_Fatal("OOM\n");
677 data->fnResizeScreenBuffer(data);
678 data->fnComputePositions(data);
679 WINECON_SetConfig(data, &cfg);
680 data->curcfg.registry = cfg.registry;
681 WINECON_DumpConfig("fint", &data->curcfg);
682 return data;
683 case init_failed:
684 break;
685 case init_not_supported:
686 if (backend == WCCURSES_InitBackend)
688 WINE_ERR("(n)curses was not found at configuration time.\n"
689 "If you want (n)curses support, please install relevant packages.\n"
690 "Now forcing user backend instead of (n)curses.\n");
691 backend = WCUSER_InitBackend;
692 goto retry;
694 break;
697 error:
698 WINE_ERR("failed to init.\n");
700 WINECON_Delete(data);
701 return NULL;
704 /******************************************************************
705 * WINECON_Spawn
707 * Spawn the child process when invoked with wineconsole foo bar
709 static BOOL WINECON_Spawn(struct inner_data* data, LPWSTR cmdLine)
711 PROCESS_INFORMATION info;
712 STARTUPINFO startup;
713 BOOL done;
715 /* we're in the case wineconsole <exe> <options>... spawn the new process */
716 memset(&startup, 0, sizeof(startup));
717 startup.cb = sizeof(startup);
718 startup.dwFlags = STARTF_USESTDHANDLES;
720 /* the attributes of wineconsole's handles are not adequate for inheritance, so
721 * get them with the correct attributes before process creation
723 if (!DuplicateHandle(GetCurrentProcess(), data->hConIn, GetCurrentProcess(),
724 &startup.hStdInput, GENERIC_READ|GENERIC_WRITE|SYNCHRONIZE, TRUE, 0) ||
725 !DuplicateHandle(GetCurrentProcess(), data->hConOut, GetCurrentProcess(),
726 &startup.hStdOutput, GENERIC_READ|GENERIC_WRITE, TRUE, 0) ||
727 !DuplicateHandle(GetCurrentProcess(), data->hConOut, GetCurrentProcess(),
728 &startup.hStdError, GENERIC_READ|GENERIC_WRITE, TRUE, 0))
730 WINE_ERR("Can't dup handles\n");
731 /* no need to delete handles, we're exiting the programm anyway */
732 return FALSE;
735 done = CreateProcess(NULL, cmdLine, NULL, NULL, TRUE, 0L, NULL, NULL, &startup, &info);
737 /* we no longer need the handles passed to the child for the console */
738 CloseHandle(startup.hStdInput);
739 CloseHandle(startup.hStdOutput);
740 CloseHandle(startup.hStdError);
742 CloseHandle(info.hProcess);
743 CloseHandle(info.hThread);
745 return done;
748 struct wc_init {
749 LPCSTR ptr;
750 enum {from_event, from_process_name} mode;
751 enum init_return (*backend)(struct inner_data*);
752 HANDLE event;
755 #define WINECON_CMD_SHOW_USAGE 0x10000
757 /******************************************************************
758 * WINECON_ParseOptions
760 * RETURNS
761 * On success: 0
762 * On error: error string id optionaly with the CMD_SHOW_USAGE flag
764 static UINT WINECON_ParseOptions(const char* lpCmdLine, struct wc_init* wci)
766 memset(wci, 0, sizeof(*wci));
767 wci->ptr = lpCmdLine;
768 wci->mode = from_process_name;
769 wci->backend = WCCURSES_InitBackend;
771 for (;;)
773 while (*wci->ptr == ' ' || *wci->ptr == '\t') wci->ptr++;
774 if (wci->ptr[0] != '-') break;
775 if (strncmp(wci->ptr, "--use-event=", 12) == 0)
777 char* end;
778 wci->event = (HANDLE)strtol(wci->ptr + 12, &end, 10);
779 if (end == wci->ptr + 12) return IDS_CMD_INVALID_EVENT_ID;
780 wci->mode = from_event;
781 wci->ptr = end;
782 wci->backend = WCUSER_InitBackend;
784 else if (strncmp(wci->ptr, "--backend=", 10) == 0)
786 if (strncmp(wci->ptr + 10, "user", 4) == 0)
788 wci->backend = WCUSER_InitBackend;
789 wci->ptr += 14;
791 else if (strncmp(wci->ptr + 10, "curses", 6) == 0)
793 wci->ptr += 16;
795 else
796 return IDS_CMD_INVALID_BACKEND;
798 else
799 return IDS_CMD_INVALID_OPTION|WINECON_CMD_SHOW_USAGE;
802 if (wci->mode == from_event)
803 return 0;
805 while (*wci->ptr == ' ' || *wci->ptr == '\t') wci->ptr++;
806 if (*wci->ptr == 0)
807 return IDS_CMD_ABOUT|WINECON_CMD_SHOW_USAGE;
809 return 0;
812 /******************************************************************
813 * WinMain
815 * wineconsole can either be started as:
816 * wineconsole --use-event=<int> used when a new console is created (AllocConsole)
817 * wineconsole <pgm> <arguments> used to start the program <pgm> from the command line in
818 * a freshly created console
819 * --backend=(curses|user) can also be used to select the desired backend
821 int PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR lpCmdLine, INT nCmdShow)
823 struct inner_data* data;
824 int ret = 1;
825 struct wc_init wci;
827 if ((ret = WINECON_ParseOptions(lpCmdLine, &wci)) != 0)
829 printf_res(ret & 0xffff);
830 if (ret & WINECON_CMD_SHOW_USAGE)
831 WINECON_Usage();
832 return 0;
835 switch (wci.mode)
837 case from_event:
838 /* case of wineconsole <evt>, signal process that created us that we're up and running */
839 if (!(data = WINECON_Init(hInst, 0, NULL, wci.backend, nCmdShow))) return 0;
840 ret = SetEvent(wci.event);
841 if (!ret) WINE_ERR("SetEvent failed.\n");
842 break;
843 case from_process_name:
845 WCHAR buffer[256];
847 MultiByteToWideChar(CP_ACP, 0, wci.ptr, -1, buffer, sizeof(buffer) / sizeof(buffer[0]));
849 if (!(data = WINECON_Init(hInst, GetCurrentProcessId(), buffer, wci.backend, nCmdShow)))
850 return 0;
851 ret = WINECON_Spawn(data, buffer);
852 if (!ret)
854 WINECON_Delete(data);
855 printf_res(IDS_CMD_LAUNCH_FAILED, wine_dbgstr_a(wci.ptr));
856 return 0;
859 break;
860 default:
861 return 0;
864 if (ret)
866 WINE_TRACE("calling MainLoop.\n");
867 ret = data->fnMainLoop(data);
870 WINECON_Delete(data);
872 return ret;