2001-11-24 00:04:58 +01:00
|
|
|
/*
|
|
|
|
* an application for displaying Win32 console
|
|
|
|
*
|
2002-09-04 20:41:52 +02:00
|
|
|
* Copyright 2001, 2002 Eric Pouech
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2001-11-24 00:04:58 +01:00
|
|
|
*/
|
|
|
|
|
2002-04-26 21:05:15 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
2001-11-24 00:04:58 +01:00
|
|
|
#include <stdio.h>
|
2006-10-19 19:21:17 +02:00
|
|
|
#include <stdarg.h>
|
2001-11-30 19:46:42 +01:00
|
|
|
#include "wine/server.h"
|
2001-11-24 00:04:58 +01:00
|
|
|
#include "winecon_private.h"
|
2002-12-14 00:37:06 +01:00
|
|
|
#include "winnls.h"
|
2006-10-19 19:21:17 +02:00
|
|
|
#include "winuser.h"
|
2001-11-24 00:04:58 +01:00
|
|
|
|
2002-05-14 23:45:13 +02:00
|
|
|
#include "wine/debug.h"
|
2001-11-24 00:04:58 +01:00
|
|
|
|
2002-05-14 23:45:13 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wineconsole);
|
2001-11-24 00:04:58 +01:00
|
|
|
|
2002-09-04 20:41:52 +02:00
|
|
|
void WINECON_Fatal(const char* msg)
|
|
|
|
{
|
|
|
|
WINE_ERR("%s\n", msg);
|
|
|
|
ExitProcess(0);
|
|
|
|
}
|
|
|
|
|
2006-10-19 19:21:17 +02:00
|
|
|
static void printf_res(UINT uResId, ...)
|
|
|
|
{
|
|
|
|
WCHAR buffer[1024];
|
|
|
|
CHAR ansi[1024];
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, uResId);
|
2010-04-28 01:10:42 +02:00
|
|
|
LoadStringW(GetModuleHandleW(NULL), uResId, buffer, sizeof(buffer)/sizeof(buffer[0]));
|
2006-10-19 19:21:17 +02:00
|
|
|
WideCharToMultiByte(CP_UNIXCP, 0, buffer, -1, ansi, sizeof(ansi), NULL, NULL);
|
|
|
|
vprintf(ansi, args);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
2007-03-10 22:00:47 +01:00
|
|
|
static void WINECON_Usage(void)
|
2006-10-19 19:21:17 +02:00
|
|
|
{
|
|
|
|
printf_res(IDS_USAGE_HEADER);
|
|
|
|
printf_res(IDS_USAGE_BACKEND);
|
|
|
|
printf_res(IDS_USAGE_COMMAND);
|
|
|
|
printf_res(IDS_USAGE_FOOTER);
|
|
|
|
}
|
|
|
|
|
2001-11-24 00:04:58 +01:00
|
|
|
/******************************************************************
|
|
|
|
* WINECON_FetchCells
|
|
|
|
*
|
|
|
|
* updates the local copy of cells (band to update)
|
|
|
|
*/
|
2009-01-20 09:15:26 +01:00
|
|
|
static void WINECON_FetchCells(struct inner_data* data, int upd_tp, int upd_bm)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_START_REQ( read_console_output )
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2008-12-08 16:05:17 +01:00
|
|
|
req->handle = wine_server_obj_handle( data->hConOut );
|
2001-11-30 19:46:42 +01:00
|
|
|
req->x = 0;
|
|
|
|
req->y = upd_tp;
|
|
|
|
req->mode = CHAR_INFO_MODE_TEXTATTR;
|
|
|
|
req->wrap = TRUE;
|
2001-12-04 21:46:54 +01:00
|
|
|
wine_server_set_reply( req, &data->cells[upd_tp * data->curcfg.sb_width],
|
|
|
|
(upd_bm-upd_tp+1) * data->curcfg.sb_width * sizeof(CHAR_INFO) );
|
2001-11-30 19:46:42 +01:00
|
|
|
wine_server_call( req );
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_END_REQ;
|
2001-11-24 00:04:58 +01:00
|
|
|
data->fnRefresh(data, upd_tp, upd_bm);
|
|
|
|
}
|
|
|
|
|
2010-11-15 21:36:02 +01:00
|
|
|
/******************************************************************
|
|
|
|
* WINECON_ResizeWithContainer
|
|
|
|
*
|
|
|
|
* For console embedded in a container (e.g. user in a win32 window, or (n)curses
|
|
|
|
* in a TERM, perform resize of console (screen buffer and window) to fit in
|
|
|
|
* (new) container size.
|
|
|
|
*/
|
|
|
|
void WINECON_ResizeWithContainer(struct inner_data* data, int width, int height)
|
|
|
|
{
|
|
|
|
struct config_data cfg;
|
|
|
|
|
|
|
|
if (data->in_set_config) return;
|
|
|
|
|
|
|
|
cfg = data->curcfg;
|
|
|
|
cfg.win_width = width;
|
|
|
|
cfg.win_height = height;
|
|
|
|
|
|
|
|
/* auto size screen-buffer if it's now smaller than window */
|
|
|
|
if (cfg.sb_width < cfg.win_width) cfg.sb_width = cfg.win_width;
|
|
|
|
if (cfg.sb_height < cfg.win_height) cfg.sb_height = cfg.win_height;
|
|
|
|
|
|
|
|
/* and reset window pos so that we don't display outside of the screen-buffer */
|
|
|
|
if (cfg.win_pos.X + cfg.win_width > cfg.sb_width) cfg.win_pos.X = cfg.sb_width - cfg.win_width;
|
|
|
|
if (cfg.win_pos.Y + cfg.win_height > cfg.sb_height) cfg.win_pos.Y = cfg.sb_height - cfg.win_height;
|
|
|
|
|
|
|
|
WINECON_SetConfig(data, &cfg);
|
|
|
|
}
|
|
|
|
|
2001-11-24 00:04:58 +01:00
|
|
|
/******************************************************************
|
|
|
|
* WINECON_SetHistorySize
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2009-01-20 09:16:20 +01:00
|
|
|
static BOOL WINECON_SetHistorySize(HANDLE hConIn, int size)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
SERVER_START_REQ(set_console_input_info)
|
|
|
|
{
|
2008-12-08 16:05:17 +01:00
|
|
|
req->handle = wine_server_obj_handle( hConIn );
|
2001-11-24 00:04:58 +01:00
|
|
|
req->mask = SET_CONSOLE_INPUT_INFO_HISTORY_SIZE;
|
|
|
|
req->history_size = size;
|
2001-11-30 19:46:42 +01:00
|
|
|
ret = !wine_server_call_err( req );
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* WINECON_SetHistoryMode
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2009-01-20 09:16:20 +01:00
|
|
|
static BOOL WINECON_SetHistoryMode(HANDLE hConIn, int mode)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
SERVER_START_REQ(set_console_input_info)
|
|
|
|
{
|
2008-12-08 16:05:17 +01:00
|
|
|
req->handle = wine_server_obj_handle( hConIn );
|
2001-11-24 00:04:58 +01:00
|
|
|
req->mask = SET_CONSOLE_INPUT_INFO_HISTORY_MODE;
|
|
|
|
req->history_mode = mode;
|
2001-11-30 19:46:42 +01:00
|
|
|
ret = !wine_server_call_err( req );
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* WINECON_GetConsoleTitle
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2001-11-30 19:46:42 +01:00
|
|
|
BOOL WINECON_GetConsoleTitle(HANDLE hConIn, WCHAR* buffer, size_t len)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
if (len < sizeof(WCHAR)) return FALSE;
|
2001-11-24 00:04:58 +01:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_START_REQ( get_console_input_info )
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2008-12-08 16:05:17 +01:00
|
|
|
req->handle = wine_server_obj_handle( hConIn );
|
2001-11-30 19:46:42 +01:00
|
|
|
wine_server_set_reply( req, buffer, len - sizeof(WCHAR) );
|
|
|
|
if ((ret = !wine_server_call_err( req )))
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
len = wine_server_reply_size( reply );
|
|
|
|
buffer[len / sizeof(WCHAR)] = 0;
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
|
|
|
}
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_END_REQ;
|
2001-11-24 00:04:58 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2003-01-09 07:01:51 +01:00
|
|
|
/******************************************************************
|
|
|
|
* WINECON_SetEditionMode
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static BOOL WINECON_SetEditionMode(HANDLE hConIn, int edition_mode)
|
|
|
|
{
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
SERVER_START_REQ( set_console_input_info )
|
|
|
|
{
|
2008-12-08 16:05:17 +01:00
|
|
|
req->handle = wine_server_obj_handle( hConIn );
|
2003-01-09 07:01:51 +01:00
|
|
|
req->mask = SET_CONSOLE_INPUT_INFO_EDITION_MODE;
|
|
|
|
req->edition_mode = edition_mode;
|
|
|
|
ret = !wine_server_call_err( req );
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2001-11-24 00:04:58 +01:00
|
|
|
/******************************************************************
|
|
|
|
* WINECON_GrabChanges
|
|
|
|
*
|
|
|
|
* A change occurs, try to figure out which
|
|
|
|
*/
|
2011-03-20 09:18:10 +01:00
|
|
|
void WINECON_GrabChanges(struct inner_data* data)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2002-03-23 19:45:57 +01:00
|
|
|
struct console_renderer_event evts[256];
|
2003-10-09 06:27:08 +02:00
|
|
|
int i, num, ev_found;
|
2001-11-24 00:04:58 +01:00
|
|
|
HANDLE h;
|
|
|
|
|
2011-09-08 22:27:41 +02:00
|
|
|
if (data->in_grab_changes) return;
|
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_START_REQ( get_console_renderer_events )
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
wine_server_set_reply( req, evts, sizeof(evts) );
|
2008-12-08 16:05:17 +01:00
|
|
|
req->handle = wine_server_obj_handle( data->hSynchro );
|
2001-11-30 19:46:42 +01:00
|
|
|
if (!wine_server_call_err( req )) num = wine_server_reply_size(reply) / sizeof(evts[0]);
|
|
|
|
else num = 0;
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
2001-11-30 19:46:42 +01:00
|
|
|
SERVER_END_REQ;
|
2011-03-20 09:18:10 +01:00
|
|
|
if (!num) {WINE_WARN("hmm renderer signaled but no events available\n"); return;}
|
2011-09-08 22:27:11 +02:00
|
|
|
WINE_TRACE( "got %u events\n", num );
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2001-11-24 00:04:58 +01:00
|
|
|
/* FIXME: should do some event compression here (cursor pos, update) */
|
2002-03-23 19:45:57 +01:00
|
|
|
/* step 1: keep only last cursor pos event */
|
2003-10-09 06:27:08 +02:00
|
|
|
ev_found = -1;
|
2002-03-23 19:45:57 +01:00
|
|
|
for (i = num - 1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
if (evts[i].event == CONSOLE_RENDERER_CURSOR_POS_EVENT)
|
|
|
|
{
|
2004-03-17 21:48:30 +01:00
|
|
|
if (ev_found != -1)
|
2011-09-08 22:27:11 +02:00
|
|
|
{
|
|
|
|
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);
|
2004-03-17 21:48:30 +01:00
|
|
|
evts[i].event = CONSOLE_RENDERER_NONE_EVENT;
|
2011-09-08 22:27:11 +02:00
|
|
|
}
|
2003-10-09 06:27:08 +02:00
|
|
|
ev_found = i;
|
2002-03-23 19:45:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* step 2: manage update events */
|
2003-10-09 06:27:08 +02:00
|
|
|
ev_found = -1;
|
2003-12-02 04:52:35 +01:00
|
|
|
for (i = 0; i < num; i++)
|
2002-03-23 19:45:57 +01:00
|
|
|
{
|
2003-12-02 04:52:35 +01:00
|
|
|
if (evts[i].event == CONSOLE_RENDERER_NONE_EVENT ||
|
|
|
|
evts[i].event == CONSOLE_RENDERER_CURSOR_POS_EVENT ||
|
|
|
|
evts[i].event == CONSOLE_RENDERER_CURSOR_GEOM_EVENT) continue;
|
2003-10-09 06:27:08 +02:00
|
|
|
if (evts[i].event != CONSOLE_RENDERER_UPDATE_EVENT)
|
2002-03-23 19:45:57 +01:00
|
|
|
{
|
2003-10-09 06:27:08 +02:00
|
|
|
ev_found = -1;
|
|
|
|
continue;
|
2003-12-02 04:52:35 +01:00
|
|
|
}
|
2003-10-09 06:27:08 +02:00
|
|
|
|
2005-05-06 17:44:31 +02:00
|
|
|
if (ev_found != -1 && /* Only 2 cases where they CANNOT merge */
|
2003-10-09 06:27:08 +02:00
|
|
|
!(evts[i ].u.update.bottom + 1 < evts[ev_found].u.update.top ||
|
|
|
|
evts[ev_found].u.update.bottom + 1 < evts[i ].u.update.top))
|
|
|
|
{
|
2011-09-08 22:27:11 +02:00
|
|
|
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);
|
2003-10-09 06:27:08 +02:00
|
|
|
evts[i].u.update.top = min(evts[i ].u.update.top,
|
|
|
|
evts[ev_found].u.update.top);
|
|
|
|
evts[i].u.update.bottom = max(evts[i ].u.update.bottom,
|
|
|
|
evts[ev_found].u.update.bottom);
|
|
|
|
evts[ev_found].event = CONSOLE_RENDERER_NONE_EVENT;
|
2002-03-23 19:45:57 +01:00
|
|
|
}
|
2003-10-09 06:27:08 +02:00
|
|
|
ev_found = i;
|
2002-03-23 19:45:57 +01:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2011-09-08 22:27:41 +02:00
|
|
|
data->in_grab_changes = TRUE;
|
2001-11-24 00:04:58 +01:00
|
|
|
for (i = 0; i < num; i++)
|
|
|
|
{
|
|
|
|
switch (evts[i].event)
|
|
|
|
{
|
2003-10-09 06:27:08 +02:00
|
|
|
case CONSOLE_RENDERER_NONE_EVENT:
|
2011-09-08 22:27:11 +02:00
|
|
|
WINE_TRACE("%u/%u: NOP\n", i+1, num);
|
2003-10-09 06:27:08 +02:00
|
|
|
break;
|
2001-11-24 00:04:58 +01:00
|
|
|
case CONSOLE_RENDERER_TITLE_EVENT:
|
2011-09-08 22:27:11 +02:00
|
|
|
WINE_TRACE("%u/%u: title()\n", i+1, num);
|
2001-11-24 00:04:58 +01:00
|
|
|
data->fnSetTitle(data);
|
|
|
|
break;
|
|
|
|
case CONSOLE_RENDERER_ACTIVE_SB_EVENT:
|
|
|
|
SERVER_START_REQ( open_console )
|
|
|
|
{
|
2008-12-08 16:05:17 +01:00
|
|
|
req->from = wine_server_obj_handle( data->hConIn );
|
2005-12-09 12:05:20 +01:00
|
|
|
req->access = GENERIC_READ | GENERIC_WRITE;
|
|
|
|
req->attributes = 0;
|
|
|
|
req->share = FILE_SHARE_READ | FILE_SHARE_WRITE;
|
2009-01-08 17:33:07 +01:00
|
|
|
h = wine_server_call_err( req ) ? 0 : wine_server_ptr_handle(reply->handle);
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
2011-09-08 22:27:11 +02:00
|
|
|
WINE_TRACE("%u/%u: active(%p)\n", i+1, num, h);
|
2001-11-24 00:04:58 +01:00
|
|
|
if (h)
|
|
|
|
{
|
|
|
|
CloseHandle(data->hConOut);
|
|
|
|
data->hConOut = h;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CONSOLE_RENDERER_SB_RESIZE_EVENT:
|
2002-06-01 01:06:46 +02:00
|
|
|
if (data->curcfg.sb_width != evts[i].u.resize.width ||
|
2005-12-03 18:04:07 +01:00
|
|
|
data->curcfg.sb_height != evts[i].u.resize.height)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2011-09-08 22:27:11 +02:00
|
|
|
WINE_TRACE("%u/%u: resize(%d,%d)\n", i+1, num, evts[i].u.resize.width, evts[i].u.resize.height);
|
2001-12-04 21:46:54 +01:00
|
|
|
data->curcfg.sb_width = evts[i].u.resize.width;
|
|
|
|
data->curcfg.sb_height = evts[i].u.resize.height;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2005-12-03 18:04:07 +01:00
|
|
|
data->cells = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, data->cells,
|
2003-10-15 23:01:05 +02:00
|
|
|
data->curcfg.sb_width * data->curcfg.sb_height * sizeof(CHAR_INFO));
|
|
|
|
|
2002-09-04 20:41:52 +02:00
|
|
|
if (!data->cells) WINECON_Fatal("OOM\n");
|
2001-11-24 00:04:58 +01:00
|
|
|
data->fnResizeScreenBuffer(data);
|
|
|
|
data->fnComputePositions(data);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CONSOLE_RENDERER_UPDATE_EVENT:
|
2011-09-08 22:27:11 +02:00
|
|
|
WINE_TRACE("%u/%u: update(%d,%d)\n", i+1, num, evts[i].u.update.top, evts[i].u.update.bottom);
|
2001-11-24 00:04:58 +01:00
|
|
|
WINECON_FetchCells(data, evts[i].u.update.top, evts[i].u.update.bottom);
|
|
|
|
break;
|
|
|
|
case CONSOLE_RENDERER_CURSOR_POS_EVENT:
|
|
|
|
if (evts[i].u.cursor_pos.x != data->cursor.X || evts[i].u.cursor_pos.y != data->cursor.Y)
|
2002-06-01 01:06:46 +02:00
|
|
|
{
|
2011-09-08 22:27:11 +02:00
|
|
|
WINE_TRACE("%u/%u: curs-pos(%d,%d)\n", i+1, num, evts[i].u.cursor_pos.x, evts[i].u.cursor_pos.y);
|
2001-11-24 00:04:58 +01:00
|
|
|
data->cursor.X = evts[i].u.cursor_pos.x;
|
|
|
|
data->cursor.Y = evts[i].u.cursor_pos.y;
|
|
|
|
data->fnPosCursor(data);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CONSOLE_RENDERER_CURSOR_GEOM_EVENT:
|
2002-06-01 01:06:46 +02:00
|
|
|
if (evts[i].u.cursor_geom.size != data->curcfg.cursor_size ||
|
2001-12-04 21:46:54 +01:00
|
|
|
evts[i].u.cursor_geom.visible != data->curcfg.cursor_visible)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2011-09-08 22:27:11 +02:00
|
|
|
WINE_TRACE("%u/%u: curs-geom(%d,%d)\n", i+1, num,
|
2003-10-08 21:20:11 +02:00
|
|
|
evts[i].u.cursor_geom.size, evts[i].u.cursor_geom.visible);
|
2003-10-08 21:18:33 +02:00
|
|
|
data->fnShapeCursor(data, evts[i].u.cursor_geom.size,
|
|
|
|
evts[i].u.cursor_geom.visible, FALSE);
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CONSOLE_RENDERER_DISPLAY_EVENT:
|
2001-12-04 21:46:54 +01:00
|
|
|
if (evts[i].u.display.left != data->curcfg.win_pos.X)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2011-09-08 22:27:11 +02:00
|
|
|
WINE_TRACE("%u/%u: h-scroll(%d)\n", i+1, num, evts[i].u.display.left);
|
2003-10-08 21:18:33 +02:00
|
|
|
data->fnScroll(data, evts[i].u.display.left, TRUE);
|
|
|
|
data->fnPosCursor(data);
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
2001-12-04 21:46:54 +01:00
|
|
|
if (evts[i].u.display.top != data->curcfg.win_pos.Y)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2011-09-08 22:27:11 +02:00
|
|
|
WINE_TRACE("%u/%u: v-scroll(%d)\n", i+1, num, evts[i].u.display.top);
|
2003-10-08 21:18:33 +02:00
|
|
|
data->fnScroll(data, evts[i].u.display.top, FALSE);
|
|
|
|
data->fnPosCursor(data);
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
if (evts[i].u.display.width != data->curcfg.win_width ||
|
2001-12-04 21:46:54 +01:00
|
|
|
evts[i].u.display.height != data->curcfg.win_height)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2011-09-08 22:27:11 +02:00
|
|
|
WINE_TRACE("%u/%u: win-size(%d,%d)\n", i+1, num, evts[i].u.display.width, evts[i].u.display.height);
|
2001-12-04 21:46:54 +01:00
|
|
|
data->curcfg.win_width = evts[i].u.display.width;
|
|
|
|
data->curcfg.win_height = evts[i].u.display.height;
|
2001-11-24 00:04:58 +01:00
|
|
|
data->fnComputePositions(data);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CONSOLE_RENDERER_EXIT_EVENT:
|
2011-03-20 09:18:10 +01:00
|
|
|
data->dying = TRUE;
|
2011-09-08 22:27:11 +02:00
|
|
|
WINE_TRACE("%u/%u: Exit!!\n", i+1, num);
|
2011-03-20 09:18:10 +01:00
|
|
|
return;
|
2001-11-24 00:04:58 +01:00
|
|
|
default:
|
2002-05-14 23:45:13 +02:00
|
|
|
WINE_FIXME("Unknown event type (%d)\n", evts[i].event);
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
|
|
|
}
|
2011-09-08 22:27:41 +02:00
|
|
|
data->in_grab_changes = FALSE;
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
|
|
|
|
2002-09-04 20:41:52 +02:00
|
|
|
/******************************************************************
|
|
|
|
* WINECON_SetConfig
|
|
|
|
*
|
|
|
|
* Apply to data all the configuration elements from cfg. This includes modification
|
|
|
|
* of server side equivalent and visual parts.
|
|
|
|
* If force is FALSE, only the changed items are modified.
|
|
|
|
*/
|
2005-11-03 12:32:52 +01:00
|
|
|
void WINECON_SetConfig(struct inner_data* data, const struct config_data* cfg)
|
2002-09-04 20:41:52 +02:00
|
|
|
{
|
2010-11-15 21:36:02 +01:00
|
|
|
if (data->in_set_config) return;
|
|
|
|
data->in_set_config = TRUE;
|
2005-11-03 12:32:52 +01:00
|
|
|
if (data->curcfg.cursor_size != cfg->cursor_size ||
|
2002-09-04 20:41:52 +02:00
|
|
|
data->curcfg.cursor_visible != cfg->cursor_visible)
|
|
|
|
{
|
|
|
|
CONSOLE_CURSOR_INFO cinfo;
|
|
|
|
cinfo.dwSize = cfg->cursor_size;
|
2012-05-15 10:15:32 +02:00
|
|
|
/* <FIXME>: this hack is needed to pass through the invariant test operation on the server side
|
|
|
|
* (no notification is sent when invariant operation is requested)
|
2002-09-04 20:41:52 +02:00
|
|
|
*/
|
|
|
|
cinfo.bVisible = !cfg->cursor_visible;
|
|
|
|
SetConsoleCursorInfo(data->hConOut, &cinfo);
|
|
|
|
/* </FIXME> */
|
|
|
|
cinfo.bVisible = cfg->cursor_visible;
|
|
|
|
/* this shall update (through notif) curcfg */
|
|
|
|
SetConsoleCursorInfo(data->hConOut, &cinfo);
|
|
|
|
}
|
2005-11-03 12:32:52 +01:00
|
|
|
if (data->curcfg.history_size != cfg->history_size)
|
2002-09-04 20:41:52 +02:00
|
|
|
{
|
|
|
|
data->curcfg.history_size = cfg->history_size;
|
|
|
|
WINECON_SetHistorySize(data->hConIn, cfg->history_size);
|
|
|
|
}
|
2005-11-03 12:32:52 +01:00
|
|
|
if (data->curcfg.history_nodup != cfg->history_nodup)
|
2002-09-04 20:41:52 +02:00
|
|
|
{
|
|
|
|
data->curcfg.history_nodup = cfg->history_nodup;
|
|
|
|
WINECON_SetHistoryMode(data->hConIn, cfg->history_nodup);
|
|
|
|
}
|
|
|
|
data->curcfg.menu_mask = cfg->menu_mask;
|
|
|
|
data->curcfg.quick_edit = cfg->quick_edit;
|
2005-11-03 12:32:52 +01:00
|
|
|
if (1 /* FIXME: font info has changed */)
|
2002-09-04 20:41:52 +02:00
|
|
|
{
|
|
|
|
data->fnSetFont(data, cfg->face_name, cfg->cell_height, cfg->font_weight);
|
|
|
|
}
|
2005-11-03 12:32:52 +01:00
|
|
|
if (data->curcfg.def_attr != cfg->def_attr)
|
2002-09-04 20:41:52 +02:00
|
|
|
{
|
|
|
|
data->curcfg.def_attr = cfg->def_attr;
|
|
|
|
SetConsoleTextAttribute(data->hConOut, cfg->def_attr);
|
|
|
|
}
|
2003-02-26 05:37:15 +01:00
|
|
|
/* now let's look at the window / sb size changes...
|
|
|
|
* since the server checks that sb is always bigger than window,
|
|
|
|
* we have to take care of doing the operations in the right order
|
|
|
|
*/
|
|
|
|
/* a set of macros to make things easier to read
|
|
|
|
* The Test<A><B> macros test if the <A> (width/height) needs to be changed
|
|
|
|
* for <B> (window / ScreenBuffer)
|
|
|
|
* The Change<A><B> actually modify the <B> dimension of <A>.
|
|
|
|
*/
|
2005-11-03 12:32:52 +01:00
|
|
|
#define TstSBfWidth() (data->curcfg.sb_width != cfg->sb_width)
|
2010-11-15 21:35:55 +01:00
|
|
|
#define TstWinHPos() (data->curcfg.win_width != cfg->win_width || data->curcfg.win_pos.X != cfg->win_pos.X)
|
2003-02-26 05:37:15 +01:00
|
|
|
|
|
|
|
#define ChgSBfWidth() do {c.X = cfg->sb_width; \
|
|
|
|
c.Y = data->curcfg.sb_height;\
|
|
|
|
SetConsoleScreenBufferSize(data->hConOut, c);\
|
|
|
|
} while (0)
|
2010-11-15 21:35:55 +01:00
|
|
|
#define ChgWinHPos() do {pos.Left = cfg->win_pos.X - data->curcfg.win_pos.X; \
|
|
|
|
pos.Top = 0; \
|
|
|
|
pos.Right = pos.Left + cfg->win_width - data->curcfg.win_width; \
|
2005-10-10 13:18:46 +02:00
|
|
|
pos.Bottom = 0; \
|
2003-02-26 05:37:15 +01:00
|
|
|
SetConsoleWindowInfo(data->hConOut, FALSE, &pos);\
|
|
|
|
} while (0)
|
2005-11-03 12:32:52 +01:00
|
|
|
#define TstSBfHeight() (data->curcfg.sb_height != cfg->sb_height)
|
2010-11-15 21:35:55 +01:00
|
|
|
#define TstWinVPos() (data->curcfg.win_height != cfg->win_height || data->curcfg.win_pos.Y != cfg->win_pos.Y)
|
2003-02-26 05:37:15 +01:00
|
|
|
|
|
|
|
/* since we're going to apply height after width is done, we use width as defined
|
|
|
|
* in cfg, and not in data->curcfg because if won't be updated yet */
|
|
|
|
#define ChgSBfHeight() do {c.X = cfg->sb_width; c.Y = cfg->sb_height; \
|
|
|
|
SetConsoleScreenBufferSize(data->hConOut, c); \
|
|
|
|
} while (0)
|
2010-11-15 21:35:55 +01:00
|
|
|
#define ChgWinVPos() do {pos.Left = 0; \
|
|
|
|
pos.Top = cfg->win_pos.Y - data->curcfg.win_pos.Y; \
|
2005-10-10 13:18:46 +02:00
|
|
|
pos.Right = 0; \
|
2010-11-15 21:35:55 +01:00
|
|
|
pos.Bottom = pos.Top + cfg->win_height - data->curcfg.win_height; \
|
2003-02-26 05:37:15 +01:00
|
|
|
SetConsoleWindowInfo(data->hConOut, FALSE, &pos);\
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
do
|
2002-09-04 20:41:52 +02:00
|
|
|
{
|
|
|
|
COORD c;
|
|
|
|
SMALL_RECT pos;
|
|
|
|
|
2003-02-26 05:37:15 +01:00
|
|
|
if (TstSBfWidth())
|
|
|
|
{
|
2010-11-15 21:35:55 +01:00
|
|
|
if (TstWinHPos())
|
2003-02-26 05:37:15 +01:00
|
|
|
{
|
|
|
|
/* we're changing both at the same time, do it in the right order */
|
|
|
|
if (cfg->sb_width >= data->curcfg.win_width)
|
|
|
|
{
|
2010-11-15 21:35:55 +01:00
|
|
|
ChgSBfWidth(); ChgWinHPos();
|
2003-02-26 05:37:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-11-15 21:35:55 +01:00
|
|
|
ChgWinHPos(); ChgSBfWidth();
|
2003-02-26 05:37:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else ChgSBfWidth();
|
|
|
|
}
|
2010-11-15 21:35:55 +01:00
|
|
|
else if (TstWinHPos()) ChgWinHPos();
|
2003-02-26 05:37:15 +01:00
|
|
|
if (TstSBfHeight())
|
|
|
|
{
|
2010-11-15 21:35:55 +01:00
|
|
|
if (TstWinVPos())
|
2003-02-26 05:37:15 +01:00
|
|
|
{
|
|
|
|
if (cfg->sb_height >= data->curcfg.win_height)
|
|
|
|
{
|
2010-11-15 21:35:55 +01:00
|
|
|
ChgSBfHeight(); ChgWinVPos();
|
2003-02-26 05:37:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-11-15 21:35:55 +01:00
|
|
|
ChgWinVPos(); ChgSBfHeight();
|
2003-02-26 05:37:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else ChgSBfHeight();
|
|
|
|
}
|
2010-11-15 21:35:55 +01:00
|
|
|
else if (TstWinVPos()) ChgWinVPos();
|
2003-02-26 05:37:15 +01:00
|
|
|
} while (0);
|
|
|
|
#undef TstSBfWidth
|
2010-11-15 21:35:55 +01:00
|
|
|
#undef TstWinHPos
|
2003-02-26 05:37:15 +01:00
|
|
|
#undef ChgSBfWidth
|
2010-11-15 21:35:55 +01:00
|
|
|
#undef ChgWinHPos
|
2003-02-26 05:37:15 +01:00
|
|
|
#undef TstSBfHeight
|
2010-11-15 21:35:55 +01:00
|
|
|
#undef TstWinVPos
|
2003-02-26 05:37:15 +01:00
|
|
|
#undef ChgSBfHeight
|
2010-11-15 21:35:55 +01:00
|
|
|
#undef ChgWinVPos
|
2003-02-26 05:37:15 +01:00
|
|
|
|
2002-09-04 20:41:52 +02:00
|
|
|
data->curcfg.exit_on_die = cfg->exit_on_die;
|
2005-11-03 12:32:52 +01:00
|
|
|
if (data->curcfg.edition_mode != cfg->edition_mode)
|
2003-01-09 07:01:51 +01:00
|
|
|
{
|
|
|
|
data->curcfg.edition_mode = cfg->edition_mode;
|
|
|
|
WINECON_SetEditionMode(data->hConIn, cfg->edition_mode);
|
|
|
|
}
|
2002-09-04 20:41:52 +02:00
|
|
|
/* we now need to gather all events we got from the operations above,
|
|
|
|
* in order to get data correctly updated
|
|
|
|
*/
|
|
|
|
WINECON_GrabChanges(data);
|
2010-11-15 21:36:02 +01:00
|
|
|
data->in_set_config = FALSE;
|
2002-09-04 20:41:52 +02:00
|
|
|
}
|
|
|
|
|
2001-11-24 00:04:58 +01:00
|
|
|
/******************************************************************
|
|
|
|
* WINECON_Delete
|
|
|
|
*
|
|
|
|
* Destroy wineconsole internal data
|
|
|
|
*/
|
|
|
|
static void WINECON_Delete(struct inner_data* data)
|
|
|
|
{
|
|
|
|
if (!data) return;
|
|
|
|
|
2002-12-14 00:37:06 +01:00
|
|
|
if (data->fnDeleteBackend) data->fnDeleteBackend(data);
|
2001-11-24 00:04:58 +01:00
|
|
|
if (data->hConIn) CloseHandle(data->hConIn);
|
|
|
|
if (data->hConOut) CloseHandle(data->hConOut);
|
|
|
|
if (data->hSynchro) CloseHandle(data->hSynchro);
|
2004-12-23 18:06:43 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, data->cells);
|
2001-11-24 00:04:58 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, data);
|
|
|
|
}
|
|
|
|
|
2005-11-03 12:32:52 +01:00
|
|
|
/******************************************************************
|
|
|
|
* WINECON_GetServerConfig
|
|
|
|
*
|
|
|
|
* Fills data->curcfg with the actual configuration running in the server
|
|
|
|
* (getting real information on the server, and not relying on cached
|
|
|
|
* information in data)
|
|
|
|
*/
|
|
|
|
static BOOL WINECON_GetServerConfig(struct inner_data* data)
|
|
|
|
{
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
SERVER_START_REQ(get_console_input_info)
|
|
|
|
{
|
2008-12-08 16:05:17 +01:00
|
|
|
req->handle = wine_server_obj_handle( data->hConIn );
|
2005-11-03 12:32:52 +01:00
|
|
|
ret = !wine_server_call_err( req );
|
|
|
|
data->curcfg.history_size = reply->history_size;
|
|
|
|
data->curcfg.history_nodup = reply->history_mode;
|
|
|
|
data->curcfg.edition_mode = reply->edition_mode;
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
if (!ret) return FALSE;
|
|
|
|
SERVER_START_REQ(get_console_output_info)
|
|
|
|
{
|
2008-12-08 16:05:17 +01:00
|
|
|
req->handle = wine_server_obj_handle( data->hConOut );
|
2005-11-03 12:32:52 +01:00
|
|
|
ret = !wine_server_call_err( req );
|
|
|
|
data->curcfg.cursor_size = reply->cursor_size;
|
|
|
|
data->curcfg.cursor_visible = reply->cursor_visible;
|
|
|
|
data->curcfg.def_attr = reply->attr;
|
|
|
|
data->curcfg.sb_width = reply->width;
|
|
|
|
data->curcfg.sb_height = reply->height;
|
|
|
|
data->curcfg.win_width = reply->win_right - reply->win_left + 1;
|
|
|
|
data->curcfg.win_height = reply->win_bottom - reply->win_top + 1;
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
WINECON_DumpConfig("first cfg: ", &data->curcfg);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2001-11-24 00:04:58 +01:00
|
|
|
/******************************************************************
|
|
|
|
* WINECON_Init
|
|
|
|
*
|
|
|
|
* Initialisation part I. Creation of server object (console input and
|
|
|
|
* active screen buffer)
|
|
|
|
*/
|
2002-10-03 21:54:57 +02:00
|
|
|
static struct inner_data* WINECON_Init(HINSTANCE hInst, DWORD pid, LPCWSTR appname,
|
2005-04-14 13:30:09 +02:00
|
|
|
enum init_return (*backend)(struct inner_data*),
|
|
|
|
INT nCmdShow)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
|
|
|
struct inner_data* data = NULL;
|
|
|
|
DWORD ret;
|
2002-09-04 20:41:52 +02:00
|
|
|
struct config_data cfg;
|
|
|
|
STARTUPINFOW si;
|
2001-11-24 00:04:58 +01:00
|
|
|
|
|
|
|
data = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*data));
|
|
|
|
if (!data) return 0;
|
|
|
|
|
2010-04-28 01:10:42 +02:00
|
|
|
GetStartupInfoW(&si);
|
2002-09-04 20:41:52 +02:00
|
|
|
|
|
|
|
if (pid == 0)
|
|
|
|
{
|
|
|
|
if (!si.lpTitle) WINECON_Fatal("Should have a title set");
|
|
|
|
appname = si.lpTitle;
|
|
|
|
}
|
|
|
|
|
2005-04-14 13:30:09 +02:00
|
|
|
data->nCmdShow = nCmdShow;
|
2002-09-04 20:41:52 +02:00
|
|
|
/* load settings */
|
|
|
|
WINECON_RegLoad(appname, &cfg);
|
|
|
|
|
|
|
|
/* some overrides */
|
|
|
|
if (pid == 0)
|
|
|
|
{
|
|
|
|
if (si.dwFlags & STARTF_USECOUNTCHARS)
|
|
|
|
{
|
|
|
|
cfg.sb_width = si.dwXCountChars;
|
|
|
|
cfg.sb_height = si.dwYCountChars;
|
|
|
|
}
|
|
|
|
if (si.dwFlags & STARTF_USEFILLATTRIBUTE)
|
|
|
|
cfg.def_attr = si.dwFillAttribute;
|
|
|
|
/* should always be defined */
|
|
|
|
}
|
2001-12-04 21:46:54 +01:00
|
|
|
|
2001-11-24 00:04:58 +01:00
|
|
|
/* the handles here are created without the whistles and bells required by console
|
|
|
|
* (mainly because wineconsole doesn't need it)
|
2002-07-02 01:22:48 +02:00
|
|
|
* - they are not inheritable
|
2001-11-24 00:04:58 +01:00
|
|
|
* - hConIn is not synchronizable
|
|
|
|
*/
|
|
|
|
SERVER_START_REQ(alloc_console)
|
|
|
|
{
|
2003-06-21 04:07:10 +02:00
|
|
|
req->access = GENERIC_READ | GENERIC_WRITE;
|
2005-12-09 12:05:20 +01:00
|
|
|
req->attributes = 0;
|
2003-06-23 05:37:14 +02:00
|
|
|
req->pid = pid;
|
2010-08-30 22:18:44 +02:00
|
|
|
req->input_fd = -1;
|
2003-06-21 04:07:10 +02:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
ret = !wine_server_call_err( req );
|
2009-01-08 17:33:07 +01:00
|
|
|
data->hConIn = wine_server_ptr_handle( reply->handle_in );
|
|
|
|
data->hSynchro = wine_server_ptr_handle( reply->event );
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
if (!ret) goto error;
|
2002-09-04 20:41:52 +02:00
|
|
|
WINE_TRACE("using hConIn %p, hSynchro event %p\n", data->hConIn, data->hSynchro);
|
2001-11-24 00:04:58 +01:00
|
|
|
|
2001-12-04 21:46:54 +01:00
|
|
|
SERVER_START_REQ(create_console_output)
|
|
|
|
{
|
2008-12-08 16:05:17 +01:00
|
|
|
req->handle_in = wine_server_obj_handle( data->hConIn );
|
2005-12-09 12:05:20 +01:00
|
|
|
req->access = GENERIC_WRITE|GENERIC_READ;
|
|
|
|
req->attributes = 0;
|
|
|
|
req->share = FILE_SHARE_READ|FILE_SHARE_WRITE;
|
2010-08-30 22:18:52 +02:00
|
|
|
req->fd = -1;
|
2002-09-04 20:41:52 +02:00
|
|
|
ret = !wine_server_call_err( req );
|
2009-01-08 17:33:07 +01:00
|
|
|
data->hConOut = wine_server_ptr_handle( reply->handle_out );
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
2001-12-04 21:46:54 +01:00
|
|
|
SERVER_END_REQ;
|
2002-09-04 20:41:52 +02:00
|
|
|
if (!ret) goto error;
|
|
|
|
WINE_TRACE("using hConOut %p\n", data->hConOut);
|
|
|
|
|
|
|
|
/* filling data->curcfg from cfg */
|
2003-06-13 18:32:52 +02:00
|
|
|
switch ((*backend)(data))
|
2002-09-04 20:41:52 +02:00
|
|
|
{
|
2007-09-26 14:21:46 +02:00
|
|
|
case init_not_supported:
|
|
|
|
if (backend == WCCURSES_InitBackend)
|
|
|
|
{
|
|
|
|
if (WCUSER_InitBackend( data ) != init_success) break;
|
|
|
|
}
|
|
|
|
else if (backend == WCUSER_InitBackend)
|
|
|
|
{
|
|
|
|
if (WCCURSES_InitBackend( data ) != init_success) break;
|
|
|
|
}
|
|
|
|
/* fall through */
|
2003-06-13 18:32:52 +02:00
|
|
|
case init_success:
|
2005-11-03 12:32:52 +01:00
|
|
|
WINECON_GetServerConfig(data);
|
2005-12-03 18:04:07 +01:00
|
|
|
data->cells = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
data->curcfg.sb_width * data->curcfg.sb_height * sizeof(CHAR_INFO));
|
|
|
|
if (!data->cells) WINECON_Fatal("OOM\n");
|
|
|
|
data->fnResizeScreenBuffer(data);
|
|
|
|
data->fnComputePositions(data);
|
2005-11-03 12:32:52 +01:00
|
|
|
WINECON_SetConfig(data, &cfg);
|
2002-09-04 20:41:52 +02:00
|
|
|
data->curcfg.registry = cfg.registry;
|
|
|
|
WINECON_DumpConfig("fint", &data->curcfg);
|
2007-08-23 17:17:17 +02:00
|
|
|
SERVER_START_REQ( set_console_input_info )
|
|
|
|
{
|
2008-12-08 16:05:17 +01:00
|
|
|
req->handle = wine_server_obj_handle( data->hConIn );
|
2008-12-08 16:58:20 +01:00
|
|
|
req->win = wine_server_user_handle( data->hWnd );
|
2007-08-23 17:17:17 +02:00
|
|
|
req->mask = SET_CONSOLE_INPUT_INFO_TITLE |
|
|
|
|
SET_CONSOLE_INPUT_INFO_WIN;
|
|
|
|
wine_server_add_data( req, appname, lstrlenW(appname) * sizeof(WCHAR) );
|
|
|
|
ret = !wine_server_call_err( req );
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
if (!ret) goto error;
|
|
|
|
|
2002-09-04 20:41:52 +02:00
|
|
|
return data;
|
2003-06-13 18:32:52 +02:00
|
|
|
case init_failed:
|
|
|
|
break;
|
2002-09-04 20:41:52 +02:00
|
|
|
}
|
2001-11-24 00:04:58 +01:00
|
|
|
|
|
|
|
error:
|
2002-09-04 20:41:52 +02:00
|
|
|
WINE_ERR("failed to init.\n");
|
|
|
|
|
2001-11-24 00:04:58 +01:00
|
|
|
WINECON_Delete(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* WINECON_Spawn
|
|
|
|
*
|
2002-06-25 01:00:47 +02:00
|
|
|
* Spawn the child process when invoked with wineconsole foo bar
|
2001-11-24 00:04:58 +01:00
|
|
|
*/
|
2002-09-04 20:41:52 +02:00
|
|
|
static BOOL WINECON_Spawn(struct inner_data* data, LPWSTR cmdLine)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2010-04-28 01:10:42 +02:00
|
|
|
PROCESS_INFORMATION info;
|
|
|
|
STARTUPINFOW startup;
|
|
|
|
BOOL done;
|
2001-11-24 00:04:58 +01:00
|
|
|
|
|
|
|
/* we're in the case wineconsole <exe> <options>... spawn the new process */
|
|
|
|
memset(&startup, 0, sizeof(startup));
|
|
|
|
startup.cb = sizeof(startup);
|
2001-12-04 21:46:54 +01:00
|
|
|
startup.dwFlags = STARTF_USESTDHANDLES;
|
2001-11-24 00:04:58 +01:00
|
|
|
|
|
|
|
/* the attributes of wineconsole's handles are not adequate for inheritance, so
|
|
|
|
* get them with the correct attributes before process creation
|
|
|
|
*/
|
|
|
|
if (!DuplicateHandle(GetCurrentProcess(), data->hConIn, GetCurrentProcess(),
|
|
|
|
&startup.hStdInput, GENERIC_READ|GENERIC_WRITE|SYNCHRONIZE, TRUE, 0) ||
|
2002-06-01 01:06:46 +02:00
|
|
|
!DuplicateHandle(GetCurrentProcess(), data->hConOut, GetCurrentProcess(),
|
2001-11-24 00:04:58 +01:00
|
|
|
&startup.hStdOutput, GENERIC_READ|GENERIC_WRITE, TRUE, 0) ||
|
2002-06-01 01:06:46 +02:00
|
|
|
!DuplicateHandle(GetCurrentProcess(), data->hConOut, GetCurrentProcess(),
|
2002-09-04 20:41:52 +02:00
|
|
|
&startup.hStdError, GENERIC_READ|GENERIC_WRITE, TRUE, 0))
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2002-05-14 23:45:13 +02:00
|
|
|
WINE_ERR("Can't dup handles\n");
|
2006-12-14 17:59:46 +01:00
|
|
|
/* no need to delete handles, we're exiting the program anyway */
|
2001-11-24 00:04:58 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-04-28 01:10:42 +02:00
|
|
|
done = CreateProcessW(NULL, cmdLine, NULL, NULL, TRUE, 0L, NULL, NULL, &startup, &info);
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2001-11-24 00:04:58 +01:00
|
|
|
/* we no longer need the handles passed to the child for the console */
|
|
|
|
CloseHandle(startup.hStdInput);
|
|
|
|
CloseHandle(startup.hStdOutput);
|
|
|
|
CloseHandle(startup.hStdError);
|
|
|
|
|
2003-03-07 21:34:55 +01:00
|
|
|
CloseHandle(info.hProcess);
|
|
|
|
CloseHandle(info.hThread);
|
|
|
|
|
2001-11-24 00:04:58 +01:00
|
|
|
return done;
|
|
|
|
}
|
|
|
|
|
2003-03-04 03:13:25 +01:00
|
|
|
struct wc_init {
|
2003-06-13 18:32:52 +02:00
|
|
|
LPCSTR ptr;
|
2003-03-04 03:13:25 +01:00
|
|
|
enum {from_event, from_process_name} mode;
|
2003-06-13 18:32:52 +02:00
|
|
|
enum init_return (*backend)(struct inner_data*);
|
|
|
|
HANDLE event;
|
2003-03-04 03:13:25 +01:00
|
|
|
};
|
|
|
|
|
2006-10-19 19:21:17 +02:00
|
|
|
#define WINECON_CMD_SHOW_USAGE 0x10000
|
|
|
|
|
2001-12-04 21:46:54 +01:00
|
|
|
/******************************************************************
|
2003-03-04 03:13:25 +01:00
|
|
|
* WINECON_ParseOptions
|
2001-12-04 21:46:54 +01:00
|
|
|
*
|
2006-10-19 19:21:17 +02:00
|
|
|
* RETURNS
|
|
|
|
* On success: 0
|
2006-11-07 00:37:42 +01:00
|
|
|
* On error: error string id optionally with the CMD_SHOW_USAGE flag
|
2001-12-04 21:46:54 +01:00
|
|
|
*/
|
2006-10-19 19:21:17 +02:00
|
|
|
static UINT WINECON_ParseOptions(const char* lpCmdLine, struct wc_init* wci)
|
2001-11-25 01:49:36 +01:00
|
|
|
{
|
2003-03-04 03:13:25 +01:00
|
|
|
memset(wci, 0, sizeof(*wci));
|
|
|
|
wci->ptr = lpCmdLine;
|
|
|
|
wci->mode = from_process_name;
|
2007-09-26 14:21:46 +02:00
|
|
|
wci->backend = WCUSER_InitBackend;
|
2003-03-04 03:13:25 +01:00
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
while (*wci->ptr == ' ' || *wci->ptr == '\t') wci->ptr++;
|
|
|
|
if (wci->ptr[0] != '-') break;
|
|
|
|
if (strncmp(wci->ptr, "--use-event=", 12) == 0)
|
|
|
|
{
|
|
|
|
char* end;
|
|
|
|
wci->event = (HANDLE)strtol(wci->ptr + 12, &end, 10);
|
2006-10-19 19:21:17 +02:00
|
|
|
if (end == wci->ptr + 12) return IDS_CMD_INVALID_EVENT_ID;
|
2003-03-04 03:13:25 +01:00
|
|
|
wci->mode = from_event;
|
|
|
|
wci->ptr = end;
|
|
|
|
}
|
|
|
|
else if (strncmp(wci->ptr, "--backend=", 10) == 0)
|
|
|
|
{
|
|
|
|
if (strncmp(wci->ptr + 10, "user", 4) == 0)
|
|
|
|
{
|
|
|
|
wci->backend = WCUSER_InitBackend;
|
|
|
|
wci->ptr += 14;
|
|
|
|
}
|
|
|
|
else if (strncmp(wci->ptr + 10, "curses", 6) == 0)
|
|
|
|
{
|
2007-09-26 14:21:46 +02:00
|
|
|
wci->backend = WCCURSES_InitBackend;
|
2003-03-04 03:13:25 +01:00
|
|
|
wci->ptr += 16;
|
|
|
|
}
|
|
|
|
else
|
2006-10-19 19:21:17 +02:00
|
|
|
return IDS_CMD_INVALID_BACKEND;
|
2003-03-04 03:13:25 +01:00
|
|
|
}
|
2003-03-10 20:03:33 +01:00
|
|
|
else
|
2006-10-19 19:21:17 +02:00
|
|
|
return IDS_CMD_INVALID_OPTION|WINECON_CMD_SHOW_USAGE;
|
2003-03-04 03:13:25 +01:00
|
|
|
}
|
|
|
|
|
2006-10-19 19:21:17 +02:00
|
|
|
if (wci->mode == from_event)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (*wci->ptr == ' ' || *wci->ptr == '\t') wci->ptr++;
|
|
|
|
if (*wci->ptr == 0)
|
|
|
|
return IDS_CMD_ABOUT|WINECON_CMD_SHOW_USAGE;
|
|
|
|
|
|
|
|
return 0;
|
2001-11-25 01:49:36 +01:00
|
|
|
}
|
|
|
|
|
2001-11-24 00:04:58 +01:00
|
|
|
/******************************************************************
|
2002-05-12 01:06:32 +02:00
|
|
|
* WinMain
|
2001-11-24 00:04:58 +01:00
|
|
|
*
|
|
|
|
* wineconsole can either be started as:
|
2001-11-25 01:49:36 +01:00
|
|
|
* wineconsole --use-event=<int> used when a new console is created (AllocConsole)
|
2001-11-24 00:04:58 +01:00
|
|
|
* wineconsole <pgm> <arguments> used to start the program <pgm> from the command line in
|
|
|
|
* a freshly created console
|
2003-03-04 03:13:25 +01:00
|
|
|
* --backend=(curses|user) can also be used to select the desired backend
|
2001-11-24 00:04:58 +01:00
|
|
|
*/
|
2002-05-12 01:06:32 +02:00
|
|
|
int PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR lpCmdLine, INT nCmdShow)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
|
|
|
struct inner_data* data;
|
|
|
|
int ret = 1;
|
2003-03-04 03:13:25 +01:00
|
|
|
struct wc_init wci;
|
2001-11-24 00:04:58 +01:00
|
|
|
|
2006-10-19 19:21:17 +02:00
|
|
|
if ((ret = WINECON_ParseOptions(lpCmdLine, &wci)) != 0)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2006-10-19 19:21:17 +02:00
|
|
|
printf_res(ret & 0xffff);
|
|
|
|
if (ret & WINECON_CMD_SHOW_USAGE)
|
|
|
|
WINECON_Usage();
|
2003-03-04 03:13:25 +01:00
|
|
|
return 0;
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
2002-09-04 20:41:52 +02:00
|
|
|
|
2003-03-04 03:13:25 +01:00
|
|
|
switch (wci.mode)
|
|
|
|
{
|
|
|
|
case from_event:
|
|
|
|
/* case of wineconsole <evt>, signal process that created us that we're up and running */
|
2005-04-14 13:30:09 +02:00
|
|
|
if (!(data = WINECON_Init(hInst, 0, NULL, wci.backend, nCmdShow))) return 0;
|
2003-03-04 03:13:25 +01:00
|
|
|
ret = SetEvent(wci.event);
|
|
|
|
if (!ret) WINE_ERR("SetEvent failed.\n");
|
|
|
|
break;
|
|
|
|
case from_process_name:
|
|
|
|
{
|
|
|
|
WCHAR buffer[256];
|
|
|
|
|
2003-03-07 21:34:55 +01:00
|
|
|
MultiByteToWideChar(CP_ACP, 0, wci.ptr, -1, buffer, sizeof(buffer) / sizeof(buffer[0]));
|
2003-03-04 03:13:25 +01:00
|
|
|
|
2005-04-14 13:30:09 +02:00
|
|
|
if (!(data = WINECON_Init(hInst, GetCurrentProcessId(), buffer, wci.backend, nCmdShow)))
|
2003-03-04 03:13:25 +01:00
|
|
|
return 0;
|
|
|
|
ret = WINECON_Spawn(data, buffer);
|
|
|
|
if (!ret)
|
2006-10-19 19:21:17 +02:00
|
|
|
{
|
|
|
|
WINECON_Delete(data);
|
|
|
|
printf_res(IDS_CMD_LAUNCH_FAILED, wine_dbgstr_a(wci.ptr));
|
|
|
|
return 0;
|
|
|
|
}
|
2003-03-04 03:13:25 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 0;
|
2001-11-24 00:04:58 +01:00
|
|
|
}
|
|
|
|
|
2002-09-04 20:41:52 +02:00
|
|
|
if (ret)
|
2001-11-24 00:04:58 +01:00
|
|
|
{
|
2002-06-25 01:00:47 +02:00
|
|
|
WINE_TRACE("calling MainLoop.\n");
|
2001-11-24 00:04:58 +01:00
|
|
|
ret = data->fnMainLoop(data);
|
|
|
|
}
|
2002-06-25 01:00:47 +02:00
|
|
|
|
2001-11-24 00:04:58 +01:00
|
|
|
WINECON_Delete(data);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|