OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [libiberty/] [lrealpath.c] - Diff between revs 827 and 840

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 827 Rev 840
/* Libiberty realpath.  Like realpath, but more consistent behavior.
/* Libiberty realpath.  Like realpath, but more consistent behavior.
   Based on gdb_realpath from GDB.
   Based on gdb_realpath from GDB.
 
 
   Copyright 2003 Free Software Foundation, Inc.
   Copyright 2003 Free Software Foundation, Inc.
 
 
   This file is part of the libiberty library.
   This file is part of the libiberty library.
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street - Fifth Floor,
   Foundation, Inc., 51 Franklin Street - Fifth Floor,
   Boston, MA 02110-1301, USA.  */
   Boston, MA 02110-1301, USA.  */
 
 
/*
/*
 
 
@deftypefn Replacement {const char*} lrealpath (const char *@var{name})
@deftypefn Replacement {const char*} lrealpath (const char *@var{name})
 
 
Given a pointer to a string containing a pathname, returns a canonical
Given a pointer to a string containing a pathname, returns a canonical
version of the filename.  Symlinks will be resolved, and ``.'' and ``..''
version of the filename.  Symlinks will be resolved, and ``.'' and ``..''
components will be simplified.  The returned value will be allocated using
components will be simplified.  The returned value will be allocated using
@code{malloc}, or @code{NULL} will be returned on a memory allocation error.
@code{malloc}, or @code{NULL} will be returned on a memory allocation error.
 
 
@end deftypefn
@end deftypefn
 
 
*/
*/
 
 
#include "config.h"
#include "config.h"
#include "ansidecl.h"
#include "ansidecl.h"
#include "libiberty.h"
#include "libiberty.h"
 
 
#ifdef HAVE_LIMITS_H
#ifdef HAVE_LIMITS_H
#include <limits.h>
#include <limits.h>
#endif
#endif
#ifdef HAVE_STDLIB_H
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#include <stdlib.h>
#endif
#endif
#ifdef HAVE_UNISTD_H
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#include <unistd.h>
#endif
#endif
#ifdef HAVE_STRING_H
#ifdef HAVE_STRING_H
#include <string.h>
#include <string.h>
#endif
#endif
 
 
/* On GNU libc systems the declaration is only visible with _GNU_SOURCE.  */
/* On GNU libc systems the declaration is only visible with _GNU_SOURCE.  */
#if defined(HAVE_CANONICALIZE_FILE_NAME) \
#if defined(HAVE_CANONICALIZE_FILE_NAME) \
    && defined(NEED_DECLARATION_CANONICALIZE_FILE_NAME)
    && defined(NEED_DECLARATION_CANONICALIZE_FILE_NAME)
extern char *canonicalize_file_name (const char *);
extern char *canonicalize_file_name (const char *);
#endif
#endif
 
 
#if defined(HAVE_REALPATH)
#if defined(HAVE_REALPATH)
# if defined (PATH_MAX)
# if defined (PATH_MAX)
#  define REALPATH_LIMIT PATH_MAX
#  define REALPATH_LIMIT PATH_MAX
# else
# else
#  if defined (MAXPATHLEN)
#  if defined (MAXPATHLEN)
#   define REALPATH_LIMIT MAXPATHLEN
#   define REALPATH_LIMIT MAXPATHLEN
#  endif
#  endif
# endif
# endif
#else
#else
  /* cygwin has realpath, so it won't get here.  */
  /* cygwin has realpath, so it won't get here.  */
