4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-03-04 14:06:13 +08:00

* cygpath.cc: Reformat.

* cygpath.cc (print_version): New function.
(main): Accommodate new version function.  Initialize 'o' to prevent warning.
* cygcheck.cc (main): Eliminate non-GNU formatting glitch.
This commit is contained in:
Christopher Faylor 2002-03-07 03:00:14 +00:00
parent 9420d2b833
commit 6a34460970
2 changed files with 186 additions and 144 deletions

View File

@ -1,3 +1,17 @@
2002-03-06 Christopher Faylor <cgf@redhat.com>
* cygpath.cc: Reformat.
2002-02-27 Joshua Daniel Franklin <joshuadfranklin@yahoo.com>
* cygpath.cc (print_version): New function.
(main): Accommodate new version function. Initialize 'o' to prevent
warning.
2002-02-27 Christopher Faylor <cgf@redhat.com>
* cygcheck.cc (main): Eliminate non-GNU formatting glitch.
2002-02-27 Christopher Faylor <cgf@redhat.com> 2002-02-27 Christopher Faylor <cgf@redhat.com>
* ssp.c (help_desk): Fix compiler warning. * ssp.c (help_desk): Fix compiler warning.

View File

@ -21,35 +21,36 @@ details. */
#include <sys/cygwin.h> #include <sys/cygwin.h>
#include <ctype.h> #include <ctype.h>
static const char version[] = "$Revision$";
static char *prog_name; static char *prog_name;
static char *file_arg; static char *file_arg;
static char *close_arg; static char *close_arg;
static int path_flag, unix_flag, windows_flag, absolute_flag; static int path_flag, unix_flag, windows_flag, absolute_flag;
static int shortname_flag, ignore_flag, allusers_flag, output_flag; static int shortname_flag, ignore_flag, allusers_flag, output_flag;
static struct option long_options[] = static struct option long_options[] = {
{ {(char *) "help", no_argument, NULL, 'h'},
{ (char *) "help", no_argument, NULL, 'h' }, {(char *) "absolute", no_argument, NULL, 'a'},
{ (char *) "absolute", no_argument, NULL, 'a'}, {(char *) "option", no_argument, NULL, 'o'},
{ (char *) "option", no_argument, NULL, 'o'}, {(char *) "path", no_argument, NULL, 'p'},
{ (char *) "path", no_argument, NULL, 'p' }, {(char *) "close", required_argument, (int *) &close_arg, 'c'},
{ (char *) "close", required_argument, (int *) &close_arg, 'c'}, {(char *) "unix", no_argument, NULL, 'u'},
{ (char *) "unix", no_argument, NULL, 'u' }, {(char *) "file", required_argument, (int *) &file_arg, 'f'},
{ (char *) "file", required_argument, (int *) &file_arg, 'f'}, {(char *) "version", no_argument, NULL, 'v'},
{ (char *) "version", no_argument, NULL, 'v' }, {(char *) "windows", no_argument, NULL, 'w'},
{ (char *) "windows", no_argument, NULL, 'w' }, {(char *) "short-name", no_argument, NULL, 's'},
{ (char *) "short-name", no_argument, NULL, 's' }, {(char *) "windir", no_argument, NULL, 'W'},
{ (char *) "windir", no_argument, NULL, 'W' }, {(char *) "sysdir", no_argument, NULL, 'S'},
{ (char *) "sysdir", no_argument, NULL, 'S' }, {(char *) "ignore", no_argument, NULL, 'i'},
{ (char *) "ignore", no_argument, NULL, 'i' }, {(char *) "allusers", no_argument, NULL, 'A'},
{ (char *) "allusers", no_argument, NULL, 'A' }, {(char *) "desktop", no_argument, NULL, 'D'},
{ (char *) "desktop", no_argument, NULL, 'D' }, {(char *) "smprograms", no_argument, NULL, 'P'},
{ (char *) "smprograms", no_argument, NULL, 'P' }, {0, no_argument, 0, 0}
{ 0, no_argument, 0, 0 }
}; };
static void static void
usage (FILE *stream, int status) usage (FILE * stream, int status)
{ {
if (!ignore_flag || !status) if (!ignore_flag || !status)
fprintf (stream, "\ fprintf (stream, "\
@ -67,8 +68,7 @@ Usage: %s [-p|--path] (-u|--unix)|(-w|--windows [-s|--short-name]) filename\n\
-D|--desktop output `Desktop' directory and exit\n\ -D|--desktop output `Desktop' directory and exit\n\
-P|--smprograms output Start Menu `Programs' directory and exit\n\ -P|--smprograms output Start Menu `Programs' directory and exit\n\
-S|--sysdir output system directory and exit\n\ -S|--sysdir output system directory and exit\n\
-W|--windir output `Windows' directory and exit\n", -W|--windir output `Windows' directory and exit\n", prog_name);
prog_name);
exit (ignore_flag ? 0 : status); exit (ignore_flag ? 0 : status);
} }
@ -84,41 +84,43 @@ get_short_paths (char *path)
DWORD len; DWORD len;
while (ptr != NULL) while (ptr != NULL)
{
next = ptr;
ptr = strchr (ptr, ';');
if (ptr)
*ptr++ = 0;
len = GetShortPathName (next, NULL, 0);
if (len == ERROR_INVALID_PARAMETER)
{ {
fprintf (stderr, "%s: cannot create short name of %s\n", prog_name, next); next = ptr;
exit (2); ptr = strchr (ptr, ';');
if (ptr)
*ptr++ = 0;
len = GetShortPathName (next, NULL, 0);
if (len == ERROR_INVALID_PARAMETER)
{
fprintf (stderr, "%s: cannot create short name of %s\n", prog_name,
next);
exit (2);
}
acc += len + 1;
} }
acc += len+1; sptr = sbuf = (char *) malloc (acc + 1);
}
sptr = sbuf = (char *) malloc(acc+1);
if (sbuf == NULL) if (sbuf == NULL)
{
fprintf (stderr, "%s: out of memory\n", prog_name);
exit (1);
}
ptr = path;
for(;;)
{
if (GetShortPathName (ptr, sptr, acc) == ERROR_INVALID_PARAMETER)
{ {
fprintf (stderr, "%s: cannot create short name of %s\n", prog_name, ptr); fprintf (stderr, "%s: out of memory\n", prog_name);
exit (2); exit (1);
} }
ptr = path;
for (;;)
{
if (GetShortPathName (ptr, sptr, acc) == ERROR_INVALID_PARAMETER)
{
fprintf (stderr, "%s: cannot create short name of %s\n", prog_name,
ptr);
exit (2);
}
ptr = strrchr (ptr, 0); ptr = strrchr (ptr, 0);
sptr = strrchr (sptr, 0); sptr = strrchr (sptr, 0);
if (ptr == end) if (ptr == end)
break; break;
*sptr = ';'; *sptr = ';';
++ptr, ++sptr; ++ptr, ++sptr;
} }
return sbuf; return sbuf;
} }
@ -128,21 +130,23 @@ get_short_name (const char *filename)
char *sbuf; char *sbuf;
DWORD len = GetShortPathName (filename, NULL, 0); DWORD len = GetShortPathName (filename, NULL, 0);
if (len == ERROR_INVALID_PARAMETER) if (len == ERROR_INVALID_PARAMETER)
{ {
fprintf (stderr, "%s: cannot create short name of %s\n", prog_name, filename); fprintf (stderr, "%s: cannot create short name of %s\n", prog_name,
exit (2); filename);
} exit (2);
sbuf = (char *) malloc(++len); }
sbuf = (char *) malloc (++len);
if (sbuf == NULL) if (sbuf == NULL)
{ {
fprintf (stderr, "%s: out of memory\n", prog_name); fprintf (stderr, "%s: out of memory\n", prog_name);
exit (1); exit (1);
} }
if (GetShortPathName (filename, sbuf, len) == ERROR_INVALID_PARAMETER) if (GetShortPathName (filename, sbuf, len) == ERROR_INVALID_PARAMETER)
{ {
fprintf (stderr, "%s: cannot create short name of %s\n", prog_name, filename); fprintf (stderr, "%s: cannot create short name of %s\n", prog_name,
exit (2); filename);
} exit (2);
}
return sbuf; return sbuf;
} }
@ -152,13 +156,11 @@ doit (char *filename)
char *buf; char *buf;
size_t len; size_t len;
int retval; int retval;
int (*conv_func)(const char *, char *); int (*conv_func) (const char *, char *);
if (path_flag) if (path_flag)
{ {
if (cygwin_posix_path_list_p (filename) if (cygwin_posix_path_list_p (filename) ? unix_flag : windows_flag)
? unix_flag
: windows_flag)
{ {
/* The path is already in the right format. */ /* The path is already in the right format. */
puts (filename); puts (filename);
@ -166,19 +168,19 @@ doit (char *filename)
} }
} }
if (! path_flag) if (!path_flag)
{ {
len = strlen (filename) + 100; len = strlen (filename) + 100;
if (len == 100) if (len == 100)
{ {
if (!ignore_flag) if (!ignore_flag)
{ {
fprintf(stderr, "%s: can't convert empty path\n", prog_name); fprintf (stderr, "%s: can't convert empty path\n", prog_name);
exit (1); exit (1);
} }
else else
exit (0); exit (0);
} }
} }
else else
{ {
@ -203,38 +205,60 @@ doit (char *filename)
if (unix_flag) if (unix_flag)
cygwin_win32_to_posix_path_list (filename, buf); cygwin_win32_to_posix_path_list (filename, buf);
else else
{ {
cygwin_posix_to_win32_path_list (filename, buf); cygwin_posix_to_win32_path_list (filename, buf);
if (shortname_flag) if (shortname_flag)
buf = get_short_paths (buf); buf = get_short_paths (buf);
} }
} }
else else
{ {
if (unix_flag) if (unix_flag)
conv_func = (absolute_flag ? cygwin_conv_to_full_posix_path : conv_func = (absolute_flag ? cygwin_conv_to_full_posix_path :
cygwin_conv_to_posix_path); cygwin_conv_to_posix_path);
else else
conv_func = (absolute_flag ? cygwin_conv_to_full_win32_path : conv_func = (absolute_flag ? cygwin_conv_to_full_win32_path :
cygwin_conv_to_win32_path); cygwin_conv_to_win32_path);
retval = conv_func (filename, buf); retval = conv_func (filename, buf);
if (retval < 0) if (retval < 0)
{ {
fprintf (stderr, "%s: error converting \"%s\"\n", fprintf (stderr, "%s: error converting \"%s\"\n",
prog_name, filename); prog_name, filename);
exit (1); exit (1);
} }
if (!unix_flag && shortname_flag) if (!unix_flag && shortname_flag)
buf = get_short_name (buf); buf = get_short_name (buf);
} }
puts (buf); puts (buf);
} }
static void
print_version ()
{
const char *v = strchr (version, ':');
int len;
if (!v)
{
v = "?";
len = 1;
}
else
{
v += 2;
len = strchr (v, ' ') - v;
}
printf ("\
cygpath (cygwin) %.*s\n\
Path Conversion Utility\n\
Copyright 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.\n\
Compiled on %s", len, v, __DATE__);
}
int int
main (int argc, char **argv) main (int argc, char **argv)
{ {
int c, o; int c, o = 0;
int options_from_file_flag; int options_from_file_flag;
char *filename; char *filename;
char buf[MAX_PATH], buf2[MAX_PATH]; char buf[MAX_PATH], buf2[MAX_PATH];
@ -257,8 +281,9 @@ main (int argc, char **argv)
options_from_file_flag = 0; options_from_file_flag = 0;
allusers_flag = 0; allusers_flag = 0;
output_flag = 0; output_flag = 0;
while ((c = getopt_long (argc, argv, (char *) "hac:f:opsSuvwWiDPA", long_options, (int *) NULL)) while ((c =
!= EOF) getopt_long (argc, argv, (char *) "hac:f:opsSuvwWiDPA",
long_options, (int *) NULL)) != EOF)
{ {
switch (c) switch (c)
{ {
@ -316,14 +341,14 @@ main (int argc, char **argv)
usage (stderr, 1); usage (stderr, 1);
output_flag = 1; output_flag = 1;
o = 'P'; o = 'P';
break; break;
case 'S': case 'S':
if (output_flag) if (output_flag)
usage (stderr, 1); usage (stderr, 1);
output_flag = 1; output_flag = 1;
o = 'S'; o = 'S';
break; break;
case 'W': case 'W':
if (output_flag) if (output_flag)
@ -341,8 +366,7 @@ main (int argc, char **argv)
break; break;
case 'v': case 'v':
printf ("Cygwin path conversion version 1.2\n"); print_version ();
printf ("Copyright 1998-2002 Red Hat, Inc.\n");
exit (0); exit (0);
default: default:
@ -354,72 +378,76 @@ main (int argc, char **argv)
if (output_flag) if (output_flag)
{ {
switch(o) { switch (o)
{
case 'D': case 'D':
if (!allusers_flag) if (!allusers_flag)
SHGetSpecialFolderLocation(NULL, CSIDL_DESKTOPDIRECTORY,&id); SHGetSpecialFolderLocation (NULL, CSIDL_DESKTOPDIRECTORY, &id);
else else
SHGetSpecialFolderLocation(NULL, CSIDL_COMMON_DESKTOPDIRECTORY,&id); SHGetSpecialFolderLocation (NULL, CSIDL_COMMON_DESKTOPDIRECTORY,
SHGetPathFromIDList(id, buf); &id);
/* This if clause is a Fix for Win95 without any "All Users" */ SHGetPathFromIDList (id, buf);
if ( strlen(buf) == 0 ) { /* This if clause is a Fix for Win95 without any "All Users" */
SHGetSpecialFolderLocation(NULL, CSIDL_DESKTOPDIRECTORY,&id); if (strlen (buf) == 0)
SHGetPathFromIDList(id, buf); {
} SHGetSpecialFolderLocation (NULL, CSIDL_DESKTOPDIRECTORY, &id);
SHGetPathFromIDList (id, buf);
}
if (!windows_flag) if (!windows_flag)
cygwin_conv_to_posix_path(buf, buf2); cygwin_conv_to_posix_path (buf, buf2);
else else
strcpy(buf2, buf); strcpy (buf2, buf);
printf("%s\n", buf2); printf ("%s\n", buf2);
exit(0); exit (0);
case 'P': case 'P':
if (!allusers_flag) if (!allusers_flag)
SHGetSpecialFolderLocation(NULL, CSIDL_PROGRAMS, &id); SHGetSpecialFolderLocation (NULL, CSIDL_PROGRAMS, &id);
else else
SHGetSpecialFolderLocation(NULL, CSIDL_COMMON_PROGRAMS, &id); SHGetSpecialFolderLocation (NULL, CSIDL_COMMON_PROGRAMS, &id);
SHGetPathFromIDList(id, buf); SHGetPathFromIDList (id, buf);
/* This if clause is a Fix for Win95 without any "All Users" */ /* This if clause is a Fix for Win95 without any "All Users" */
if ( strlen(buf) == 0 ) { if (strlen (buf) == 0)
SHGetSpecialFolderLocation(NULL, CSIDL_PROGRAMS, &id); {
SHGetPathFromIDList(id, buf); SHGetSpecialFolderLocation (NULL, CSIDL_PROGRAMS, &id);
} SHGetPathFromIDList (id, buf);
}
if (!windows_flag) if (!windows_flag)
cygwin_conv_to_posix_path(buf, buf2); cygwin_conv_to_posix_path (buf, buf2);
else else
strcpy(buf2, buf); strcpy (buf2, buf);
printf("%s\n", buf2); printf ("%s\n", buf2);
exit(0); exit (0);
case 'S': case 'S':
GetSystemDirectory(buf, MAX_PATH); GetSystemDirectory (buf, MAX_PATH);
FindFirstFile(buf, &w32_fd); FindFirstFile (buf, &w32_fd);
strcpy(strrchr(buf, '\\')+1, w32_fd.cFileName); strcpy (strrchr (buf, '\\') + 1, w32_fd.cFileName);
if (!windows_flag) if (!windows_flag)
cygwin_conv_to_posix_path(buf, buf2); cygwin_conv_to_posix_path (buf, buf2);
else else
strcpy(buf2, buf); strcpy (buf2, buf);
printf("%s\n", buf2); printf ("%s\n", buf2);
exit(0); exit (0);
case 'W': case 'W':
GetWindowsDirectory(buf, MAX_PATH); GetWindowsDirectory (buf, MAX_PATH);
if (!windows_flag) if (!windows_flag)
cygwin_conv_to_posix_path(buf, buf2); cygwin_conv_to_posix_path (buf, buf2);
else else
strcpy(buf2, buf); strcpy (buf2, buf);
printf("%s\n", buf2); printf ("%s\n", buf2);
exit(0); exit (0);
default: default:
fprintf(stderr, "ERROR: main: switch(o)!\n"); fprintf (stderr, "ERROR: main: switch (o)!\n");
} }
} }
if (options_from_file_flag && !file_arg) if (options_from_file_flag && !file_arg)
usage (stderr, 1); usage (stderr, 1);
if (! unix_flag && ! windows_flag && !options_from_file_flag) if (!unix_flag && !windows_flag && !options_from_file_flag)
usage (stderr, 1); usage (stderr, 1);
if (!file_arg) if (!file_arg)