home *** CD-ROM | disk | FTP | other *** search
- /* File IO for GNU Emacs.
- Copyright (C) 1985-1993 Free Software Foundation, Inc.
-
- This file is part of GNU Emacs.
-
- GNU Emacs 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.
-
- GNU Emacs 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 GNU Emacs; see the file COPYING. If not, write to
- the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
-
- #include "config.h"
- #include "lisp.h"
- #include "buffer.h"
- #include "window.h"
- #include "insdel.h"
-
- #include <stdio.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <pwd.h>
- #include <ctype.h>
- #include <errno.h>
- #include <sys/param.h>
-
- #ifndef VMS
- extern int errno;
- extern char *sys_errlist[];
- extern int sys_nerr;
- #endif
-
- #include <sys/time.h>
-
- #ifdef USG5_4
- #include <sys/dirent.h>
- #else
- #include <sys/dir.h>
- #endif
-
- #ifdef VMS
- #include <perror.h>
- #include <file.h>
- #include <rmsdef.h>
- #include <fab.h>
- #include <nam.h>
- #endif
-
- #ifdef NEED_TIME_H
- #include <time.h>
- #else /* not NEED_TIME_H */
- #ifdef HAVE_TIMEVAL
- #include <sys/time.h>
- #endif /* HAVE_TIMEVAL */
- #endif /* not NEED_TIME_H */
-
- #ifdef HPUX_NET
- #include <netio.h>
- #include <errnet.h>
- #endif
-
- #define min(a, b) ((a) < (b) ? (a) : (b))
- #define max(a, b) ((a) > (b) ? (a) : (b))
-
- extern unsigned int lisp_to_word ();
- extern Lisp_Object Fcurrent_time_seconds ();
-
- /* set by e_write() */
- static int e_write_errno;
-
- /* Nonzero during writing of auto-save files */
- static int auto_saving;
-
- /* Set by auto_save_1 to mode of original file so Fwrite_region will create
- a new file with the same mode as the original */
- static int auto_save_mode_bits;
-
- /* On VMS, nonzero means write new files with record format stmlf.
- Zero means use var format. */
- int vms_stmlf_recfm;
-
- Lisp_Object Qfile_error, Qfile_already_exists;
-
- void
- report_file_error (string, data)
- const char *string;
- Lisp_Object data;
- {
- Lisp_Object errstring;
-
- if (errno >= 0 && errno < sys_nerr)
- errstring = build_string (sys_errlist[errno]);
- else
- errstring = build_string ("undocumented error code");
-
- /* System error messages are capitalized. Downcase the initial
- unless it is followed by a slash. */
- if (XSTRING (errstring)->data[1] != '/')
- XSTRING (errstring)->data[0] = DOWNCASE (XSTRING (errstring)->data[0]);
-
- while (1)
- Fsignal (Qfile_error,
- Fcons (build_string (string), Fcons (errstring, data)));
- }
-
- DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory,
- 1, 1, 0,
- "Return the directory component in file name NAME.\n\
- Return nil if NAME does not include a directory.\n\
- Otherwise return a directory spec.\n\
- Given a Unix syntax file name, returns a string ending in slash;\n\
- on VMS, perhaps instead a string ending in `:', `]' or `>'.")
- (file)
- Lisp_Object file;
- {
- register char *beg;
- register char *p;
-
- CHECK_STRING (file, 0);
-
- beg = (char *) XSTRING (file)->data;
- p = beg + XSTRING (file)->size;
-
- while (p != beg && p[-1] != '/'
- #ifdef VMS
- && p[-1] != ':' && p[-1] != ']' && p[-1] != '>'
- #endif /* VMS */
- ) p--;
-
- if (p == beg)
- return Qnil;
- return make_string (beg, p - beg);
- }
-
- DEFUN ("file-name-nondirectory", Ffile_name_nondirectory, Sfile_name_nondirectory,
- 1, 1, 0,
- "Return file name NAME sans its directory.\n\
- For example, in a Unix-syntax file name,\n\
- this is everything after the last slash,\n\
- or the entire name if it contains no slash.")
- (file)
- Lisp_Object file;
- {
- register char *beg, *p, *end;
-
- CHECK_STRING (file, 0);
-
- beg = (char *) XSTRING (file)->data;
- end = p = beg + XSTRING (file)->size;
-
- while (p != beg && p[-1] != '/'
- #ifdef VMS
- && p[-1] != ':' && p[-1] != ']' && p[-1] != '>'
- #endif /* VMS */
- ) p--;
-
- return make_string (p, end - p);
- }
-
- static char *
- file_name_as_directory (out, in)
- char *out, *in;
- {
- int size = strlen (in) - 1;
-
- strcpy (out, in);
-
- #ifdef VMS
- /* Is it already a directory string? */
- if (in[size] == ':' || in[size] == ']' || in[size] == '>')
- return out;
- /* Is it a VMS directory file name? If so, hack VMS syntax. */
- else if (! index (in, '/')
- && ((size > 3 && ! strcmp (&in[size - 3], ".DIR"))
- || (size > 3 && ! strcmp (&in[size - 3], ".dir"))
- || (size > 5 && (! strncmp (&in[size - 5], ".DIR", 4)
- || ! strncmp (&in[size - 5], ".dir", 4))
- && (in[size - 1] == '.' || in[size - 1] == ';')
- && in[size] == '1')))
- {
- register char *p, *dot;
- char brack;
-
- /* x.dir -> [.x]
- dir:x.dir --> dir:[x]
- dir:[x]y.dir --> dir:[x.y] */
- p = in + size;
- while (p != in && *p != ':' && *p != '>' && *p != ']') p--;
- if (p != in)
- {
- strncpy (out, in, p - in);
- out[p - in] = '\0';
- if (*p == ':')
- {
- brack = ']';
- strcat (out, ":[");
- }
- else
- {
- brack = *p;
- strcat (out, ".");
- }
- p++;
- }
- else
- {
- brack = ']';
- strcpy (out, "[.");
- }
- if (dot = index (p, '.'))
- {
- /* blindly remove any extension */
- size = strlen (out) + (dot - p);
- strncat (out, p, dot - p);
- }
- else
- {
- strcat (out, p);
- size = strlen (out);
- }
- out[size++] = brack;
- out[size] = '\0';
- }
- #else /* not VMS */
- /* For Unix syntax, Append a slash if necessary */
- if (out[size] != '/')
- strcat (out, "/");
- #endif /* not VMS */
- return out;
- }
-
- DEFUN ("file-name-as-directory", Ffile_name_as_directory,
- Sfile_name_as_directory, 1, 1, 0,
- "Return a string representing file FILENAME interpreted as a directory.\n\
- This operation exists because a directory is also a file, but its name as\n\
- a directory is different from its name as a file.\n\
- The result can be used as the value of `default-directory'\n\
- or passed as second argument to `expand-file-name'.\n\
- For a Unix-syntax file name, just appends a slash.\n\
- On VMS, converts \"[X]FOO.DIR\" to \"[X.FOO]\", etc.")
- (file)
- Lisp_Object file;
- {
- char *buf;
-
- CHECK_STRING (file, 0);
- if (NILP (file))
- return Qnil;
- buf = (char *) alloca (XSTRING (file)->size + 10);
- return build_string (file_name_as_directory (buf, (char *) XSTRING (file)->data));
- }
-
- /*
- * Convert from directory name to filename.
- * On VMS:
- * xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1
- * xyzzy:[mukesh] => xyzzy:[000000]mukesh.dir.1
- * On UNIX, it's simple: just make sure there is a terminating /
-
- * Value is nonzero if the string output is different from the input.
- */
-
- static int
- directory_file_name (src, dst)
- const char *src;
- char *dst;
- {
- long slen;
- #ifdef VMS
- long rlen;
- char * ptr, * rptr;
- char bracket;
- struct FAB fab = cc$rms_fab;
- struct NAM nam = cc$rms_nam;
- char esa[NAM$C_MAXRSS];
- #endif /* VMS */
-
- slen = strlen (src) - 1;
- #ifdef VMS
- if (! index (src, '/')
- && (src[slen] == ']' || src[slen] == ':' || src[slen] == '>'))
- {
- /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */
- fab.fab$l_fna = src;
- fab.fab$b_fns = slen + 1;
- fab.fab$l_nam = &nam;
- fab.fab$l_fop = FAB$M_NAM;
-
- nam.nam$l_esa = esa;
- nam.nam$b_ess = sizeof esa;
- nam.nam$b_nop |= NAM$M_SYNCHK;
-
- /* We call SYS$PARSE to handle such things as [--] for us. */
- if (SYS$PARSE(&fab, 0, 0) == RMS$_NORMAL)
- {
- slen = nam.nam$b_esl - 1;
- if (esa[slen] == ';' && esa[slen - 1] == '.')
- slen -= 2;
- esa[slen + 1] = '\0';
- src = esa;
- }
- if (src[slen] != ']' && src[slen] != '>')
- {
- /* what about when we have logical_name:???? */
- if (src[slen] == ':')
- { /* Xlate logical name and see what we get */
- ptr = strcpy (dst, src); /* upper case for getenv */
- while (*ptr)
- {
- if ('a' <= *ptr && *ptr <= 'z')
- *ptr -= 040;
- ptr++;
- }
- dst[slen] = 0; /* remove colon */
- if (!(src = egetenv (dst)))
- return 0;
- /* should we jump to the beginning of this procedure?
- Good points: allows us to use logical names that xlate
- to Unix names,
- Bad points: can be a problem if we just translated to a device
- name...
- For now, I'll punt and always expect VMS names, and hope for
- the best! */
- slen = strlen (src) - 1;
- if (src[slen] != ']' && src[slen] != '>')
- { /* no recursion here! */
- strcpy (dst, src);
- return 0;
- }
- }
- else
- { /* not a directory spec */
- strcpy (dst, src);
- return 0;
- }
- }
- bracket = src[slen];
- if (!(ptr = index (src, bracket - 2)))
- { /* no opening bracket */
- strcpy (dst, src);
- return 0;
- }
- if (!(rptr = rindex (src, '.')))
- rptr = ptr;
- slen = rptr - src;
- strncpy (dst, src, slen);
- dst[slen] = '\0';
- if (*rptr == '.')
- {
- dst[slen++] = bracket;
- dst[slen] = '\0';
- }
- else
- {
- /* If we have the top-level of a rooted directory (i.e. xx:[000000]),
- then translate the device and recurse. */
- if (dst[slen - 1] == ':'
- && dst[slen - 2] != ':' /* skip decnet nodes */
- && strcmp(src + slen, "[000000]") == 0)
- {
- dst[slen - 1] = '\0';
- if ((ptr = egetenv (dst))
- && (rlen = strlen (ptr) - 1) > 0
- && (ptr[rlen] == ']' || ptr[rlen] == '>')
- && ptr[rlen - 1] == '.')
- {
- ptr[rlen - 1] = ']';
- ptr[rlen] = '\0';
- return directory_file_name (ptr, dst);
- }
- else
- dst[slen - 1] = ':';
- }
- strcat (dst, "[000000]");
- slen += 8;
- }
- rptr++;
- rlen = strlen (rptr) - 1;
- strncat (dst, rptr, rlen);
- dst[slen + rlen] = '\0';
- strcat (dst, ".DIR.1");
- return 1;
- }
- #endif /* VMS */
- /* Process as Unix format: just remove any final slash.
- But leave "/" unchanged; do not change it to "". */
- strcpy (dst, src);
- if (dst[slen] == '/' && slen > 1)
- dst[slen] = 0;
- return 1;
- }
-
- DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name,
- 1, 1, 0,
- "Returns the file name of the directory named DIR.\n\
- This is the name of the file that holds the data for the directory DIR.\n\
- This operation exists because a directory is also a file, but its name as\n\
- a directory is different from its name as a file.\n\
- In Unix-syntax, this function just removes the final slash.\n\
- On VMS, given a VMS-syntax directory name such as \"[X.Y]\",\n\
- it returns a file name such as \"[X]Y.DIR.1\".")
- (directory)
- Lisp_Object directory;
- {
- char *buf;
-
- CHECK_STRING (directory, 0);
-
- if (NILP (directory))
- return Qnil;
- #ifdef VMS
- /* 20 extra chars is insufficient for VMS, since we might perform a
- logical name translation. an equivalence string can be up to 255
- chars long, so grab that much extra space... - sss */
- buf = (char *) alloca (XSTRING (directory)->size + 20 + 255);
- #else
- buf = (char *) alloca (XSTRING (directory)->size + 20);
- #endif
- directory_file_name ((char *) XSTRING (directory)->data, buf);
- return build_string (buf);
- }
-
- DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0,
- "Generate temporary file name (string) starting with PREFIX (a string).\n\
- The Emacs process number forms part of the result,\n\
- so there is no danger of generating a name being used by another process.")
- (prefix)
- Lisp_Object prefix;
- {
- Lisp_Object val;
- val = concat2 (prefix, build_string ("XXXXXX"));
- mktemp ((char *)XSTRING (val)->data);
- return val;
- }
-
-
- DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
- "Convert FILENAME to absolute, and canonicalize it.\n\
- Second arg DEFAULT is directory to start with if FILENAME is relative\n\
- (does not start with slash); if DEFAULT is nil or missing,\n\
- the current buffer's value of default-directory is used.\n\
- Path components that are `.' are removed, and \n\
- path components followed by `..' are removed, along with the `..' itself;\n\
- note that these simplifications are done without checking the resulting\n\
- paths in the file system.\n\
- An initial `~/' expands to your home directory.\n\
- An initial `~USER/' expands to USER's home directory.\n\
- See also the function `substitute-in-file-name'.")
- (name, defalt)
- Lisp_Object name, defalt;
- {
- unsigned char *nm;
-
- register unsigned char *newdir, *p, *o;
- int tlen;
- unsigned char *target;
- struct passwd *pw;
- int lose;
- #ifdef VMS
- unsigned char * colon = 0;
- unsigned char * close = 0;
- unsigned char * slash = 0;
- unsigned char * brack = 0;
- int lbrack = 0, rbrack = 0;
- int dots = 0;
- #endif /* VMS */
-
- CHECK_STRING (name, 0);
-
- #ifdef VMS
- /* Filenames on VMS are always upper case. */
- name = Fupcase (name);
- #endif
-
- nm = XSTRING (name)->data;
-
- /* If nm is absolute, flush ...// and detect /./ and /../.
- If no /./ or /../ we can return right away. */
- if (
- nm[0] == '/'
- #ifdef VMS
- || index (nm, ':')
- #endif /* VMS */
- )
- {
- p = nm;
- lose = 0;
- while (*p)
- {
- /* Since we know the path is absolute, we can assume that each
- element starts with a "/". */
-
- /* "//" anywhere isn't necessarily hairy; we just start afresh
- with the second slash. */
- if (p[0] == '/' && p[1] == '/'
- #ifdef APOLLO
- /* // at start of filename is meaningful on Apollo system */
- && nm != p
- #endif /* APOLLO */
- )
- nm = p + 1;
-
- /* "~" is hairy as the start of any path element. */
- if (p[0] == '/' && p[1] == '~')
- nm = p + 1, lose = 1;
-
- /* "." and ".." are hairy. */
- if (p[0] == '/' && p[1] == '.'
- && (p[2] == '/' || p[2] == 0
- || (p[2] == '.' && (p[3] == '/' || p[3] == 0))))
- lose = 1;
- #ifdef VMS
- if (p[0] == '\\')
- lose = 1;
- if (p[0] == '/') {
- /* if dev:[dir]/, move nm to / */
- if (!slash && p > nm && (brack || colon)) {
- nm = (brack ? brack + 1 : colon + 1);
- lbrack = rbrack = 0;
- brack = 0;
- colon = 0;
- }
- slash = p;
- }
- if (p[0] == '-')
- #ifndef VMS4_4
- /* VMS pre V4.4,convert '-'s in filenames. */
- if (lbrack == rbrack)
- {
- if (dots < 2) /* this is to allow negative version numbers */
- p[0] = '_';
- }
- else
- #endif /* VMS4_4 */
- if (lbrack > rbrack &&
- ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') &&
- (p[1] == '.' || p[1] == ']' || p[1] == '>')))
- lose = 1;
- #ifndef VMS4_4
- else
- p[0] = '_';
- #endif /* VMS4_4 */
- /* count open brackets, reset close bracket pointer */
- if (p[0] == '[' || p[0] == '<')
- lbrack++, brack = 0;
- /* count close brackets, set close bracket pointer */
- if (p[0] == ']' || p[0] == '>')
- rbrack++, brack = p;
- /* detect ][ or >< */
- if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<'))
- lose = 1;
- if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~')
- nm = p + 1, lose = 1;
- if (p[0] == ':' && (colon || slash))
- /* if dev1:[dir]dev2:, move nm to dev2: */
- if (brack)
- {
- nm = brack + 1;
- brack = 0;
- }
- /* if /pathname/dev:, move nm to dev: */
- else if (slash)
- nm = slash + 1;
- /* if node::dev:, move colon following dev */
- else if (colon && colon[-1] == ':')
- colon = p;
- /* if dev1:dev2:, move nm to dev2: */
- else if (colon && colon[-1] != ':')
- {
- nm = colon + 1;
- colon = 0;
- }
- if (p[0] == ':' && !colon)
- {
- if (p[1] == ':')
- p++;
- colon = p;
- }
- if (lbrack == rbrack)
- if (p[0] == ';')
- dots = 2;
- else if (p[0] == '.')
- dots++;
- #endif /* VMS */
- p++;
- }
- if (!lose)
- {
- #ifdef VMS
- if (index (nm, '/'))
- return build_string (sys_translate_unix (nm));
- #endif /* VMS */
- if (nm == XSTRING (name)->data)
- return name;
- return build_string ((char *) nm);
- }
- }
-
- /* Now determine directory to start with and put it in newdir */
-
- newdir = 0;
-
- if (nm[0] == '~') /* prefix ~ */
- if (nm[1] == '/'
- #ifdef VMS
- || nm[1] == ':'
- #endif /* VMS */
- || nm[1] == 0) /* ~ by itself */
- {
- if (!(newdir = (unsigned char *) egetenv ("HOME")))
- newdir = (unsigned char *) "";
- nm++;
- #ifdef VMS
- nm++; /* Don't leave the slash in nm. */
- #endif /* VMS */
- }
- else /* ~user/filename */
- {
- for (p = nm; *p && (*p != '/'
- #ifdef VMS
- && *p != ':'
- #endif /* VMS */
- ); p++);
- o = (unsigned char *) alloca (p - nm + 1);
- memcpy (o, (char *) nm, p - nm);
- o [p - nm] = 0;
-
- pw = (struct passwd *) getpwnam ((char *) o + 1);
- if (!pw)
- error ("\"%s\" isn't a registered user", o + 1);
-
- #ifdef VMS
- nm = p + 1; /* skip the terminator */
- #else
- nm = p;
- #endif /* VMS */
- newdir = (unsigned char *) pw -> pw_dir;
- }
-
- if (nm[0] != '/'
- #ifdef VMS
- && !index (nm, ':')
- #endif /* not VMS */
- && !newdir)
- {
- if (NILP (defalt))
- defalt = current_buffer->directory;
- CHECK_STRING (defalt, 1);
- newdir = XSTRING (defalt)->data;
- }
-
- /* Now concatenate the directory and name to new space in the stack frame */
-
- tlen = ((newdir ? strlen ((char *) newdir) + 1 : 0)
- + strlen ((char *) nm) + 1);
- target = (unsigned char *) alloca (tlen);
- *target = 0;
-
- if (newdir)
- {
- #ifndef VMS
- if (nm[0] == 0 || nm[0] == '/')
- strcpy ((char *) target, (char *) newdir);
- else
- #endif
- file_name_as_directory ((char *) target, (char *) newdir);
- }
-
- strcat ((char *) target, (char *) nm);
- #ifdef VMS
- if (index (target, '/'))
- strcpy (target, sys_translate_unix (target));
- #endif /* VMS */
-
- /* Now canonicalize by removing /. and /foo/.. if they appear. */
-
- p = target;
- o = target;
-
- while (*p)
- {
- #ifdef VMS
- if (*p != ']' && *p != '>' && *p != '-')
- {
- if (*p == '\\')
- p++;
- *o++ = *p++;
- }
- else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2)
- /* brackets are offset from each other by 2 */
- {
- p += 2;
- if (*p != '.' && *p != '-' && o[-1] != '.')
- /* convert [foo][bar] to [bar] */
- while (o[-1] != '[' && o[-1] != '<')
- o--;
- else if (*p == '-' && *o != '.')
- *--p = '.';
- }
- else if (p[0] == '-' && o[-1] == '.' &&
- (p[1] == '.' || p[1] == ']' || p[1] == '>'))
- /* flush .foo.- ; leave - if stopped by '[' or '<' */
- {
- do
- o--;
- while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<');
- if (p[1] == '.') /* foo.-.bar ==> bar*/
- p += 2;
- else if (o[-1] == '.') /* '.foo.-]' ==> ']' */
- p++, o--;
- /* else [foo.-] ==> [-] */
- }
- else
- {
- #ifndef VMS4_4
- if (*p == '-' &&
- o[-1] != '[' && o[-1] != '<' && o[-1] != '.' &&
- p[1] != ']' && p[1] != '>' && p[1] != '.')
- *p = '_';
- #endif /* VMS4_4 */
- *o++ = *p++;
- }
- #else /* not VMS */
- if (*p != '/')
- {
- *o++ = *p++;
- }
- else if (!strncmp ((char *) p, "//", 2)
- #ifdef APOLLO
- /* // at start of filename is meaningful in Apollo system */
- && o != target
- #endif /* APOLLO */
- )
- {
- o = target;
- p++;
- }
- else if (p[0] == '/'
- && p[1] == '.'
- && (p[2] == '/' || p[2] == 0))
- {
- /* If "/." is the entire filename, keep the "/". Otherwise,
- just delete the whole "/.". */
- if (o == target && p[2] == '\0')
- *o++ = *p;
- p += 2;
- }
- else if (!strncmp ((char *) p, "/..", 3)
- /* `/../' is the "superroot" on certain file systems. */
- && o != target
- && (p[3] == '/' || p[3] == 0))
- {
- while (o != target && *--o != '/')
- ;
- #ifdef APOLLO
- if (o == target + 1 && o[-1] == '/' && o[0] == '/')
- ++o;
- else
- #endif /* APOLLO */
- if (o == target && *o == '/')
- ++o;
- p += 3;
- }
- else
- {
- *o++ = *p++;
- }
- #endif /* not VMS */
- }
-
- return make_string ((char *) target, o - target);
- }
-
- extern char *realpath ();
- extern int errno;
-
- DEFUN ("truename", Ftruename, Struename, 1, 2, 0,
- "Returns the canonical name of the given FILE.\n\
- Second arg DEFAULT is directory to start with if FILE is relative\n\
- (does not start with slash); if DEFAULT is nil or missing,\n\
- the current buffer's value of default-directory is used.\n\
- No component of the resulting pathname will be a symbolic link, as\n\
- in the realpath() function.\n\
- If the file does not exist, or is otherwise unable to be resolved,\n\
- nil is returned.")
- (name, defalt)
- Lisp_Object name, defalt;
- {
- struct gcpro gcpro1, gcpro2;
- char resolved_path[MAXPATHLEN];
- Lisp_Object expanded_name = Qnil;
-
- CHECK_STRING (name, 0);
-
- GCPRO2 (name, expanded_name);
- expanded_name = Fexpand_file_name (name, defalt);
- UNGCPRO;
-
- if (!(STRINGP (expanded_name))) return Qnil;
-
- if (XSTRING (expanded_name)->size >= sizeof (resolved_path))
- while (1)
- Fsignal (Qfile_error,
- Fcons (build_string ("Finding realpath"),
- Fcons (build_string ("pathame too long"),
- Fcons (expanded_name, Qnil))));
-
- memset (resolved_path, 0, sizeof (resolved_path));
- errno = 0;
-
- #ifdef VMS
- if (NILP (Ffile_exists_p (expanded_name)))
- return Qnil;
- strncpy (resolved_path, (char *) XSTRING (expanded_name)->data,
- XSTRING (expanded_name)->size + 1);
- #else
- if (! realpath ((char *) XSTRING (expanded_name)->data, resolved_path))
- return Qnil;
- #endif
- return build_string (resolved_path);
- }
-
-
- DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,
- Ssubstitute_in_file_name, 1, 1, 0,
- "Substitute environment variables referred to in FILENAME.\n\
- `$FOO' where FOO is an environment variable name means to substitute\n\
- the value of that variable. The variable name should be terminated\n\
- with a character not a letter, digit or underscore; otherwise, enclose\n\
- the entire variable name in braces.\n\
- If `/~' appears, all of FILENAME through that `/' is discarded.\n\n\
- On VMS, `$' substitution is not done; this function does little and only\n\
- duplicates what `expand-file-name' does.")
- (string)
- Lisp_Object string;
- {
- unsigned char *nm;
-
- register unsigned char *s, *p, *o, *x, *endp;
- unsigned char *target;
- int total = 0;
- int substituted = 0;
- unsigned char *xnm;
-
- CHECK_STRING (string, 0);
-
- nm = XSTRING (string)->data;
- endp = nm + XSTRING (string)->size;
-
- /* If /~ or // appears, discard everything through first slash. */
-
- for (p = nm; p != endp; p++)
- {
- if ((p[0] == '~' ||
- #ifdef APOLLO
- /* // at start of file name is meaningful in Apollo system */
- (p[0] == '/' && p - 1 != nm)
- #else /* not APOLLO */
- p[0] == '/'
- #endif /* not APOLLO */
- )
- && p != nm &&
- #ifdef VMS
- (p[-1] == ':' || p[-1] == ']' || p[-1] == '>' ||
- #endif /* VMS */
- p[-1] == '/')
- #ifdef VMS
- )
- #endif /* VMS */
- {
- nm = p;
- substituted = 1;
- }
- }
-
- #ifdef VMS
- return build_string (nm);
- #else
-
- /* See if any variables are substituted into the string
- and find the total length of their values in `total' */
-
- for (p = nm; p != endp;)
- if (*p != '$')
- p++;
- else
- {
- p++;
- if (p == endp)
- goto badsubst;
- else if (*p == '$')
- {
- /* "$$" means a single "$" */
- p++;
- total -= 1;
- substituted = 1;
- continue;
- }
- else if (*p == '{')
- {
- o = ++p;
- while (p != endp && *p != '}') p++;
- if (*p != '}') goto missingclose;
- s = p;
- }
- else
- {
- o = p;
- while (p != endp && (isalnum (*p) || *p == '_')) p++;
- s = p;
- }
-
- /* Copy out the variable name */
- target = (unsigned char *) alloca (s - o + 1);
- strncpy ((char *) target, (char *) o, s - o);
- target[s - o] = 0;
-
- /* Get variable value */
- o = (unsigned char *) egetenv ((char *) target);
- /* The presence of this code makes vax 5.0 crash, for reasons yet unknown */
- #if 0
- #ifdef USG
- if (!o && !strcmp (target, "USER"))
- o = egetenv ("LOGNAME");
- #endif /* USG */
- #endif /* 0 */
- if (!o) goto badvar;
- total += strlen ((char *) o);
- substituted = 1;
- }
-
- if (!substituted)
- return string;
-
- /* If substitution required, recopy the string and do it */
- /* Make space in stack frame for the new copy */
- xnm = (unsigned char *) alloca (XSTRING (string)->size + total + 1);
- x = xnm;
-
- /* Copy the rest of the name through, replacing $ constructs with values */
- for (p = nm; *p;)
- if (*p != '$')
- *x++ = *p++;
- else
- {
- p++;
- if (p == endp)
- goto badsubst;
- else if (*p == '$')
- {
- *x++ = *p++;
- continue;
- }
- else if (*p == '{')
- {
- o = ++p;
- while (p != endp && *p != '}') p++;
- if (*p != '}') goto missingclose;
- s = p++;
- }
- else
- {
- o = p;
- while (p != endp && (isalnum (*p) || *p == '_')) p++;
- s = p;
- }
-
- /* Copy out the variable name */
- target = (unsigned char *) alloca (s - o + 1);
- strncpy ((char *) target, (char *) o, s - o);
- target[s - o] = 0;
-
- /* Get variable value */
- o = (unsigned char *) egetenv ((char *) target);
- /* The presence of this code makes vax 5.0 crash, for reasons yet unknown */
- #if 0
- #ifdef USG
- if (!o && !strcmp (target, "USER"))
- o = egetenv ("LOGNAME");
- #endif /* USG */
- #endif /* 0 */
- if (!o)
- goto badvar;
-
- strcpy ((char *) x, (char *) o);
- x += strlen ((char *) o);
- }
-
- *x = 0;
-
- /* If /~ or // appears, discard everything through first slash. */
-
- for (p = xnm; p != x; p++)
- if ((p[0] == '~' ||
- #ifdef APOLLO
- /* // at start of file name is meaningful in Apollo system */
- (p[0] == '/' && p - 1 != xnm)
- #else /* not APOLLO */
- p[0] == '/'
- #endif /* not APOLLO */
- )
- && p != xnm && p[-1] == '/')
- xnm = p;
-
- return make_string ((char *) xnm, x - xnm);
-
- badsubst:
- error ("Bad format environment-variable substitution");
- missingclose:
- error ("Missing \"}\" in environment-variable substitution");
- badvar:
- error ("Substituting nonexistent environment variable \"%s\"", target);
-
- /* NOTREACHED */
- return Qnil; /* warning suppression */
- #endif /* not VMS */
- }
-
- /* A slightly faster and more convenient way to get
- (directory-file-name (expand-file-name FOO)). The return value may
- have had its last character zapped with a '\0' character, meaning
- that it is acceptable to system calls, but not to other lisp
- functions. Callers should make sure that the return value doesn't
- escape. */
-
- static Lisp_Object
- expand_and_dir_to_file (filename, defdir)
- Lisp_Object filename, defdir;
- {
- register Lisp_Object abspath;
- struct gcpro gcpro1;
-
- GCPRO1 (filename);
- abspath = Fexpand_file_name (filename, defdir);
- #ifdef VMS
- {
- register int c = XSTRING (abspath)->data[XSTRING (abspath)->size - 1];
- if (c == ':' || c == ']' || c == '>')
- abspath = Fdirectory_file_name (abspath);
- }
- #else
- /* Remove final slash, if any (unless path is root).
- stat behaves differently depending! */
- if (XSTRING (abspath)->size > 1
- && XSTRING (abspath)->data[XSTRING (abspath)->size - 1] == '/')
- {
- if (EQ (abspath, filename))
- abspath = Fcopy_sequence (abspath);
- XSTRING (abspath)->data[XSTRING (abspath)->size - 1] = 0;
- }
- #endif
- UNGCPRO;
- return abspath;
- }
-
- static void
- barf_or_query_if_file_exists (absname, querystring, interactive)
- Lisp_Object absname;
- const unsigned char *querystring;
- int interactive;
- {
- if (access ((char *) XSTRING (absname)->data, 4) >= 0)
- {
- register Lisp_Object tem;
- struct gcpro gcpro1;
-
- GCPRO1 (absname);
- if (interactive)
- tem = call1 (Qyes_or_no_p,
- (format1 ("File %s already exists; %s anyway? ",
- XSTRING (absname)->data, querystring)));
- else
- tem = Qt;
- UNGCPRO;
- if (NILP (tem))
- Fsignal (Qfile_already_exists,
- list2 (build_string ("File already exists"), absname));
- }
- return;
- }
-
- static int retrying_write (int, char *, int);
-
- #if defined(HAVE_TIMEVAL) && !defined(USE_UTIME)
- #if !defined(IRIX) && !defined(NeXT)
- extern int utimes (const char *, struct timeval *);
- #endif
- #endif
-
- DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 4,
- "fCopy file: \nFCopy %s to file: \np\nP",
- "Copy FILE to NEWNAME. Both args must be strings.\n\
- Signals a `file-already-exists' error if file NEWNAME already exists,\n\
- unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.\n\
- A number as third arg means request confirmation if NEWNAME already exists.\n\
- This is what happens in interactive use with M-x.\n\
- Fourth arg KEEP-TIME non-nil means give the new file the same\n\
- last-modified time as the old one. (This works on only some systems.)\n\
- A prefix arg makes KEEP-TIME non-nil.")
- (filename, newname, ok_if_already_exists, keep_date)
- Lisp_Object filename, newname, ok_if_already_exists, keep_date;
- {
- int ifd, ofd, n;
- char buf[16 * 1024];
- struct stat st;
-
- CHECK_STRING (filename, 0);
- CHECK_STRING (newname, 1);
- filename = Fexpand_file_name (filename, Qnil);
- newname = Fexpand_file_name (newname, Qnil);
-
- /* When second argument is a directory, copy the file into it.
- (copy-file "foo" "bar/") == (copy-file "foo" "bar/foo")
- */
- if (!NILP (Ffile_directory_p (newname)))
- {
- Lisp_Object args[3];
- int i = 0;
- args[i++] = newname;
- if (XSTRING (newname)->data [XSTRING (newname)->size - 1] != '/')
- args[i++] = build_string ("/");
- args[i++] = Ffile_name_nondirectory (filename);
- newname = Fconcat (i, args);
- }
-
- if (NILP (ok_if_already_exists)
- || FIXNUMP (ok_if_already_exists))
- barf_or_query_if_file_exists (newname, (unsigned char *) "copy to it",
- FIXNUMP (ok_if_already_exists));
-
- ifd = open ((char *) XSTRING (filename)->data, 0);
- if (ifd < 0)
- report_file_error ("Opening input file", Fcons (filename, Qnil));
-
- #ifdef VMS
- /* Create the copy file with the same record format as the input file */
- ofd = sys_creat (XSTRING (newname)->data, 0666, ifd);
- #else
- ofd = creat ((char *) XSTRING (newname)->data, 0666);
- #endif /* VMS */
- if (ofd < 0)
- {
- close (ifd);
- report_file_error ("Opening output file", Fcons (newname, Qnil));
- }
-
- while ((n = read (ifd, buf, sizeof buf)) > 0)
- if (retrying_write (ofd, buf, n) != 0)
- report_file_error ("I/O error", Fcons (newname, Qnil));
-
- if (fstat (ifd, &st) >= 0)
- {
- #ifdef HAVE_TIMEVAL
- if (!NILP (keep_date))
- {
- #ifdef USE_UTIME
- /* AIX has utimes() in compatibility package, but it dies. So use good old
- utime interface instead. */
- struct {
- time_t atime;
- time_t mtime;
- } tv;
- tv.atime = st.st_atime;
- tv.mtime = st.st_mtime;
- utime (XSTRING (newname)->data, &tv);
- #else /* not USE_UTIME */
- struct timeval timevals[2];
- timevals[0].tv_sec = st.st_atime;
- timevals[1].tv_sec = st.st_mtime;
- timevals[0].tv_usec = timevals[1].tv_usec = 0;
- utimes ((char *) XSTRING (newname)->data, timevals);
- #endif /* not USE_UTIME */
- }
- #endif /* HAVE_TIMEVALS */
-
- #ifdef APOLLO
- if (!egetenv ("USE_DOMAIN_ACLS"))
- #endif
- chmod ((char *)XSTRING (newname)->data, st.st_mode & 07777);
- }
-
- close (ifd);
- if (close (ofd) < 0)
- report_file_error ("I/O error", Fcons (newname, Qnil));
-
- return Qnil;
- }
-
- DEFUN ("make-directory", Fmake_directory, Smake_directory, 1, 1, "FMake directory: ",
- "Create a directory. One argument, a file name string.")
- (dirname)
- Lisp_Object dirname;
- {
- char dir [MAXPATHLEN];
- CHECK_STRING (dirname, 0);
- dirname = Fexpand_file_name (dirname, Qnil);
- if (XSTRING (dirname)->size > (sizeof (dir) - 1))
- while (1)
- Fsignal (Qfile_error,
- Fcons (build_string ("Creating directory"),
- Fcons (build_string ("pathame too long"),
- Flist (1, &dirname))));
- strncpy (dir, (char *) XSTRING (dirname)->data, XSTRING (dirname)->size + 1);
- #ifndef VMS
- if (dir [XSTRING (dirname)->size - 1] == '/')
- dir [XSTRING (dirname)->size - 1] = 0;
- #endif
- if (mkdir (dir, 0777) != 0)
- report_file_error ("Creating directory", Flist (1, &dirname));
-
- return Qnil;
- }
-
- DEFUN ("remove-directory", Fremove_directory, Sremove_directory, 1, 1, "FRemove directory: ",
- "Remove a directory. One argument, a file name string.")
- (dirname)
- Lisp_Object dirname;
- {
- unsigned char *dir;
-
- CHECK_STRING (dirname, 0);
- dirname = Fexpand_file_name (dirname, Qnil);
- dir = XSTRING (dirname)->data;
-
- if (rmdir ((char *) dir) != 0)
- report_file_error ("Removing directory", Flist (1, &dirname));
-
- return Qnil;
- }
-
- DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 1, "fDelete file: ",
- "Delete specified file. One argument, a file name string.\n\
- If file has multiple names, it continues to exist with the other names.")
- (filename)
- Lisp_Object filename;
- {
- CHECK_STRING (filename, 0);
- filename = Fexpand_file_name (filename, Qnil);
- if (0 > unlink ((char *) XSTRING (filename)->data))
- report_file_error ("Removing old name", Flist (1, &filename));
- return Qnil;
- }
-
- DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
- "fRename file: \nFRename %s to file: \np",
- "Rename FILE as NEWNAME. Both args strings.\n\
- If file has names other than FILE, it continues to have those names.\n\
- Signals a `file-already-exists' error if a file NEWNAME already exists\n\
- unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
- A number as third arg means request confirmation if NEWNAME already exists.\n\
- This is what happens in interactive use with M-x.")
- (filename, newname, ok_if_already_exists)
- Lisp_Object filename, newname, ok_if_already_exists;
- {
- #ifdef NO_ARG_ARRAY
- Lisp_Object args[2];
- #endif
-
- CHECK_STRING (filename, 0);
- CHECK_STRING (newname, 1);
- filename = Fexpand_file_name (filename, Qnil);
- newname = Fexpand_file_name (newname, Qnil);
- if (NILP (ok_if_already_exists)
- || FIXNUMP (ok_if_already_exists))
- barf_or_query_if_file_exists (newname, (unsigned char *) "rename to it",
- FIXNUMP (ok_if_already_exists));
- #ifndef BSD4_1
- if (0 > rename ((char *) XSTRING (filename)->data,
- (char *) XSTRING (newname)->data))
- #else
- if (0 > link ((char *) XSTRING (filename)->data, XSTRING (newname)->data)
- || 0 > unlink ((char *) XSTRING (filename)->data))
- #endif
- {
- if (errno == EXDEV)
- {
- Fcopy_file (filename, newname, ok_if_already_exists, Qt);
- Fdelete_file (filename);
- }
- else
- #ifdef NO_ARG_ARRAY
- {
- args[0] = filename;
- args[1] = newname;
- report_file_error ("Renaming", Flist (2, args));
- }
- #else
- report_file_error ("Renaming", Flist (2, &filename));
- #endif
- }
- return Qnil;
- }
-
- DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
- "fAdd name to file: \nFName to add to %s: \np",
- "Give FILE additional name NEWNAME. Both args strings.\n\
- Signals a `file-already-exists' error if a file NEWNAME already exists\n\
- unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
- A number as third arg means request confirmation if NEWNAME already exists.\n\
- This is what happens in interactive use with M-x.")
- (filename, newname, ok_if_already_exists)
- Lisp_Object filename, newname, ok_if_already_exists;
- {
- #ifdef NO_ARG_ARRAY
- Lisp_Object args[2];
- #endif
-
- CHECK_STRING (filename, 0);
- CHECK_STRING (newname, 1);
- filename = Fexpand_file_name (filename, Qnil);
- newname = Fexpand_file_name (newname, Qnil);
- if (NILP (ok_if_already_exists)
- || FIXNUMP (ok_if_already_exists))
- barf_or_query_if_file_exists (newname,
- (unsigned char *) "make it a new name",
- FIXNUMP (ok_if_already_exists));
- unlink ((char *) XSTRING (newname)->data);
- if (0 > link ((char *) XSTRING (filename)->data,
- (char *) XSTRING (newname)->data))
- {
- #ifdef NO_ARG_ARRAY
- args[0] = filename;
- args[1] = newname;
- report_file_error ("Adding new name", Flist (2, args));
- #else
- report_file_error ("Adding new name", Flist (2, &filename));
- #endif
- }
-
- return Qnil;
- }
-
- #ifdef S_IFLNK
- DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
- "FMake symbolic link to file: \nFMake symbolic link to file %s: \np",
- "Make a symbolic link to FILENAME, named LINKNAME. Both args strings.\n\
- Signals a `file-already-exists' error if a file NEWNAME already exists\n\
- unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
- A number as third arg means request confirmation if NEWNAME already exists.\n\
- This happens for interactive use with M-x.")
- (filename, newname, ok_if_already_exists)
- Lisp_Object filename, newname, ok_if_already_exists;
- {
- #ifdef NO_ARG_ARRAY
- Lisp_Object args[2];
- #endif
-
- CHECK_STRING (filename, 0);
- CHECK_STRING (newname, 1);
- filename = Fexpand_file_name (filename, Qnil);
- newname = Fexpand_file_name (newname, Qnil);
- if (NILP (ok_if_already_exists)
- || FIXNUMP (ok_if_already_exists))
- barf_or_query_if_file_exists (newname, (unsigned char *) "make it a link",
- FIXNUMP (ok_if_already_exists));
- if (0 > symlink ((char *) XSTRING (filename)->data,
- (char *) XSTRING (newname)->data))
- {
- /* If we didn't complain already, silently delete existing file. */
- if (errno == EEXIST)
- {
- unlink ((char *) XSTRING (filename)->data);
- if (0 <= symlink ((char *) XSTRING (filename)->data,
- (char *) XSTRING (newname)->data))
- return Qnil;
- }
-
- #ifdef NO_ARG_ARRAY
- args[0] = filename;
- args[1] = newname;
- report_file_error ("Making symbolic link", Flist (2, args));
- #else
- report_file_error ("Making symbolic link", Flist (2, &filename));
- #endif
- }
- return Qnil;
- }
- #endif /* S_IFLNK */
-
- #ifdef VMS
-
- DEFUN ("define-logical-name", Fdefine_logical_name, Sdefine_logical_name,
- 2, 2, "sDefine logical name: \nsDefine logical name %s as: ",
- "Define the job-wide logical name NAME to have the value STRING.\n\
- If STRING is nil or a null string, the logical name NAME is deleted.")
- (varname, string)
- Lisp_Object varname;
- Lisp_Object string;
- {
- CHECK_STRING (varname, 0);
- if (NILP (string))
- delete_logical_name (XSTRING (varname)->data);
- else
- {
- CHECK_STRING (string, 1);
-
- if (XSTRING (string)->size == 0)
- delete_logical_name (XSTRING (varname)->data);
- else
- define_logical_name (XSTRING (varname)->data, XSTRING (string)->data);
- }
-
- return string;
- }
- #endif /* VMS */
-
- #ifdef HPUX_NET
-
- DEFUN ("sysnetunam", Fsysnetunam, Ssysnetunam, 2, 2, 0,
- "Open a network connection to PATH using LOGIN as the login string.")
- (path, login)
- Lisp_Object path, login;
- {
- int netresult;
-
- CHECK_STRING (path, 0);
- CHECK_STRING (login, 0);
-
- netresult = netunam (XSTRING (path)->data, XSTRING (login)->data);
-
- if (netresult == -1)
- return Qnil;
- else
- return Qt;
- }
- #endif /* HPUX_NET */
-
- DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
- 1, 1, 0,
- "Return t if file FILENAME specifies an absolute path name.\n\
- On Unix, this is a name starting with a `/' or a `~'.")
- (filename)
- Lisp_Object filename;
- {
- unsigned char *ptr;
-
- CHECK_STRING (filename, 0);
- ptr = XSTRING (filename)->data;
- if (*ptr == '/' || *ptr == '~'
- #ifdef VMS
- /* ??? This criterion is probably wrong for '<'. */
- || index (ptr, ':') || index (ptr, '<')
- || (*ptr == '[' && (ptr[1] != '-' || (ptr[2] != '.' && ptr[2] != ']'))
- && ptr[1] != '.')
- #endif /* VMS */
- )
- return Qt;
- else
- return Qnil;
- }
-
- DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
- "Return t if file FILENAME exists. (This does not mean you can read it.)\n\
- See also `file-readable-p' and `file-attributes'.")
- (filename)
- Lisp_Object filename;
- {
- Lisp_Object abspath;
-
- CHECK_STRING (filename, 0);
- abspath = Fexpand_file_name (filename, Qnil);
- return (access ((char *) XSTRING (abspath)->data, 0) >= 0) ? Qt : Qnil;
- }
-
- DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0,
- "Return t if FILENAME can be executed by you.\n\
- For directories this means you can change to that directory.")
- (filename)
- Lisp_Object filename;
-
- {
- Lisp_Object abspath;
-
- CHECK_STRING (filename, 0);
- abspath = Fexpand_file_name (filename, Qnil);
- return (access ((char *) XSTRING (abspath)->data, 1) >= 0) ? Qt : Qnil;
- }
-
- DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
- "Return t if file FILENAME exists and you can read it.\n\
- See also `file-exists-p' and `file-attributes'.")
- (filename)
- Lisp_Object filename;
- {
- Lisp_Object abspath;
-
- CHECK_STRING (filename, 0);
- abspath = Fexpand_file_name (filename, Qnil);
- return (access ((char *) XSTRING (abspath)->data, 4) >= 0) ? Qt : Qnil;
- }
-
- DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
- "If file FILENAME is the name of a symbolic link\n\
- returns the name of the file to which it is linked.\n\
- Otherwise returns NIL.")
- (filename)
- Lisp_Object filename;
- {
- #ifdef S_IFLNK
- char *buf;
- int bufsize;
- int valsize;
- Lisp_Object val;
-
- CHECK_STRING (filename, 0);
- filename = Fexpand_file_name (filename, Qnil);
-
- bufsize = 100;
- while (1)
- {
- buf = (char *) xmalloc (bufsize);
- memset (buf, 0, bufsize);
- valsize = readlink ((char *) XSTRING (filename)->data, buf, bufsize);
- if (valsize < bufsize) break;
- /* Buffer was not long enough */
- xfree (buf);
- bufsize *= 2;
- }
- if (valsize == -1)
- {
- xfree (buf);
- return Qnil;
- }
- val = make_string (buf, valsize);
- xfree (buf);
- return val;
- #else /* not S_IFLNK */
- return Qnil;
- #endif /* not S_IFLNK */
- }
-
- /* Having this before file-symlink-p mysteriously caused it to be forgotten
- on the RT/PC. */
- DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
- "Return t if file FILENAME can be written or created by you.")
- (filename)
- Lisp_Object filename;
- {
- Lisp_Object abspath, dir;
-
- CHECK_STRING (filename, 0);
- abspath = Fexpand_file_name (filename, Qnil);
- if (access ((char *) XSTRING (abspath)->data, 0) >= 0)
- return (access ((char *) XSTRING (abspath)->data, 2) >= 0) ? Qt : Qnil;
- dir = Ffile_name_directory (abspath);
- #ifdef VMS
- if (!NILP (dir))
- dir = Fdirectory_file_name (dir);
- #endif /* VMS */
- return (access (!NILP (dir) ? (char *) XSTRING (dir)->data : "", 2) >= 0
- ? Qt : Qnil);
- }
-
- DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
- "Return t if file FILENAME is the name of a directory as a file.\n\
- A directory name spec may be given instead; then the value is t\n\
- if the directory so specified exists and really is a directory.")
- (filename)
- Lisp_Object filename;
- {
- register Lisp_Object abspath;
- struct stat st;
-
- abspath = expand_and_dir_to_file (filename, current_buffer->directory);
-
- if (stat ((char *)XSTRING (abspath)->data, &st) < 0)
- return Qnil;
- return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil;
- }
-
- DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
- "Return mode bits of FILE, as an integer.")
- (filename)
- Lisp_Object filename;
- {
- Lisp_Object abspath;
- struct stat st;
-
- abspath = expand_and_dir_to_file (filename, current_buffer->directory);
-
- if (stat ((char *)XSTRING (abspath)->data, &st) < 0)
- return Qnil;
- return make_number (st.st_mode & 07777);
- }
-
- DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2, 0,
- "Set mode bits of FILE to MODE (an integer).\n\
- Only the 12 low bits of MODE are used.")
- (filename, mode)
- Lisp_Object filename, mode;
- {
- Lisp_Object abspath;
-
- abspath = Fexpand_file_name (filename, current_buffer->directory);
- CHECK_FIXNUM (mode, 1);
-
- #ifndef APOLLO
- if (chmod ((char *)XSTRING (abspath)->data, XINT (mode)) < 0)
- report_file_error ("Doing chmod", Fcons (abspath, Qnil));
- #else /* APOLLO */
- if (!egetenv ("USE_DOMAIN_ACLS"))
- {
- struct stat st;
- struct timeval tvp[2];
-
- /* chmod on apollo also change the file's modtime; need to save the
- modtime and then restore it. */
- if (stat (XSTRING (abspath)->data, &st) < 0)
- {
- report_file_error ("Doing chmod", Fcons (abspath, Qnil));
- return (Qnil);
- }
-
- if (chmod (XSTRING (abspath)->data, XINT (mode)) < 0)
- report_file_error ("Doing chmod", Fcons (abspath, Qnil));
-
- /* reset the old accessed and modified times. */
- tvp[0].tv_sec = st.st_atime + 1; /* +1 due to an Apollo roundoff bug */
- tvp[0].tv_usec = 0;
- tvp[1].tv_sec = st.st_mtime + 1; /* +1 due to an Apollo roundoff bug */
- tvp[1].tv_usec = 0;
-
- if (utimes (XSTRING (abspath)->data, tvp) < 0)
- report_file_error ("Doing utimes", Fcons (abspath, Qnil));
- }
- #endif /* APOLLO */
-
- return Qnil;
- }
-
- DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
- "Return t if file FILE1 is newer than file FILE2.\n\
- If FILE1 does not exist, the answer is nil;\n\
- otherwise, if FILE2 does not exist, the answer is t.")
- (file1, file2)
- Lisp_Object file1, file2;
- {
- Lisp_Object abspath;
- struct stat st;
- int mtime1;
-
- CHECK_STRING (file1, 0);
- CHECK_STRING (file2, 0);
-
- abspath = expand_and_dir_to_file (file1, current_buffer->directory);
-
- if (stat ((char *)XSTRING (abspath)->data, &st) < 0)
- return Qnil;
-
- mtime1 = st.st_mtime;
-
- abspath = expand_and_dir_to_file (file2, current_buffer->directory);
-
- if (stat ((char *)XSTRING (abspath)->data, &st) < 0)
- return Qt;
-
- return (mtime1 > st.st_mtime) ? Qt : Qnil;
- }
-
- static Lisp_Object
- close_file_unwind (fd)
- Lisp_Object fd;
- {
- close (XFASTINT (fd));
- return Qnil;
- }
-
- DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
- 1, 2, 0,
- "Insert contents of file FILENAME after point.\n\
- Returns list of absolute pathname and length of data inserted.\n\
- If second argument VISIT is non-nil, the buffer's visited filename\n\
- and last save file modtime are set, and it is marked unmodified.\n\
- If visiting and the file does not exist, visiting is completed\n\
- before the error is signaled.")
- (filename, visit)
- Lisp_Object filename, visit;
- {
- struct stat st;
- register int fd;
- register int inserted = 0;
- register int how_much;
- int count = specpdl_depth;
-
- if (!NILP (current_buffer->read_only))
- Fbarf_if_buffer_read_only();
-
- CHECK_STRING (filename, 0);
- filename = Fexpand_file_name (filename, Qnil);
-
- fd = -1;
-
- #ifndef APOLLO
- if (stat ((char *)XSTRING (filename)->data, &st) < 0
- || (fd = open ((char *) XSTRING (filename)->data, 0)) < 0)
- #else
- if ((fd = open (XSTRING (filename)->data, 0)) < 0
- || fstat (fd, &st) < 0)
- #endif /* not APOLLO */
- {
- if (fd >= 0) close (fd);
- if (NILP (visit))
- report_file_error ("Opening input file", Fcons (filename, Qnil));
- st.st_mtime = -1;
- how_much = 0;
- goto notfound;
- }
-
- record_unwind_protect (close_file_unwind, make_number (fd));
-
- /* Supposedly happens on VMS. */
- if (st.st_size < 0)
- error ("File size is negative");
- {
- register Lisp_Object temp;
-
- /* Make sure point-max won't overflow after this insertion. */
- XSET (temp, Lisp_Int, st.st_size + Z);
- if (st.st_size + Z != XINT (temp))
- error ("maximum buffer size exceeded");
- }
-
- if (NILP (visit))
- prepare_to_modify_buffer (point, point);
-
- move_gap (point);
- if (GAP_SIZE < st.st_size)
- make_gap (st.st_size - GAP_SIZE);
-
- while (1)
- {
- int try = min (st.st_size - inserted, 64 << 10);
- int this = read (fd, (char *) CHAR_ADDRESS (point + inserted - 1) + 1,
- try);
-
- if (this <= 0)
- {
- how_much = this;
- break;
- }
-
- GPT += this;
- GAP_SIZE -= this;
- ZV += this;
- Z += this;
- inserted += this;
- }
-
- if (inserted > 0)
- MODIFF++;
- record_insert (point, inserted);
-
- close (fd);
-
- /* Discard the unwind protect >>>> Kludge! */
- specpdl_ptr = specpdl + count;
- specpdl_depth = count;
-
- if (how_much < 0)
- error ("IO error reading %s", XSTRING (filename)->data);
-
- notfound:
-
- if (!NILP (visit))
- {
- current_buffer->undo_list = Qnil;
- #ifdef APOLLO
- stat (XSTRING (filename)->data, &st);
- #endif
- current_buffer->modtime = st.st_mtime;
- current_buffer->save_modified = MODIFF;
- current_buffer->auto_save_modified = MODIFF;
- XFASTINT (current_buffer->save_length) = Z - BEG;
- #ifdef CLASH_DETECTION
- if (!NILP (current_buffer->filename))
- unlock_file (current_buffer->filename);
- unlock_file (filename);
- #endif /* CLASH_DETECTION */
- current_buffer->filename = filename;
- call0 (intern ("compute-buffer-file-truename"));
- /* If visiting nonexistent file, return nil. */
- if (st.st_mtime == -1)
- report_file_error ("Opening input file", Fcons (filename, Qnil));
- }
-
- signal_after_change (point, 0, inserted);
- return Fcons (filename, Fcons (make_number (inserted), Qnil));
- }
-
- static int e_write (int, char *, int);
-
- DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 5,
- "r\nFWrite region to file: ",
- "Write current region into specified file.\n\
- When called from a program, takes three arguments:\n\
- START, END and FILENAME. START and END are buffer positions.\n\
- Optional fourth argument APPEND if non-nil means\n\
- append to existing file contents (if any).\n\
- Optional fifth argument VISIT if t means\n\
- set the last-save-file-modtime of buffer to this file's modtime\n\
- and mark buffer not modified.\n\
- If VISIT is neither t nor nil, it means do not print\n\
- the \"Wrote file\" message.\n\
- Kludgy feature: if START is a string, then that string is written\n\
- to the file, instead of any buffer contents, and END is ignored.")
- (start, end, filename, append, visit)
- Lisp_Object start, end, filename, append, visit;
- {
- register int fd;
- int failure;
- char *fn;
- struct stat st;
- int tem;
- int count = specpdl_depth;
- #ifdef VMS
- unsigned char *fname = 0; /* If non-0, original filename (must rename) */
- #endif /* VMS */
-
- /* Special kludge to simplify auto-saving */
- if (NILP (start))
- {
- XFASTINT (start) = BEG;
- XFASTINT (end) = Z;
- }
- else if (!STRINGP (start))
- validate_region (&start, &end);
-
- filename = Fexpand_file_name (filename, Qnil);
- fn = (char *)XSTRING (filename)->data;
-
- #ifdef CLASH_DETECTION
- if (!auto_saving)
- lock_file (filename);
- #endif /* CLASH_DETECTION */
-
- fd = -1;
- if (!NILP (append))
- fd = open (fn, 1);
-
- if (fd < 0)
- #ifdef VMS
- if (auto_saving) /* Overwrite any previous version of autosave file */
- {
- vms_truncate (fn); /* if fn exists, truncate to zero length */
- fd = open (fn, O_RDWR);
- if (fd < 0)
- fd = creat_copy_attrs (STRINGP (current_buffer->filename)
- ? XSTRING (current_buffer->filename)->data : 0,
- fn);
- }
- else /* Write to temporary name and rename if no errors */
- {
- Lisp_Object temp_name;
- temp_name = Ffile_name_directory (filename);
-
- if (!NILP (temp_name))
- {
- temp_name = Fmake_temp_name (concat2 (temp_name,
- build_string ("$$SAVE$$")));
- fname = XSTRING (filename)->data;
- fn = XSTRING (temp_name)->data;
- fd = creat_copy_attrs (fname, fn);
- if (fd < 0)
- {
- /* If we can't open the temporary file, try creating a new
- version of the original file. VMS "creat" creates a
- new version rather than truncating an existing file. */
- fn = fname;
- fname = 0;
- fd = creat (fn, 0666);
- if (fd < 0)
- {
- /* We can't make a new version;
- try to truncate and rewrite existing version if any. */
- vms_truncate (fn);
- fd = open (fn, O_RDWR);
- }
- }
- }
- else
- fd = creat (fn, 0666);
- }
- #else /* not VMS */
- fd = creat (fn, auto_saving ? auto_save_mode_bits : 0666);
- #endif /* not VMS */
-
- if (fd < 0)
- {
- #ifdef CLASH_DETECTION
- if (!auto_saving) unlock_file (filename);
- #endif /* CLASH_DETECTION */
- report_file_error ("Opening output file", Fcons (filename, Qnil));
- }
-
- record_unwind_protect (close_file_unwind, make_number (fd));
-
- if (!NILP (append))
- if (lseek (fd, 0, 2) < 0)
- {
- #ifdef CLASH_DETECTION
- if (!auto_saving) unlock_file (filename);
- #endif /* CLASH_DETECTION */
- report_file_error ("Lseek error", Fcons (filename, Qnil));
- }
-
- #ifdef VMS
- /*
- * Kludge Warning: The VMS C RTL likes to insert carriage returns
- * if we do writes that don't end with a carriage return. Furthermore
- * it cannot handle writes of more then 16K. The modified
- * version of "sys_write" in SYSDEP.C (see comment there) copes with
- * this EXCEPT for the last record (iff it doesn't end with a carriage
- * return). This implies that if your buffer doesn't end with a carriage
- * return, you get one free... tough. However it also means that if
- * we make two calls to sys_write (a la the following code) you can
- * get one at the gap as well. The easiest way to fix this (honest)
- * is to move the gap to the next newline (or the end of the buffer).
- * Thus this change.
- *
- * Yech!
- */
- if (GPT > BEG && *GPT_ADDR[-1] != '\n')
- move_gap (find_next_newline (GPT, 1));
- #endif
-
- failure = 0;
- immediate_quit = 1;
-
- if (STRINGP (start))
- {
- failure = 0 > e_write (fd, (char *) XSTRING (start)->data,
- XSTRING (start)->size);
- }
- else if (XINT (start) != XINT (end))
- {
- if (XINT (start) < GPT)
- {
- register int end1 = XINT (end);
- tem = XINT (start);
- failure = 0 > e_write (fd, (char *) CHAR_ADDRESS (tem),
- min (GPT, end1) - tem);
- }
-
- if (XINT (end) > GPT && !failure)
- {
- tem = XINT (start);
- tem = max (tem, GPT);
- failure = 0 > e_write (fd, (char *) CHAR_ADDRESS (tem),
- XINT (end) - tem);
- }
- }
-
- immediate_quit = 0;
-
- #ifndef USG
- #ifndef VMS
- #ifndef BSD4_1
- #ifndef alliant /* trinkle@cs.purdue.edu says fsync can return EBUSY
- on alliant, for no visible reason. */
- /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
- Disk full in NFS may be reported here. */
- if (fsync (fd) < 0) {
- failure = 1;
- e_write_errno = errno;
- }
- #endif
- #endif
- #endif
- #endif
-
- /* Spurious "file has changed on disk" warnings have been
- observed on Suns as well.
- It seems that `close' can change the modtime, under nfs.
-
- (This has supposedly been fixed in Sunos 4,
- but who knows about all the other machines with NFS?) */
- #if 0
-
- /* On VMS and APOLLO, must do the stat after the close
- since closing changes the modtime. */
- #ifndef VMS
- #ifndef APOLLO
- /* Recall that #if defined does not work on VMS. */
- #define FOO
- fstat (fd, &st);
- #endif
- #endif
- #endif
-
- /* NFS can report a write failure now. */
- if (close (fd) < 0) {
- failure = 1;
- e_write_errno = errno;
- }
-
- #ifdef VMS
- /* If we wrote to a temporary name and had no errors, rename to real name. */
- if (fname)
- {
- if (!failure)
- failure = (rename (fn, fname) != 0);
- fn = fname;
- }
- #endif /* VMS */
-
- #ifndef FOO
- stat (fn, &st);
- #endif
- /* Discard the unwind protect >>>> Kludge! */
- specpdl_ptr = specpdl + count;
- specpdl_depth = count;
-
- #ifdef CLASH_DETECTION
- if (!auto_saving)
- unlock_file (filename);
- #endif /* CLASH_DETECTION */
-
- /* Do this before reporting IO error
- to avoid a "file has changed on disk" warning on
- next attempt to save. */
- if (EQ (visit, Qt))
- current_buffer->modtime = st.st_mtime;
-
- if (failure) {
- errno = e_write_errno;
- report_file_error ("I/O error", Fcons (filename, Qnil));
- }
-
- if (EQ (visit, Qt))
- {
- current_buffer->save_modified = MODIFF;
- XFASTINT (current_buffer->save_length) = Z - BEG;
- current_buffer->filename = filename;
- }
- else if (!NILP (visit))
- return Qnil;
-
- if (!auto_saving)
- {
- Lisp_Object fsp = Ffile_symlink_p (build_string (fn));
- if (NILP (fsp))
- message ("Wrote %s", fn);
- else
- message ("Wrote %s (symlink to %s)", fn, (char *) XSTRING (fsp)->data);
- }
- return Qnil;
- }
-
-
- /* a version of write that will correctly retry when an interrupt arrives
- down inside the syscall. Returns 0 for success, something else for failure.
- If it fails, e_write_error is set to the error number.
- */
- static int
- retrying_write (fd, addr, len)
- int fd;
- register char *addr;
- register int len;
- {
- int nbytes;
- /* When you tell write() to write N bytes, it doesn't necessarily do so.
- If it writes some, and then gets in interrupt, it just stops, and tells
- you how many it did write, and the right thing to do is to immediately
- call write() again to dump the rest. If write() returns -1, then that
- means that no output was written, and the reason is in errno.
- */
- while (0 < (nbytes = write (fd, addr, len))) {
- addr += nbytes;
- len -= nbytes;
- }
-
- if (nbytes) {
- if (errno == EINTR) {
- /* This means an interrupt arrived before any data was actually written,
- so the kernel punted, and the right thing to do is simply try again.
- ## Do we have to pussyfoot around EAGAIN as well?
- */
- return retrying_write (fd, addr, len);
- }
- /* else, it's a real error of some kind, not just unix stupidity.
- Cache the current value of errno in case something else set it before
- we get around to reporting the error to the user.
- */
- e_write_errno = errno;
- return nbytes;
- }
- /* else, everything went fine. */
- return 0;
- }
-
-
- /* Write LEN bytes starting at ADDR to FD.
- Returns 0 for success, something else for failure.
- If it fails, e_write_error is set to the error number.
- */
- static int
- e_write (fd, addr, len)
- int fd;
- register char *addr;
- register int len;
- {
- char buf[16 * 1024];
- register char *p, *end;
-
- if (!EQ (current_buffer->selective_display, Qt))
- return retrying_write (fd, addr, len);
- else
- {
- int write_error;
- p = buf;
- end = p + sizeof buf;
- while (len--)
- {
- if (p == end)
- {
- if (0 != (write_error = retrying_write (fd, buf, sizeof buf)))
- return write_error;
- p = buf;
- }
- *p = *addr++;
- if (*p++ == '\015')
- p[-1] = '\n';
- }
- if (p != buf)
- if (0 != (write_error = retrying_write (fd, buf, p - buf)))
- return write_error;
- }
- return 0;
- }
-
-
- #if 0
- #include <des_crypt.h>
-
- #define CRYPT_BLOCK_SIZE 8 /* bytes */
- #define CRYPT_KEY_SIZE 8 /* bytes */
-
- DEFUN ("encrypt-string", Fencrypt_string, Sencrypt_string, 2, 2, 0,
- "Encrypt STRING using KEY.")
- (string, key)
- Lisp_Object string, key;
- {
- char *encrypted_string, *raw_key;
- int rounded_size, extra, key_size;
-
- CHECK_STRING (string, 0);
- CHECK_STRING (key, 1);
-
- extra = XSTRING (string)->size % CRYPT_BLOCK_SIZE;
- rounded_size = XSTRING (string)->size + extra;
- encrypted_string = alloca (rounded_size + 1);
- bcopy (XSTRING (string)->data, encrypted_string, XSTRING (string)->size);
- memset (encrypted_string + rounded_size - extra, 0, extra + 1);
-
- if (XSTRING (key)->size > CRYPT_KEY_SIZE)
- key_size = CRYPT_KEY_SIZE;
- else
- key_size = XSTRING (key)->size;
-
- raw_key = alloca (CRYPT_KEY_SIZE + 1);
- bcopy (XSTRING (key)->data, raw_key, key_size);
- memset (raw_key + key_size, 0, (CRYPT_KEY_SIZE + 1) - key_size);
-
- (void) ecb_crypt (raw_key, encrypted_string, rounded_size,
- DES_ENCRYPT | DES_SW);
- return make_string (encrypted_string, rounded_size);
- }
-
- DEFUN ("decrypt-string", Fdecrypt_string, Sdecrypt_string, 2, 2, 0,
- "Decrypt STRING using KEY.")
- (string, key)
- Lisp_Object string, key;
- {
- char *decrypted_string, *raw_key;
- int string_size, key_size;
-
- CHECK_STRING (string, 0);
- CHECK_STRING (key, 1);
-
- string_size = XSTRING (string)->size + 1;
- decrypted_string = alloca (string_size);
- bcopy (XSTRING (string)->data, decrypted_string, string_size);
- decrypted_string[string_size - 1] = '\0';
-
- if (XSTRING (key)->size > CRYPT_KEY_SIZE)
- key_size = CRYPT_KEY_SIZE;
- else
- key_size = XSTRING (key)->size;
-
- raw_key = alloca (CRYPT_KEY_SIZE + 1);
- bcopy (XSTRING (key)->data, raw_key, key_size);
- memset (raw_key + key_size, 0, (CRYPT_KEY_SIZE + 1) - key_size);
-
-
- (void) ecb_crypt (raw_key, decrypted_string, string_size,
- DES_DECRYPT | DES_SW);
- return make_string (decrypted_string, string_size - 1);
- }
- #endif
-
- DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
- Sverify_visited_file_modtime, 1, 1, 0,
- "Return t if last mod time of BUF's visited file matches what BUF records.\n\
- This means that the file has not been changed since it was visited or saved.")
- (buf)
- Lisp_Object buf;
- {
- struct buffer *b;
- struct stat st;
-
- CHECK_BUFFER (buf, 0);
- b = XBUFFER (buf);
-
- if (!STRINGP (b->filename)) return Qt;
- if (b->modtime == 0) return Qt;
-
- if (stat ((char *)XSTRING (b->filename)->data, &st) < 0)
- {
- /* If the file doesn't exist now and didn't exist before,
- we say that it isn't modified, provided the error is a tame one. */
- if (errno == ENOENT || errno == EACCES || errno == ENOTDIR)
- st.st_mtime = -1;
- else
- st.st_mtime = 0;
- }
- if (st.st_mtime == b->modtime
- /* If both are positive, accept them if they are off by one second. */
- || (st.st_mtime > 0 && b->modtime > 0
- && (st.st_mtime == b->modtime + 1
- || st.st_mtime == b->modtime - 1)))
- return Qt;
- return Qnil;
- }
-
- DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
- Sclear_visited_file_modtime, 0, 0, 0,
- "Clear out records of last mod time of visited file.\n\
- Next attempt to save will certainly not complain of a discrepancy.")
- ()
- {
- current_buffer->modtime = 0;
- return Qnil;
- }
-
- DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
- Sset_visited_file_modtime, 0, 0, 0,
- "Update buffer's recorded modification time from the visited file's time.\n\
- Useful if the buffer was not read from the file normally\n\
- or if the file itself has been changed for some known benign reason.")
- ()
- {
- register Lisp_Object filename;
- struct stat st;
-
- filename = Fexpand_file_name (current_buffer->filename, Qnil);
-
- if (stat ((char *)XSTRING (filename)->data, &st) >= 0)
- current_buffer->modtime = st.st_mtime;
-
- return Qnil;
- }
-
- DEFUN ("set-buffer-modtime", Fset_buffer_modtime,
- Sset_buffer_modtime, 1, 2, 0,
- "Update BUFFER's recorded modification time from the associated \n\
- file's modtime, if there is an associated file. If not, use the \n\
- current time. In either case, if the optional arg TIME is supplied, use \n\
- that is it is either an integer or a cons of two integers.")
- (buf, in_time)
- Lisp_Object buf, in_time;
- {
- struct buffer *b = XBUFFER (buf);
- unsigned long time_to_use = 0;
- int set_time_to_use = 0;
- Lisp_Object filename;
- struct stat st;
-
- CHECK_BUFFER (buf, 0);
-
- if (!NILP (in_time))
- {
- if (FIXNUMP (in_time))
- {
- CHECK_FIXNUM (in_time, 1);
- time_to_use = XINT (in_time);
- set_time_to_use = 1;
- }
- else if ((CONSP (in_time)) &&
- (FIXNUMP (Fcar (in_time))) &&
- (FIXNUMP (Fcdr (in_time))))
- {
- time_to_use = lisp_to_word (in_time);
- set_time_to_use = 1;
- }
- }
-
- if (!set_time_to_use)
- {
- if (STRINGP (b->filename))
- filename = Fexpand_file_name (b->filename, Qnil);
- else
- filename = Qnil;
-
- if (!NILP (filename) && !NILP (Ffile_exists_p (filename)))
- {
- if (stat ((char *)XSTRING (filename)->data, &st) >= 0)
- time_to_use = st.st_mtime;
- else
- time_to_use = time ((long *)0);
- }
- else
- time_to_use = time ((long *)0);
- }
-
- b->modtime = time_to_use;
-
- return Qnil;
- }
-
-
- static Lisp_Object
- auto_save_error ()
- {
- unsigned char *name = XSTRING (current_buffer->name)->data;
-
- ring_bell (intern("auto-save-error")); /* Lucid sound change */
- message ("Autosaving...error for %s", name);
- Fsleep_for (make_number (1));
- message ("Autosaving...error!for %s", name);
- Fsleep_for (make_number (1));
- message ("Autosaving...error for %s", name);
- Fsleep_for (make_number (1));
- return Qnil;
- }
-
- static Lisp_Object
- auto_save_1 ()
- {
- struct stat st;
-
- /* Get visited file's mode to become the auto save file's mode. */
- if (!NILP (current_buffer->filename) &&
- stat ((char *)XSTRING (current_buffer->filename)->data, &st) >= 0)
- /* But make sure we can overwrite it later! */
- auto_save_mode_bits = st.st_mode | 0600;
- else
- auto_save_mode_bits = 0666;
-
- return
- Fwrite_region (Qnil, Qnil,
- current_buffer->auto_save_file_name,
- Qnil, Qlambda);
- }
-
-
- /* Fdo_auto_save() checks whether a GC is in progress when it is called,
- and if so, tries to avoid touching lisp objects.
-
- The only time that Fdo_auto_save() is called while GC is in progress
- is if we're going down, as a result of an abort() or a kill signal.
- It's fairly important that we generate autosave files in that case!
- */
- extern int gc_in_progress;
-
-
- extern int minibuf_level;
-
- DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 1, "",
- "Auto-save all buffers that need it.\n\
- This is all buffers that have auto-saving enabled\n\
- and are changed since last auto-saved.\n\
- Auto-saving writes the buffer into a file\n\
- so that your editing is not lost if the system crashes.\n\
- This file is not the file you visited; that changes only when you save.\n\n\
- Non-nil first argument means do not print any message if successful."
- /* Nice idea but not yet implemented */
- /* "Non-nil second argument means save only current buffer." */
- )
- (nomsg)
- Lisp_Object nomsg;
- {
- struct buffer *old = current_buffer, *b;
- Lisp_Object tail, buf;
- int auto_saved = 0;
- char *omessage = echo_area_glyphs;
-
- auto_saving = 1;
- if (minibuf_level || gc_in_progress)
- nomsg = Qt;
-
- /* Vrun_hooks is nil before emacs is dumped, and inc-vers.el will
- eventually call do-auto-save, so don't err here in that case. */
- if (!NILP (Vrun_hooks) && !gc_in_progress)
- call1 (Vrun_hooks, intern ("auto-save-hook"));
-
- for (tail = Vbuffer_alist;
- XGCTYPE (tail) == Lisp_Cons;
- tail = XCONS (tail)->cdr)
- {
- buf = XCONS (XCONS (tail)->car)->cdr;
- b = XBUFFER (buf);
- /* Check for auto save enabled
- and file changed since last auto save
- and file changed since last real save. */
- if (XGCTYPE (b->auto_save_file_name) == Lisp_String
- && b->save_modified < BUF_MODIFF (b)
- && b->auto_save_modified < BUF_MODIFF (b))
- {
- if (!gc_in_progress &&
- (XFASTINT (b->save_length) * 10
- > (BUF_Z (b) - BUF_BEG (b)) * 13)
- /* A short file is likely to change a large fraction;
- spare the user annoying messages. */
- && XFASTINT (b->save_length) > 5000
- /* These messages are frequent and annoying for `*mail*'. */
- && !EQ (b->filename, Qnil))
- {
- /* It has shrunk too much; turn off auto-saving here.
- Unless we're about to crash, in which case auto-save it
- anyway.
- */
- message ("Buffer %s has shrunk a lot; auto save turned off there",
- XSTRING (b->name)->data);
- /* User can reenable saving with M-x auto-save. */
- b->auto_save_file_name = Qnil;
- /* Prevent warning from repeating if user does so. */
- XFASTINT (b->save_length) = 0;
- Fsleep_for (make_number (1));
- continue;
- }
- internal_set_buffer (b);
- if (!auto_saved && NILP (nomsg))
- message ("Auto-saving...");
- condition_case_1 (Qt,
- auto_save_1, Qnil,
- auto_save_error, Qnil);
- auto_saved++;
- b->auto_save_modified = BUF_MODIFF (b);
- XFASTINT (current_buffer->save_length) = Z - BEG;
- internal_set_buffer (old);
- }
- }
-
- if (auto_saved && NILP (nomsg))
- message ("%s", omessage ? omessage : "Auto-saving...done");
-
- auto_saving = 0;
- return Qnil;
- }
-
- DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
- Sset_buffer_auto_saved, 0, 0, 0,
- "Mark current buffer as auto-saved with its current text.\n\
- No auto-save file will be written until the buffer changes again.")
- ()
- {
- current_buffer->auto_save_modified = MODIFF;
- XFASTINT (current_buffer->save_length) = Z - BEG;
- return Qnil;
- }
-
- DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
- 0, 0, 0,
- "Return t if buffer has been auto-saved since last read in or saved.")
- ()
- {
- return (current_buffer->save_modified < current_buffer->auto_save_modified) ? Qt : Qnil;
- }
-
- void
- syms_of_fileio ()
- {
- Qfile_error = intern ("file-error");
- staticpro (&Qfile_error);
- Qfile_already_exists = intern("file-already-exists");
- staticpro (&Qfile_already_exists);
-
- Fput (Qfile_error, Qerror_conditions,
- Fcons (Qfile_error, Fcons (Qerror, Qnil)));
- Fput (Qfile_error, Qerror_message,
- build_string ("File error"));
-
- Fput (Qfile_already_exists, Qerror_conditions,
- Fcons (Qfile_already_exists,
- Fcons (Qfile_error, Fcons (Qerror, Qnil))));
- Fput (Qfile_already_exists, Qerror_message,
- build_string ("File already exists"));
-
- DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm,
- "*Non-nil means write new files with record format `stmlf'.\n\
- nil means use format `var'. This variable is meaningful only on VMS.");
- vms_stmlf_recfm = 0;
-
- defsubr (&Sfile_name_directory);
- defsubr (&Sfile_name_nondirectory);
- defsubr (&Sfile_name_as_directory);
- defsubr (&Sdirectory_file_name);
- defsubr (&Smake_temp_name);
- defsubr (&Sexpand_file_name);
- defsubr (&Struename);
- defsubr (&Ssubstitute_in_file_name);
- defsubr (&Scopy_file);
- defsubr (&Smake_directory);
- defsubr (&Sremove_directory);
- defsubr (&Sdelete_file);
- defsubr (&Srename_file);
- defsubr (&Sadd_name_to_file);
- #ifdef S_IFLNK
- defsubr (&Smake_symbolic_link);
- #endif /* S_IFLNK */
- #ifdef VMS
- defsubr (&Sdefine_logical_name);
- #endif /* VMS */
- #ifdef HPUX_NET
- defsubr (&Ssysnetunam);
- #endif /* HPUX_NET */
- defsubr (&Sfile_name_absolute_p);
- defsubr (&Sfile_exists_p);
- defsubr (&Sfile_executable_p);
- defsubr (&Sfile_readable_p);
- defsubr (&Sfile_writable_p);
- defsubr (&Sfile_symlink_p);
- defsubr (&Sfile_directory_p);
- defsubr (&Sfile_modes);
- defsubr (&Sset_file_modes);
- defsubr (&Sfile_newer_than_file_p);
- defsubr (&Sinsert_file_contents);
- defsubr (&Swrite_region);
- #if 0
- defsubr (&Sencrypt_string);
- defsubr (&Sdecrypt_string);
- #endif
- defsubr (&Sverify_visited_file_modtime);
- defsubr (&Sclear_visited_file_modtime);
- defsubr (&Sset_visited_file_modtime);
- defsubr (&Sset_buffer_modtime);
-
- defsubr (&Sdo_auto_save);
- defsubr (&Sset_buffer_auto_saved);
- defsubr (&Srecent_auto_save_p);
- }
-