From fdcf961c8e31aac50b7b5f3f1a9ea4f77950c0d7 Mon Sep 17 00:00:00 2001 From: Jose Ruiz Date: Tue, 14 Aug 2007 10:44:42 +0200 Subject: [PATCH] adaint.c (__gnat_is_absolute_path): For VxWorks systems we accept dir/file... 2007-08-14 Jose Ruiz * adaint.c (__gnat_is_absolute_path): For VxWorks systems we accept dir/file, device:/dir/file, and device:drive_letter:/dir/file as representing absolute path names. __gnat_set_file_time_name [VMS]: Fix some 64/32 bit issues. * cstreams.c (__gnat_full_name for VxWorks): Use __gnat_is_absolute_path to detect whether we need to add the current directory to normalize the path. From-SVN: r127437 --- gcc/ada/adaint.c | 34 ++++++++++++++++++++++++++++++---- gcc/ada/cstreams.c | 32 +++++++++++++++++++++----------- 2 files changed, 51 insertions(+), 15 deletions(-) diff --git a/gcc/ada/adaint.c b/gcc/ada/adaint.c index ff2d0a4bb01..c0fb8d0d28a 100644 --- a/gcc/ada/adaint.c +++ b/gcc/ada/adaint.c @@ -101,6 +101,7 @@ /* Header files and definitions for __gnat_set_file_time_name. */ +#define __NEW_STARLET 1 #include #include #include @@ -119,17 +120,18 @@ Y = tmptime * 10000000 + reftime; } /* descrip.h doesn't have everything ... */ +typedef struct fibdef* __fibdef_ptr32 __attribute__ (( mode (SI) )); struct dsc$descriptor_fib { - unsigned long fib$l_len; - struct fibdef *fib$l_addr; + unsigned int fib$l_len; + __fibdef_ptr32 fib$l_addr; }; /* I/O Status Block. */ struct IOSB { unsigned short status, count; - unsigned long devdep; + unsigned int devdep; }; static char *tryfile; @@ -1261,7 +1263,7 @@ __gnat_set_file_time_name (char *name, time_t time_stamp) struct { unsigned long long backup, create, expire, revise; - unsigned long uic; + unsigned int uic; union { unsigned short value; @@ -1552,12 +1554,36 @@ __gnat_file_exists (char *name) int __gnat_is_absolute_path (char *name, int length) { +#ifdef __vxworks + /* On VxWorks systems, an absolute path can be represented (depending on + the host platform) as either /dir/file, or device:/dir/file, or + device:drive_letter:/dir/file. */ + + int index; + + if (name[0] == '/') + return 1; + + for (index = 0; index < length; index++) + { + if (name[index] == ':' && + ((name[index + 1] == '/') || + (isalpha (name[index + 1]) && index + 2 <= length && + name[index + 2] == '/'))) + return 1; + + else if (name[index] == '/') + return 0; + } + return 0; +#else return (length != 0) && (*name == '/' || *name == DIR_SEPARATOR #if defined (__EMX__) || defined (MSDOS) || defined (WINNT) || (length > 1 && isalpha (name[0]) && name[1] == ':') #endif ); +#endif } int diff --git a/gcc/ada/cstreams.c b/gcc/ada/cstreams.c index a45487b41b5..fe81bcbe97e 100644 --- a/gcc/ada/cstreams.c +++ b/gcc/ada/cstreams.c @@ -6,7 +6,7 @@ * * * Auxiliary C functions for Interfaces.C.Streams * * * - * Copyright (C) 1992-2006, Free Software Foundation, Inc. * + * Copyright (C) 1992-2007, Free Software Foundation, Inc. * * * * GNAT is free software; you can redistribute it and/or modify it under * * terms of the GNU General Public License as published by the Free Soft- * @@ -200,6 +200,25 @@ __gnat_full_name (char *nam, char *buffer) strncpy (buffer, __gnat_to_host_file_spec (buffer), __gnat_max_path_len); } +#elif defined (__vxworks) + + /* On VxWorks systems, an absolute path can be represented (depending on + the host platform) as either /dir/file, or device:/dir/file, or + device:drive_letter:/dir/file. Use the __gnat_is_absolute_path + to verify it. */ + + int length; + + if (__gnat_is_absolute_path (nam, strlen (nam))) + strcpy (buffer, nam); + + else + { + length = __gnat_max_path_len; + __gnat_get_current_dir (buffer, &length); + strncat (buffer, nam, __gnat_max_path_len - length - 1); + } + #else if (nam[0] != '/') { @@ -211,20 +230,11 @@ __gnat_full_name (char *nam, char *buffer) return 0; } -#ifdef __vxworks - /* On VxWorks, getcwd always returns an absolute path. But this path - can be also a device name like "serial:". In this case '/' should not - be appended. As on VxWorks 6.x the returned path can starts with - the device name (ex: machine:/directory), we need to test if the last - character of the path is ':' to know if '/' should be appended. */ - if (buffer[strlen (buffer) - 1] != ':') - strcat (buffer, "/"); -#else + /* If the name returned is an absolute path, it is safe to append '/' to the path and concatenate the name of the file. */ if (buffer[0] == '/') strcat (buffer, "/"); -#endif strcat (buffer, nam); }