Commit 40d94dfc authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Convert programs/winepath to unicode, print the output string using

Unix locale.
parent 5af66fef
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
* Translate between Wine and Unix paths * Translate between Wine and Unix paths
* *
* Copyright 2002 Mike Wetherell * Copyright 2002 Mike Wetherell
* Copyright 2005 Dmitry Timoshkov
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
...@@ -24,6 +25,8 @@ ...@@ -24,6 +25,8 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include "wine/debug.h"
#define VERSION "0.1 (" PACKAGE_STRING ")" #define VERSION "0.1 (" PACKAGE_STRING ")"
enum { enum {
...@@ -32,17 +35,16 @@ enum { ...@@ -32,17 +35,16 @@ enum {
UNIXFORMAT = 4 UNIXFORMAT = 4
}; };
static char *progname; static const char progname[] = "winepath";
/* Wine specific functions */ /* Wine specific functions */
extern BOOL process_init(char *argv[]);
typedef LPSTR (*wine_get_unix_file_name_t) ( LPCWSTR dos ); typedef LPSTR (*wine_get_unix_file_name_t) ( LPCWSTR dos );
/* /*
* handle an option * handle an option
*/ */
static int option(int shortopt, char *longopt) static int option(int shortopt, const WCHAR *longopt)
{ {
const char *helpmsg = static const char helpmsg[] =
"Convert PATH(s) to Unix or Windows long or short paths.\n" "Convert PATH(s) to Unix or Windows long or short paths.\n"
"\n" "\n"
" -u, --unix output Unix format\n" " -u, --unix output Unix format\n"
...@@ -73,7 +75,7 @@ static int option(int shortopt, char *longopt) ...@@ -73,7 +75,7 @@ static int option(int shortopt, char *longopt)
fprintf(stderr, "%s: invalid option ", progname); fprintf(stderr, "%s: invalid option ", progname);
if (longopt) if (longopt)
fprintf(stderr, "'%s'\n", longopt); fprintf(stderr, "%s\n", wine_dbgstr_w(longopt));
else else
fprintf(stderr, "'-%c'\n", shortopt); fprintf(stderr, "'-%c'\n", shortopt);
fprintf(stderr, "Try '%s --help' for help\n", progname); fprintf(stderr, "Try '%s --help' for help\n", progname);
...@@ -83,11 +85,17 @@ static int option(int shortopt, char *longopt) ...@@ -83,11 +85,17 @@ static int option(int shortopt, char *longopt)
/* /*
* Parse command line options * Parse command line options
*/ */
static int parse_options(char *argv[]) static int parse_options(const WCHAR *argv[])
{ {
static const WCHAR longW[] = { 'l','o','n','g',0 };
static const WCHAR shortW[] = { 's','h','o','r','t',0 };
static const WCHAR unixW[] = { 'u','n','i','x',0 };
static const WCHAR helpW[] = { 'h','e','l','p',0 };
static const WCHAR versionW[] = { 'v','e','r','s','i','o','n',0 };
static const WCHAR nullW[] = { 0 };
static const WCHAR *longopts[] = { longW, shortW, unixW, helpW, versionW, nullW };
int outputformats = 0; int outputformats = 0;
int done = 0; int done = 0;
char *longopts[] = { "long", "short", "unix", "help", "version", "" };
int i, j; int i, j;
for (i = 1; argv[i] && !done; ) for (i = 1; argv[i] && !done; )
...@@ -105,7 +113,7 @@ static int parse_options(char *argv[]) ...@@ -105,7 +113,7 @@ static int parse_options(char *argv[])
} else { } else {
/* long option */ /* long option */
for (j = 0; longopts[j][0]; j++) for (j = 0; longopts[j][0]; j++)
if (strcmp(argv[i]+2, longopts[j]) == 0) if (!lstrcmpiW(argv[i]+2, longopts[j]))
break; break;
outputformats |= option(longopts[j][0], argv[i]); outputformats |= option(longopts[j][0], argv[i]);
} }
...@@ -126,14 +134,14 @@ static int parse_options(char *argv[]) ...@@ -126,14 +134,14 @@ static int parse_options(char *argv[])
/* /*
* Main function * Main function
*/ */
int main(int argc, char *argv[]) int wmain(int argc, const WCHAR *argv[])
{ {
wine_get_unix_file_name_t wine_get_unix_file_name_ptr = NULL; wine_get_unix_file_name_t wine_get_unix_file_name_ptr = NULL;
static char path[MAX_PATH]; WCHAR dos_pathW[MAX_PATH];
char path[MAX_PATH];
int outputformats; int outputformats;
int i; int i;
progname = argv[0];
outputformats = parse_options(argv); outputformats = parse_options(argv);
if (outputformats == 0) if (outputformats == 0)
outputformats = UNIXFORMAT; outputformats = UNIXFORMAT;
...@@ -153,19 +161,19 @@ int main(int argc, char *argv[]) ...@@ -153,19 +161,19 @@ int main(int argc, char *argv[])
{ {
*path='\0'; *path='\0';
if (outputformats & LONGFORMAT) { if (outputformats & LONGFORMAT) {
GetFullPathNameA(argv[i], sizeof(path), path, NULL); if (GetFullPathNameW(argv[i], MAX_PATH, dos_pathW, NULL))
WideCharToMultiByte(CP_UNIXCP, 0, dos_pathW, -1, path, MAX_PATH, NULL, NULL);
printf("%s\n", path); printf("%s\n", path);
} }
if (outputformats & SHORTFORMAT) { if (outputformats & SHORTFORMAT) {
GetShortPathNameA(argv[i], path, sizeof(path)); if (GetShortPathNameW(argv[i], dos_pathW, MAX_PATH))
WideCharToMultiByte(CP_UNIXCP, 0, dos_pathW, -1, path, MAX_PATH, NULL, NULL);
printf("%s\n", path); printf("%s\n", path);
} }
if (outputformats & UNIXFORMAT) { if (outputformats & UNIXFORMAT) {
WCHAR dosW[MAX_PATH];
char *unix_name; char *unix_name;
MultiByteToWideChar(CP_ACP, 0, argv[i], -1, dosW, MAX_PATH); if ((unix_name = wine_get_unix_file_name_ptr(argv[i])))
if ((unix_name = wine_get_unix_file_name_ptr(dosW)))
{ {
printf("%s\n", unix_name); printf("%s\n", unix_name);
HeapFree( GetProcessHeap(), 0, unix_name ); HeapFree( GetProcessHeap(), 0, unix_name );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment