mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 14:20:15 +00:00
aebe845316
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
155 lines
4 KiB
C
155 lines
4 KiB
C
/*
|
|
* Hostname display utility
|
|
*
|
|
* Copyright 2008 Andrew Riedi
|
|
* Copyright 2010-2011 Andrew Nguyen
|
|
*
|
|
* 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
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <wincon.h>
|
|
#include <winnls.h>
|
|
#include <winuser.h>
|
|
|
|
#include "hostname.h"
|
|
|
|
static int hostname_vprintfW(const WCHAR *msg, va_list va_args)
|
|
{
|
|
int wlen;
|
|
DWORD count;
|
|
WCHAR msg_buffer[8192];
|
|
|
|
wlen = vswprintf(msg_buffer, ARRAY_SIZE(msg_buffer), msg, va_args);
|
|
|
|
if (!WriteConsoleW(GetStdHandle(STD_OUTPUT_HANDLE), msg_buffer, wlen, &count, NULL))
|
|
{
|
|
DWORD len;
|
|
char *msgA;
|
|
|
|
/* On Windows WriteConsoleW() fails if the output is redirected. So fall
|
|
* back to WriteFile() with OEM code page.
|
|
*/
|
|
len = WideCharToMultiByte(GetOEMCP(), 0, msg_buffer, wlen,
|
|
NULL, 0, NULL, NULL);
|
|
msgA = HeapAlloc(GetProcessHeap(), 0, len);
|
|
if (!msgA)
|
|
return 0;
|
|
|
|
WideCharToMultiByte(GetOEMCP(), 0, msg_buffer, wlen, msgA, len, NULL, NULL);
|
|
WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), msgA, len, &count, FALSE);
|
|
HeapFree(GetProcessHeap(), 0, msgA);
|
|
}
|
|
|
|
return count;
|
|
}
|
|
|
|
static int WINAPIV hostname_printfW(const WCHAR *msg, ...)
|
|
{
|
|
va_list va_args;
|
|
int len;
|
|
|
|
va_start(va_args, msg);
|
|
len = hostname_vprintfW(msg, va_args);
|
|
va_end(va_args);
|
|
|
|
return len;
|
|
}
|
|
|
|
static int WINAPIV hostname_message_printfW(int msg, ...)
|
|
{
|
|
va_list va_args;
|
|
WCHAR msg_buffer[8192];
|
|
int len;
|
|
|
|
LoadStringW(GetModuleHandleW(NULL), msg, msg_buffer, ARRAY_SIZE(msg_buffer));
|
|
|
|
va_start(va_args, msg);
|
|
len = hostname_vprintfW(msg_buffer, va_args);
|
|
va_end(va_args);
|
|
|
|
return len;
|
|
}
|
|
|
|
static int hostname_message(int msg)
|
|
{
|
|
WCHAR msg_buffer[8192];
|
|
|
|
LoadStringW(GetModuleHandleW(NULL), msg, msg_buffer, ARRAY_SIZE(msg_buffer));
|
|
|
|
return hostname_printfW(L"%s", msg_buffer);
|
|
}
|
|
|
|
static int display_computer_name(void)
|
|
{
|
|
WCHAR name[MAX_COMPUTERNAME_LENGTH + 1];
|
|
DWORD size = ARRAY_SIZE(name);
|
|
BOOL ret;
|
|
|
|
ret = GetComputerNameW(name, &size);
|
|
if (!ret)
|
|
{
|
|
hostname_message_printfW(STRING_CANNOT_GET_HOSTNAME, GetLastError());
|
|
return 1;
|
|
}
|
|
|
|
hostname_printfW(L"%s\r\n", name);
|
|
return 0;
|
|
}
|
|
|
|
int __cdecl wmain(int argc, WCHAR *argv[])
|
|
{
|
|
if (argc > 1)
|
|
{
|
|
unsigned int i;
|
|
|
|
if (!wcsncmp(argv[1], L"/?", ARRAY_SIZE(L"/?") - 1))
|
|
{
|
|
hostname_message(STRING_USAGE);
|
|
return 1;
|
|
}
|
|
|
|
for (i = 1; i < argc; i++)
|
|
{
|
|
if (argv[i][0] == '-')
|
|
{
|
|
switch (argv[i][1])
|
|
{
|
|
case 's':
|
|
/* Ignore the option and continue processing. */
|
|
break;
|
|
case '?':
|
|
hostname_message(STRING_USAGE);
|
|
return 1;
|
|
default:
|
|
hostname_message_printfW(STRING_INVALID_OPTION, argv[i][1]);
|
|
hostname_message(STRING_USAGE);
|
|
return 1;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
hostname_message(STRING_CANNOT_SET_HOSTNAME);
|
|
hostname_message(STRING_USAGE);
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
return display_computer_name();
|
|
}
|