# if defined (_WIN32)
# if defined (_WIN32)
#  define WIN32_LEAN_AND_MEAN
#  define WIN32_LEAN_AND_MEAN
#  include <windows.h> /* for GetFullPathName */
#  include <windows.h> /* for GetFullPathName */
# endif
# endif
#endif
#endif
 
 
char *
char *
lrealpath (const char *filename)
lrealpath (const char *filename)
{
{
  /* Method 1: The system has a compile time upper bound on a filename
  /* Method 1: The system has a compile time upper bound on a filename
     path.  Use that and realpath() to canonicalize the name.  This is
     path.  Use that and realpath() to canonicalize the name.  This is
     the most common case.  Note that, if there isn't a compile time
     the most common case.  Note that, if there isn't a compile time
     upper bound, you want to avoid realpath() at all costs.  */
     upper bound, you want to avoid realpath() at all costs.  */
#if defined(REALPATH_LIMIT)
#if defined(REALPATH_LIMIT)
  {
  {
    char buf[REALPATH_LIMIT];
    char buf[REALPATH_LIMIT];
    const char *rp = realpath (filename, buf);
    const char *rp = realpath (filename, buf);
    if (rp == NULL)
    if (rp == NULL)
      rp = filename;
      rp = filename;
    return strdup (rp);
    return strdup (rp);
  }
  }
#endif /* REALPATH_LIMIT */
#endif /* REALPATH_LIMIT */
 
 
  /* Method 2: The host system (i.e., GNU) has the function
  /* Method 2: The host system (i.e., GNU) has the function
     canonicalize_file_name() which malloc's a chunk of memory and
     canonicalize_file_name() which malloc's a chunk of memory and
     returns that, use that.  */
     returns that, use that.  */
#if defined(HAVE_CANONICALIZE_FILE_NAME)
#if defined(HAVE_CANONICALIZE_FILE_NAME)
  {
  {
    char *rp = canonicalize_file_name (filename);
    char *rp = canonicalize_file_name (filename);
    if (rp == NULL)
    if (rp == NULL)
      return strdup (filename);
      return strdup (filename);
    else
    else
      return rp;
      return rp;
  }
  }
#endif
#endif
 
 
  /* Method 3: Now we're getting desperate!  The system doesn't have a
  /* Method 3: Now we're getting desperate!  The system doesn't have a
     compile time buffer size and no alternative function.  Query the
     compile time buffer size and no alternative function.  Query the
     OS, using pathconf(), for the buffer limit.  Care is needed
     OS, using pathconf(), for the buffer limit.  Care is needed
     though, some systems do not limit PATH_MAX (return -1 for
     though, some systems do not limit PATH_MAX (return -1 for
     pathconf()) making it impossible to pass a correctly sized buffer
     pathconf()) making it impossible to pass a correctly sized buffer
     to realpath() (it could always overflow).  On those systems, we
     to realpath() (it could always overflow).  On those systems, we
     skip this.  */
     skip this.  */
#if defined (HAVE_REALPATH) && defined (HAVE_UNISTD_H)
#if defined (HAVE_REALPATH) && defined (HAVE_UNISTD_H)
  {
  {
    /* Find out the max path size.  */
    /* Find out the max path size.  */
    long path_max = pathconf ("/", _PC_PATH_MAX);
    long path_max = pathconf ("/", _PC_PATH_MAX);
    if (path_max > 0)
    if (path_max > 0)
      {
      {
        /* PATH_MAX is bounded.  */
        /* PATH_MAX is bounded.  */
        char *buf, *rp, *ret;
        char *buf, *rp, *ret;
        buf = (char *) malloc (path_max);
        buf = (char *) malloc (path_max);
        if (buf == NULL)
        if (buf == NULL)
          return NULL;
          return NULL;
        rp = realpath (filename, buf);
        rp = realpath (filename, buf);
        ret = strdup (rp ? rp : filename);
        ret = strdup (rp ? rp : filename);
        free (buf);
        free (buf);
        return ret;
        return ret;
      }
      }
  }
  }
#endif
#endif
 
 
  /* The MS Windows method.  If we don't have realpath, we assume we
  /* The MS Windows method.  If we don't have realpath, we assume we
     don't have symlinks and just canonicalize to a Windows absolute
     don't have symlinks and just canonicalize to a Windows absolute
     path.  GetFullPath converts ../ and ./ in relative paths to
     path.  GetFullPath converts ../ and ./ in relative paths to
     absolute paths, filling in current drive if one is not given
     absolute paths, filling in current drive if one is not given
     or using the current directory of a specified drive (eg, "E:foo").
     or using the current directory of a specified drive (eg, "E:foo").
     It also converts all forward slashes to back slashes.  */
     It also converts all forward slashes to back slashes.  */
#if defined (_WIN32)
#if defined (_WIN32)
  {
  {
    char buf[MAX_PATH];
    char buf[MAX_PATH];
    char* basename;
    char* basename;
    DWORD len = GetFullPathName (filename, MAX_PATH, buf, &basename);
    DWORD len = GetFullPathName (filename, MAX_PATH, buf, &basename);
    if (len == 0 || len > MAX_PATH - 1)
    if (len == 0 || len > MAX_PATH - 1)
      return strdup (filename);
      return strdup (filename);
    else
    else
      {
      {
        /* The file system is case-preserving but case-insensitive,
        /* The file system is case-preserving but case-insensitive,
           Canonicalize to lowercase, using the codepage associated
           Canonicalize to lowercase, using the codepage associated
           with the process locale.  */
           with the process locale.  */
        CharLowerBuff (buf, len);
        CharLowerBuff (buf, len);
        return strdup (buf);
        return strdup (buf);
      }
      }
  }
  }
#endif
#endif
 
 
  /* This system is a lost cause, just duplicate the filename.  */
  /* This system is a lost cause, just duplicate the filename.  */
  return strdup (filename);
  return strdup (filename);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.