view liboctave/file-ops.cc @ 2947:cf676ff8b702

[project @ 1997-05-09 13:32:46 by jwe]
author jwe
date Fri, 09 May 1997 13:32:52 +0000
parents 9d26524e2869
children 443851377f3f
line wrap: on
line source

/*

Copyright (C) 1996, 1997 John W. Eaton

This file is part of Octave.

Octave is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.

Octave 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 General Public License
for more details.

You should have received a copy of the GNU General Public License
along with Octave; see the file COPYING.  If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

*/

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <cerrno>
#include <cstdio>
#include <cstdlib>
#include <cstring>

#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif

#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif

#include "file-ops.h"
#include "oct-env.h"
#include "oct-passwd.h"
#include "statdefs.h"
#include "str-vec.h"

#define NOT_SUPPORTED(nm) \
  nm ## ": not supported on this system"

// We provide a replacement for mkdir().

int
file_ops::mkdir (const string& name, mode_t mode)
{
  string msg;
  return mkdir (name, mode, msg);
}

int
file_ops::mkdir (const string& name, mode_t mode, string& msg)
{
  msg = string ();

  int status = -1;

#if defined (HAVE_MKDIR)
  status = ::mkdir (name.c_str (), mode);

  if (status < 0)
    msg = ::strerror (errno);
#else
  msg = NOT_SUPPORTED ("mkdir");
#endif

  return status;
}

// I don't know how to emulate this on systems that don't provide it.

int
file_ops::mkfifo (const string& name, mode_t mode)
{
  string msg;
  return mkfifo (name, mode, msg);
}

int
file_ops::mkfifo (const string& name, mode_t mode, string& msg)
{
  msg = string ();

  int status = -1;

#if defined (HAVE_MKFIFO)
  status = ::mkfifo (name.c_str (), mode);

  if (status < 0)
    msg = ::strerror (errno);
#else
  msg = NOT_SUPPORTED ("mkfifo");
#endif

  return status;
}

// We provide a replacement for rename().

int
file_ops::rename (const string& from, const string& to)
{
  string msg;
  return rename (from, to, msg);
}

int
file_ops::rename (const string& from, const string& to, string& msg)
{
  int status = -1;

  msg = string ();

#if defined (HAVE_RENAME)
  status = ::rename (from.c_str (), to.c_str ());

  if (status < 0)
    msg = ::strerror (errno);
#else
  msg = NOT_SUPPORTED ("rename");
#endif

  return status;
}

// We provide a replacement for rmdir().

int
file_ops::rmdir (const string& name)
{
  string msg;
  return rmdir (name, msg);
}

int
file_ops::rmdir (const string& name, string& msg)
{
  msg = string ();

  int status = -1;

#if defined (HAVE_RMDIR)
  status = ::rmdir (name.c_str ());

  if (status < 0)
    msg = ::strerror (errno);
#else
  msg = NOT_SUPPORTED ("rmdir");
#endif

  return status;
}

// We provide a replacement for tempnam().

string
file_ops::tempnam (const string& dir, const string& pfx)
{
  string msg;
  return tempnam (dir, pfx, msg);
}

string
file_ops::tempnam (const string& dir, const string& pfx, string& msg)
{
  msg = string ();

  string retval;
  
  const char *pdir = dir.empty () ? 0 : dir.c_str ();

  const char *ppfx = pfx.empty () ? 0 : pfx.c_str ();

  char *tmp = ::tempnam (pdir, ppfx);

  if (tmp)
    {
      retval = tmp;

      ::free (tmp);
    }
  else
    msg = ::strerror (errno);

  return retval;
}

// If NAME has a leading ~ or ~user, Unix-style, expand it to the
// user's home directory.  If no ~, or no <pwd.h>, just return NAME.

// Mostly stolen from kpathsea.  Readline also has a more complicated
// tilde-expand function, but we can probalby get by with something a
// bit simpler.

// XXX FIXME XXX
#define DIR_SEP_CHAR '/'

string
file_ops::tilde_expand (const string& name)
{
  string expansion = name;

  // If no leading tilde, do nothing.

  size_t beg = name.find_first_not_of (" \t");

  if (beg != NPOS && name[beg] == '~')
    {
      // If `~' or `~/', use the user's home directory.  If that is
      // empty, just use ".".

      // If `~user' or `~user/', look up user in the passwd database.

      size_t len = name.length ();

      if (beg == len-1 || name[beg+1] == DIR_SEP_CHAR)
	{
	  string home = octave_env::get_home_directory ();

	  if (home.empty ())
	    home = ".";
        
	  expansion = name.substr (0, beg) + home;

	  if (beg < len)
	    expansion.append (name.substr (beg+1));
	}
      else
	{
	  size_t end = name.find (DIR_SEP_CHAR, beg);

	  size_t len = end;

	  if (end != NPOS)
	    len -= beg + 1;

	  string user = name.substr (beg+1, len);

	  octave_passwd pw = octave_passwd::getpwnam (user);

	  // If no such user, just return the original string.

	  if (pw)
	    {
	      expansion = string (" ", beg) + pw.dir ();

	      if (end != NPOS)
		expansion.append (name.substr (end));
	    }
	  else
	    expansion = name;
	}
    }

  return expansion;
}

// A vector version of the above.

string_vector
file_ops::tilde_expand (const string_vector& names)
{
  string_vector retval;

  int n = names.length ();

  retval.resize (n);

  for (int i = 0; i < n; i++)
    retval[i] = file_ops::tilde_expand (names[i]);

  return retval;
}

int
file_ops::umask (mode_t mode)
{
#if defined (HAVE_UMASK)
  return ::umask (mode);
#else
  return 0;
#endif
}

int
file_ops::unlink (const string& name)
{
  string msg;
  return unlink (name, msg);
}

int
file_ops::unlink (const string& name, string& msg)
{
  msg = string ();

  int status = -1;

#if defined (HAVE_UNLINK)
  status = ::unlink (name.c_str ());

  if (status < 0)
    msg = ::strerror (errno);
#else
  msg = NOT_SUPPORTED ("unlink");
#endif

  return status;
}

/*
;;; Local Variables: ***
;;; mode: C++ ***
;;; End: ***
*/