2000-08-06 21:13:45 +00:00
|
|
|
/* $Id$ */
|
2000-06-19 04:22:15 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* files.c *
|
|
|
|
* *
|
2009-12-02 03:36:22 +00:00
|
|
|
* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, *
|
2014-04-30 20:18:26 +00:00
|
|
|
* 2008, 2009, 2010, 2011, 2013, 2014 Free Software Foundation, Inc. *
|
2000-06-19 04:22:15 +00:00
|
|
|
* 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 *
|
2007-08-11 05:17:36 +00:00
|
|
|
* the Free Software Foundation; either version 3, or (at your option) *
|
2000-06-19 04:22:15 +00:00
|
|
|
* any later version. *
|
|
|
|
* *
|
2005-05-15 19:57:17 +00:00
|
|
|
* This program 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. *
|
2000-06-19 04:22:15 +00:00
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software *
|
2005-05-15 19:57:17 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
|
|
|
|
* 02110-1301, USA. *
|
2000-06-19 04:22:15 +00:00
|
|
|
* *
|
|
|
|
**************************************************************************/
|
|
|
|
|
2005-12-08 02:47:10 +00:00
|
|
|
#include "proto.h"
|
2001-04-28 18:03:52 +00:00
|
|
|
|
2000-06-19 04:22:15 +00:00
|
|
|
#include <stdio.h>
|
2005-11-05 20:01:11 +00:00
|
|
|
#include <string.h>
|
2000-06-19 04:22:15 +00:00
|
|
|
#include <unistd.h>
|
2002-06-28 22:45:14 +00:00
|
|
|
#include <utime.h>
|
2000-06-19 04:22:15 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
2000-11-05 17:54:41 +00:00
|
|
|
#include <ctype.h>
|
2001-01-22 22:17:08 +00:00
|
|
|
#include <pwd.h>
|
2013-01-01 03:24:39 +00:00
|
|
|
#include <libgen.h>
|
2000-06-21 03:00:43 +00:00
|
|
|
|
2016-01-20 15:56:40 +00:00
|
|
|
/* Verify that the containing directory of the given filename exists. */
|
|
|
|
bool has_valid_path(const char *filename)
|
2016-01-20 15:14:52 +00:00
|
|
|
{
|
|
|
|
char *parentdir;
|
|
|
|
struct stat parentinfo;
|
2016-01-31 13:06:06 +00:00
|
|
|
bool validity = FALSE;
|
2016-01-20 15:14:52 +00:00
|
|
|
|
|
|
|
if (strrchr(filename, '/') == NULL)
|
|
|
|
parentdir = mallocstrcpy(NULL, ".");
|
|
|
|
else
|
|
|
|
parentdir = dirname(mallocstrcpy(NULL, filename));
|
|
|
|
|
2016-01-31 13:06:06 +00:00
|
|
|
if (stat(parentdir, &parentinfo) == -1) {
|
|
|
|
if (errno == ENOENT)
|
|
|
|
statusbar(_("Directory '%s' does not exist"), parentdir);
|
|
|
|
else
|
|
|
|
statusbar(_("Path '%s': %s"), parentdir, strerror(errno));
|
|
|
|
} else if (!S_ISDIR(parentinfo.st_mode)) {
|
|
|
|
statusbar(_("Path '%s' is not a directory"), parentdir);
|
|
|
|
} else {
|
|
|
|
if (access(parentdir, X_OK) == -1)
|
|
|
|
statusbar(_("Path '%s' is not accessible"), parentdir);
|
|
|
|
else
|
|
|
|
validity = TRUE;
|
2016-01-20 15:14:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
free(parentdir);
|
2016-01-31 13:06:06 +00:00
|
|
|
|
|
|
|
if (!validity)
|
|
|
|
beep();
|
|
|
|
|
2016-01-20 15:56:40 +00:00
|
|
|
return validity;
|
2016-01-20 15:14:52 +00:00
|
|
|
}
|
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
/* Add an entry to the openfile openfilestruct. This should only be
|
|
|
|
* called from open_buffer(). */
|
|
|
|
void make_new_buffer(void)
|
2005-07-08 02:47:05 +00:00
|
|
|
{
|
2005-07-08 20:09:16 +00:00
|
|
|
/* If there are no entries in openfile, make the first one and
|
|
|
|
* move to it. */
|
2005-07-08 19:57:25 +00:00
|
|
|
if (openfile == NULL) {
|
|
|
|
openfile = make_new_opennode();
|
|
|
|
splice_opennode(openfile, openfile, openfile);
|
2005-07-08 20:09:16 +00:00
|
|
|
/* Otherwise, make a new entry for openfile, splice it in after
|
|
|
|
* the current entry, and move to it. */
|
|
|
|
} else {
|
2005-07-08 19:57:25 +00:00
|
|
|
splice_opennode(openfile, make_new_opennode(), openfile->next);
|
|
|
|
openfile = openfile->next;
|
2014-04-26 19:01:18 +00:00
|
|
|
/* More than one file open, show Close in help lines. */
|
|
|
|
exitfunc->desc = close_tag;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2002-12-22 16:30:00 +00:00
|
|
|
|
2015-08-16 15:21:32 +00:00
|
|
|
/* Start initializing the new buffer. */
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->filename = mallocstrcpy(NULL, "");
|
2002-03-28 01:59:34 +00:00
|
|
|
|
2005-07-23 00:41:45 +00:00
|
|
|
initialize_buffer_text();
|
2002-06-13 00:40:19 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current_x = 0;
|
|
|
|
openfile->placewewant = 0;
|
2005-07-12 20:09:24 +00:00
|
|
|
openfile->current_y = 0;
|
2002-06-13 00:40:19 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->modified = FALSE;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->mark_set = FALSE;
|
2005-07-12 20:09:24 +00:00
|
|
|
openfile->mark_begin = NULL;
|
|
|
|
openfile->mark_begin_x = 0;
|
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->fmt = NIX_FILE;
|
2002-04-22 23:52:34 +00:00
|
|
|
|
2008-07-10 20:13:04 +00:00
|
|
|
openfile->undotop = NULL;
|
|
|
|
openfile->current_undo = NULL;
|
2015-08-16 13:05:35 +00:00
|
|
|
openfile->last_action = OTHER;
|
2015-07-10 17:25:51 +00:00
|
|
|
|
|
|
|
openfile->current_stat = NULL;
|
2013-01-01 03:24:39 +00:00
|
|
|
openfile->lock_filename = NULL;
|
2005-07-08 02:47:05 +00:00
|
|
|
#endif
|
2014-04-04 11:59:03 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2015-08-02 20:27:45 +00:00
|
|
|
openfile->syntax = NULL;
|
2005-07-13 20:18:46 +00:00
|
|
|
openfile->colorstrings = NULL;
|
|
|
|
#endif
|
2005-07-08 02:47:05 +00:00
|
|
|
}
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2005-07-23 00:41:45 +00:00
|
|
|
/* Initialize the text of the current entry of the openfile
|
|
|
|
* openfilestruct. */
|
|
|
|
void initialize_buffer_text(void)
|
2005-07-10 02:37:38 +00:00
|
|
|
{
|
2005-07-23 00:41:45 +00:00
|
|
|
assert(openfile != NULL);
|
2005-07-10 02:37:38 +00:00
|
|
|
|
2005-07-23 00:41:45 +00:00
|
|
|
openfile->fileage = make_new_node(NULL);
|
|
|
|
openfile->fileage->data = mallocstrcpy(NULL, "");
|
2005-07-15 19:37:32 +00:00
|
|
|
|
2005-07-23 00:41:45 +00:00
|
|
|
openfile->filebot = openfile->fileage;
|
|
|
|
openfile->edittop = openfile->fileage;
|
|
|
|
openfile->current = openfile->fileage;
|
|
|
|
|
2014-04-04 11:59:03 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2009-02-08 17:45:21 +00:00
|
|
|
openfile->fileage->multidata = NULL;
|
|
|
|
#endif
|
|
|
|
|
2005-07-23 00:41:45 +00:00
|
|
|
openfile->totsize = 0;
|
2005-07-10 02:37:38 +00:00
|
|
|
}
|
|
|
|
|
2016-01-15 14:42:07 +00:00
|
|
|
/* Mark the current file as modified if it isn't already, and then
|
|
|
|
* update the titlebar to display the file's new status. */
|
|
|
|
void set_modified(void)
|
|
|
|
{
|
|
|
|
if (openfile->modified)
|
|
|
|
return;
|
|
|
|
|
|
|
|
openfile->modified = TRUE;
|
|
|
|
titlebar(NULL);
|
|
|
|
|
|
|
|
#ifndef NANO_TINY
|
2016-01-20 15:56:40 +00:00
|
|
|
if (!ISSET(LOCKING) || openfile->filename[0] == '\0')
|
2016-01-15 14:42:07 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (openfile->lock_filename == NULL) {
|
|
|
|
/* TRANSLATORS: Try to keep this at most 76 characters. */
|
|
|
|
statusbar(_("Warning: Modifying a file which is not locked,"
|
|
|
|
" check directory permission?"));
|
|
|
|
} else {
|
|
|
|
char *fullname = get_full_path(openfile->filename);
|
|
|
|
write_lockfile(openfile->lock_filename, fullname, TRUE);
|
|
|
|
free(fullname);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-01-01 03:24:39 +00:00
|
|
|
#ifndef NANO_TINY
|
2014-04-08 12:35:18 +00:00
|
|
|
/* Actually write the lockfile. This function will ALWAYS annihilate
|
|
|
|
* any previous version of the file. We'll borrow INSECURE_BACKUP here
|
|
|
|
* to decide about lockfile paranoia here as well...
|
|
|
|
*
|
|
|
|
* Args:
|
|
|
|
* lockfilename: file name for lock
|
|
|
|
* origfilename: name of the file the lock is for
|
|
|
|
* modified: whether to set the modified bit in the file
|
|
|
|
*
|
|
|
|
* Returns: 1 on success, 0 on failure (but continue loading), -1 on
|
|
|
|
* failure and abort. */
|
2013-01-01 03:24:39 +00:00
|
|
|
int write_lockfile(const char *lockfilename, const char *origfilename, bool modified)
|
|
|
|
{
|
|
|
|
int cflags, fd;
|
|
|
|
FILE *filestream;
|
|
|
|
pid_t mypid;
|
|
|
|
uid_t myuid;
|
|
|
|
struct passwd *mypwuid;
|
2015-01-20 06:15:34 +00:00
|
|
|
struct stat fileinfo;
|
2013-01-01 03:24:39 +00:00
|
|
|
char *lockdata = charalloc(1024);
|
|
|
|
char myhostname[32];
|
|
|
|
ssize_t lockdatalen = 1024;
|
|
|
|
ssize_t wroteamt;
|
|
|
|
|
2014-04-08 12:35:18 +00:00
|
|
|
/* Run things which might fail first before we try and blow away the
|
|
|
|
* old state. */
|
2013-01-01 03:24:39 +00:00
|
|
|
myuid = geteuid();
|
|
|
|
if ((mypwuid = getpwuid(myuid)) == NULL) {
|
2015-06-27 15:10:58 +00:00
|
|
|
statusbar(_("Couldn't determine my identity for lock file (getpwuid() failed)"));
|
2015-08-03 08:32:52 +00:00
|
|
|
goto free_and_fail;
|
2013-01-01 03:24:39 +00:00
|
|
|
}
|
|
|
|
mypid = getpid();
|
|
|
|
|
|
|
|
if (gethostname(myhostname, 31) < 0) {
|
2015-11-06 20:14:37 +00:00
|
|
|
if (errno == ENAMETOOLONG)
|
|
|
|
myhostname[31] = '\0';
|
|
|
|
else {
|
|
|
|
statusbar(_("Couldn't determine hostname for lock file: %s"), strerror(errno));
|
|
|
|
goto free_and_fail;
|
|
|
|
}
|
2013-01-01 03:24:39 +00:00
|
|
|
}
|
|
|
|
|
2015-01-20 06:15:34 +00:00
|
|
|
/* Check if the lock exists before we try to delete it...*/
|
|
|
|
if (stat(lockfilename, &fileinfo) != -1)
|
|
|
|
if (delete_lockfile(lockfilename) < 0)
|
2015-08-03 08:32:52 +00:00
|
|
|
goto free_and_fail;
|
2013-01-01 03:24:39 +00:00
|
|
|
|
|
|
|
if (ISSET(INSECURE_BACKUP))
|
2015-06-27 15:10:58 +00:00
|
|
|
cflags = O_WRONLY | O_CREAT | O_APPEND;
|
2013-01-01 03:24:39 +00:00
|
|
|
else
|
2015-06-27 15:10:58 +00:00
|
|
|
cflags = O_WRONLY | O_CREAT | O_EXCL | O_APPEND;
|
2013-01-01 03:24:39 +00:00
|
|
|
|
|
|
|
fd = open(lockfilename, cflags,
|
2015-06-27 15:10:58 +00:00
|
|
|
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
|
2013-01-03 03:07:27 +00:00
|
|
|
|
2015-01-20 06:15:34 +00:00
|
|
|
/* Maybe we just don't have write access. Print an error message
|
2015-06-27 15:10:58 +00:00
|
|
|
* and continue. */
|
2015-01-20 06:15:34 +00:00
|
|
|
if (fd < 0) {
|
2015-06-27 15:10:58 +00:00
|
|
|
statusbar(_("Error writing lock file %s: %s"), lockfilename,
|
2015-01-20 06:15:34 +00:00
|
|
|
strerror(errno));
|
2015-08-03 08:32:52 +00:00
|
|
|
free(lockdata);
|
2015-06-27 15:10:58 +00:00
|
|
|
return 0;
|
2015-01-20 06:15:34 +00:00
|
|
|
}
|
2013-01-03 03:07:27 +00:00
|
|
|
|
2014-04-08 12:35:18 +00:00
|
|
|
/* Now we've got a safe file stream. If the previous open() call
|
|
|
|
* failed, this will return NULL. */
|
2013-01-01 03:24:39 +00:00
|
|
|
filestream = fdopen(fd, "wb");
|
|
|
|
|
|
|
|
if (fd < 0 || filestream == NULL) {
|
2015-06-27 15:10:58 +00:00
|
|
|
statusbar(_("Error writing lock file %s: %s"), lockfilename,
|
2013-01-01 03:24:39 +00:00
|
|
|
strerror(errno));
|
2015-08-03 08:32:52 +00:00
|
|
|
goto free_and_fail;
|
2013-01-01 03:24:39 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 12:35:18 +00:00
|
|
|
/* Okay, so at the moment we're following this state for how to
|
|
|
|
* store the lock data:
|
|
|
|
*
|
|
|
|
* byte 0 - 0x62
|
|
|
|
* byte 1 - 0x30
|
|
|
|
* bytes 2-12 - program name which created the lock
|
|
|
|
* bytes 24,25 - little endian store of creator program's PID
|
|
|
|
* (b24 = 256^0 column, b25 = 256^1 column)
|
|
|
|
* bytes 28-44 - username of who created the lock
|
|
|
|
* bytes 68-100 - hostname of where the lock was created
|
|
|
|
* bytes 108-876 - filename the lock is for
|
|
|
|
* byte 1007 - 0x55 if file is modified
|
|
|
|
*
|
|
|
|
* Looks like VIM also stores undo state in this file, so we're
|
|
|
|
* gonna have to figure out how to slap a 'OMG don't use recover on
|
|
|
|
* our lockfile' message in here...
|
|
|
|
*
|
|
|
|
* This is likely very wrong, so this is a WIP. */
|
2015-02-01 09:39:27 +00:00
|
|
|
memset(lockdata, 0, lockdatalen);
|
2013-01-01 03:24:39 +00:00
|
|
|
lockdata[0] = 0x62;
|
|
|
|
lockdata[1] = 0x30;
|
|
|
|
lockdata[24] = mypid % 256;
|
|
|
|
lockdata[25] = mypid / 256;
|
2015-02-01 10:07:08 +00:00
|
|
|
snprintf(&lockdata[2], 11, "nano %s", VERSION);
|
2013-01-01 03:24:39 +00:00
|
|
|
strncpy(&lockdata[28], mypwuid->pw_name, 16);
|
|
|
|
strncpy(&lockdata[68], myhostname, 31);
|
|
|
|
strncpy(&lockdata[108], origfilename, 768);
|
2013-01-03 03:36:20 +00:00
|
|
|
if (modified == TRUE)
|
2015-06-27 15:10:58 +00:00
|
|
|
lockdata[1007] = 0x55;
|
2013-01-01 03:24:39 +00:00
|
|
|
|
|
|
|
wroteamt = fwrite(lockdata, sizeof(char), lockdatalen, filestream);
|
|
|
|
if (wroteamt < lockdatalen) {
|
2015-06-27 15:10:58 +00:00
|
|
|
statusbar(_("Error writing lock file %s: %s"),
|
|
|
|
lockfilename, ferror(filestream));
|
2015-08-03 08:32:52 +00:00
|
|
|
goto free_and_fail;
|
2013-01-01 03:24:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2014-06-09 15:08:59 +00:00
|
|
|
fprintf(stderr, "In write_lockfile(), write successful (wrote %lu bytes)\n", (unsigned long)wroteamt);
|
2014-03-17 14:15:57 +00:00
|
|
|
#endif
|
2013-01-01 03:24:39 +00:00
|
|
|
|
|
|
|
if (fclose(filestream) == EOF) {
|
2015-06-27 15:10:58 +00:00
|
|
|
statusbar(_("Error writing lock file %s: %s"),
|
|
|
|
lockfilename, strerror(errno));
|
2015-08-03 08:32:52 +00:00
|
|
|
goto free_and_fail;
|
2013-01-01 03:24:39 +00:00
|
|
|
}
|
|
|
|
|
2015-07-10 15:54:06 +00:00
|
|
|
openfile->lock_filename = (char *) lockfilename;
|
2013-01-01 03:24:39 +00:00
|
|
|
|
2015-08-03 08:32:52 +00:00
|
|
|
free(lockdata);
|
2013-01-01 03:24:39 +00:00
|
|
|
return 1;
|
2015-08-03 08:32:52 +00:00
|
|
|
|
|
|
|
free_and_fail:
|
|
|
|
free(lockdata);
|
|
|
|
return -1;
|
2013-01-01 03:24:39 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 12:35:18 +00:00
|
|
|
/* Less exciting, delete the lockfile. Return -1 if unsuccessful and
|
|
|
|
* complain on the statusbar, 1 otherwise. */
|
2013-01-01 03:24:39 +00:00
|
|
|
int delete_lockfile(const char *lockfilename)
|
|
|
|
{
|
|
|
|
if (unlink(lockfilename) < 0 && errno != ENOENT) {
|
2015-01-20 06:15:34 +00:00
|
|
|
statusbar(_("Error deleting lock file %s: %s"), lockfilename,
|
|
|
|
strerror(errno));
|
2015-06-27 15:10:58 +00:00
|
|
|
return -1;
|
2013-01-01 03:24:39 +00:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-04-08 12:35:18 +00:00
|
|
|
/* Deal with lockfiles. Return -1 on refusing to override the lockfile,
|
|
|
|
* and 1 on successfully creating it; 0 means we were not successful in
|
|
|
|
* creating the lockfile but we should continue to load the file and
|
|
|
|
* complain to the user. */
|
2013-01-01 03:24:39 +00:00
|
|
|
int do_lockfile(const char *filename)
|
|
|
|
{
|
2015-11-10 15:09:36 +00:00
|
|
|
char *namecopy1 = (char *) mallocstrcpy(NULL, filename);
|
|
|
|
char *namecopy2 = (char *) mallocstrcpy(NULL, filename);
|
2015-07-10 15:57:49 +00:00
|
|
|
size_t locknamesize = strlen(filename) + strlen(locking_prefix)
|
2014-06-04 16:30:11 +00:00
|
|
|
+ strlen(locking_suffix) + 3;
|
2015-07-10 15:57:49 +00:00
|
|
|
char *lockfilename = charalloc(locknamesize);
|
2015-02-01 09:48:50 +00:00
|
|
|
static char lockprog[11], lockuser[17];
|
2013-01-01 03:24:39 +00:00
|
|
|
struct stat fileinfo;
|
2016-01-29 16:58:02 +00:00
|
|
|
int lockfd, lockpid, retval = -1;
|
2013-01-01 03:24:39 +00:00
|
|
|
|
2015-11-10 15:09:36 +00:00
|
|
|
snprintf(lockfilename, locknamesize, "%s/%s%s%s", dirname(namecopy1),
|
|
|
|
locking_prefix, basename(namecopy2), locking_suffix);
|
|
|
|
free(namecopy1);
|
|
|
|
free(namecopy2);
|
2013-01-01 03:24:39 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "lock file name is %s\n", lockfilename);
|
2014-03-17 14:15:57 +00:00
|
|
|
#endif
|
2013-01-01 03:24:39 +00:00
|
|
|
if (stat(lockfilename, &fileinfo) != -1) {
|
2015-06-27 15:10:58 +00:00
|
|
|
ssize_t readtot = 0;
|
|
|
|
ssize_t readamt = 0;
|
2016-01-29 16:58:02 +00:00
|
|
|
char *lockbuf, *promptstr;
|
2015-06-27 15:10:58 +00:00
|
|
|
int ans;
|
2016-01-29 16:58:02 +00:00
|
|
|
|
2015-06-27 15:10:58 +00:00
|
|
|
if ((lockfd = open(lockfilename, O_RDONLY)) < 0) {
|
|
|
|
statusbar(_("Error opening lock file %s: %s"),
|
|
|
|
lockfilename, strerror(errno));
|
2016-01-29 16:58:02 +00:00
|
|
|
goto free_the_name;
|
2015-06-27 15:10:58 +00:00
|
|
|
}
|
2016-01-29 16:58:02 +00:00
|
|
|
|
|
|
|
lockbuf = charalloc(8192);
|
2015-06-27 15:10:58 +00:00
|
|
|
do {
|
|
|
|
readamt = read(lockfd, &lockbuf[readtot], BUFSIZ);
|
|
|
|
readtot += readamt;
|
|
|
|
} while (readtot < 8192 && readamt > 0);
|
|
|
|
|
|
|
|
if (readtot < 48) {
|
|
|
|
statusbar(_("Error reading lock file %s: Not enough data read"),
|
|
|
|
lockfilename);
|
2016-01-29 16:58:02 +00:00
|
|
|
free(lockbuf);
|
|
|
|
goto free_the_name;
|
2015-06-27 15:10:58 +00:00
|
|
|
}
|
2016-01-29 16:58:02 +00:00
|
|
|
|
2015-06-27 15:10:58 +00:00
|
|
|
strncpy(lockprog, &lockbuf[2], 10);
|
|
|
|
lockpid = (unsigned char)lockbuf[25] * 256 + (unsigned char)lockbuf[24];
|
|
|
|
strncpy(lockuser, &lockbuf[28], 16);
|
2016-01-29 16:58:02 +00:00
|
|
|
free(lockbuf);
|
|
|
|
|
2013-01-01 03:24:39 +00:00
|
|
|
#ifdef DEBUG
|
2015-06-27 15:10:58 +00:00
|
|
|
fprintf(stderr, "lockpid = %d\n", lockpid);
|
|
|
|
fprintf(stderr, "program name which created this lock file should be %s\n", lockprog);
|
|
|
|
fprintf(stderr, "user which created this lock file should be %s\n", lockuser);
|
2014-03-17 14:15:57 +00:00
|
|
|
#endif
|
2016-01-29 16:58:02 +00:00
|
|
|
promptstr = charalloc(128);
|
2015-02-15 16:28:08 +00:00
|
|
|
/* TRANSLATORS: The second %s is the name of the user, the third that of the editor. */
|
|
|
|
sprintf(promptstr, _("File %s is being edited (by %s with %s, PID %d); continue?"),
|
2015-06-27 15:10:58 +00:00
|
|
|
filename, lockuser, lockprog, lockpid);
|
|
|
|
ans = do_yesno_prompt(FALSE, promptstr);
|
2016-01-29 16:58:02 +00:00
|
|
|
free(promptstr);
|
|
|
|
|
2015-06-27 15:10:58 +00:00
|
|
|
if (ans < 1) {
|
|
|
|
blank_statusbar();
|
2016-01-29 16:58:02 +00:00
|
|
|
goto free_the_name;
|
2015-06-27 15:10:58 +00:00
|
|
|
}
|
2013-01-01 03:24:39 +00:00
|
|
|
}
|
2016-01-29 16:58:02 +00:00
|
|
|
|
|
|
|
retval = write_lockfile(lockfilename, filename, FALSE);
|
|
|
|
|
|
|
|
free_the_name:
|
|
|
|
if (retval < 1)
|
|
|
|
free(lockfilename);
|
|
|
|
|
|
|
|
return retval;
|
2013-01-01 03:24:39 +00:00
|
|
|
}
|
2016-02-09 20:53:11 +00:00
|
|
|
|
|
|
|
/* Perform a stat call on the given filename, allocating a stat struct
|
|
|
|
* if necessary. On success, *pstat points to the stat's result. On
|
|
|
|
* failure, *pstat is freed and made NULL. */
|
|
|
|
void stat_with_alloc(const char *filename, struct stat **pstat)
|
|
|
|
{
|
|
|
|
if (*pstat == NULL)
|
|
|
|
*pstat = (struct stat *)nmalloc(sizeof(struct stat));
|
|
|
|
|
|
|
|
if (stat(filename, *pstat) != 0) {
|
|
|
|
free(*pstat);
|
|
|
|
*pstat = NULL;
|
|
|
|
}
|
|
|
|
}
|
2014-03-17 14:15:57 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2013-01-01 03:24:39 +00:00
|
|
|
|
2005-07-13 20:18:46 +00:00
|
|
|
/* If it's not "", filename is a file to open. We make a new buffer, if
|
|
|
|
* necessary, and then open and read the file, if applicable. */
|
2015-12-30 10:11:20 +00:00
|
|
|
bool open_buffer(const char *filename, bool undoable)
|
2005-07-08 02:47:05 +00:00
|
|
|
{
|
2015-01-20 06:15:34 +00:00
|
|
|
bool quiet = FALSE;
|
2005-07-08 20:09:16 +00:00
|
|
|
bool new_buffer = (openfile == NULL
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2005-07-08 20:09:16 +00:00
|
|
|
|| ISSET(MULTIBUFFER)
|
2002-12-22 16:30:00 +00:00
|
|
|
#endif
|
2005-07-08 20:09:16 +00:00
|
|
|
);
|
|
|
|
/* Whether we load into this buffer or a new one. */
|
|
|
|
FILE *f;
|
|
|
|
int rc;
|
|
|
|
/* rc == -2 means that we have a new file. -1 means that the
|
|
|
|
* open() failed. 0 means that the open() succeeded. */
|
2002-12-22 16:30:00 +00:00
|
|
|
|
2005-07-08 21:12:39 +00:00
|
|
|
assert(filename != NULL);
|
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
|
|
|
if (check_operating_dir(filename, FALSE)) {
|
|
|
|
statusbar(_("Can't insert file from outside of %s"),
|
|
|
|
operating_dir);
|
2015-12-30 10:11:20 +00:00
|
|
|
return FALSE;
|
2005-07-08 20:09:16 +00:00
|
|
|
}
|
|
|
|
#endif
|
2005-07-08 02:47:05 +00:00
|
|
|
|
2015-07-17 20:40:44 +00:00
|
|
|
/* When the specified filename is not empty, and the thing exists,
|
|
|
|
* verify that it is a normal file. */
|
|
|
|
if (strcmp(filename, "") != 0) {
|
|
|
|
struct stat fileinfo;
|
|
|
|
|
|
|
|
if (stat(filename, &fileinfo) == 0 && !S_ISREG(fileinfo.st_mode)) {
|
|
|
|
if (S_ISDIR(fileinfo.st_mode))
|
|
|
|
statusbar(_("\"%s\" is a directory"), filename);
|
|
|
|
else
|
|
|
|
statusbar(_("\"%s\" is not a normal file"), filename);
|
|
|
|
beep();
|
2015-12-30 10:11:20 +00:00
|
|
|
return FALSE;
|
2015-07-17 20:40:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-10 17:25:51 +00:00
|
|
|
/* If we're going to load into a new buffer, first create the new
|
2016-01-20 15:33:41 +00:00
|
|
|
* buffer and (if possible) lock the corresponding file. */
|
2015-01-14 02:36:30 +00:00
|
|
|
if (new_buffer) {
|
2005-07-08 20:09:16 +00:00
|
|
|
make_new_buffer();
|
2005-07-08 02:47:05 +00:00
|
|
|
|
2016-01-20 15:56:40 +00:00
|
|
|
if (!has_valid_path(filename))
|
|
|
|
quiet = TRUE;
|
2015-01-14 02:36:30 +00:00
|
|
|
#ifndef NANO_TINY
|
2016-01-20 15:56:40 +00:00
|
|
|
else {
|
2016-01-20 15:33:41 +00:00
|
|
|
if (ISSET(LOCKING) && filename[0] != '\0') {
|
|
|
|
int lockstatus = do_lockfile(filename);
|
|
|
|
if (lockstatus < 0) {
|
2015-01-20 06:15:34 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2016-01-20 15:33:41 +00:00
|
|
|
if (openfile->next) {
|
|
|
|
close_buffer(TRUE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2015-01-20 06:15:34 +00:00
|
|
|
#endif
|
2016-01-20 15:33:41 +00:00
|
|
|
} else if (lockstatus == 0)
|
|
|
|
quiet = TRUE;
|
2015-01-14 02:36:30 +00:00
|
|
|
}
|
2015-06-27 15:10:58 +00:00
|
|
|
}
|
2016-01-20 15:33:41 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2015-01-14 02:36:30 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 18:59:30 +00:00
|
|
|
/* If the filename isn't blank, and we are not in NOREAD_MODE,
|
|
|
|
* open the file. Otherwise, treat it as a new file. */
|
|
|
|
rc = (filename[0] != '\0' && !ISSET(NOREAD_MODE)) ?
|
2015-01-20 06:15:34 +00:00
|
|
|
open_file(filename, new_buffer, quiet, &f) : -2;
|
2013-01-01 03:24:39 +00:00
|
|
|
|
2006-11-27 05:25:48 +00:00
|
|
|
/* If we have a file, and we're loading into a new buffer, update
|
|
|
|
* the filename. */
|
2005-07-08 20:09:16 +00:00
|
|
|
if (rc != -1 && new_buffer)
|
|
|
|
openfile->filename = mallocstrcpy(openfile->filename, filename);
|
2005-01-27 20:49:07 +00:00
|
|
|
|
2005-07-15 19:37:32 +00:00
|
|
|
/* If we have a non-new file, read it in. Then, if the buffer has
|
|
|
|
* no stat, update the stat, if applicable. */
|
2009-09-03 05:45:13 +00:00
|
|
|
if (rc > 0) {
|
2009-12-09 16:51:43 +00:00
|
|
|
read_file(f, rc, filename, undoable, new_buffer);
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2016-02-09 20:53:11 +00:00
|
|
|
if (openfile->current_stat == NULL)
|
|
|
|
stat_with_alloc(filename, &openfile->current_stat);
|
2001-10-14 19:05:10 +00:00
|
|
|
#endif
|
2005-07-08 20:09:16 +00:00
|
|
|
}
|
|
|
|
|
2006-11-27 05:25:48 +00:00
|
|
|
/* If we have a file, and we're loading into a new buffer, move back
|
2005-11-05 17:20:39 +00:00
|
|
|
* to the beginning of the first line of the buffer. */
|
|
|
|
if (rc != -1 && new_buffer) {
|
2005-07-09 04:42:47 +00:00
|
|
|
openfile->current = openfile->fileage;
|
2005-11-05 17:20:39 +00:00
|
|
|
openfile->current_x = 0;
|
|
|
|
openfile->placewewant = 0;
|
|
|
|
}
|
2005-07-13 20:18:46 +00:00
|
|
|
|
2014-04-04 11:59:03 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2005-07-15 00:36:49 +00:00
|
|
|
/* If we're loading into a new buffer, update the colors to account
|
|
|
|
* for it, if applicable. */
|
2005-07-13 20:18:46 +00:00
|
|
|
if (new_buffer)
|
|
|
|
color_update();
|
|
|
|
#endif
|
2015-12-30 10:11:20 +00:00
|
|
|
return TRUE;
|
2005-07-09 04:42:47 +00:00
|
|
|
}
|
2003-09-23 04:25:05 +00:00
|
|
|
|
2005-11-08 19:15:58 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2015-06-27 15:03:45 +00:00
|
|
|
/* Blow away the text of the current buffer, and then open and read
|
|
|
|
* the specified file into its place. */
|
2005-11-08 19:15:58 +00:00
|
|
|
void replace_buffer(const char *filename)
|
|
|
|
{
|
|
|
|
FILE *f;
|
2015-06-27 15:03:45 +00:00
|
|
|
int descriptor;
|
2005-11-08 19:15:58 +00:00
|
|
|
|
2015-06-27 15:03:45 +00:00
|
|
|
assert(filename != NULL && filename[0] != '\0');
|
2005-11-08 19:15:58 +00:00
|
|
|
|
2015-06-27 15:03:45 +00:00
|
|
|
/* Open the file quietly. */
|
|
|
|
descriptor = open_file(filename, TRUE, FALSE, &f);
|
2005-11-08 19:15:58 +00:00
|
|
|
|
|
|
|
/* Reinitialize the text of the current buffer. */
|
|
|
|
free_filestruct(openfile->fileage);
|
|
|
|
initialize_buffer_text();
|
|
|
|
|
2015-06-27 15:03:45 +00:00
|
|
|
/* If opening the file succeeded, read it in. */
|
|
|
|
if (descriptor > 0)
|
|
|
|
read_file(f, descriptor, filename, FALSE, TRUE);
|
2015-07-13 18:04:05 +00:00
|
|
|
|
|
|
|
/* Put current at a place that is certain to exist. */
|
|
|
|
openfile->current = openfile->fileage;
|
2005-11-08 19:15:58 +00:00
|
|
|
}
|
|
|
|
#endif /* !DISABLE_SPELLER */
|
|
|
|
|
2005-07-09 04:42:47 +00:00
|
|
|
/* Update the screen to account for the current buffer. */
|
2005-07-12 23:06:22 +00:00
|
|
|
void display_buffer(void)
|
2005-07-09 04:42:47 +00:00
|
|
|
{
|
2005-07-14 23:06:22 +00:00
|
|
|
/* Update the titlebar, since the filename may have changed. */
|
2005-07-12 23:25:00 +00:00
|
|
|
titlebar(NULL);
|
2005-07-14 23:06:22 +00:00
|
|
|
|
2014-04-04 11:59:03 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2015-12-20 21:10:41 +00:00
|
|
|
/* Make sure we're using the buffer's associated colors. */
|
2005-07-15 00:36:49 +00:00
|
|
|
color_init();
|
2015-12-20 21:10:41 +00:00
|
|
|
|
|
|
|
/* If there are multiline coloring regexes, and there is no
|
|
|
|
* multiline cache data yet, precalculate it now. */
|
|
|
|
if (openfile->syntax && openfile->syntax->nmultis > 0 &&
|
|
|
|
openfile->fileage->multidata == NULL)
|
|
|
|
precalc_multicolorinfo();
|
2005-07-14 23:06:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Update the edit window. */
|
2005-07-12 23:25:00 +00:00
|
|
|
edit_refresh();
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2015-12-18 20:44:01 +00:00
|
|
|
/* Switch to a neighbouring file buffer; to the next if to_next is TRUE;
|
|
|
|
* otherwise, to the previous one. */
|
|
|
|
void switch_to_prevnext_buffer(bool to_next, bool quiet)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2005-07-08 19:57:25 +00:00
|
|
|
assert(openfile != NULL);
|
2005-01-27 20:49:07 +00:00
|
|
|
|
2015-12-18 20:44:01 +00:00
|
|
|
/* If only one file buffer is open, say so and get out. */
|
2005-07-08 19:57:25 +00:00
|
|
|
if (openfile == openfile->next) {
|
2015-12-18 20:44:01 +00:00
|
|
|
if (!quiet)
|
2015-01-20 06:15:34 +00:00
|
|
|
statusbar(_("No more open file buffers"));
|
2005-07-08 02:47:05 +00:00
|
|
|
return;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2005-07-08 02:47:05 +00:00
|
|
|
|
2015-12-18 20:44:01 +00:00
|
|
|
/* Switch to the next or previous file buffer. */
|
|
|
|
openfile = to_next ? openfile->next : openfile->prev;
|
2005-07-08 02:47:05 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2005-07-08 19:57:25 +00:00
|
|
|
fprintf(stderr, "filename is %s\n", openfile->filename);
|
2005-07-08 02:47:05 +00:00
|
|
|
#endif
|
|
|
|
|
2005-07-09 04:42:47 +00:00
|
|
|
/* Update the screen to account for the current buffer. */
|
2005-07-12 23:06:22 +00:00
|
|
|
display_buffer();
|
2005-07-09 04:42:47 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
/* Indicate the switch on the statusbar. */
|
2015-12-18 20:44:01 +00:00
|
|
|
if (!quiet)
|
2015-01-20 06:15:34 +00:00
|
|
|
statusbar(_("Switched to %s"),
|
2015-06-27 15:10:58 +00:00
|
|
|
((openfile->filename[0] == '\0') ?
|
|
|
|
_("New Buffer") : openfile->filename));
|
2005-07-08 02:47:05 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2005-07-08 20:09:16 +00:00
|
|
|
dump_filestruct(openfile->current);
|
2005-07-08 02:47:05 +00:00
|
|
|
#endif
|
2014-02-24 10:18:15 +00:00
|
|
|
display_main_list();
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2005-07-21 05:56:42 +00:00
|
|
|
/* Switch to the previous entry in the openfile filebuffer. */
|
2005-07-08 20:09:16 +00:00
|
|
|
void switch_to_prev_buffer_void(void)
|
2002-02-22 04:30:50 +00:00
|
|
|
{
|
2015-01-20 06:15:34 +00:00
|
|
|
switch_to_prevnext_buffer(FALSE, FALSE);
|
2005-07-08 02:47:05 +00:00
|
|
|
}
|
2005-05-29 02:22:55 +00:00
|
|
|
|
2005-07-21 05:56:42 +00:00
|
|
|
/* Switch to the next entry in the openfile filebuffer. */
|
2005-07-08 20:09:16 +00:00
|
|
|
void switch_to_next_buffer_void(void)
|
2005-07-08 02:47:05 +00:00
|
|
|
{
|
2015-01-20 06:15:34 +00:00
|
|
|
switch_to_prevnext_buffer(TRUE, FALSE);
|
2005-07-08 02:47:05 +00:00
|
|
|
}
|
2005-05-29 02:22:55 +00:00
|
|
|
|
2005-07-21 05:56:42 +00:00
|
|
|
/* Delete an entry from the openfile filebuffer, and switch to the one
|
2005-07-08 20:09:16 +00:00
|
|
|
* after it. Return TRUE on success, or FALSE if there are no more open
|
2015-01-20 06:15:34 +00:00
|
|
|
* file buffers.
|
|
|
|
* quiet - should we print messages switching bufers
|
|
|
|
*/
|
|
|
|
bool close_buffer(bool quiet)
|
2005-07-08 02:47:05 +00:00
|
|
|
{
|
2005-07-08 19:57:25 +00:00
|
|
|
assert(openfile != NULL);
|
2002-02-22 04:30:50 +00:00
|
|
|
|
2005-07-21 05:56:42 +00:00
|
|
|
/* If only one file buffer is open, get out. */
|
2005-07-08 19:57:25 +00:00
|
|
|
if (openfile == openfile->next)
|
2005-07-08 02:47:05 +00:00
|
|
|
return FALSE;
|
2002-02-22 04:30:50 +00:00
|
|
|
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2016-01-29 20:43:54 +00:00
|
|
|
if (ISSET(POS_HISTORY))
|
|
|
|
update_poshistory(openfile->filename,
|
|
|
|
openfile->current->lineno, xplustabs() + 1);
|
2014-02-22 16:26:30 +00:00
|
|
|
#endif
|
2011-02-18 07:30:57 +00:00
|
|
|
|
2005-07-21 05:56:42 +00:00
|
|
|
/* Switch to the next file buffer. */
|
2015-06-27 15:10:58 +00:00
|
|
|
switch_to_prevnext_buffer(TRUE, quiet);
|
2002-02-22 04:30:50 +00:00
|
|
|
|
2005-07-21 05:56:42 +00:00
|
|
|
/* Close the file buffer we had open before. */
|
2005-07-08 19:57:25 +00:00
|
|
|
unlink_opennode(openfile->prev);
|
2002-02-22 04:30:50 +00:00
|
|
|
|
2014-04-26 19:01:18 +00:00
|
|
|
/* If only one buffer is open now, show Exit in the help lines. */
|
|
|
|
if (openfile == openfile->next)
|
|
|
|
exitfunc->desc = exit_tag;
|
2005-04-14 03:52:28 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
return TRUE;
|
2002-02-22 04:30:50 +00:00
|
|
|
}
|
2014-04-03 20:23:07 +00:00
|
|
|
#endif /* !DISABLE_MULTIBUFFER */
|
2002-02-22 04:30:50 +00:00
|
|
|
|
2014-04-08 12:35:18 +00:00
|
|
|
/* A bit of a copy and paste from open_file(), is_file_writable() just
|
|
|
|
* checks whether the file is appendable as a quick permissions check,
|
|
|
|
* and we tend to err on the side of permissiveness (reporting TRUE when
|
|
|
|
* it might be wrong) to not fluster users editing on odd filesystems by
|
|
|
|
* printing incorrect warnings. */
|
2009-11-03 18:47:39 +00:00
|
|
|
int is_file_writable(const char *filename)
|
|
|
|
{
|
|
|
|
struct stat fileinfo, fileinfo2;
|
|
|
|
int fd;
|
|
|
|
FILE *f;
|
|
|
|
char *full_filename;
|
|
|
|
bool ans = TRUE;
|
|
|
|
|
|
|
|
if (ISSET(VIEW_MODE))
|
|
|
|
return TRUE;
|
|
|
|
|
2009-12-20 05:55:41 +00:00
|
|
|
assert(filename != NULL);
|
2009-11-03 18:47:39 +00:00
|
|
|
|
|
|
|
/* Get the specified file's full path. */
|
|
|
|
full_filename = get_full_path(filename);
|
|
|
|
|
2015-07-10 17:25:51 +00:00
|
|
|
/* Okay, if we can't stat the absolute path due to some component's
|
|
|
|
* permissions, just try the relative one. */
|
2015-06-27 15:10:58 +00:00
|
|
|
if (full_filename == NULL ||
|
|
|
|
(stat(full_filename, &fileinfo) == -1 && stat(filename, &fileinfo2) != -1))
|
|
|
|
full_filename = mallocstrcpy(NULL, filename);
|
2009-11-03 18:47:39 +00:00
|
|
|
|
|
|
|
if ((fd = open(full_filename, O_WRONLY | O_CREAT | O_APPEND, S_IRUSR |
|
2015-06-27 15:10:58 +00:00
|
|
|
S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)) == -1 ||
|
|
|
|
(f = fdopen(fd, "a")) == NULL)
|
2009-11-03 18:47:39 +00:00
|
|
|
ans = FALSE;
|
|
|
|
else
|
2015-06-27 15:10:58 +00:00
|
|
|
fclose(f);
|
2009-11-03 18:47:39 +00:00
|
|
|
close(fd);
|
|
|
|
|
|
|
|
free(full_filename);
|
|
|
|
return ans;
|
|
|
|
}
|
|
|
|
|
2015-12-18 19:18:23 +00:00
|
|
|
/* Make a new line of text from the given buf, which is of length buf_len.
|
|
|
|
* Then attach this line after prevnode. */
|
|
|
|
filestruct *read_line(char *buf, size_t buf_len, filestruct *prevnode)
|
2004-09-05 21:40:31 +00:00
|
|
|
{
|
2016-01-22 16:56:04 +00:00
|
|
|
filestruct *freshline = (filestruct *)nmalloc(sizeof(filestruct));
|
2001-05-21 12:56:25 +00:00
|
|
|
|
2015-07-10 17:25:51 +00:00
|
|
|
/* Convert nulls to newlines. buf_len is the string's real length. */
|
2005-07-08 02:47:05 +00:00
|
|
|
unsunder(buf, buf_len);
|
2004-08-27 21:02:38 +00:00
|
|
|
|
2005-07-21 05:56:42 +00:00
|
|
|
assert(openfile->fileage != NULL && strlen(buf) == buf_len);
|
2001-05-21 12:56:25 +00:00
|
|
|
|
2016-01-22 16:56:04 +00:00
|
|
|
freshline->data = mallocstrcpy(NULL, buf);
|
2004-09-05 21:40:31 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 02:47:05 +00:00
|
|
|
/* If it's a DOS file ("\r\n"), and file conversion isn't disabled,
|
2016-01-22 16:56:04 +00:00
|
|
|
* strip the '\r' part from the data. */
|
2005-07-08 02:47:05 +00:00
|
|
|
if (!ISSET(NO_CONVERT) && buf_len > 0 && buf[buf_len - 1] == '\r')
|
2016-01-22 16:56:04 +00:00
|
|
|
freshline->data[buf_len - 1] = '\0';
|
2002-09-03 22:58:40 +00:00
|
|
|
#endif
|
2004-09-05 21:40:31 +00:00
|
|
|
|
2014-04-04 11:59:03 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2016-01-22 16:56:04 +00:00
|
|
|
freshline->multidata = NULL;
|
2009-01-25 07:25:17 +00:00
|
|
|
#endif
|
|
|
|
|
2016-01-22 16:56:04 +00:00
|
|
|
freshline->prev = prevnode;
|
2015-12-18 19:18:23 +00:00
|
|
|
|
|
|
|
if (prevnode == NULL) {
|
2015-07-10 17:42:32 +00:00
|
|
|
/* Special case: we're inserting into the first line. */
|
2016-01-22 16:56:04 +00:00
|
|
|
freshline->next = openfile->fileage;
|
|
|
|
openfile->fileage = freshline;
|
|
|
|
freshline->lineno = 1;
|
2015-07-10 17:42:32 +00:00
|
|
|
/* Make sure that our edit window stays on the first line. */
|
2016-01-22 16:56:04 +00:00
|
|
|
openfile->edittop = freshline;
|
2005-07-08 02:47:05 +00:00
|
|
|
} else {
|
2016-01-22 16:56:04 +00:00
|
|
|
prevnode->next = freshline;
|
|
|
|
freshline->next = NULL;
|
|
|
|
freshline->lineno = prevnode->lineno + 1;
|
2004-09-05 21:40:31 +00:00
|
|
|
}
|
|
|
|
|
2016-01-22 16:56:04 +00:00
|
|
|
return freshline;
|
2005-07-08 02:47:05 +00:00
|
|
|
}
|
2004-11-05 16:24:35 +00:00
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Read an open file into the current buffer. f should be set to the
|
2008-08-03 04:48:05 +00:00
|
|
|
* open file, and filename should be set to the name of the file.
|
2014-04-08 12:35:18 +00:00
|
|
|
* undoable means do we want to create undo records to try and undo
|
|
|
|
* this. Will also attempt to check file writability if fd > 0 and
|
|
|
|
* checkwritable == TRUE. */
|
2009-12-09 16:51:43 +00:00
|
|
|
void read_file(FILE *f, int fd, const char *filename, bool undoable, bool checkwritable)
|
2005-07-08 02:47:05 +00:00
|
|
|
{
|
|
|
|
size_t num_lines = 0;
|
|
|
|
/* The number of lines in the file. */
|
|
|
|
size_t len = 0;
|
|
|
|
/* The length of the current line of the file. */
|
|
|
|
size_t i = 0;
|
|
|
|
/* The position in the current line of the file. */
|
|
|
|
size_t bufx = MAX_BUF_SIZE;
|
|
|
|
/* The size of each chunk of the file that we read. */
|
|
|
|
char input = '\0';
|
|
|
|
/* The current input character. */
|
|
|
|
char *buf;
|
|
|
|
/* The buffer where we store chunks of the file. */
|
2015-12-18 19:18:23 +00:00
|
|
|
filestruct *fileptr = openfile->current->prev;
|
|
|
|
/* The line after which to start inserting. */
|
2005-07-08 02:47:05 +00:00
|
|
|
int input_int;
|
|
|
|
/* The current value we read from the file, whether an input
|
|
|
|
* character or EOF. */
|
2009-09-03 05:45:13 +00:00
|
|
|
bool writable = TRUE;
|
|
|
|
/* Is the file writable (if we care) */
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 02:47:05 +00:00
|
|
|
int format = 0;
|
|
|
|
/* 0 = *nix, 1 = DOS, 2 = Mac, 3 = both DOS and Mac. */
|
2004-10-01 18:34:30 +00:00
|
|
|
#endif
|
2002-09-03 22:58:40 +00:00
|
|
|
|
2005-07-21 05:56:42 +00:00
|
|
|
assert(openfile->fileage != NULL && openfile->current != NULL);
|
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
buf = charalloc(bufx);
|
|
|
|
buf[0] = '\0';
|
2004-09-05 21:40:31 +00:00
|
|
|
|
2008-08-03 04:48:05 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
if (undoable)
|
|
|
|
add_undo(INSERT);
|
|
|
|
#endif
|
|
|
|
|
2005-07-21 05:56:42 +00:00
|
|
|
/* Read the entire file into the filestruct. */
|
2005-07-08 02:47:05 +00:00
|
|
|
while ((input_int = getc(f)) != EOF) {
|
|
|
|
input = (char)input_int;
|
|
|
|
|
|
|
|
/* If it's a *nix file ("\n") or a DOS file ("\r\n"), and file
|
|
|
|
* conversion isn't disabled, handle it! */
|
|
|
|
if (input == '\n') {
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2007-11-17 20:34:38 +00:00
|
|
|
/* If it's a DOS file or a DOS/Mac file ('\r' before '\n' on
|
|
|
|
* the first line if we think it's a *nix file, or on any
|
|
|
|
* line otherwise), and file conversion isn't disabled,
|
|
|
|
* handle it! */
|
|
|
|
if (!ISSET(NO_CONVERT) && (num_lines == 0 || format != 0) &&
|
2015-08-29 20:14:57 +00:00
|
|
|
i > 0 && buf[i - 1] == '\r') {
|
2007-11-17 20:34:38 +00:00
|
|
|
if (format == 0 || format == 2)
|
|
|
|
format++;
|
|
|
|
}
|
2002-09-03 22:58:40 +00:00
|
|
|
#endif
|
2002-02-27 04:14:16 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Read in the line properly. */
|
2015-12-18 19:18:23 +00:00
|
|
|
fileptr = read_line(buf, len, fileptr);
|
2004-09-05 21:40:31 +00:00
|
|
|
|
2015-07-10 17:25:51 +00:00
|
|
|
/* Reset the line length in preparation for the next line. */
|
2005-07-08 02:47:05 +00:00
|
|
|
len = 0;
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
num_lines++;
|
|
|
|
buf[0] = '\0';
|
|
|
|
i = 0;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2007-11-17 20:34:38 +00:00
|
|
|
/* If it's a Mac file ('\r' without '\n' on the first line if we
|
|
|
|
* think it's a *nix file, or on any line otherwise), and file
|
|
|
|
* conversion isn't disabled, handle it! */
|
|
|
|
} else if (!ISSET(NO_CONVERT) && (num_lines == 0 ||
|
|
|
|
format != 0) && i > 0 && buf[i - 1] == '\r') {
|
2005-07-08 02:47:05 +00:00
|
|
|
/* If we currently think the file is a *nix file, set format
|
|
|
|
* to Mac. If we currently think the file is a DOS file,
|
|
|
|
* set format to both DOS and Mac. */
|
|
|
|
if (format == 0 || format == 1)
|
|
|
|
format += 2;
|
2005-03-30 23:52:02 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Read in the line properly. */
|
2015-12-18 19:18:23 +00:00
|
|
|
fileptr = read_line(buf, len, fileptr);
|
2004-10-05 20:11:31 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Reset the line length in preparation for the next line.
|
|
|
|
* Since we've already read in the next character, reset it
|
|
|
|
* to 1 instead of 0. */
|
|
|
|
len = 1;
|
2001-01-03 07:11:47 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
num_lines++;
|
|
|
|
buf[0] = input;
|
|
|
|
buf[1] = '\0';
|
|
|
|
i = 1;
|
2005-03-31 17:00:43 +00:00
|
|
|
#endif
|
2005-07-08 02:47:05 +00:00
|
|
|
} else {
|
|
|
|
/* Calculate the total length of the line. It might have
|
|
|
|
* nulls in it, so we can't just use strlen() here. */
|
|
|
|
len++;
|
2005-03-30 23:52:02 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Now we allocate a bigger buffer MAX_BUF_SIZE characters
|
|
|
|
* at a time. If we allocate a lot of space for one line,
|
|
|
|
* we may indeed have to use a buffer this big later on, so
|
|
|
|
* we don't decrease it at all. We do free it at the end,
|
|
|
|
* though. */
|
|
|
|
if (i >= bufx - 1) {
|
|
|
|
bufx += MAX_BUF_SIZE;
|
|
|
|
buf = charealloc(buf, bufx);
|
2004-11-07 18:09:41 +00:00
|
|
|
}
|
2005-07-08 02:47:05 +00:00
|
|
|
|
|
|
|
buf[i] = input;
|
|
|
|
buf[i + 1] = '\0';
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Perhaps this could use some better handling. */
|
|
|
|
if (ferror(f))
|
|
|
|
nperror(filename);
|
|
|
|
fclose(f);
|
2009-12-09 16:51:43 +00:00
|
|
|
if (fd > 0 && checkwritable) {
|
2009-11-10 03:44:12 +00:00
|
|
|
close(fd);
|
2009-09-03 05:45:13 +00:00
|
|
|
writable = is_file_writable(filename);
|
|
|
|
}
|
2004-11-05 15:25:53 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 02:47:05 +00:00
|
|
|
/* If file conversion isn't disabled and the last character in this
|
|
|
|
* file is '\r', read it in properly as a Mac format line. */
|
|
|
|
if (len == 0 && !ISSET(NO_CONVERT) && input == '\r') {
|
|
|
|
len = 1;
|
|
|
|
|
|
|
|
buf[0] = input;
|
|
|
|
buf[1] = '\0';
|
|
|
|
}
|
2004-11-07 18:09:41 +00:00
|
|
|
#endif
|
2004-11-05 15:25:53 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Did we not get a newline and still have stuff to do? */
|
|
|
|
if (len > 0) {
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 02:47:05 +00:00
|
|
|
/* If file conversion isn't disabled and the last character in
|
|
|
|
* this file is '\r', set format to Mac if we currently think
|
|
|
|
* the file is a *nix file, or to both DOS and Mac if we
|
|
|
|
* currently think the file is a DOS file. */
|
|
|
|
if (!ISSET(NO_CONVERT) && buf[len - 1] == '\r' &&
|
|
|
|
(format == 0 || format == 1))
|
|
|
|
format += 2;
|
2004-11-05 15:25:53 +00:00
|
|
|
#endif
|
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Read in the last line properly. */
|
2015-12-18 19:18:23 +00:00
|
|
|
fileptr = read_line(buf, len, fileptr);
|
2005-07-08 02:47:05 +00:00
|
|
|
num_lines++;
|
|
|
|
}
|
2004-11-15 21:49:21 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
free(buf);
|
2004-11-05 15:25:53 +00:00
|
|
|
|
2005-11-05 17:20:39 +00:00
|
|
|
/* Attach the file we got to the filestruct. If we got a file of
|
|
|
|
* zero bytes, don't do anything. */
|
2005-11-04 05:44:01 +00:00
|
|
|
if (num_lines > 0) {
|
2005-11-05 17:20:39 +00:00
|
|
|
/* If the file we got doesn't end in a newline, tack its last
|
|
|
|
* line onto the beginning of the line at current. */
|
|
|
|
if (len > 0) {
|
|
|
|
size_t current_len = strlen(openfile->current->data);
|
|
|
|
|
|
|
|
/* Adjust the current x-coordinate to compensate for the
|
|
|
|
* change in the current line. */
|
|
|
|
if (num_lines == 1)
|
|
|
|
openfile->current_x += len;
|
|
|
|
else
|
|
|
|
openfile->current_x = len;
|
|
|
|
|
2005-11-09 03:37:50 +00:00
|
|
|
/* Tack the text at fileptr onto the beginning of the text
|
|
|
|
* at current. */
|
2015-08-29 20:14:57 +00:00
|
|
|
openfile->current->data = charealloc(openfile->current->data,
|
|
|
|
len + current_len + 1);
|
|
|
|
charmove(openfile->current->data + len, openfile->current->data,
|
|
|
|
current_len + 1);
|
2005-11-05 17:20:39 +00:00
|
|
|
strncpy(openfile->current->data, fileptr->data, len);
|
|
|
|
|
|
|
|
/* Don't destroy fileage, edittop, or filebot! */
|
|
|
|
if (fileptr == openfile->fileage)
|
|
|
|
openfile->fileage = openfile->current;
|
|
|
|
if (fileptr == openfile->edittop)
|
|
|
|
openfile->edittop = openfile->current;
|
|
|
|
if (fileptr == openfile->filebot)
|
|
|
|
openfile->filebot = openfile->current;
|
|
|
|
|
2005-11-11 05:21:38 +00:00
|
|
|
/* Move fileptr back one line and blow away the old fileptr,
|
2005-11-05 17:20:39 +00:00
|
|
|
* since its text has been saved. */
|
|
|
|
fileptr = fileptr->prev;
|
2015-06-14 19:14:41 +00:00
|
|
|
if (fileptr != NULL)
|
|
|
|
free(fileptr->next);
|
2005-11-05 17:20:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Attach the line at current after the line at fileptr. */
|
|
|
|
if (fileptr != NULL) {
|
|
|
|
fileptr->next = openfile->current;
|
|
|
|
openfile->current->prev = fileptr;
|
|
|
|
}
|
|
|
|
|
2015-07-10 17:25:51 +00:00
|
|
|
/* Renumber, starting with the last line of the file we inserted. */
|
2005-11-04 05:44:01 +00:00
|
|
|
renumber(openfile->current);
|
2005-11-09 03:37:50 +00:00
|
|
|
}
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2015-08-29 20:14:57 +00:00
|
|
|
openfile->totsize += get_totsize(openfile->fileage, openfile->filebot);
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-11-05 17:35:44 +00:00
|
|
|
/* If the NO_NEWLINES flag isn't set, and text has been added to
|
2006-07-28 17:06:27 +00:00
|
|
|
* the magicline (i.e. a file that doesn't end in a newline has been
|
2005-11-05 17:35:44 +00:00
|
|
|
* inserted at the end of the current buffer), add a new magicline,
|
|
|
|
* and move the current line down to it. */
|
|
|
|
if (!ISSET(NO_NEWLINES) && openfile->filebot->data[0] != '\0') {
|
2005-11-05 17:20:39 +00:00
|
|
|
new_magicline();
|
|
|
|
openfile->current = openfile->filebot;
|
|
|
|
openfile->current_x = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the current place we want to the end of the last line of the
|
|
|
|
* file we inserted. */
|
|
|
|
openfile->placewewant = xplustabs();
|
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2008-08-03 04:48:05 +00:00
|
|
|
if (undoable)
|
|
|
|
update_undo(INSERT);
|
|
|
|
|
2009-09-03 05:45:13 +00:00
|
|
|
if (format == 3) {
|
|
|
|
if (writable)
|
|
|
|
statusbar(
|
2005-07-08 02:47:05 +00:00
|
|
|
P_("Read %lu line (Converted from DOS and Mac format)",
|
|
|
|
"Read %lu lines (Converted from DOS and Mac format)",
|
|
|
|
(unsigned long)num_lines), (unsigned long)num_lines);
|
2009-09-03 05:45:13 +00:00
|
|
|
else
|
|
|
|
statusbar(
|
|
|
|
P_("Read %lu line (Converted from DOS and Mac format - Warning: No write permission)",
|
|
|
|
"Read %lu lines (Converted from DOS and Mac format - Warning: No write permission)",
|
|
|
|
(unsigned long)num_lines), (unsigned long)num_lines);
|
|
|
|
} else if (format == 2) {
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->fmt = MAC_FILE;
|
2009-09-03 05:45:13 +00:00
|
|
|
if (writable)
|
|
|
|
statusbar(P_("Read %lu line (Converted from Mac format)",
|
2005-07-08 02:47:05 +00:00
|
|
|
"Read %lu lines (Converted from Mac format)",
|
|
|
|
(unsigned long)num_lines), (unsigned long)num_lines);
|
2009-09-03 05:45:13 +00:00
|
|
|
else
|
|
|
|
statusbar(P_("Read %lu line (Converted from Mac format - Warning: No write permission)",
|
|
|
|
"Read %lu lines (Converted from Mac format - Warning: No write permission)",
|
|
|
|
(unsigned long)num_lines), (unsigned long)num_lines);
|
2005-07-08 02:47:05 +00:00
|
|
|
} else if (format == 1) {
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->fmt = DOS_FILE;
|
2009-09-03 05:45:13 +00:00
|
|
|
if (writable)
|
|
|
|
statusbar(P_("Read %lu line (Converted from DOS format)",
|
2005-07-08 02:47:05 +00:00
|
|
|
"Read %lu lines (Converted from DOS format)",
|
|
|
|
(unsigned long)num_lines), (unsigned long)num_lines);
|
2009-09-03 05:45:13 +00:00
|
|
|
else
|
|
|
|
statusbar(P_("Read %lu line (Converted from DOS format - Warning: No write permission)",
|
|
|
|
"Read %lu lines (Converted from DOS format - Warning: No write permission)",
|
|
|
|
(unsigned long)num_lines), (unsigned long)num_lines);
|
2005-07-08 02:47:05 +00:00
|
|
|
} else
|
2001-07-11 02:08:33 +00:00
|
|
|
#endif
|
2009-09-03 05:45:13 +00:00
|
|
|
if (writable)
|
|
|
|
statusbar(P_("Read %lu line", "Read %lu lines",
|
|
|
|
(unsigned long)num_lines), (unsigned long)num_lines);
|
|
|
|
else
|
2015-07-12 19:31:08 +00:00
|
|
|
statusbar(P_("Read %lu line (Warning: No write permission)",
|
2009-09-03 05:45:13 +00:00
|
|
|
"Read %lu lines (Warning: No write permission)",
|
2005-07-08 02:47:05 +00:00
|
|
|
(unsigned long)num_lines), (unsigned long)num_lines);
|
2015-08-04 18:49:57 +00:00
|
|
|
|
2015-08-09 16:31:01 +00:00
|
|
|
#ifndef NANO_TINY
|
2015-08-04 18:49:57 +00:00
|
|
|
if (ISSET(MAKE_IT_UNIX))
|
|
|
|
openfile->fmt = NIX_FILE;
|
2015-08-09 16:31:01 +00:00
|
|
|
#endif
|
2005-07-08 02:47:05 +00:00
|
|
|
}
|
2002-05-11 03:04:44 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Open the file (and decide if it exists). If newfie is TRUE, display
|
|
|
|
* "New File" if the file is missing. Otherwise, say "[filename] not
|
|
|
|
* found".
|
|
|
|
*
|
2009-09-03 05:45:13 +00:00
|
|
|
* Return -2 if we say "New File", -1 if the file isn't opened, and the
|
2012-12-30 19:20:10 +00:00
|
|
|
* fd opened otherwise. The file might still have an error while reading
|
2009-09-03 05:45:13 +00:00
|
|
|
* with a 0 return value. *f is set to the opened file. */
|
2015-01-20 06:15:34 +00:00
|
|
|
int open_file(const char *filename, bool newfie, bool quiet, FILE **f)
|
2005-07-08 02:47:05 +00:00
|
|
|
{
|
2009-01-26 08:48:22 +00:00
|
|
|
struct stat fileinfo, fileinfo2;
|
2015-01-20 06:15:34 +00:00
|
|
|
int fd;
|
2007-04-18 18:22:13 +00:00
|
|
|
char *full_filename;
|
2005-07-08 02:47:05 +00:00
|
|
|
|
2005-07-08 21:12:39 +00:00
|
|
|
assert(filename != NULL && f != NULL);
|
2005-07-08 02:47:05 +00:00
|
|
|
|
2007-04-18 18:22:13 +00:00
|
|
|
/* Get the specified file's full path. */
|
|
|
|
full_filename = get_full_path(filename);
|
|
|
|
|
2009-01-26 08:48:22 +00:00
|
|
|
/* Okay, if we can't stat the path due to a component's
|
2015-06-27 15:10:58 +00:00
|
|
|
* permissions, just try the relative one. */
|
2015-08-29 20:14:57 +00:00
|
|
|
if (full_filename == NULL || (stat(full_filename, &fileinfo) == -1 &&
|
|
|
|
stat(filename, &fileinfo2) != -1))
|
2016-01-15 13:17:44 +00:00
|
|
|
full_filename = mallocstrcpy(full_filename, filename);
|
2007-04-18 18:22:13 +00:00
|
|
|
|
|
|
|
if (stat(full_filename, &fileinfo) == -1) {
|
2016-01-15 13:17:44 +00:00
|
|
|
/* All cases below return. */
|
|
|
|
free(full_filename);
|
|
|
|
|
2014-04-08 12:35:18 +00:00
|
|
|
/* Well, maybe we can open the file even if the OS says it's
|
|
|
|
* not there. */
|
2015-06-27 15:10:58 +00:00
|
|
|
if ((fd = open(filename, O_RDONLY)) != -1) {
|
2014-07-11 11:16:15 +00:00
|
|
|
if (!quiet)
|
|
|
|
statusbar(_("Reading File"));
|
2016-01-15 14:23:50 +00:00
|
|
|
return fd;
|
2009-01-26 08:48:22 +00:00
|
|
|
}
|
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
if (newfie) {
|
2016-01-20 15:56:40 +00:00
|
|
|
if (!quiet)
|
2014-07-11 11:16:15 +00:00
|
|
|
statusbar(_("New File"));
|
2005-07-08 02:47:05 +00:00
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
statusbar(_("\"%s\" not found"), filename);
|
2005-11-18 20:21:48 +00:00
|
|
|
beep();
|
2005-07-08 02:47:05 +00:00
|
|
|
return -1;
|
|
|
|
} else if (S_ISDIR(fileinfo.st_mode) || S_ISCHR(fileinfo.st_mode) ||
|
2015-08-29 20:14:57 +00:00
|
|
|
S_ISBLK(fileinfo.st_mode)) {
|
2016-01-15 13:17:44 +00:00
|
|
|
free(full_filename);
|
|
|
|
|
2006-04-05 21:46:13 +00:00
|
|
|
/* Don't open directories, character files, or block files.
|
|
|
|
* Sorry, /dev/sndstat! */
|
2005-07-08 20:09:16 +00:00
|
|
|
statusbar(S_ISDIR(fileinfo.st_mode) ?
|
|
|
|
_("\"%s\" is a directory") :
|
2006-04-06 22:57:22 +00:00
|
|
|
_("\"%s\" is a device file"), filename);
|
2005-11-18 20:21:48 +00:00
|
|
|
beep();
|
2005-07-08 02:47:05 +00:00
|
|
|
return -1;
|
2007-04-18 18:22:13 +00:00
|
|
|
} else if ((fd = open(full_filename, O_RDONLY)) == -1) {
|
2016-01-15 13:17:44 +00:00
|
|
|
free(full_filename);
|
2015-08-29 20:14:57 +00:00
|
|
|
statusbar(_("Error reading %s: %s"), filename, strerror(errno));
|
2005-11-18 20:21:48 +00:00
|
|
|
beep();
|
2014-03-17 21:36:37 +00:00
|
|
|
return -1;
|
2015-06-27 15:10:58 +00:00
|
|
|
} else {
|
2006-04-05 21:46:13 +00:00
|
|
|
/* The file is A-OK. Open it. */
|
2005-07-08 02:47:05 +00:00
|
|
|
*f = fdopen(fd, "rb");
|
2004-10-05 20:11:31 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
if (*f == NULL) {
|
2015-08-29 20:14:57 +00:00
|
|
|
statusbar(_("Error reading %s: %s"), filename, strerror(errno));
|
2005-11-18 20:21:48 +00:00
|
|
|
beep();
|
2005-07-08 02:47:05 +00:00
|
|
|
close(fd);
|
|
|
|
} else
|
|
|
|
statusbar(_("Reading File"));
|
2005-03-10 20:55:11 +00:00
|
|
|
}
|
2005-07-20 21:08:38 +00:00
|
|
|
|
2007-04-18 18:22:13 +00:00
|
|
|
free(full_filename);
|
|
|
|
|
2009-09-03 05:45:13 +00:00
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* This function will return the name of the first available extension
|
|
|
|
* of a filename (starting with [name][suffix], then [name][suffix].1,
|
|
|
|
* etc.). Memory is allocated for the return value. If no writable
|
|
|
|
* extension exists, we return "". */
|
|
|
|
char *get_next_filename(const char *name, const char *suffix)
|
2001-07-11 02:08:33 +00:00
|
|
|
{
|
2005-07-08 02:47:05 +00:00
|
|
|
unsigned long i = 0;
|
|
|
|
char *buf;
|
2015-05-08 21:11:30 +00:00
|
|
|
size_t wholenamelen;
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
assert(name != NULL && suffix != NULL);
|
2005-05-26 05:17:13 +00:00
|
|
|
|
2015-05-08 21:11:30 +00:00
|
|
|
wholenamelen = strlen(name) + strlen(suffix);
|
2005-11-09 15:13:00 +00:00
|
|
|
|
2015-05-08 21:11:30 +00:00
|
|
|
/* Reserve space for: the name plus the suffix plus a dot plus
|
|
|
|
* possibly five digits plus a null byte. */
|
|
|
|
buf = charalloc(wholenamelen + 7);
|
2005-07-08 02:47:05 +00:00
|
|
|
sprintf(buf, "%s%s", name, suffix);
|
2005-01-27 20:49:07 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
while (TRUE) {
|
|
|
|
struct stat fs;
|
2002-07-19 01:08:59 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
if (stat(buf, &fs) == -1)
|
|
|
|
return buf;
|
2015-05-08 21:11:30 +00:00
|
|
|
|
|
|
|
/* Limit the number of backup files to a hundred thousand. */
|
|
|
|
if (++i == 100000)
|
2005-07-08 02:47:05 +00:00
|
|
|
break;
|
2005-01-27 20:49:07 +00:00
|
|
|
|
2015-05-08 21:11:30 +00:00
|
|
|
sprintf(buf + wholenamelen, ".%lu", i);
|
2005-07-08 02:47:05 +00:00
|
|
|
}
|
2002-07-19 01:08:59 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* We get here only if there is no possible save file. Blank out
|
|
|
|
* the filename to indicate this. */
|
|
|
|
null_at(&buf, 0);
|
2005-01-27 20:49:07 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
return buf;
|
2002-07-19 01:08:59 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Insert a file into a new buffer if the MULTIBUFFER flag is set, or
|
|
|
|
* into the current buffer if it isn't. If execute is TRUE, insert the
|
|
|
|
* output of an executed command instead of a file. */
|
2005-07-08 02:47:05 +00:00
|
|
|
void do_insertfile(
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 02:47:05 +00:00
|
|
|
bool execute
|
|
|
|
#else
|
|
|
|
void
|
|
|
|
#endif
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
const char *msg;
|
|
|
|
char *ans = mallocstrcpy(NULL, "");
|
2007-01-01 05:15:32 +00:00
|
|
|
/* The last answer the user typed at the statusbar prompt. */
|
2005-07-08 20:09:16 +00:00
|
|
|
filestruct *edittop_save = openfile->edittop;
|
2015-12-01 11:39:04 +00:00
|
|
|
ssize_t was_current_lineno = openfile->current->lineno;
|
2015-12-01 11:43:13 +00:00
|
|
|
size_t was_current_x = openfile->current_x;
|
|
|
|
ssize_t was_current_y = openfile->current_y;
|
2014-06-30 18:04:33 +00:00
|
|
|
bool edittop_inside = FALSE;
|
2014-06-20 15:35:26 +00:00
|
|
|
#ifndef NANO_TINY
|
2007-08-16 14:45:17 +00:00
|
|
|
bool right_side_up = FALSE, single_line = FALSE;
|
2007-08-16 02:34:23 +00:00
|
|
|
#endif
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
while (TRUE) {
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 02:47:05 +00:00
|
|
|
if (execute) {
|
2007-04-19 03:15:04 +00:00
|
|
|
msg =
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2007-04-19 03:15:04 +00:00
|
|
|
ISSET(MULTIBUFFER) ?
|
2006-06-14 13:19:43 +00:00
|
|
|
_("Command to execute in new buffer [from %s] ") :
|
2005-07-08 02:47:05 +00:00
|
|
|
#endif
|
2006-06-14 13:19:43 +00:00
|
|
|
_("Command to execute [from %s] ");
|
2014-06-20 15:35:26 +00:00
|
|
|
} else
|
|
|
|
#endif /* NANO_TINY */
|
|
|
|
{
|
2005-07-08 20:09:16 +00:00
|
|
|
msg =
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2007-04-19 03:15:04 +00:00
|
|
|
ISSET(MULTIBUFFER) ?
|
2006-06-14 13:19:43 +00:00
|
|
|
_("File to insert into new buffer [from %s] ") :
|
2005-07-08 02:47:05 +00:00
|
|
|
#endif
|
2006-06-14 13:19:43 +00:00
|
|
|
_("File to insert [from %s] ");
|
2005-07-08 02:47:05 +00:00
|
|
|
}
|
2004-02-06 21:20:05 +00:00
|
|
|
|
2005-11-07 21:45:44 +00:00
|
|
|
i = do_prompt(TRUE,
|
2006-02-07 21:11:05 +00:00
|
|
|
#ifndef DISABLE_TABCOMP
|
|
|
|
TRUE,
|
|
|
|
#endif
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2008-03-05 07:34:01 +00:00
|
|
|
execute ? MEXTCMD :
|
2004-11-25 04:39:07 +00:00
|
|
|
#endif
|
2008-03-05 07:34:01 +00:00
|
|
|
MINSERTFILE, ans,
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2005-07-08 02:47:05 +00:00
|
|
|
NULL,
|
2008-03-31 06:25:14 +00:00
|
|
|
#endif
|
2006-06-14 13:19:43 +00:00
|
|
|
edit_refresh, msg,
|
2008-03-16 14:24:28 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
2006-06-14 13:19:43 +00:00
|
|
|
operating_dir != NULL && strcmp(operating_dir,
|
|
|
|
".") != 0 ? operating_dir :
|
2005-07-08 02:47:05 +00:00
|
|
|
#endif
|
|
|
|
"./");
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* If we're in multibuffer mode and the filename or command is
|
2006-11-27 05:49:58 +00:00
|
|
|
* blank, open a new buffer instead of canceling. If the
|
2006-11-27 07:13:28 +00:00
|
|
|
* filename or command begins with a newline (i.e. an encoded
|
|
|
|
* null), treat it as though it's blank. */
|
2007-07-01 21:33:17 +00:00
|
|
|
if (i == -1 || ((i == -2 || *answer == '\n')
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2005-07-08 02:47:05 +00:00
|
|
|
&& !ISSET(MULTIBUFFER)
|
|
|
|
#endif
|
|
|
|
)) {
|
|
|
|
statusbar(_("Cancelled"));
|
|
|
|
break;
|
|
|
|
} else {
|
2006-12-11 22:11:32 +00:00
|
|
|
size_t pww_save = openfile->placewewant;
|
2015-12-05 11:38:26 +00:00
|
|
|
#if !defined(NANO_TINY) || !defined(DISABLE_BROWSER)
|
2014-07-27 21:07:15 +00:00
|
|
|
functionptrtype func = func_from_key(&i);
|
2015-12-05 11:38:26 +00:00
|
|
|
#endif
|
2005-07-08 02:47:05 +00:00
|
|
|
ans = mallocstrcpy(ans, answer);
|
2004-11-25 04:39:07 +00:00
|
|
|
|
2014-06-20 15:35:26 +00:00
|
|
|
#ifndef NANO_TINY
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2014-07-27 21:07:15 +00:00
|
|
|
if (func == new_buffer_void) {
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Don't allow toggling if we're in view mode. */
|
|
|
|
if (!ISSET(VIEW_MODE))
|
|
|
|
TOGGLE(MULTIBUFFER);
|
2014-06-23 20:30:23 +00:00
|
|
|
else
|
|
|
|
beep();
|
2005-07-08 02:47:05 +00:00
|
|
|
continue;
|
2014-06-20 15:35:26 +00:00
|
|
|
}
|
2002-06-28 22:45:14 +00:00
|
|
|
#endif
|
2014-07-27 21:07:15 +00:00
|
|
|
if (func == flip_execute_void) {
|
2005-07-08 02:47:05 +00:00
|
|
|
execute = !execute;
|
|
|
|
continue;
|
|
|
|
}
|
2005-11-15 03:17:35 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2004-11-25 04:39:07 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
#ifndef DISABLE_BROWSER
|
2014-07-27 21:07:15 +00:00
|
|
|
if (func == to_files_void) {
|
2005-07-08 02:47:05 +00:00
|
|
|
char *tmp = do_browse_from(answer);
|
2004-11-25 04:39:07 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
if (tmp == NULL)
|
|
|
|
continue;
|
2004-11-25 04:39:07 +00:00
|
|
|
|
2006-08-29 20:54:38 +00:00
|
|
|
/* We have a file now. Indicate this. */
|
2005-07-08 02:47:05 +00:00
|
|
|
free(answer);
|
|
|
|
answer = tmp;
|
2004-11-25 04:39:07 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
#endif
|
2004-11-25 04:39:07 +00:00
|
|
|
|
2015-08-29 20:14:57 +00:00
|
|
|
/* If we don't have a file yet, go back to the statusbar prompt. */
|
2005-07-08 02:47:05 +00:00
|
|
|
if (i != 0
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2005-07-08 02:47:05 +00:00
|
|
|
&& (i != -2 || !ISSET(MULTIBUFFER))
|
|
|
|
#endif
|
|
|
|
)
|
|
|
|
continue;
|
2004-11-25 04:39:07 +00:00
|
|
|
|
2007-08-16 14:45:17 +00:00
|
|
|
#ifndef NANO_TINY
|
2014-07-31 20:44:19 +00:00
|
|
|
/* Keep track of whether the mark begins inside the
|
|
|
|
* partition and will need adjustment. */
|
|
|
|
if (openfile->mark_set) {
|
|
|
|
filestruct *top, *bot;
|
|
|
|
size_t top_x, bot_x;
|
2007-08-16 14:45:17 +00:00
|
|
|
|
2014-07-31 20:44:19 +00:00
|
|
|
mark_order((const filestruct **)&top, &top_x,
|
2007-08-16 14:45:17 +00:00
|
|
|
(const filestruct **)&bot, &bot_x,
|
|
|
|
&right_side_up);
|
|
|
|
|
2014-07-31 20:44:19 +00:00
|
|
|
single_line = (top == bot);
|
|
|
|
}
|
2007-08-16 14:45:17 +00:00
|
|
|
#endif
|
|
|
|
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2005-07-08 02:47:05 +00:00
|
|
|
if (!ISSET(MULTIBUFFER)) {
|
|
|
|
#endif
|
|
|
|
/* If we're not inserting into a new buffer, partition
|
|
|
|
* the filestruct so that it contains no text and hence
|
2007-08-16 14:45:17 +00:00
|
|
|
* looks like a new buffer, and keep track of whether
|
2015-07-10 17:25:51 +00:00
|
|
|
* the top of the edit window is inside the partition. */
|
2005-07-08 20:09:16 +00:00
|
|
|
filepart = partition_filestruct(openfile->current,
|
|
|
|
openfile->current_x, openfile->current,
|
|
|
|
openfile->current_x);
|
2015-08-29 20:14:57 +00:00
|
|
|
edittop_inside = (openfile->edittop == openfile->fileage);
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2005-07-08 02:47:05 +00:00
|
|
|
}
|
|
|
|
#endif
|
2002-05-11 03:04:44 +00:00
|
|
|
|
2015-12-04 21:11:10 +00:00
|
|
|
/* Convert newlines to nulls in the given filename. */
|
2006-11-27 04:57:22 +00:00
|
|
|
sunder(answer);
|
2006-12-11 22:11:32 +00:00
|
|
|
align(&answer);
|
2006-11-27 04:57:22 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-09 04:42:47 +00:00
|
|
|
if (execute) {
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2005-07-09 04:42:47 +00:00
|
|
|
if (ISSET(MULTIBUFFER))
|
2005-07-21 05:56:42 +00:00
|
|
|
/* Open a blank buffer. */
|
2008-08-03 04:48:05 +00:00
|
|
|
open_buffer("", FALSE);
|
2005-07-09 04:42:47 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Save the command's output in the current buffer. */
|
2005-07-08 02:47:05 +00:00
|
|
|
execute_command(answer);
|
2006-07-13 03:06:36 +00:00
|
|
|
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2006-07-13 03:06:36 +00:00
|
|
|
if (ISSET(MULTIBUFFER)) {
|
|
|
|
/* Move back to the beginning of the first line of
|
|
|
|
* the buffer. */
|
|
|
|
openfile->current = openfile->fileage;
|
|
|
|
openfile->current_x = 0;
|
|
|
|
openfile->placewewant = 0;
|
|
|
|
}
|
2005-07-08 02:47:05 +00:00
|
|
|
#endif
|
2015-07-10 17:25:51 +00:00
|
|
|
} else
|
2006-07-13 03:06:36 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2015-07-10 17:25:51 +00:00
|
|
|
{
|
2005-07-09 04:42:47 +00:00
|
|
|
/* Make sure the path to the file specified in answer is
|
|
|
|
* tilde-expanded. */
|
2015-07-10 17:25:51 +00:00
|
|
|
answer = mallocstrassn(answer, real_dir_from_tilde(answer));
|
2005-07-09 04:42:47 +00:00
|
|
|
|
2015-07-10 17:25:51 +00:00
|
|
|
/* Save the file specified in answer in the current buffer. */
|
2008-08-03 04:48:05 +00:00
|
|
|
open_buffer(answer, TRUE);
|
2005-07-08 02:47:05 +00:00
|
|
|
}
|
2001-10-22 03:15:31 +00:00
|
|
|
|
2016-01-29 16:01:43 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2013-04-12 06:43:06 +00:00
|
|
|
if (ISSET(MULTIBUFFER)) {
|
2015-07-10 17:25:51 +00:00
|
|
|
/* Update the screen to account for the current buffer. */
|
2005-07-12 23:06:22 +00:00
|
|
|
display_buffer();
|
2014-04-04 07:50:41 +00:00
|
|
|
|
2016-01-29 16:01:43 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
|
|
|
if (ISSET(POS_HISTORY)) {
|
|
|
|
ssize_t priorline, priorcol;
|
2014-06-20 16:33:12 +00:00
|
|
|
#ifndef NANO_TINY
|
2016-01-29 16:01:43 +00:00
|
|
|
if (!execute)
|
2014-06-20 16:33:12 +00:00
|
|
|
#endif
|
2016-01-29 16:01:43 +00:00
|
|
|
if (check_poshistory(answer, &priorline, &priorcol))
|
|
|
|
do_gotolinecolumn(priorline, priorcol, FALSE, FALSE);
|
|
|
|
}
|
|
|
|
#endif /* !DISABLE_HISTORIES */
|
2013-04-12 06:43:06 +00:00
|
|
|
} else
|
2016-01-29 16:01:43 +00:00
|
|
|
#endif /* !DISABLE_MULTIBUFFER */
|
2005-07-08 02:47:05 +00:00
|
|
|
{
|
2005-07-08 20:09:16 +00:00
|
|
|
filestruct *top_save = openfile->fileage;
|
2003-01-13 01:35:15 +00:00
|
|
|
|
2006-07-13 04:19:53 +00:00
|
|
|
/* If we were at the top of the edit window before, set
|
|
|
|
* the saved value of edittop to the new top of the edit
|
|
|
|
* window. */
|
2007-08-16 02:46:26 +00:00
|
|
|
if (edittop_inside)
|
2005-07-08 20:09:16 +00:00
|
|
|
edittop_save = openfile->fileage;
|
2006-07-13 04:19:53 +00:00
|
|
|
|
|
|
|
/* Update the current x-coordinate to account for the
|
2007-08-16 03:18:17 +00:00
|
|
|
* number of characters inserted on the current line.
|
2015-12-04 21:11:10 +00:00
|
|
|
* If the mark was positioned after the cursor and on the
|
|
|
|
* same line, adjust the mark's coordinates to compensate
|
|
|
|
* for the change in this line. */
|
2006-07-13 04:19:53 +00:00
|
|
|
openfile->current_x = strlen(openfile->filebot->data);
|
2007-08-16 02:34:23 +00:00
|
|
|
if (openfile->fileage == openfile->filebot) {
|
|
|
|
#ifndef NANO_TINY
|
|
|
|
if (openfile->mark_set) {
|
|
|
|
openfile->mark_begin = openfile->current;
|
2007-08-16 14:45:17 +00:00
|
|
|
if (!right_side_up)
|
2015-08-29 20:14:57 +00:00
|
|
|
openfile->mark_begin_x += openfile->current_x;
|
2007-08-16 02:34:23 +00:00
|
|
|
}
|
|
|
|
#endif
|
2015-12-01 11:43:13 +00:00
|
|
|
openfile->current_x += was_current_x;
|
2007-08-16 02:34:23 +00:00
|
|
|
}
|
2007-08-16 03:23:30 +00:00
|
|
|
#ifndef NANO_TINY
|
2007-08-16 14:45:17 +00:00
|
|
|
else if (openfile->mark_set) {
|
|
|
|
if (!right_side_up) {
|
|
|
|
if (single_line) {
|
|
|
|
openfile->mark_begin = openfile->current;
|
2015-12-01 11:43:13 +00:00
|
|
|
openfile->mark_begin_x -= was_current_x;
|
2007-08-16 14:45:17 +00:00
|
|
|
} else
|
2015-08-29 20:14:57 +00:00
|
|
|
openfile->mark_begin_x -= openfile->current_x;
|
2007-08-16 14:45:17 +00:00
|
|
|
}
|
|
|
|
}
|
2007-08-16 03:23:30 +00:00
|
|
|
#endif
|
2006-07-13 04:19:53 +00:00
|
|
|
|
|
|
|
/* Update the current y-coordinate to account for the
|
|
|
|
* number of lines inserted. */
|
2015-12-01 11:43:13 +00:00
|
|
|
openfile->current_y += was_current_y;
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2006-07-13 04:19:53 +00:00
|
|
|
/* Unpartition the filestruct so that it contains all
|
|
|
|
* the text again. Note that we've replaced the
|
|
|
|
* non-text originally in the partition with the text in
|
|
|
|
* the inserted file/executed command output. */
|
2005-07-08 02:47:05 +00:00
|
|
|
unpartition_filestruct(&filepart);
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Renumber starting with the beginning line of the old
|
|
|
|
* partition. */
|
|
|
|
renumber(top_save);
|
2005-06-15 03:01:41 +00:00
|
|
|
|
2005-07-09 04:42:47 +00:00
|
|
|
/* Restore the old edittop. */
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->edittop = edittop_save;
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-07-09 04:42:47 +00:00
|
|
|
/* Restore the old place we want. */
|
|
|
|
openfile->placewewant = pww_save;
|
|
|
|
|
2015-12-01 11:39:04 +00:00
|
|
|
/* Mark the file as modified if it changed. */
|
|
|
|
if (openfile->current->lineno != was_current_lineno ||
|
2015-12-01 11:43:13 +00:00
|
|
|
openfile->current_x != was_current_x)
|
2015-12-01 11:39:04 +00:00
|
|
|
set_modified();
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-07-09 04:42:47 +00:00
|
|
|
/* Update the screen. */
|
|
|
|
edit_refresh();
|
2005-07-08 02:47:05 +00:00
|
|
|
}
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(ans);
|
2002-02-15 19:17:02 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Insert a file into a new buffer or the current buffer, depending on
|
|
|
|
* whether the MULTIBUFFER flag is set. If we're in view mode, only
|
|
|
|
* allow inserting a file into a new buffer. */
|
2005-07-08 02:47:05 +00:00
|
|
|
void do_insertfile_void(void)
|
2001-07-11 02:08:33 +00:00
|
|
|
{
|
2010-11-12 06:22:12 +00:00
|
|
|
if (ISSET(RESTRICTED)) {
|
2015-07-30 18:10:16 +00:00
|
|
|
show_restricted_warning();
|
2010-11-12 06:22:12 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2005-07-08 02:47:05 +00:00
|
|
|
if (ISSET(VIEW_MODE) && !ISSET(MULTIBUFFER))
|
2006-07-31 01:30:31 +00:00
|
|
|
statusbar(_("Key invalid in non-multibuffer mode"));
|
2005-07-08 02:47:05 +00:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
do_insertfile(
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 02:47:05 +00:00
|
|
|
FALSE
|
|
|
|
#endif
|
|
|
|
);
|
2001-07-11 02:08:33 +00:00
|
|
|
|
|
|
|
display_main_list();
|
|
|
|
}
|
|
|
|
|
2005-02-09 18:56:21 +00:00
|
|
|
/* When passed "[relative path]" or "[relative path][filename]" in
|
2001-09-19 03:19:43 +00:00
|
|
|
* origpath, return "[full path]" or "[full path][filename]" on success,
|
2005-02-09 18:56:21 +00:00
|
|
|
* or NULL on error. Do this if the file doesn't exist but the relative
|
|
|
|
* path does, since the file could exist in memory but not yet on disk).
|
|
|
|
* Don't do this if the relative path doesn't exist, since we won't be
|
|
|
|
* able to go there. */
|
2002-09-13 18:14:04 +00:00
|
|
|
char *get_full_path(const char *origpath)
|
2001-07-11 02:08:33 +00:00
|
|
|
{
|
2006-07-05 14:14:06 +00:00
|
|
|
struct stat fileinfo;
|
|
|
|
char *d_here, *d_there, *d_there_file = NULL;
|
|
|
|
const char *last_slash;
|
|
|
|
bool path_only;
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-02-09 18:56:21 +00:00
|
|
|
if (origpath == NULL)
|
2014-05-13 20:14:01 +00:00
|
|
|
return NULL;
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2006-07-05 14:14:06 +00:00
|
|
|
/* Get the current directory. If it doesn't exist, back up and try
|
2006-07-05 15:21:18 +00:00
|
|
|
* again until we get a directory that does, and use that as the
|
|
|
|
* current directory. */
|
2005-02-09 18:56:21 +00:00
|
|
|
d_here = charalloc(PATH_MAX + 1);
|
|
|
|
d_here = getcwd(d_here, PATH_MAX + 1);
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2006-07-05 14:14:06 +00:00
|
|
|
while (d_here == NULL) {
|
2006-07-05 15:20:16 +00:00
|
|
|
if (chdir("..") == -1)
|
|
|
|
break;
|
|
|
|
|
2006-07-05 14:14:06 +00:00
|
|
|
d_here = getcwd(d_here, PATH_MAX + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we succeeded, canonicalize it in d_here. */
|
|
|
|
if (d_here != NULL) {
|
2005-03-26 04:42:28 +00:00
|
|
|
align(&d_here);
|
|
|
|
|
2005-02-09 18:56:21 +00:00
|
|
|
/* If the current directory isn't "/", tack a slash onto the end
|
|
|
|
* of it. */
|
2004-07-31 14:10:23 +00:00
|
|
|
if (strcmp(d_here, "/") != 0) {
|
2003-06-14 20:41:34 +00:00
|
|
|
d_here = charealloc(d_here, strlen(d_here) + 2);
|
2001-09-23 01:18:03 +00:00
|
|
|
strcat(d_here, "/");
|
|
|
|
}
|
2006-07-05 14:14:06 +00:00
|
|
|
/* Otherwise, set d_here to "". */
|
|
|
|
} else
|
|
|
|
d_here = mallocstrcpy(NULL, "");
|
2001-09-19 03:19:43 +00:00
|
|
|
|
2006-07-05 14:14:06 +00:00
|
|
|
d_there = real_dir_from_tilde(origpath);
|
2005-02-09 18:56:21 +00:00
|
|
|
|
2006-07-05 14:14:06 +00:00
|
|
|
/* If stat()ing d_there fails, assume that d_there refers to a new
|
|
|
|
* file that hasn't been saved to disk yet. Set path_only to TRUE
|
|
|
|
* if d_there refers to a directory, and FALSE otherwise. */
|
2015-08-29 20:14:57 +00:00
|
|
|
path_only = (stat(d_there, &fileinfo) != -1 && S_ISDIR(fileinfo.st_mode));
|
2005-02-09 18:56:21 +00:00
|
|
|
|
2006-07-05 14:14:06 +00:00
|
|
|
/* If path_only is TRUE, make sure d_there ends in a slash. */
|
|
|
|
if (path_only) {
|
|
|
|
size_t d_there_len = strlen(d_there);
|
2005-02-09 18:56:21 +00:00
|
|
|
|
2006-07-05 14:14:06 +00:00
|
|
|
if (d_there[d_there_len - 1] != '/') {
|
|
|
|
d_there = charealloc(d_there, d_there_len + 2);
|
|
|
|
strcat(d_there, "/");
|
2001-09-19 03:19:43 +00:00
|
|
|
}
|
2006-07-05 14:14:06 +00:00
|
|
|
}
|
2001-09-19 03:19:43 +00:00
|
|
|
|
2006-07-05 14:14:06 +00:00
|
|
|
/* Search for the last slash in d_there. */
|
|
|
|
last_slash = strrchr(d_there, '/');
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2006-07-05 14:14:06 +00:00
|
|
|
/* If we didn't find one, then make sure the answer is in the format
|
|
|
|
* "d_here/d_there". */
|
|
|
|
if (last_slash == NULL) {
|
|
|
|
assert(!path_only);
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2006-07-05 14:14:06 +00:00
|
|
|
d_there_file = d_there;
|
|
|
|
d_there = d_here;
|
|
|
|
} else {
|
|
|
|
/* If path_only is FALSE, then save the filename portion of the
|
|
|
|
* answer (everything after the last slash) in d_there_file. */
|
|
|
|
if (!path_only)
|
|
|
|
d_there_file = mallocstrcpy(NULL, last_slash + 1);
|
|
|
|
|
2006-11-08 02:48:15 +00:00
|
|
|
/* Remove the filename portion of the answer from d_there. */
|
2006-07-05 14:14:06 +00:00
|
|
|
null_at(&d_there, last_slash - d_there + 1);
|
|
|
|
|
2006-07-05 15:21:18 +00:00
|
|
|
/* Go to the path specified in d_there. */
|
2006-07-05 14:14:06 +00:00
|
|
|
if (chdir(d_there) == -1) {
|
|
|
|
free(d_there);
|
|
|
|
d_there = NULL;
|
2005-02-09 18:56:21 +00:00
|
|
|
} else {
|
2006-07-05 14:14:06 +00:00
|
|
|
free(d_there);
|
|
|
|
|
|
|
|
/* Get the full path. */
|
|
|
|
d_there = charalloc(PATH_MAX + 1);
|
|
|
|
d_there = getcwd(d_there, PATH_MAX + 1);
|
|
|
|
|
|
|
|
/* If we succeeded, canonicalize it in d_there. */
|
|
|
|
if (d_there != NULL) {
|
|
|
|
align(&d_there);
|
|
|
|
|
|
|
|
/* If the current directory isn't "/", tack a slash onto
|
|
|
|
* the end of it. */
|
|
|
|
if (strcmp(d_there, "/") != 0) {
|
|
|
|
d_there = charealloc(d_there, strlen(d_there) + 2);
|
|
|
|
strcat(d_there, "/");
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
/* Otherwise, set path_only to TRUE, so that we clean up
|
|
|
|
* correctly, free all allocated memory, and return
|
|
|
|
* NULL. */
|
|
|
|
path_only = TRUE;
|
|
|
|
|
|
|
|
/* Finally, go back to the path specified in d_here,
|
|
|
|
* where we were before. We don't check for a chdir()
|
2006-11-08 02:48:15 +00:00
|
|
|
* error, since we can do nothing if we get one. */
|
2009-12-02 03:24:18 +00:00
|
|
|
IGNORE_CALL_RESULT(chdir(d_here));
|
2001-09-19 03:19:43 +00:00
|
|
|
}
|
2016-02-10 12:32:43 +00:00
|
|
|
|
|
|
|
/* Free d_here, since we're done using it. */
|
|
|
|
free(d_here);
|
2006-11-08 02:48:15 +00:00
|
|
|
}
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2006-11-08 02:48:15 +00:00
|
|
|
/* At this point, if path_only is FALSE and d_there isn't NULL,
|
|
|
|
* d_there contains the path portion of the answer and d_there_file
|
|
|
|
* contains the filename portion of the answer. If this is the
|
|
|
|
* case, tack the latter onto the end of the former. d_there will
|
|
|
|
* then contain the complete answer. */
|
|
|
|
if (!path_only && d_there != NULL) {
|
|
|
|
d_there = charealloc(d_there, strlen(d_there) +
|
2005-02-09 18:56:21 +00:00
|
|
|
strlen(d_there_file) + 1);
|
2006-11-08 02:48:15 +00:00
|
|
|
strcat(d_there, d_there_file);
|
|
|
|
}
|
2005-02-09 18:56:21 +00:00
|
|
|
|
2006-11-08 02:48:15 +00:00
|
|
|
/* Free d_there_file, since we're done using it. */
|
2015-06-14 19:14:41 +00:00
|
|
|
free(d_there_file);
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-02-09 18:56:21 +00:00
|
|
|
return d_there;
|
2001-07-11 02:08:33 +00:00
|
|
|
}
|
2002-02-15 19:17:02 +00:00
|
|
|
|
2005-02-09 18:56:21 +00:00
|
|
|
/* Return the full version of path, as returned by get_full_path(). On
|
2015-08-29 20:14:57 +00:00
|
|
|
* error, or if path doesn't reference a directory, or if the directory
|
2005-02-09 18:56:21 +00:00
|
|
|
* isn't writable, return NULL. */
|
2002-09-13 18:14:04 +00:00
|
|
|
char *check_writable_directory(const char *path)
|
2002-09-06 20:35:28 +00:00
|
|
|
{
|
2002-02-15 19:17:02 +00:00
|
|
|
char *full_path = get_full_path(path);
|
|
|
|
|
2002-12-22 16:30:00 +00:00
|
|
|
if (full_path == NULL)
|
2002-02-15 19:17:02 +00:00
|
|
|
return NULL;
|
2002-02-16 20:03:44 +00:00
|
|
|
|
2015-08-29 20:14:57 +00:00
|
|
|
/* If we can't write to path or path isn't a directory, return NULL. */
|
2005-02-09 18:56:21 +00:00
|
|
|
if (access(full_path, W_OK) != 0 ||
|
2015-08-29 20:14:57 +00:00
|
|
|
full_path[strlen(full_path) - 1] != '/') {
|
2002-02-16 20:03:44 +00:00
|
|
|
free(full_path);
|
2002-02-15 19:17:02 +00:00
|
|
|
return NULL;
|
2002-02-16 20:03:44 +00:00
|
|
|
}
|
2002-02-15 19:17:02 +00:00
|
|
|
|
|
|
|
return full_path;
|
|
|
|
}
|
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
/* This function calls mkstemp(($TMPDIR|P_tmpdir|/tmp/)"nano.XXXXXX").
|
|
|
|
* On success, it returns the malloc()ed filename and corresponding FILE
|
2005-06-05 19:18:11 +00:00
|
|
|
* stream, opened in "r+b" mode. On error, it returns NULL for the
|
2005-05-31 04:28:15 +00:00
|
|
|
* filename and leaves the FILE stream unchanged. */
|
|
|
|
char *safe_tempfile(FILE **f)
|
2002-09-06 20:35:28 +00:00
|
|
|
{
|
2002-09-13 18:14:04 +00:00
|
|
|
char *full_tempdir = NULL;
|
2005-06-05 19:33:27 +00:00
|
|
|
const char *tmpdir_env;
|
|
|
|
int fd;
|
|
|
|
mode_t original_umask = 0;
|
2002-02-15 19:17:02 +00:00
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
assert(f != NULL);
|
|
|
|
|
2006-04-06 21:41:48 +00:00
|
|
|
/* If $TMPDIR is set, set tempdir to it, run it through
|
|
|
|
* get_full_path(), and save the result in full_tempdir. Otherwise,
|
|
|
|
* leave full_tempdir set to NULL. */
|
2005-06-05 19:33:27 +00:00
|
|
|
tmpdir_env = getenv("TMPDIR");
|
2006-04-06 21:41:48 +00:00
|
|
|
if (tmpdir_env != NULL)
|
2005-06-05 19:33:27 +00:00
|
|
|
full_tempdir = check_writable_directory(tmpdir_env);
|
2002-02-15 19:17:02 +00:00
|
|
|
|
2005-02-11 20:09:11 +00:00
|
|
|
/* If $TMPDIR is unset, empty, or not a writable directory, and
|
|
|
|
* full_tempdir is NULL, try P_tmpdir instead. */
|
2014-04-14 09:57:06 +00:00
|
|
|
if (full_tempdir == NULL)
|
2002-09-13 18:14:04 +00:00
|
|
|
full_tempdir = check_writable_directory(P_tmpdir);
|
2002-02-15 19:17:02 +00:00
|
|
|
|
2014-04-14 09:57:06 +00:00
|
|
|
/* if P_tmpdir is NULL, use /tmp. */
|
|
|
|
if (full_tempdir == NULL)
|
2005-02-11 20:09:11 +00:00
|
|
|
full_tempdir = mallocstrcpy(NULL, "/tmp/");
|
2002-02-15 19:17:02 +00:00
|
|
|
|
2003-06-14 20:41:34 +00:00
|
|
|
full_tempdir = charealloc(full_tempdir, strlen(full_tempdir) + 12);
|
2005-02-11 20:09:11 +00:00
|
|
|
strcat(full_tempdir, "nano.XXXXXX");
|
2002-09-13 18:14:04 +00:00
|
|
|
|
2005-06-05 19:33:27 +00:00
|
|
|
original_umask = umask(0);
|
|
|
|
umask(S_IRWXG | S_IRWXO);
|
|
|
|
|
|
|
|
fd = mkstemp(full_tempdir);
|
|
|
|
|
|
|
|
if (fd != -1)
|
|
|
|
*f = fdopen(fd, "r+b");
|
2005-05-31 04:28:15 +00:00
|
|
|
else {
|
|
|
|
free(full_tempdir);
|
|
|
|
full_tempdir = NULL;
|
2002-02-15 19:17:02 +00:00
|
|
|
}
|
2002-09-13 18:14:04 +00:00
|
|
|
|
2005-06-05 19:33:27 +00:00
|
|
|
umask(original_umask);
|
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
return full_tempdir;
|
2002-02-15 19:17:02 +00:00
|
|
|
}
|
2001-09-19 03:19:43 +00:00
|
|
|
|
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
2002-09-13 18:14:04 +00:00
|
|
|
/* Initialize full_operating_dir based on operating_dir. */
|
|
|
|
void init_operating_dir(void)
|
|
|
|
{
|
|
|
|
assert(full_operating_dir == NULL);
|
|
|
|
|
2002-12-22 16:30:00 +00:00
|
|
|
if (operating_dir == NULL)
|
2002-09-13 18:14:04 +00:00
|
|
|
return;
|
2004-02-27 20:50:01 +00:00
|
|
|
|
2002-09-13 18:14:04 +00:00
|
|
|
full_operating_dir = get_full_path(operating_dir);
|
|
|
|
|
|
|
|
/* If get_full_path() failed or the operating directory is
|
2004-02-27 03:21:23 +00:00
|
|
|
* inaccessible, unset operating_dir. */
|
2002-12-22 16:30:00 +00:00
|
|
|
if (full_operating_dir == NULL || chdir(full_operating_dir) == -1) {
|
2002-09-13 18:14:04 +00:00
|
|
|
free(full_operating_dir);
|
|
|
|
full_operating_dir = NULL;
|
|
|
|
free(operating_dir);
|
|
|
|
operating_dir = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-11 20:09:11 +00:00
|
|
|
/* Check to see if we're inside the operating directory. Return FALSE
|
|
|
|
* if we are, or TRUE otherwise. If allow_tabcomp is TRUE, allow
|
|
|
|
* incomplete names that would be matches for the operating directory,
|
|
|
|
* so that tab completion will work. */
|
|
|
|
bool check_operating_dir(const char *currpath, bool allow_tabcomp)
|
2001-09-19 03:19:43 +00:00
|
|
|
{
|
2006-11-07 21:08:17 +00:00
|
|
|
/* full_operating_dir is global for memory cleanup. It should have
|
|
|
|
* already been initialized by init_operating_dir(). Also, a
|
|
|
|
* relative operating directory path will only be handled properly
|
|
|
|
* if this is done. */
|
2001-09-19 03:19:43 +00:00
|
|
|
|
2002-09-13 18:14:04 +00:00
|
|
|
char *fullpath;
|
2005-02-11 20:09:11 +00:00
|
|
|
bool retval = FALSE;
|
2002-09-13 18:14:04 +00:00
|
|
|
const char *whereami1, *whereami2 = NULL;
|
2001-09-19 03:19:43 +00:00
|
|
|
|
2003-12-24 08:03:54 +00:00
|
|
|
/* If no operating directory is set, don't bother doing anything. */
|
2002-12-22 16:30:00 +00:00
|
|
|
if (operating_dir == NULL)
|
2005-02-11 20:09:11 +00:00
|
|
|
return FALSE;
|
2004-02-28 02:08:15 +00:00
|
|
|
|
2003-12-24 08:03:54 +00:00
|
|
|
assert(full_operating_dir != NULL);
|
2001-09-19 03:19:43 +00:00
|
|
|
|
|
|
|
fullpath = get_full_path(currpath);
|
2003-12-24 08:03:54 +00:00
|
|
|
|
2006-09-21 01:48:54 +00:00
|
|
|
/* If fullpath is NULL, it means some directory in the path doesn't
|
|
|
|
* exist or is unreadable. If allow_tabcomp is FALSE, then currpath
|
|
|
|
* is what the user typed somewhere. We don't want to report a
|
2003-12-24 08:03:54 +00:00
|
|
|
* non-existent directory as being outside the operating directory,
|
2005-02-11 20:09:11 +00:00
|
|
|
* so we return FALSE. If allow_tabcomp is TRUE, then currpath
|
2003-12-24 08:03:54 +00:00
|
|
|
* exists, but is not executable. So we say it isn't in the
|
|
|
|
* operating directory. */
|
2002-12-22 16:30:00 +00:00
|
|
|
if (fullpath == NULL)
|
2003-12-24 08:03:54 +00:00
|
|
|
return allow_tabcomp;
|
2001-09-19 03:19:43 +00:00
|
|
|
|
|
|
|
whereami1 = strstr(fullpath, full_operating_dir);
|
|
|
|
if (allow_tabcomp)
|
|
|
|
whereami2 = strstr(full_operating_dir, fullpath);
|
|
|
|
|
2003-12-24 08:03:54 +00:00
|
|
|
/* If both searches failed, we're outside the operating directory.
|
2005-07-08 20:09:16 +00:00
|
|
|
* Otherwise, check the search results. If the full operating
|
2003-12-24 08:03:54 +00:00
|
|
|
* directory path is not at the beginning of the full current path
|
|
|
|
* (for normal usage) and vice versa (for tab completion, if we're
|
|
|
|
* allowing it), we're outside the operating directory. */
|
2001-09-19 03:19:43 +00:00
|
|
|
if (whereami1 != fullpath && whereami2 != full_operating_dir)
|
2005-02-11 20:09:11 +00:00
|
|
|
retval = TRUE;
|
|
|
|
free(fullpath);
|
2003-12-24 08:03:54 +00:00
|
|
|
|
|
|
|
/* Otherwise, we're still inside it. */
|
2002-09-13 18:14:04 +00:00
|
|
|
return retval;
|
2001-09-19 03:19:43 +00:00
|
|
|
}
|
2001-07-11 02:08:33 +00:00
|
|
|
#endif
|
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2014-04-08 12:35:18 +00:00
|
|
|
/* Although this sucks, it sucks less than having a single 'my system is
|
|
|
|
* messed up and I'm blanket allowing insecure file writing operations'. */
|
2011-02-07 02:06:20 +00:00
|
|
|
int prompt_failed_backupwrite(const char *filename)
|
|
|
|
{
|
|
|
|
static int i;
|
2014-04-08 12:35:18 +00:00
|
|
|
static char *prevfile = NULL; /* What was the last file we were
|
2015-06-27 15:10:58 +00:00
|
|
|
* passed so we don't keep asking
|
|
|
|
* this? Though maybe we should... */
|
2011-02-07 02:06:20 +00:00
|
|
|
if (prevfile == NULL || strcmp(filename, prevfile)) {
|
|
|
|
i = do_yesno_prompt(FALSE,
|
2015-06-27 15:10:58 +00:00
|
|
|
_("Failed to write backup file, continue saving? (Say N if unsure) "));
|
2011-02-07 02:06:20 +00:00
|
|
|
prevfile = mallocstrcpy(prevfile, filename);
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2004-02-28 16:24:31 +00:00
|
|
|
void init_backup_dir(void)
|
|
|
|
{
|
|
|
|
char *full_backup_dir;
|
|
|
|
|
|
|
|
if (backup_dir == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
full_backup_dir = get_full_path(backup_dir);
|
|
|
|
|
|
|
|
/* If get_full_path() failed or the backup directory is
|
|
|
|
* inaccessible, unset backup_dir. */
|
|
|
|
if (full_backup_dir == NULL ||
|
|
|
|
full_backup_dir[strlen(full_backup_dir) - 1] != '/') {
|
|
|
|
free(full_backup_dir);
|
|
|
|
free(backup_dir);
|
|
|
|
backup_dir = NULL;
|
|
|
|
} else {
|
|
|
|
free(backup_dir);
|
|
|
|
backup_dir = full_backup_dir;
|
|
|
|
}
|
|
|
|
}
|
2014-03-17 14:15:57 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2004-02-28 16:24:31 +00:00
|
|
|
|
2003-12-24 08:03:54 +00:00
|
|
|
/* Read from inn, write to out. We assume inn is opened for reading,
|
2005-07-08 20:09:16 +00:00
|
|
|
* and out for writing. We return 0 on success, -1 on read error, or -2
|
|
|
|
* on write error. */
|
2003-12-24 08:03:54 +00:00
|
|
|
int copy_file(FILE *inn, FILE *out)
|
|
|
|
{
|
2007-07-12 03:12:31 +00:00
|
|
|
int retval = 0;
|
2005-05-28 23:51:03 +00:00
|
|
|
char buf[BUFSIZ];
|
2003-12-24 08:03:54 +00:00
|
|
|
size_t charsread;
|
|
|
|
|
2007-07-12 03:12:31 +00:00
|
|
|
assert(inn != NULL && out != NULL && inn != out);
|
2005-04-19 20:13:13 +00:00
|
|
|
|
2003-12-24 08:03:54 +00:00
|
|
|
do {
|
|
|
|
charsread = fread(buf, sizeof(char), BUFSIZ, inn);
|
|
|
|
if (charsread == 0 && ferror(inn)) {
|
|
|
|
retval = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (fwrite(buf, sizeof(char), charsread, out) < charsread) {
|
|
|
|
retval = -2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (charsread > 0);
|
2005-04-19 20:13:13 +00:00
|
|
|
|
2003-12-24 08:03:54 +00:00
|
|
|
if (fclose(inn) == EOF)
|
|
|
|
retval = -1;
|
|
|
|
if (fclose(out) == EOF)
|
|
|
|
retval = -2;
|
2005-04-19 20:13:13 +00:00
|
|
|
|
2003-12-24 08:03:54 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2007-01-11 21:47:06 +00:00
|
|
|
/* Write a file out to disk. If f_open isn't NULL, we assume that it is
|
|
|
|
* a stream associated with the file, and we don't try to open it
|
2005-05-31 04:28:15 +00:00
|
|
|
* ourselves. If tmp is TRUE, we set the umask to disallow anyone else
|
2005-07-08 20:09:16 +00:00
|
|
|
* from accessing the file, we don't set the filename to its name, and
|
|
|
|
* we don't print out how many lines we wrote on the statusbar.
|
2003-01-13 01:35:15 +00:00
|
|
|
*
|
2003-12-24 08:03:54 +00:00
|
|
|
* tmp means we are writing a temporary file in a secure fashion. We
|
2007-01-11 21:47:06 +00:00
|
|
|
* use it when spell checking or dumping the file on an error. If
|
|
|
|
* append is APPEND, it means we are appending instead of overwriting.
|
|
|
|
* If append is PREPEND, it means we are prepending instead of
|
|
|
|
* overwriting. If nonamechange is TRUE, we don't change the current
|
2007-01-11 22:54:55 +00:00
|
|
|
* filename. nonamechange is ignored if tmp is FALSE, we're appending,
|
|
|
|
* or we're prepending.
|
2003-12-24 08:03:54 +00:00
|
|
|
*
|
2007-01-11 21:36:29 +00:00
|
|
|
* Return TRUE on success or FALSE on error. */
|
|
|
|
bool write_file(const char *name, FILE *f_open, bool tmp, append_type
|
2005-08-01 18:27:10 +00:00
|
|
|
append, bool nonamechange)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2007-01-11 21:36:29 +00:00
|
|
|
bool retval = FALSE;
|
2002-09-13 18:14:04 +00:00
|
|
|
/* Instead of returning in this function, you should always
|
2007-01-11 22:54:55 +00:00
|
|
|
* set retval and then goto cleanup_and_exit. */
|
2006-11-27 05:19:24 +00:00
|
|
|
size_t lineswritten = 0;
|
2005-07-08 20:09:16 +00:00
|
|
|
const filestruct *fileptr = openfile->fileage;
|
2002-04-22 23:52:34 +00:00
|
|
|
int fd;
|
2004-07-07 23:26:08 +00:00
|
|
|
/* The file descriptor we use. */
|
2004-07-06 14:02:44 +00:00
|
|
|
mode_t original_umask = 0;
|
2003-12-24 08:03:54 +00:00
|
|
|
/* Our umask, from when nano started. */
|
2014-06-09 20:26:54 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-11-06 15:10:57 +00:00
|
|
|
bool realexists;
|
2004-07-03 03:22:23 +00:00
|
|
|
/* The result of stat(). TRUE if the file exists, FALSE
|
2003-12-24 08:03:54 +00:00
|
|
|
* otherwise. If name is a link that points nowhere, realexists
|
2004-07-03 03:22:23 +00:00
|
|
|
* is FALSE. */
|
2016-02-07 13:03:48 +00:00
|
|
|
#endif
|
2003-12-24 08:03:54 +00:00
|
|
|
struct stat st;
|
|
|
|
/* The status fields filled in by stat(). */
|
|
|
|
char *realname;
|
2004-07-07 23:26:08 +00:00
|
|
|
/* name after tilde expansion. */
|
2016-02-07 13:08:27 +00:00
|
|
|
FILE *f = f_open;
|
2003-12-24 08:03:54 +00:00
|
|
|
/* The actual file, realname, we are writing to. */
|
|
|
|
char *tempname = NULL;
|
2015-08-11 17:43:08 +00:00
|
|
|
/* The name of the temporary file we write to on prepend. */
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2003-12-24 08:03:54 +00:00
|
|
|
assert(name != NULL);
|
2005-03-31 05:26:06 +00:00
|
|
|
|
2007-07-01 21:33:17 +00:00
|
|
|
if (*name == '\0')
|
2000-06-19 04:22:15 +00:00
|
|
|
return -1;
|
2005-04-15 17:48:20 +00:00
|
|
|
|
2003-02-03 03:32:08 +00:00
|
|
|
if (!tmp)
|
|
|
|
titlebar(NULL);
|
2000-11-24 14:02:57 +00:00
|
|
|
|
2006-11-27 05:40:09 +00:00
|
|
|
realname = real_dir_from_tilde(name);
|
2006-11-27 05:03:54 +00:00
|
|
|
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
2002-09-13 18:14:04 +00:00
|
|
|
/* If we're writing a temporary file, we're probably going outside
|
2003-12-24 08:03:54 +00:00
|
|
|
* the operating directory, so skip the operating directory test. */
|
2005-02-11 20:09:11 +00:00
|
|
|
if (!tmp && check_operating_dir(realname, FALSE)) {
|
2002-09-13 18:14:04 +00:00
|
|
|
statusbar(_("Can't write outside of %s"), operating_dir);
|
|
|
|
goto cleanup_and_exit;
|
2001-09-19 03:19:43 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
/* If the temp file exists and isn't already open, give up. */
|
2016-02-07 13:03:48 +00:00
|
|
|
if (tmp && (lstat(realname, &st) != -1) && f_open == NULL)
|
2003-12-24 08:03:54 +00:00
|
|
|
goto cleanup_and_exit;
|
2004-11-26 20:17:49 +00:00
|
|
|
|
2014-06-09 20:26:54 +00:00
|
|
|
#ifndef NANO_TINY
|
2014-05-13 20:14:01 +00:00
|
|
|
/* Check whether the file (at the end of the symlink) exists. */
|
2004-11-06 15:10:57 +00:00
|
|
|
realexists = (stat(realname, &st) != -1);
|
2000-12-02 21:13:50 +00:00
|
|
|
|
2014-05-13 20:14:01 +00:00
|
|
|
/* If we haven't stat()d this file before (say, the user just
|
|
|
|
* specified it interactively), stat and save the value now,
|
|
|
|
* or else we will chase null pointers when we do modtime checks,
|
|
|
|
* preserve file times, and so on, during backup. */
|
2016-02-09 20:53:11 +00:00
|
|
|
if (openfile->current_stat == NULL && !tmp && realexists)
|
|
|
|
stat_with_alloc(realname, &openfile->current_stat);
|
2009-12-20 05:46:35 +00:00
|
|
|
|
2002-06-28 22:45:14 +00:00
|
|
|
/* We backup only if the backup toggle is set, the file isn't
|
2003-12-24 08:03:54 +00:00
|
|
|
* temporary, and the file already exists. Furthermore, if we
|
|
|
|
* aren't appending, prepending, or writing a selection, we backup
|
|
|
|
* only if the file has not been modified by someone else since nano
|
|
|
|
* opened it. */
|
2015-08-29 20:14:57 +00:00
|
|
|
if (ISSET(BACKUP_FILE) && !tmp && realexists && ((append != OVERWRITE ||
|
|
|
|
openfile->mark_set) || (openfile->current_stat &&
|
|
|
|
openfile->current_stat->st_mtime == st.st_mtime))) {
|
2010-04-09 15:01:51 +00:00
|
|
|
int backup_fd;
|
2002-06-28 22:45:14 +00:00
|
|
|
FILE *backup_file;
|
2003-12-24 08:03:54 +00:00
|
|
|
char *backupname;
|
2002-06-28 22:45:14 +00:00
|
|
|
struct utimbuf filetime;
|
2003-12-24 08:03:54 +00:00
|
|
|
int copy_status;
|
2013-01-03 04:23:10 +00:00
|
|
|
int backup_cflags;
|
2002-06-28 22:45:14 +00:00
|
|
|
|
2003-12-24 08:03:54 +00:00
|
|
|
/* Save the original file's access and modification times. */
|
2005-07-15 19:37:32 +00:00
|
|
|
filetime.actime = openfile->current_stat->st_atime;
|
|
|
|
filetime.modtime = openfile->current_stat->st_mtime;
|
2002-06-28 22:45:14 +00:00
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
if (f_open == NULL) {
|
|
|
|
/* Open the original file to copy to the backup. */
|
|
|
|
f = fopen(realname, "rb");
|
2005-04-19 21:47:01 +00:00
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
if (f == NULL) {
|
|
|
|
statusbar(_("Error reading %s: %s"), realname,
|
|
|
|
strerror(errno));
|
2005-11-18 20:21:48 +00:00
|
|
|
beep();
|
2006-04-07 04:37:14 +00:00
|
|
|
/* If we can't read from the original file, go on, since
|
|
|
|
* only saving the original file is better than saving
|
|
|
|
* nothing. */
|
|
|
|
goto skip_backup;
|
2005-05-31 04:28:15 +00:00
|
|
|
}
|
2002-06-28 22:45:14 +00:00
|
|
|
}
|
|
|
|
|
2004-02-28 16:24:31 +00:00
|
|
|
/* If backup_dir is set, we set backupname to
|
2005-05-29 02:22:55 +00:00
|
|
|
* backup_dir/backupname~[.number], where backupname is the
|
|
|
|
* canonicalized absolute pathname of realname with every '/'
|
|
|
|
* replaced with a '!'. This means that /home/foo/file is
|
|
|
|
* backed up in backup_dir/!home!foo!file~[.number]. */
|
2004-02-28 16:24:31 +00:00
|
|
|
if (backup_dir != NULL) {
|
2005-05-29 02:22:55 +00:00
|
|
|
char *backuptemp = get_full_path(realname);
|
2004-02-28 16:24:31 +00:00
|
|
|
|
2005-05-29 02:22:55 +00:00
|
|
|
if (backuptemp == NULL)
|
2004-02-28 16:24:31 +00:00
|
|
|
/* If get_full_path() failed, we don't have a
|
|
|
|
* canonicalized absolute pathname, so just use the
|
|
|
|
* filename portion of the pathname. We use tail() so
|
|
|
|
* that e.g. ../backupname will be backed up in
|
|
|
|
* backupdir/backupname~ instead of
|
|
|
|
* backupdir/../backupname~. */
|
2005-05-29 02:22:55 +00:00
|
|
|
backuptemp = mallocstrcpy(NULL, tail(realname));
|
2004-02-28 16:24:31 +00:00
|
|
|
else {
|
2005-05-28 23:21:30 +00:00
|
|
|
size_t i = 0;
|
|
|
|
|
2005-05-29 02:22:55 +00:00
|
|
|
for (; backuptemp[i] != '\0'; i++) {
|
|
|
|
if (backuptemp[i] == '/')
|
|
|
|
backuptemp[i] = '!';
|
2004-02-28 16:24:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
backupname = charalloc(strlen(backup_dir) +
|
2005-05-29 02:22:55 +00:00
|
|
|
strlen(backuptemp) + 1);
|
|
|
|
sprintf(backupname, "%s%s", backup_dir, backuptemp);
|
|
|
|
free(backuptemp);
|
|
|
|
backuptemp = get_next_filename(backupname, "~");
|
2007-07-01 21:33:17 +00:00
|
|
|
if (*backuptemp == '\0') {
|
2008-08-09 03:39:10 +00:00
|
|
|
statusbar(_("Error writing backup file %s: %s"), backupname,
|
2005-05-29 02:22:55 +00:00
|
|
|
_("Too many backup files?"));
|
|
|
|
free(backuptemp);
|
|
|
|
free(backupname);
|
2014-04-08 18:38:45 +00:00
|
|
|
/* If we can't write to the backup, DON'T go on, since
|
|
|
|
* whatever caused the backup file to fail (e.g. disk
|
|
|
|
* full may well cause the real file write to fail,
|
|
|
|
* which means we could lose both the backup and the
|
|
|
|
* original! */
|
2008-08-09 03:39:10 +00:00
|
|
|
goto cleanup_and_exit;
|
2005-05-29 02:22:55 +00:00
|
|
|
} else {
|
|
|
|
free(backupname);
|
|
|
|
backupname = backuptemp;
|
|
|
|
}
|
2004-02-28 16:24:31 +00:00
|
|
|
} else {
|
|
|
|
backupname = charalloc(strlen(realname) + 2);
|
|
|
|
sprintf(backupname, "%s~", realname);
|
|
|
|
}
|
2002-06-28 22:45:14 +00:00
|
|
|
|
2010-04-09 15:01:51 +00:00
|
|
|
/* First, unlink any existing backups. Next, open the backup
|
2014-04-08 18:38:45 +00:00
|
|
|
* file with O_CREAT and O_EXCL. If it succeeds, we have a file
|
|
|
|
* descriptor to a new backup file. */
|
2010-06-24 14:47:00 +00:00
|
|
|
if (unlink(backupname) < 0 && errno != ENOENT && !ISSET(INSECURE_BACKUP)) {
|
2011-02-07 02:06:20 +00:00
|
|
|
if (prompt_failed_backupwrite(backupname))
|
|
|
|
goto skip_backup;
|
2010-04-09 15:01:51 +00:00
|
|
|
statusbar(_("Error writing backup file %s: %s"), backupname,
|
|
|
|
strerror(errno));
|
2010-04-07 05:48:24 +00:00
|
|
|
free(backupname);
|
|
|
|
goto cleanup_and_exit;
|
|
|
|
}
|
|
|
|
|
2010-06-24 14:47:00 +00:00
|
|
|
if (ISSET(INSECURE_BACKUP))
|
|
|
|
backup_cflags = O_WRONLY | O_CREAT | O_APPEND;
|
2014-06-10 19:12:14 +00:00
|
|
|
else
|
2010-06-24 14:47:00 +00:00
|
|
|
backup_cflags = O_WRONLY | O_CREAT | O_EXCL | O_APPEND;
|
|
|
|
|
|
|
|
backup_fd = open(backupname, backup_cflags,
|
2010-04-09 15:01:51 +00:00
|
|
|
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
|
|
|
|
/* Now we've got a safe file stream. If the previous open()
|
2014-04-08 18:38:45 +00:00
|
|
|
* call failed, this will return NULL. */
|
2010-04-09 15:01:51 +00:00
|
|
|
backup_file = fdopen(backup_fd, "wb");
|
2010-04-07 05:48:24 +00:00
|
|
|
|
2010-04-09 15:01:51 +00:00
|
|
|
if (backup_fd < 0 || backup_file == NULL) {
|
|
|
|
statusbar(_("Error writing backup file %s: %s"), backupname,
|
|
|
|
strerror(errno));
|
|
|
|
free(backupname);
|
|
|
|
goto cleanup_and_exit;
|
|
|
|
}
|
2005-04-19 21:47:01 +00:00
|
|
|
|
2014-06-10 19:12:14 +00:00
|
|
|
/* We shouldn't worry about chown()ing something if we're not
|
|
|
|
* root, since it's likely to fail! */
|
2010-05-23 04:30:23 +00:00
|
|
|
if (geteuid() == NANO_ROOT_UID && fchown(backup_fd,
|
2010-06-21 03:10:10 +00:00
|
|
|
openfile->current_stat->st_uid, openfile->current_stat->st_gid) == -1
|
2011-02-07 02:06:20 +00:00
|
|
|
&& !ISSET(INSECURE_BACKUP)) {
|
|
|
|
if (prompt_failed_backupwrite(backupname))
|
|
|
|
goto skip_backup;
|
2010-05-23 04:30:23 +00:00
|
|
|
statusbar(_("Error writing backup file %s: %s"), backupname,
|
|
|
|
strerror(errno));
|
|
|
|
free(backupname);
|
|
|
|
fclose(backup_file);
|
|
|
|
goto cleanup_and_exit;
|
|
|
|
}
|
|
|
|
|
2011-02-07 02:06:20 +00:00
|
|
|
if (fchmod(backup_fd, openfile->current_stat->st_mode) == -1
|
|
|
|
&& !ISSET(INSECURE_BACKUP)) {
|
|
|
|
if (prompt_failed_backupwrite(backupname))
|
|
|
|
goto skip_backup;
|
2008-08-09 03:39:10 +00:00
|
|
|
statusbar(_("Error writing backup file %s: %s"), backupname,
|
2004-11-26 18:10:07 +00:00
|
|
|
strerror(errno));
|
2002-06-28 22:45:14 +00:00
|
|
|
free(backupname);
|
2010-04-09 15:01:51 +00:00
|
|
|
fclose(backup_file);
|
2008-08-09 03:39:10 +00:00
|
|
|
/* If we can't write to the backup, DONT go on, since
|
2015-06-27 15:10:58 +00:00
|
|
|
* whatever caused the backup file to fail (e.g. disk
|
2015-08-29 20:14:57 +00:00
|
|
|
* full) may well cause the real file write to fail, which
|
2015-06-27 15:10:58 +00:00
|
|
|
* means we could lose both the backup and the original! */
|
2008-08-09 03:39:10 +00:00
|
|
|
goto cleanup_and_exit;
|
2002-06-28 22:45:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2003-08-05 19:31:12 +00:00
|
|
|
fprintf(stderr, "Backing up %s to %s\n", realname, backupname);
|
2002-06-28 22:45:14 +00:00
|
|
|
#endif
|
|
|
|
|
2003-12-24 08:03:54 +00:00
|
|
|
/* Copy the file. */
|
|
|
|
copy_status = copy_file(f, backup_file);
|
2004-11-26 20:17:49 +00:00
|
|
|
|
2010-06-24 14:47:00 +00:00
|
|
|
if (copy_status != 0) {
|
|
|
|
statusbar(_("Error reading %s: %s"), realname,
|
2004-11-26 18:10:07 +00:00
|
|
|
strerror(errno));
|
2010-06-24 14:47:00 +00:00
|
|
|
beep();
|
|
|
|
goto cleanup_and_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And set its metadata. */
|
|
|
|
if (utime(backupname, &filetime) == -1 && !ISSET(INSECURE_BACKUP)) {
|
2011-02-07 02:06:20 +00:00
|
|
|
if (prompt_failed_backupwrite(backupname))
|
|
|
|
goto skip_backup;
|
2010-06-24 14:47:00 +00:00
|
|
|
statusbar(_("Error writing backup file %s: %s"), backupname,
|
2003-12-24 08:03:54 +00:00
|
|
|
strerror(errno));
|
2014-04-08 18:38:45 +00:00
|
|
|
/* If we can't write to the backup, DON'T go on, since
|
|
|
|
* whatever caused the backup file to fail (e.g. disk full
|
|
|
|
* may well cause the real file write to fail, which means
|
|
|
|
* we could lose both the backup and the original! */
|
2008-08-09 03:39:10 +00:00
|
|
|
goto cleanup_and_exit;
|
2003-12-24 08:03:54 +00:00
|
|
|
}
|
2005-05-29 02:22:55 +00:00
|
|
|
|
2002-06-28 22:45:14 +00:00
|
|
|
free(backupname);
|
|
|
|
}
|
2006-04-06 05:18:23 +00:00
|
|
|
|
2008-08-09 09:31:33 +00:00
|
|
|
skip_backup:
|
2005-11-15 03:17:35 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2000-07-21 22:42:46 +00:00
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
if (f_open == NULL) {
|
|
|
|
original_umask = umask(0);
|
2004-07-03 03:22:23 +00:00
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
/* If we create a temp file, we don't let anyone else access it.
|
2005-06-05 19:33:27 +00:00
|
|
|
* We create a temp file if tmp is TRUE. */
|
|
|
|
if (tmp)
|
2005-05-31 04:28:15 +00:00
|
|
|
umask(S_IRWXG | S_IRWXO);
|
2005-06-05 19:33:27 +00:00
|
|
|
else
|
|
|
|
umask(original_umask);
|
2005-05-31 04:28:15 +00:00
|
|
|
}
|
2003-12-24 08:03:54 +00:00
|
|
|
|
2004-07-03 03:22:23 +00:00
|
|
|
/* If we're prepending, copy the file to a temp file. */
|
2005-08-01 18:27:10 +00:00
|
|
|
if (append == PREPEND) {
|
2003-12-24 08:03:54 +00:00
|
|
|
int fd_source;
|
|
|
|
FILE *f_source = NULL;
|
|
|
|
|
2006-04-07 04:37:14 +00:00
|
|
|
if (f == NULL) {
|
|
|
|
f = fopen(realname, "rb");
|
|
|
|
|
|
|
|
if (f == NULL) {
|
|
|
|
statusbar(_("Error reading %s: %s"), realname,
|
|
|
|
strerror(errno));
|
|
|
|
beep();
|
|
|
|
goto cleanup_and_exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
tempname = safe_tempfile(&f);
|
2005-04-19 21:47:01 +00:00
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
if (tempname == NULL) {
|
2006-05-03 13:11:00 +00:00
|
|
|
statusbar(_("Error writing temp file: %s"),
|
2004-11-26 18:10:07 +00:00
|
|
|
strerror(errno));
|
2002-09-13 18:14:04 +00:00
|
|
|
goto cleanup_and_exit;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2000-12-04 05:15:39 +00:00
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
if (f_open == NULL) {
|
2008-08-17 16:25:40 +00:00
|
|
|
fd_source = open(realname, O_RDONLY | O_CREAT, S_IRUSR | S_IWUSR);
|
2005-04-19 21:47:01 +00:00
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
if (fd_source != -1) {
|
|
|
|
f_source = fdopen(fd_source, "rb");
|
|
|
|
if (f_source == NULL) {
|
|
|
|
statusbar(_("Error reading %s: %s"), realname,
|
|
|
|
strerror(errno));
|
2005-11-18 20:21:48 +00:00
|
|
|
beep();
|
2005-05-31 04:28:15 +00:00
|
|
|
close(fd_source);
|
|
|
|
fclose(f);
|
|
|
|
unlink(tempname);
|
|
|
|
goto cleanup_and_exit;
|
|
|
|
}
|
|
|
|
}
|
2003-12-24 08:03:54 +00:00
|
|
|
}
|
|
|
|
|
2015-08-11 17:27:30 +00:00
|
|
|
if (f_source == NULL || copy_file(f_source, f) != 0) {
|
2004-11-26 18:10:07 +00:00
|
|
|
statusbar(_("Error writing %s: %s"), tempname,
|
|
|
|
strerror(errno));
|
2003-12-24 08:03:54 +00:00
|
|
|
unlink(tempname);
|
2002-09-13 18:14:04 +00:00
|
|
|
goto cleanup_and_exit;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
if (f_open == NULL) {
|
|
|
|
/* Now open the file in place. Use O_EXCL if tmp is TRUE. This
|
|
|
|
* is copied from joe, because wiggy says so *shrug*. */
|
2005-11-15 02:09:03 +00:00
|
|
|
fd = open(realname, O_WRONLY | O_CREAT | ((append == APPEND) ?
|
|
|
|
O_APPEND : (tmp ? O_EXCL : O_TRUNC)), S_IRUSR |
|
|
|
|
S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
|
2003-12-24 08:03:54 +00:00
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
/* Set the umask back to the user's original value. */
|
|
|
|
umask(original_umask);
|
2003-12-24 08:03:54 +00:00
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
/* If we couldn't open the file, give up. */
|
|
|
|
if (fd == -1) {
|
|
|
|
statusbar(_("Error writing %s: %s"), realname,
|
|
|
|
strerror(errno));
|
2005-04-19 21:47:01 +00:00
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
/* tempname has been set only if we're prepending. */
|
|
|
|
if (tempname != NULL)
|
|
|
|
unlink(tempname);
|
|
|
|
goto cleanup_and_exit;
|
|
|
|
}
|
2002-04-22 23:52:34 +00:00
|
|
|
|
2005-08-01 18:27:10 +00:00
|
|
|
f = fdopen(fd, (append == APPEND) ? "ab" : "wb");
|
2005-05-28 23:32:45 +00:00
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
if (f == NULL) {
|
|
|
|
statusbar(_("Error writing %s: %s"), realname,
|
|
|
|
strerror(errno));
|
|
|
|
close(fd);
|
|
|
|
goto cleanup_and_exit;
|
|
|
|
}
|
2002-04-22 23:52:34 +00:00
|
|
|
}
|
|
|
|
|
2004-05-24 05:05:07 +00:00
|
|
|
/* There might not be a magicline. There won't be when writing out
|
2003-12-24 08:03:54 +00:00
|
|
|
* a selection. */
|
2005-07-08 20:09:16 +00:00
|
|
|
assert(openfile->fileage != NULL && openfile->filebot != NULL);
|
2005-04-15 17:48:20 +00:00
|
|
|
|
2005-11-04 05:44:01 +00:00
|
|
|
while (fileptr != NULL) {
|
2005-11-04 05:59:41 +00:00
|
|
|
size_t data_len = strlen(fileptr->data), size;
|
2002-09-13 18:14:04 +00:00
|
|
|
|
2006-11-27 04:35:11 +00:00
|
|
|
/* Convert newlines to nulls, just before we write to disk. */
|
2002-06-13 00:40:19 +00:00
|
|
|
sunder(fileptr->data);
|
|
|
|
|
2003-12-24 08:03:54 +00:00
|
|
|
size = fwrite(fileptr->data, sizeof(char), data_len, f);
|
2002-06-13 00:40:19 +00:00
|
|
|
|
2006-11-27 04:35:11 +00:00
|
|
|
/* Convert nulls to newlines. data_len is the string's real
|
|
|
|
* length. */
|
2002-06-13 00:40:19 +00:00
|
|
|
unsunder(fileptr->data, data_len);
|
|
|
|
|
2002-04-22 23:52:34 +00:00
|
|
|
if (size < data_len) {
|
2004-11-26 18:10:07 +00:00
|
|
|
statusbar(_("Error writing %s: %s"), realname,
|
|
|
|
strerror(errno));
|
2002-04-23 10:22:33 +00:00
|
|
|
fclose(f);
|
2002-09-13 18:14:04 +00:00
|
|
|
goto cleanup_and_exit;
|
2002-04-23 10:22:33 +00:00
|
|
|
}
|
2005-04-15 17:48:20 +00:00
|
|
|
|
2005-11-04 05:59:41 +00:00
|
|
|
/* If we're on the last line of the file, don't write a newline
|
2005-11-04 06:21:39 +00:00
|
|
|
* character after it. If the last line of the file is blank,
|
|
|
|
* this means that zero bytes are written, in which case we
|
|
|
|
* don't count the last line in the total lines written. */
|
|
|
|
if (fileptr == openfile->filebot) {
|
|
|
|
if (fileptr->data[0] == '\0')
|
|
|
|
lineswritten--;
|
|
|
|
} else {
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2015-07-10 17:25:51 +00:00
|
|
|
if (openfile->fmt == DOS_FILE || openfile->fmt == MAC_FILE) {
|
2005-11-04 05:44:01 +00:00
|
|
|
if (putc('\r', f) == EOF) {
|
|
|
|
statusbar(_("Error writing %s: %s"), realname,
|
2004-11-26 18:10:07 +00:00
|
|
|
strerror(errno));
|
2005-11-04 05:44:01 +00:00
|
|
|
fclose(f);
|
|
|
|
goto cleanup_and_exit;
|
|
|
|
}
|
2003-12-24 08:03:54 +00:00
|
|
|
}
|
2001-09-22 04:20:25 +00:00
|
|
|
|
2015-07-10 17:25:51 +00:00
|
|
|
if (openfile->fmt != MAC_FILE)
|
2001-09-21 02:37:01 +00:00
|
|
|
#endif
|
2005-11-04 05:44:01 +00:00
|
|
|
if (putc('\n', f) == EOF) {
|
|
|
|
statusbar(_("Error writing %s: %s"), realname,
|
2004-11-26 18:10:07 +00:00
|
|
|
strerror(errno));
|
2005-11-04 05:44:01 +00:00
|
|
|
fclose(f);
|
|
|
|
goto cleanup_and_exit;
|
|
|
|
}
|
|
|
|
}
|
2000-06-19 04:22:15 +00:00
|
|
|
|
|
|
|
fileptr = fileptr->next;
|
|
|
|
lineswritten++;
|
|
|
|
}
|
|
|
|
|
2003-12-24 08:03:54 +00:00
|
|
|
/* If we're prepending, open the temp file, and append it to f. */
|
2005-08-01 18:27:10 +00:00
|
|
|
if (append == PREPEND) {
|
2003-12-24 08:03:54 +00:00
|
|
|
int fd_source;
|
|
|
|
FILE *f_source = NULL;
|
|
|
|
|
2008-08-17 16:25:40 +00:00
|
|
|
fd_source = open(tempname, O_RDONLY | O_CREAT, S_IRUSR | S_IWUSR);
|
2005-05-29 02:22:55 +00:00
|
|
|
|
2003-12-24 08:03:54 +00:00
|
|
|
if (fd_source != -1) {
|
|
|
|
f_source = fdopen(fd_source, "rb");
|
|
|
|
if (f_source == NULL)
|
|
|
|
close(fd_source);
|
2002-04-22 23:52:34 +00:00
|
|
|
}
|
2005-05-29 02:22:55 +00:00
|
|
|
|
2002-12-22 16:30:00 +00:00
|
|
|
if (f_source == NULL) {
|
2004-11-26 18:10:07 +00:00
|
|
|
statusbar(_("Error reading %s: %s"), tempname,
|
|
|
|
strerror(errno));
|
2005-11-18 20:21:48 +00:00
|
|
|
beep();
|
2003-12-24 08:03:54 +00:00
|
|
|
fclose(f);
|
2002-09-13 18:14:04 +00:00
|
|
|
goto cleanup_and_exit;
|
2002-04-16 03:15:47 +00:00
|
|
|
}
|
|
|
|
|
2015-08-11 17:43:08 +00:00
|
|
|
if (copy_file(f_source, f) == -1) {
|
2004-11-26 18:10:07 +00:00
|
|
|
statusbar(_("Error writing %s: %s"), realname,
|
|
|
|
strerror(errno));
|
2002-09-13 18:14:04 +00:00
|
|
|
goto cleanup_and_exit;
|
2000-12-06 05:56:08 +00:00
|
|
|
}
|
2015-08-11 17:43:08 +00:00
|
|
|
|
|
|
|
unlink(tempname);
|
2008-08-16 23:54:15 +00:00
|
|
|
} else if (fclose(f) != 0) {
|
|
|
|
statusbar(_("Error writing %s: %s"), realname,
|
|
|
|
strerror(errno));
|
|
|
|
goto cleanup_and_exit;
|
|
|
|
}
|
2000-12-06 05:56:08 +00:00
|
|
|
|
2005-08-01 18:27:10 +00:00
|
|
|
if (!tmp && append == OVERWRITE) {
|
2003-01-13 01:35:15 +00:00
|
|
|
if (!nonamechange) {
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->filename = mallocstrcpy(openfile->filename,
|
|
|
|
realname);
|
2014-04-04 11:59:03 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2005-07-15 01:08:52 +00:00
|
|
|
/* We might have changed the filename, so update the colors
|
2005-07-16 22:47:12 +00:00
|
|
|
* to account for it, and then make sure we're using
|
|
|
|
* them. */
|
2005-07-13 20:18:46 +00:00
|
|
|
color_update();
|
2005-07-16 22:47:12 +00:00
|
|
|
color_init();
|
2005-07-13 20:18:46 +00:00
|
|
|
|
|
|
|
/* If color syntaxes are available and turned on, we need to
|
|
|
|
* call edit_refresh(). */
|
2015-08-29 20:14:57 +00:00
|
|
|
if (openfile->colorstrings != NULL && !ISSET(NO_COLOR_SYNTAX))
|
2004-01-14 06:38:00 +00:00
|
|
|
edit_refresh();
|
2003-01-13 01:35:15 +00:00
|
|
|
#endif
|
|
|
|
}
|
2001-06-05 23:24:55 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2013-04-13 02:56:03 +00:00
|
|
|
if (!openfile->mark_set)
|
2016-02-09 20:53:11 +00:00
|
|
|
/* Get or update the stat info to reflect the current state. */
|
|
|
|
stat_with_alloc(realname, &openfile->current_stat);
|
2002-06-28 22:45:14 +00:00
|
|
|
#endif
|
2005-07-15 19:37:32 +00:00
|
|
|
|
2005-06-14 23:36:13 +00:00
|
|
|
statusbar(P_("Wrote %lu line", "Wrote %lu lines",
|
|
|
|
(unsigned long)lineswritten),
|
2005-04-19 21:47:01 +00:00
|
|
|
(unsigned long)lineswritten);
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->modified = FALSE;
|
2001-01-03 07:11:47 +00:00
|
|
|
titlebar(NULL);
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2002-09-13 18:14:04 +00:00
|
|
|
|
2007-01-11 21:36:29 +00:00
|
|
|
retval = TRUE;
|
2002-09-13 18:14:04 +00:00
|
|
|
|
|
|
|
cleanup_and_exit:
|
|
|
|
free(realname);
|
2015-06-14 19:14:41 +00:00
|
|
|
free(tempname);
|
2005-05-29 02:22:55 +00:00
|
|
|
|
2002-09-13 18:14:04 +00:00
|
|
|
return retval;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2007-01-11 21:52:29 +00:00
|
|
|
/* Write a marked selection from a file out to disk. Return TRUE on
|
|
|
|
* success or FALSE on error. */
|
2007-01-11 21:36:29 +00:00
|
|
|
bool write_marked_file(const char *name, FILE *f_open, bool tmp,
|
2005-08-01 18:27:10 +00:00
|
|
|
append_type append)
|
2004-01-23 19:34:03 +00:00
|
|
|
{
|
2007-01-11 22:46:22 +00:00
|
|
|
bool retval;
|
2005-07-08 20:09:16 +00:00
|
|
|
bool old_modified = openfile->modified;
|
|
|
|
/* write_file() unsets the modified flag. */
|
2005-11-05 17:35:44 +00:00
|
|
|
bool added_magicline = FALSE;
|
2004-11-03 22:03:41 +00:00
|
|
|
/* Whether we added a magicline after filebot. */
|
|
|
|
filestruct *top, *bot;
|
|
|
|
size_t top_x, bot_x;
|
|
|
|
|
2005-07-21 05:56:42 +00:00
|
|
|
assert(openfile->mark_set);
|
|
|
|
|
2004-11-03 22:03:41 +00:00
|
|
|
/* Partition the filestruct so that it contains only the marked
|
|
|
|
* text. */
|
|
|
|
mark_order((const filestruct **)&top, &top_x,
|
2004-11-05 23:03:03 +00:00
|
|
|
(const filestruct **)&bot, &bot_x, NULL);
|
2004-11-03 22:03:41 +00:00
|
|
|
filepart = partition_filestruct(top, top_x, bot, bot_x);
|
2004-01-23 19:34:03 +00:00
|
|
|
|
2005-11-05 17:35:44 +00:00
|
|
|
/* Handle the magicline if the NO_NEWLINES flag isn't set. If the
|
|
|
|
* line at filebot is blank, treat it as the magicline and hence the
|
|
|
|
* end of the file. Otherwise, add a magicline and treat it as the
|
|
|
|
* end of the file. */
|
|
|
|
if (!ISSET(NO_NEWLINES) &&
|
2015-08-29 20:14:57 +00:00
|
|
|
(added_magicline = (openfile->filebot->data[0] != '\0')))
|
2004-11-03 22:03:41 +00:00
|
|
|
new_magicline();
|
2004-01-23 19:34:03 +00:00
|
|
|
|
2005-05-31 04:28:15 +00:00
|
|
|
retval = write_file(name, f_open, tmp, append, TRUE);
|
2004-01-23 19:34:03 +00:00
|
|
|
|
2005-11-05 17:35:44 +00:00
|
|
|
/* If the NO_NEWLINES flag isn't set, and we added a magicline,
|
|
|
|
* remove it now. */
|
|
|
|
if (!ISSET(NO_NEWLINES) && added_magicline)
|
2004-11-03 22:03:41 +00:00
|
|
|
remove_magicline();
|
|
|
|
|
|
|
|
/* Unpartition the filestruct so that it contains all the text
|
|
|
|
* again. */
|
2004-11-22 00:16:23 +00:00
|
|
|
unpartition_filestruct(&filepart);
|
2004-11-03 22:03:41 +00:00
|
|
|
|
2004-10-08 15:35:33 +00:00
|
|
|
if (old_modified)
|
2004-01-23 19:34:03 +00:00
|
|
|
set_modified();
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
2013-01-01 03:24:39 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2004-01-23 19:34:03 +00:00
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Write the current file to disk. If the mark is on, write the current
|
2015-12-23 16:34:44 +00:00
|
|
|
* marked selection to disk. If exiting is TRUE, write the entire file
|
|
|
|
* to disk regardless of whether the mark is on, and without prompting if
|
|
|
|
* the TEMP_FILE flag is set and the current file has a name. Return 0
|
|
|
|
* on error, 1 on success, and 2 when the buffer is to be discarded. */
|
|
|
|
int do_writeout(bool exiting)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2007-01-11 21:36:29 +00:00
|
|
|
int i;
|
2005-08-01 18:27:10 +00:00
|
|
|
append_type append = OVERWRITE;
|
2004-10-05 20:11:31 +00:00
|
|
|
char *ans;
|
2007-01-01 05:15:32 +00:00
|
|
|
/* The last answer the user typed at the statusbar prompt. */
|
2014-04-03 20:57:44 +00:00
|
|
|
#ifndef DISABLE_EXTRA
|
2005-07-08 20:09:16 +00:00
|
|
|
static bool did_credits = FALSE;
|
2000-11-24 20:45:14 +00:00
|
|
|
#endif
|
2015-12-23 16:34:44 +00:00
|
|
|
bool result = FALSE;
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2015-12-07 17:05:04 +00:00
|
|
|
if (exiting && openfile->filename[0] != '\0' && ISSET(TEMP_FILE)) {
|
2015-12-23 16:34:44 +00:00
|
|
|
result = write_file(openfile->filename, NULL, FALSE, OVERWRITE, FALSE);
|
2004-10-05 20:11:31 +00:00
|
|
|
|
2015-12-23 16:34:44 +00:00
|
|
|
if (result)
|
|
|
|
return 1; /* The write succeeded. */
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
ans = mallocstrcpy(NULL,
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2006-11-07 21:32:43 +00:00
|
|
|
(!exiting && openfile->mark_set) ? "" :
|
2004-03-15 20:26:30 +00:00
|
|
|
#endif
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->filename);
|
2004-03-15 20:26:30 +00:00
|
|
|
|
|
|
|
while (TRUE) {
|
|
|
|
const char *msg;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2002-09-13 18:14:04 +00:00
|
|
|
const char *formatstr, *backupstr;
|
|
|
|
|
2015-07-10 17:25:51 +00:00
|
|
|
formatstr = (openfile->fmt == DOS_FILE) ? _(" [DOS Format]") :
|
|
|
|
(openfile->fmt == MAC_FILE) ? _(" [Mac Format]") : "";
|
2005-07-08 20:09:16 +00:00
|
|
|
|
2006-06-14 13:19:43 +00:00
|
|
|
backupstr = ISSET(BACKUP_FILE) ? _(" [Backup]") : "";
|
2002-02-15 19:17:02 +00:00
|
|
|
|
2007-04-21 18:57:47 +00:00
|
|
|
/* If we're using restricted mode, don't display the "Write
|
2007-04-21 20:33:56 +00:00
|
|
|
* Selection to File" prompt. This function is disabled, since
|
|
|
|
* it allows reading from or writing to files not specified on
|
|
|
|
* the command line. */
|
2007-04-21 18:57:47 +00:00
|
|
|
if (!ISSET(RESTRICTED) && !exiting && openfile->mark_set)
|
2015-07-10 17:25:51 +00:00
|
|
|
msg = (append == PREPEND) ? _("Prepend Selection to File") :
|
|
|
|
(append == APPEND) ? _("Append Selection to File") :
|
|
|
|
_("Write Selection to File");
|
2002-06-28 22:45:14 +00:00
|
|
|
else
|
2005-11-15 03:17:35 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2006-06-14 13:19:43 +00:00
|
|
|
msg = (append == PREPEND) ? _("File Name to Prepend to") :
|
2015-07-10 17:25:51 +00:00
|
|
|
(append == APPEND) ? _("File Name to Append to") :
|
|
|
|
_("File Name to Write");
|
2004-03-15 20:26:30 +00:00
|
|
|
|
2016-01-13 20:32:40 +00:00
|
|
|
/* If we're using restricted mode, and the filename isn't blank,
|
|
|
|
* disable tab completion. */
|
2005-11-07 21:45:44 +00:00
|
|
|
i = do_prompt(!ISSET(RESTRICTED) ||
|
2006-02-07 21:11:05 +00:00
|
|
|
openfile->filename[0] == '\0',
|
|
|
|
#ifndef DISABLE_TABCOMP
|
|
|
|
TRUE,
|
|
|
|
#endif
|
2008-03-05 07:34:01 +00:00
|
|
|
MWRITEFILE, ans,
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2006-02-18 21:32:29 +00:00
|
|
|
NULL,
|
|
|
|
#endif
|
2006-06-14 13:19:43 +00:00
|
|
|
edit_refresh, "%s%s%s", msg,
|
2006-02-18 21:32:29 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
formatstr, backupstr
|
2004-03-15 20:26:30 +00:00
|
|
|
#else
|
2006-02-18 21:32:29 +00:00
|
|
|
"", ""
|
2004-03-15 20:26:30 +00:00
|
|
|
#endif
|
|
|
|
);
|
|
|
|
|
2006-11-27 07:13:28 +00:00
|
|
|
/* If the filename or command begins with a newline (i.e. an
|
|
|
|
* encoded null), treat it as though it's blank. */
|
2007-07-01 21:33:17 +00:00
|
|
|
if (i < 0 || *answer == '\n') {
|
2002-09-13 18:14:04 +00:00
|
|
|
statusbar(_("Cancelled"));
|
2004-10-05 20:11:31 +00:00
|
|
|
break;
|
|
|
|
} else {
|
2014-07-27 21:07:15 +00:00
|
|
|
functionptrtype func = func_from_key(&i);
|
|
|
|
|
2015-12-23 16:34:44 +00:00
|
|
|
/* Upon request, abandon the buffer, if user is sure. */
|
|
|
|
if (func == discard_buffer) {
|
|
|
|
if (openfile->modified)
|
|
|
|
i = do_yesno_prompt(FALSE,
|
|
|
|
_("Save modified buffer anyway ? "));
|
|
|
|
else
|
|
|
|
i = 0;
|
|
|
|
|
|
|
|
if (i == 0) {
|
|
|
|
free(ans);
|
|
|
|
return 2; /* Yes, discard the buffer. */
|
2015-12-23 19:18:33 +00:00
|
|
|
} else
|
|
|
|
continue; /* Go back to the filename prompt. */
|
2015-12-23 16:34:44 +00:00
|
|
|
}
|
|
|
|
|
2004-10-05 20:11:31 +00:00
|
|
|
ans = mallocstrcpy(ans, answer);
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_BROWSER
|
2014-07-27 21:07:15 +00:00
|
|
|
if (func == to_files_void) {
|
2004-10-05 20:11:31 +00:00
|
|
|
char *tmp = do_browse_from(answer);
|
2001-05-21 12:56:25 +00:00
|
|
|
|
2004-10-05 20:11:31 +00:00
|
|
|
if (tmp == NULL)
|
|
|
|
continue;
|
2005-07-08 20:09:16 +00:00
|
|
|
|
2006-08-29 20:54:38 +00:00
|
|
|
/* We have a file now. Indicate this. */
|
2004-10-05 20:11:31 +00:00
|
|
|
free(answer);
|
|
|
|
answer = tmp;
|
|
|
|
} else
|
2002-09-13 18:14:04 +00:00
|
|
|
#endif /* !DISABLE_BROWSER */
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2014-07-27 21:07:15 +00:00
|
|
|
if (func == dos_format_void) {
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->fmt = (openfile->fmt == DOS_FILE) ? NIX_FILE :
|
|
|
|
DOS_FILE;
|
2004-10-05 20:11:31 +00:00
|
|
|
continue;
|
2014-07-27 21:07:15 +00:00
|
|
|
} else if (func == mac_format_void) {
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->fmt = (openfile->fmt == MAC_FILE) ? NIX_FILE :
|
|
|
|
MAC_FILE;
|
2004-10-05 20:11:31 +00:00
|
|
|
continue;
|
2014-07-27 21:07:15 +00:00
|
|
|
} else if (func == backup_file_void) {
|
2004-10-05 20:11:31 +00:00
|
|
|
TOGGLE(BACKUP_FILE);
|
|
|
|
continue;
|
|
|
|
} else
|
2005-11-15 03:17:35 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2014-07-27 21:07:15 +00:00
|
|
|
if (func == prepend_void) {
|
2005-08-01 18:27:10 +00:00
|
|
|
append = (append == PREPEND) ? OVERWRITE : PREPEND;
|
2004-10-05 20:11:31 +00:00
|
|
|
continue;
|
2014-07-27 21:07:15 +00:00
|
|
|
} else if (func == append_void) {
|
2005-08-01 18:27:10 +00:00
|
|
|
append = (append == APPEND) ? OVERWRITE : APPEND;
|
2004-10-05 20:11:31 +00:00
|
|
|
continue;
|
2014-07-27 21:07:15 +00:00
|
|
|
} else if (func == do_help_void) {
|
2008-08-30 21:00:00 +00:00
|
|
|
continue;
|
2004-10-05 20:11:31 +00:00
|
|
|
}
|
2001-01-03 07:11:47 +00:00
|
|
|
|
2000-06-19 04:22:15 +00:00
|
|
|
#ifdef DEBUG
|
2004-10-05 20:11:31 +00:00
|
|
|
fprintf(stderr, "filename is %s\n", answer);
|
2000-06-19 04:22:15 +00:00
|
|
|
#endif
|
2000-11-24 20:45:14 +00:00
|
|
|
|
2014-04-03 20:57:44 +00:00
|
|
|
#ifndef DISABLE_EXTRA
|
2006-05-13 18:06:43 +00:00
|
|
|
/* If the current file has been modified, we've pressed
|
|
|
|
* Ctrl-X at the edit window to exit, we've pressed "y" at
|
|
|
|
* the "Save modified buffer" prompt to save, we've entered
|
|
|
|
* "zzy" as the filename to save under (hence "xyzzy"), and
|
|
|
|
* this is the first time we've done this, show an Easter
|
|
|
|
* egg. Display the credits. */
|
|
|
|
if (!did_credits && exiting && !ISSET(TEMP_FILE) &&
|
2015-08-29 20:14:57 +00:00
|
|
|
strcasecmp(answer, "zzy") == 0) {
|
2004-10-05 20:11:31 +00:00
|
|
|
do_credits();
|
2005-07-08 20:09:16 +00:00
|
|
|
did_credits = TRUE;
|
2004-10-05 20:11:31 +00:00
|
|
|
break;
|
|
|
|
}
|
2000-11-24 20:45:14 +00:00
|
|
|
#endif
|
2004-10-05 20:11:31 +00:00
|
|
|
|
2006-11-07 22:57:13 +00:00
|
|
|
if (append == OVERWRITE) {
|
2006-12-11 22:11:32 +00:00
|
|
|
size_t answer_len = strlen(answer);
|
2007-04-18 19:09:44 +00:00
|
|
|
bool name_exists, do_warning;
|
2006-12-11 22:11:32 +00:00
|
|
|
char *full_answer, *full_filename;
|
2006-11-07 22:57:13 +00:00
|
|
|
struct stat st;
|
|
|
|
|
2006-12-11 22:11:32 +00:00
|
|
|
/* Convert newlines to nulls, just before we get the
|
|
|
|
* full path. */
|
|
|
|
sunder(answer);
|
2006-11-07 22:57:13 +00:00
|
|
|
|
2006-12-11 22:11:32 +00:00
|
|
|
full_answer = get_full_path(answer);
|
|
|
|
full_filename = get_full_path(openfile->filename);
|
2007-04-18 19:09:44 +00:00
|
|
|
name_exists = (stat((full_answer == NULL) ? answer :
|
|
|
|
full_answer, &st) != -1);
|
2007-04-21 20:24:16 +00:00
|
|
|
if (openfile->filename[0] == '\0')
|
|
|
|
do_warning = name_exists;
|
|
|
|
else
|
|
|
|
do_warning = (strcmp((full_answer == NULL) ?
|
|
|
|
answer : full_answer, (full_filename == NULL) ?
|
|
|
|
openfile->filename : full_filename) != 0);
|
2006-12-11 22:11:32 +00:00
|
|
|
|
2006-12-15 04:50:57 +00:00
|
|
|
/* Convert nulls to newlines. answer_len is the
|
|
|
|
* string's real length. */
|
|
|
|
unsunder(answer, answer_len);
|
|
|
|
|
2015-06-14 19:14:41 +00:00
|
|
|
free(full_filename);
|
|
|
|
free(full_answer);
|
2006-11-08 13:03:37 +00:00
|
|
|
|
2007-04-18 19:09:44 +00:00
|
|
|
if (do_warning) {
|
2007-04-21 18:23:06 +00:00
|
|
|
/* If we're using restricted mode, we aren't allowed
|
|
|
|
* to overwrite an existing file with the current
|
|
|
|
* file. We also aren't allowed to change the name
|
|
|
|
* of the current file if it has one, because that
|
|
|
|
* would allow reading from or writing to files not
|
|
|
|
* specified on the command line. */
|
|
|
|
if (ISSET(RESTRICTED))
|
|
|
|
continue;
|
2006-12-15 02:49:44 +00:00
|
|
|
|
2007-04-21 18:23:06 +00:00
|
|
|
if (name_exists) {
|
2006-12-15 02:49:44 +00:00
|
|
|
i = do_yesno_prompt(FALSE,
|
|
|
|
_("File exists, OVERWRITE ? "));
|
|
|
|
if (i == 0 || i == -1)
|
|
|
|
continue;
|
2007-04-21 18:23:06 +00:00
|
|
|
} else
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2007-04-21 18:23:06 +00:00
|
|
|
if (exiting || !openfile->mark_set)
|
2003-11-19 23:59:14 +00:00
|
|
|
#endif
|
2007-04-21 18:23:06 +00:00
|
|
|
{
|
2006-12-15 02:49:44 +00:00
|
|
|
i = do_yesno_prompt(FALSE,
|
|
|
|
_("Save file under DIFFERENT NAME ? "));
|
|
|
|
if (i == 0 || i == -1)
|
|
|
|
continue;
|
|
|
|
}
|
2004-10-05 20:11:31 +00:00
|
|
|
}
|
2008-10-22 22:11:46 +00:00
|
|
|
#ifndef NANO_TINY
|
2014-04-08 18:38:45 +00:00
|
|
|
/* Complain if the file exists, the name hasn't changed,
|
|
|
|
* and the stat information we had before does not match
|
|
|
|
* what we have now. */
|
2014-06-20 10:48:26 +00:00
|
|
|
else if (name_exists && openfile->current_stat &&
|
|
|
|
(openfile->current_stat->st_mtime < st.st_mtime ||
|
|
|
|
openfile->current_stat->st_dev != st.st_dev ||
|
|
|
|
openfile->current_stat->st_ino != st.st_ino)) {
|
2008-10-21 10:20:07 +00:00
|
|
|
i = do_yesno_prompt(FALSE,
|
|
|
|
_("File was modified since you opened it, continue saving ? "));
|
|
|
|
if (i == 0 || i == -1)
|
|
|
|
continue;
|
|
|
|
}
|
2008-10-22 22:11:46 +00:00
|
|
|
#endif
|
2008-10-21 10:20:07 +00:00
|
|
|
|
2003-11-19 23:59:14 +00:00
|
|
|
}
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2015-07-10 17:25:51 +00:00
|
|
|
/* Convert newlines to nulls, just before we save the file. */
|
2006-12-11 22:11:32 +00:00
|
|
|
sunder(answer);
|
|
|
|
align(&answer);
|
|
|
|
|
2004-10-05 20:11:31 +00:00
|
|
|
/* Here's where we allow the selected text to be written to
|
2007-04-21 20:33:56 +00:00
|
|
|
* a separate file. If we're using restricted mode, this
|
|
|
|
* function is disabled, since it allows reading from or
|
|
|
|
* writing to files not specified on the command line. */
|
2015-12-23 16:34:44 +00:00
|
|
|
result =
|
2007-01-11 23:10:03 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
(!ISSET(RESTRICTED) && !exiting && openfile->mark_set) ?
|
|
|
|
write_marked_file(answer, NULL, FALSE, append) :
|
2006-11-07 21:08:17 +00:00
|
|
|
#endif
|
2007-01-11 23:10:03 +00:00
|
|
|
write_file(answer, NULL, FALSE, append, FALSE);
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2004-10-05 20:11:31 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-05-13 18:06:43 +00:00
|
|
|
}
|
2004-10-05 20:11:31 +00:00
|
|
|
|
|
|
|
free(ans);
|
2005-02-08 20:37:53 +00:00
|
|
|
|
2015-12-23 16:34:44 +00:00
|
|
|
return result ? 1 : 0;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2015-12-23 16:34:44 +00:00
|
|
|
/* Write the current buffer to disk, or discard it. */
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_writeout_void(void)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2015-12-23 16:34:44 +00:00
|
|
|
/* If the user chose to discard the buffer, close it. */
|
|
|
|
if (do_writeout(FALSE) == 2)
|
|
|
|
close_and_go();
|
|
|
|
|
2004-10-05 20:11:31 +00:00
|
|
|
display_main_list();
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2000-11-05 17:54:41 +00:00
|
|
|
|
2015-07-25 19:25:50 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
/* If it has a name, write the current file to disk without prompting. */
|
|
|
|
void do_savefile(void)
|
|
|
|
{
|
|
|
|
if (openfile->filename[0] != '\0')
|
|
|
|
write_file(openfile->filename, NULL, FALSE, OVERWRITE, FALSE);
|
|
|
|
else
|
|
|
|
do_writeout_void();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
/* Return a malloc()ed string containing the actual directory, used to
|
|
|
|
* convert ~user/ and ~/ notation. */
|
2002-09-13 18:14:04 +00:00
|
|
|
char *real_dir_from_tilde(const char *buf)
|
2000-11-24 14:00:16 +00:00
|
|
|
{
|
2007-04-18 17:13:36 +00:00
|
|
|
char *retval;
|
2001-01-23 03:09:15 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
assert(buf != NULL);
|
2005-02-08 20:37:53 +00:00
|
|
|
|
2007-07-01 21:33:17 +00:00
|
|
|
if (*buf == '~') {
|
2007-04-18 19:16:08 +00:00
|
|
|
size_t i = 1;
|
2007-04-18 17:13:36 +00:00
|
|
|
char *tilde_dir;
|
2002-09-13 18:14:04 +00:00
|
|
|
|
2007-04-19 03:23:16 +00:00
|
|
|
/* Figure out how much of the string we need to compare. */
|
2007-04-18 19:16:08 +00:00
|
|
|
for (; buf[i] != '/' && buf[i] != '\0'; i++)
|
2002-09-13 18:14:04 +00:00
|
|
|
;
|
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
/* Get the home directory. */
|
|
|
|
if (i == 1) {
|
|
|
|
get_homedir();
|
2007-04-18 17:13:36 +00:00
|
|
|
tilde_dir = mallocstrcpy(NULL, homedir);
|
2005-02-08 20:37:53 +00:00
|
|
|
} else {
|
|
|
|
const struct passwd *userdata;
|
|
|
|
|
2007-04-18 17:13:36 +00:00
|
|
|
tilde_dir = mallocstrncpy(NULL, buf, i + 1);
|
|
|
|
tilde_dir[i] = '\0';
|
|
|
|
|
2002-09-13 18:14:04 +00:00
|
|
|
do {
|
|
|
|
userdata = getpwent();
|
2007-04-20 04:13:06 +00:00
|
|
|
} while (userdata != NULL && strcmp(userdata->pw_name,
|
|
|
|
tilde_dir + 1) != 0);
|
2005-02-08 20:37:53 +00:00
|
|
|
endpwent();
|
2007-04-17 03:43:59 +00:00
|
|
|
if (userdata != NULL)
|
2007-04-18 17:13:36 +00:00
|
|
|
tilde_dir = mallocstrcpy(tilde_dir, userdata->pw_dir);
|
2002-07-29 23:46:38 +00:00
|
|
|
}
|
2001-01-23 03:09:15 +00:00
|
|
|
|
2007-04-18 17:13:36 +00:00
|
|
|
retval = charalloc(strlen(tilde_dir) + strlen(buf + i) + 1);
|
|
|
|
sprintf(retval, "%s%s", tilde_dir, buf + i);
|
2000-11-25 04:43:43 +00:00
|
|
|
|
2007-04-18 17:13:36 +00:00
|
|
|
free(tilde_dir);
|
|
|
|
} else
|
|
|
|
retval = mallocstrcpy(NULL, buf);
|
2002-09-13 18:14:04 +00:00
|
|
|
|
2007-04-18 17:13:36 +00:00
|
|
|
return retval;
|
2000-11-24 14:00:16 +00:00
|
|
|
}
|
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
#if !defined(DISABLE_TABCOMP) || !defined(DISABLE_BROWSER)
|
2005-02-11 16:02:54 +00:00
|
|
|
/* Our sort routine for file listings. Sort alphabetically and
|
2005-06-21 04:11:04 +00:00
|
|
|
* case-insensitively, and sort directories before filenames. */
|
2005-02-08 20:37:53 +00:00
|
|
|
int diralphasort(const void *va, const void *vb)
|
|
|
|
{
|
|
|
|
struct stat fileinfo;
|
|
|
|
const char *a = *(const char *const *)va;
|
|
|
|
const char *b = *(const char *const *)vb;
|
|
|
|
bool aisdir = stat(a, &fileinfo) != -1 && S_ISDIR(fileinfo.st_mode);
|
|
|
|
bool bisdir = stat(b, &fileinfo) != -1 && S_ISDIR(fileinfo.st_mode);
|
|
|
|
|
|
|
|
if (aisdir && !bisdir)
|
|
|
|
return -1;
|
|
|
|
if (!aisdir && bisdir)
|
|
|
|
return 1;
|
|
|
|
|
2006-05-12 19:30:28 +00:00
|
|
|
/* Standard function brain damage: We should be sorting
|
|
|
|
* alphabetically and case-insensitively according to the current
|
|
|
|
* locale, but there's no standard strcasecoll() function, so we
|
2014-05-13 21:11:59 +00:00
|
|
|
* have to use multibyte strcasecmp() instead. */
|
2005-06-21 04:11:04 +00:00
|
|
|
return mbstrcasecmp(a, b);
|
2005-02-08 20:37:53 +00:00
|
|
|
}
|
2005-06-15 06:30:05 +00:00
|
|
|
|
|
|
|
/* Free the memory allocated for array, which should contain len
|
|
|
|
* elements. */
|
|
|
|
void free_chararray(char **array, size_t len)
|
|
|
|
{
|
2015-11-30 16:44:44 +00:00
|
|
|
if (array == NULL)
|
|
|
|
return;
|
2006-05-11 01:53:33 +00:00
|
|
|
|
2005-06-15 06:30:05 +00:00
|
|
|
for (; len > 0; len--)
|
|
|
|
free(array[len - 1]);
|
|
|
|
free(array);
|
|
|
|
}
|
2005-02-08 20:37:53 +00:00
|
|
|
#endif
|
|
|
|
|
2003-01-13 01:35:15 +00:00
|
|
|
#ifndef DISABLE_TABCOMP
|
2007-01-11 23:11:46 +00:00
|
|
|
/* Is the given path a directory? */
|
2007-01-11 21:36:29 +00:00
|
|
|
bool is_dir(const char *buf)
|
2000-11-24 14:00:16 +00:00
|
|
|
{
|
2007-01-11 21:36:29 +00:00
|
|
|
char *dirptr;
|
2000-11-24 14:00:16 +00:00
|
|
|
struct stat fileinfo;
|
2007-01-11 21:36:29 +00:00
|
|
|
bool retval;
|
|
|
|
|
|
|
|
assert(buf != NULL);
|
2000-11-24 14:00:16 +00:00
|
|
|
|
2007-01-11 21:36:29 +00:00
|
|
|
dirptr = real_dir_from_tilde(buf);
|
|
|
|
|
2015-08-29 20:14:57 +00:00
|
|
|
retval = (stat(dirptr, &fileinfo) != -1 && S_ISDIR(fileinfo.st_mode));
|
2000-11-24 14:00:16 +00:00
|
|
|
|
2002-09-13 18:14:04 +00:00
|
|
|
free(dirptr);
|
2005-02-08 20:37:53 +00:00
|
|
|
|
2006-02-07 18:32:22 +00:00
|
|
|
return retval;
|
2000-11-24 14:00:16 +00:00
|
|
|
}
|
2000-11-05 17:54:41 +00:00
|
|
|
|
2005-11-17 18:58:56 +00:00
|
|
|
/* These functions, username_tab_completion(), cwd_tab_completion()
|
|
|
|
* (originally exe_n_cwd_tab_completion()), and input_tab(), were
|
|
|
|
* adapted from busybox 0.46 (cmdedit.c). Here is the notice from that
|
2007-08-10 22:12:39 +00:00
|
|
|
* file, with the copyright years updated:
|
2000-11-05 17:54:41 +00:00
|
|
|
*
|
|
|
|
* Termios command line History and Editting, originally
|
|
|
|
* intended for NetBSD sh (ash)
|
2007-08-10 22:12:39 +00:00
|
|
|
* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
|
2000-11-05 17:54:41 +00:00
|
|
|
* Main code: Adam Rogoyski <rogoyski@cs.utexas.edu>
|
|
|
|
* Etc: Dave Cinege <dcinege@psychosis.com>
|
|
|
|
* Majorly adjusted/re-written for busybox:
|
|
|
|
* Erik Andersen <andersee@debian.org>
|
|
|
|
*
|
|
|
|
* You may use this code as you wish, so long as the original author(s)
|
|
|
|
* are attributed in any redistributions of the source code.
|
|
|
|
* This code is 'as is' with no warranty.
|
2005-02-08 20:37:53 +00:00
|
|
|
* This code may safely be consumed by a BSD or GPL license. */
|
2000-11-05 17:54:41 +00:00
|
|
|
|
2007-10-11 15:38:32 +00:00
|
|
|
/* We consider the first buf_len characters of buf for ~username tab
|
2005-02-08 20:37:53 +00:00
|
|
|
* completion. */
|
|
|
|
char **username_tab_completion(const char *buf, size_t *num_matches,
|
2007-10-11 15:38:32 +00:00
|
|
|
size_t buf_len)
|
2000-11-05 17:54:41 +00:00
|
|
|
{
|
2005-02-08 20:37:53 +00:00
|
|
|
char **matches = NULL;
|
|
|
|
const struct passwd *userdata;
|
2000-11-24 14:00:16 +00:00
|
|
|
|
2007-10-11 15:38:32 +00:00
|
|
|
assert(buf != NULL && num_matches != NULL && buf_len > 0);
|
2001-01-19 04:17:24 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
*num_matches = 0;
|
2001-01-19 04:17:24 +00:00
|
|
|
|
2001-01-23 03:27:31 +00:00
|
|
|
while ((userdata = getpwent()) != NULL) {
|
2007-10-11 15:38:32 +00:00
|
|
|
if (strncmp(userdata->pw_name, buf + 1, buf_len - 1) == 0) {
|
2005-02-08 20:37:53 +00:00
|
|
|
/* Cool, found a match. Add it to the list. This makes a
|
|
|
|
* lot more sense to me (Chris) this way... */
|
2001-01-19 04:17:24 +00:00
|
|
|
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
|
|
|
/* ...unless the match exists outside the operating
|
2005-02-08 20:37:53 +00:00
|
|
|
* directory, in which case just go to the next match. */
|
|
|
|
if (check_operating_dir(userdata->pw_dir, TRUE))
|
|
|
|
continue;
|
2001-09-19 03:19:43 +00:00
|
|
|
#endif
|
|
|
|
|
2006-02-07 18:35:26 +00:00
|
|
|
matches = (char **)nrealloc(matches, (*num_matches + 1) *
|
|
|
|
sizeof(char *));
|
2005-02-08 20:37:53 +00:00
|
|
|
matches[*num_matches] =
|
|
|
|
charalloc(strlen(userdata->pw_name) + 2);
|
|
|
|
sprintf(matches[*num_matches], "~%s", userdata->pw_name);
|
2004-07-17 19:49:12 +00:00
|
|
|
++(*num_matches);
|
2000-11-24 14:00:16 +00:00
|
|
|
}
|
2001-01-23 03:27:31 +00:00
|
|
|
}
|
|
|
|
endpwent();
|
2001-01-19 04:17:24 +00:00
|
|
|
|
2002-12-22 16:30:00 +00:00
|
|
|
return matches;
|
2000-11-05 17:54:41 +00:00
|
|
|
}
|
|
|
|
|
2007-10-11 15:38:32 +00:00
|
|
|
/* We consider the first buf_len characters of buf for filename tab
|
2005-11-17 18:58:56 +00:00
|
|
|
* completion. */
|
2006-02-07 21:11:05 +00:00
|
|
|
char **cwd_tab_completion(const char *buf, bool allow_files, size_t
|
2007-10-11 15:38:32 +00:00
|
|
|
*num_matches, size_t buf_len)
|
2000-11-05 17:54:41 +00:00
|
|
|
{
|
2005-07-08 20:09:16 +00:00
|
|
|
char *dirname = mallocstrcpy(NULL, buf), *filename;
|
2005-02-08 20:37:53 +00:00
|
|
|
size_t filenamelen;
|
|
|
|
char **matches = NULL;
|
2000-11-05 17:54:41 +00:00
|
|
|
DIR *dir;
|
2005-05-14 23:14:47 +00:00
|
|
|
const struct dirent *nextdir;
|
2000-11-05 17:54:41 +00:00
|
|
|
|
2007-10-11 15:19:45 +00:00
|
|
|
assert(dirname != NULL && num_matches != NULL);
|
2000-11-14 17:46:06 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
*num_matches = 0;
|
2007-10-11 15:38:32 +00:00
|
|
|
null_at(&dirname, buf_len);
|
2005-02-08 20:37:53 +00:00
|
|
|
|
|
|
|
/* Okie, if there's a / in the buffer, strip out the directory
|
|
|
|
* part. */
|
|
|
|
filename = strrchr(dirname, '/');
|
|
|
|
if (filename != NULL) {
|
|
|
|
char *tmpdirname = filename + 1;
|
|
|
|
|
|
|
|
filename = mallocstrcpy(NULL, tmpdirname);
|
2005-05-27 13:50:31 +00:00
|
|
|
*tmpdirname = '\0';
|
2005-02-08 20:37:53 +00:00
|
|
|
tmpdirname = dirname;
|
|
|
|
dirname = real_dir_from_tilde(dirname);
|
|
|
|
free(tmpdirname);
|
2000-11-05 17:54:41 +00:00
|
|
|
} else {
|
2005-02-08 20:37:53 +00:00
|
|
|
filename = dirname;
|
|
|
|
dirname = mallocstrcpy(NULL, "./");
|
2000-11-05 17:54:41 +00:00
|
|
|
}
|
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
assert(dirname[strlen(dirname) - 1] == '/');
|
2000-11-24 14:00:16 +00:00
|
|
|
|
2002-07-20 13:57:41 +00:00
|
|
|
dir = opendir(dirname);
|
2005-02-08 20:37:53 +00:00
|
|
|
|
2002-12-22 16:30:00 +00:00
|
|
|
if (dir == NULL) {
|
2005-02-08 20:37:53 +00:00
|
|
|
/* Don't print an error, just shut up and return. */
|
2000-11-05 17:54:41 +00:00
|
|
|
beep();
|
2005-02-08 20:37:53 +00:00
|
|
|
free(filename);
|
|
|
|
free(dirname);
|
|
|
|
return NULL;
|
2000-11-05 17:54:41 +00:00
|
|
|
}
|
2005-02-08 20:37:53 +00:00
|
|
|
|
|
|
|
filenamelen = strlen(filename);
|
|
|
|
|
2005-05-14 23:14:47 +00:00
|
|
|
while ((nextdir = readdir(dir)) != NULL) {
|
2006-02-07 21:11:05 +00:00
|
|
|
bool skip_match = FALSE;
|
|
|
|
|
2000-11-05 17:54:41 +00:00
|
|
|
#ifdef DEBUG
|
2005-05-14 23:14:47 +00:00
|
|
|
fprintf(stderr, "Comparing \'%s\'\n", nextdir->d_name);
|
2000-11-05 17:54:41 +00:00
|
|
|
#endif
|
2005-02-08 20:37:53 +00:00
|
|
|
/* See if this matches. */
|
2005-05-14 23:14:47 +00:00
|
|
|
if (strncmp(nextdir->d_name, filename, filenamelen) == 0 &&
|
2015-08-29 20:14:57 +00:00
|
|
|
(*filename == '.' || (strcmp(nextdir->d_name, ".") != 0 &&
|
|
|
|
strcmp(nextdir->d_name, "..") != 0))) {
|
2005-02-08 20:37:53 +00:00
|
|
|
/* Cool, found a match. Add it to the list. This makes a
|
|
|
|
* lot more sense to me (Chris) this way... */
|
2001-09-19 03:19:43 +00:00
|
|
|
|
2006-02-07 21:11:05 +00:00
|
|
|
char *tmp = charalloc(strlen(dirname) +
|
|
|
|
strlen(nextdir->d_name) + 1);
|
|
|
|
sprintf(tmp, "%s%s", dirname, nextdir->d_name);
|
|
|
|
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
|
|
|
/* ...unless the match exists outside the operating
|
2006-02-07 21:11:05 +00:00
|
|
|
* directory, in which case just go to the next match. */
|
|
|
|
if (check_operating_dir(tmp, TRUE))
|
|
|
|
skip_match = TRUE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ...or unless the match isn't a directory and allow_files
|
|
|
|
* isn't set, in which case just go to the next match. */
|
2006-02-07 21:16:46 +00:00
|
|
|
if (!allow_files && !is_dir(tmp))
|
2006-02-07 21:11:05 +00:00
|
|
|
skip_match = TRUE;
|
|
|
|
|
|
|
|
free(tmp);
|
2005-02-08 20:37:53 +00:00
|
|
|
|
2006-02-07 21:11:05 +00:00
|
|
|
if (skip_match)
|
2005-02-08 20:37:53 +00:00
|
|
|
continue;
|
2001-09-19 03:19:43 +00:00
|
|
|
|
2006-02-07 18:32:22 +00:00
|
|
|
matches = (char **)nrealloc(matches, (*num_matches + 1) *
|
|
|
|
sizeof(char *));
|
2005-05-14 23:14:47 +00:00
|
|
|
matches[*num_matches] = mallocstrcpy(NULL, nextdir->d_name);
|
2005-02-08 20:37:53 +00:00
|
|
|
++(*num_matches);
|
2000-11-05 17:54:41 +00:00
|
|
|
}
|
|
|
|
}
|
2005-07-08 20:09:16 +00:00
|
|
|
|
2003-02-08 02:02:02 +00:00
|
|
|
closedir(dir);
|
|
|
|
free(dirname);
|
2005-02-08 20:37:53 +00:00
|
|
|
free(filename);
|
2000-11-05 17:54:41 +00:00
|
|
|
|
2002-12-22 16:30:00 +00:00
|
|
|
return matches;
|
2000-11-05 17:54:41 +00:00
|
|
|
}
|
|
|
|
|
2005-05-26 18:11:32 +00:00
|
|
|
/* Do tab completion. place refers to how much the statusbar cursor
|
2006-02-18 21:32:29 +00:00
|
|
|
* position should be advanced. refresh_func is the function we will
|
|
|
|
* call to refresh the edit window. */
|
2006-02-07 21:11:05 +00:00
|
|
|
char *input_tab(char *buf, bool allow_files, size_t *place, bool
|
2006-02-18 21:32:29 +00:00
|
|
|
*lastwastab, void (*refresh_func)(void), bool *list)
|
2000-11-05 17:54:41 +00:00
|
|
|
{
|
2007-10-11 15:49:08 +00:00
|
|
|
size_t num_matches = 0, buf_len;
|
2005-02-08 20:37:53 +00:00
|
|
|
char **matches = NULL;
|
2000-11-05 17:54:41 +00:00
|
|
|
|
2015-08-29 20:14:57 +00:00
|
|
|
assert(buf != NULL && place != NULL && *place <= strlen(buf) &&
|
|
|
|
lastwastab != NULL && refresh_func != NULL && list != NULL);
|
2000-11-05 17:54:41 +00:00
|
|
|
|
2005-05-27 03:52:21 +00:00
|
|
|
*list = FALSE;
|
2000-11-05 17:54:41 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
/* If the word starts with `~' and there is no slash in the word,
|
|
|
|
* then try completing this word as a username. */
|
2007-07-01 21:33:17 +00:00
|
|
|
if (*place > 0 && *buf == '~') {
|
2005-02-08 20:37:53 +00:00
|
|
|
const char *bob = strchr(buf, '/');
|
2000-11-05 17:54:41 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
if (bob == NULL || bob >= buf + *place)
|
|
|
|
matches = username_tab_completion(buf, &num_matches,
|
|
|
|
*place);
|
|
|
|
}
|
2000-11-14 17:46:06 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
/* Match against files relative to the current working directory. */
|
|
|
|
if (matches == NULL)
|
2015-12-04 21:11:10 +00:00
|
|
|
matches = cwd_tab_completion(buf, allow_files, &num_matches, *place);
|
2000-11-14 17:46:06 +00:00
|
|
|
|
2007-10-11 15:49:08 +00:00
|
|
|
buf_len = strlen(buf);
|
|
|
|
|
|
|
|
if (num_matches == 0 || *place != buf_len)
|
2005-02-08 20:37:53 +00:00
|
|
|
beep();
|
|
|
|
else {
|
|
|
|
size_t match, common_len = 0;
|
|
|
|
char *mzero;
|
2005-02-22 23:22:37 +00:00
|
|
|
const char *lastslash = revstrstr(buf, "/", buf + *place);
|
|
|
|
size_t lastslash_len = (lastslash == NULL) ? 0 :
|
|
|
|
lastslash - buf + 1;
|
2005-05-27 13:06:18 +00:00
|
|
|
char *match1_mb = charalloc(mb_cur_max() + 1);
|
|
|
|
char *match2_mb = charalloc(mb_cur_max() + 1);
|
|
|
|
int match1_mb_len, match2_mb_len;
|
2005-02-08 20:37:53 +00:00
|
|
|
|
|
|
|
while (TRUE) {
|
|
|
|
for (match = 1; match < num_matches; match++) {
|
2005-07-18 18:43:39 +00:00
|
|
|
/* Get the number of single-byte characters that all the
|
|
|
|
* matches have in common. */
|
2005-05-27 13:06:18 +00:00
|
|
|
match1_mb_len = parse_mbchar(matches[0] + common_len,
|
2005-07-26 06:13:45 +00:00
|
|
|
match1_mb, NULL);
|
2005-05-27 13:06:18 +00:00
|
|
|
match2_mb_len = parse_mbchar(matches[match] +
|
2005-07-26 06:13:45 +00:00
|
|
|
common_len, match2_mb, NULL);
|
2005-05-27 13:06:18 +00:00
|
|
|
match1_mb[match1_mb_len] = '\0';
|
|
|
|
match2_mb[match2_mb_len] = '\0';
|
|
|
|
if (strcmp(match1_mb, match2_mb) != 0)
|
2005-02-08 20:37:53 +00:00
|
|
|
break;
|
|
|
|
}
|
2000-11-25 04:43:43 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
if (match < num_matches || matches[0][common_len] == '\0')
|
2000-11-25 04:43:43 +00:00
|
|
|
break;
|
2000-11-14 17:46:06 +00:00
|
|
|
|
2005-07-26 06:13:45 +00:00
|
|
|
common_len += parse_mbchar(buf + common_len, NULL, NULL);
|
2005-02-08 20:37:53 +00:00
|
|
|
}
|
2000-11-14 17:46:06 +00:00
|
|
|
|
2005-05-27 13:06:18 +00:00
|
|
|
free(match1_mb);
|
|
|
|
free(match2_mb);
|
|
|
|
|
2005-02-22 23:22:37 +00:00
|
|
|
mzero = charalloc(lastslash_len + common_len + 1);
|
2006-10-03 18:46:00 +00:00
|
|
|
|
|
|
|
strncpy(mzero, buf, lastslash_len);
|
|
|
|
strncpy(mzero + lastslash_len, matches[0], common_len);
|
2000-11-14 17:46:06 +00:00
|
|
|
|
2005-02-22 23:22:37 +00:00
|
|
|
common_len += lastslash_len;
|
2006-10-13 16:18:40 +00:00
|
|
|
mzero[common_len] = '\0';
|
2001-09-19 03:19:43 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
assert(common_len >= *place);
|
2000-11-24 14:00:16 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
if (num_matches == 1 && is_dir(mzero)) {
|
2006-10-13 16:35:57 +00:00
|
|
|
mzero[common_len++] = '/';
|
2005-05-26 03:32:41 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
assert(common_len > *place);
|
|
|
|
}
|
2000-11-14 17:46:06 +00:00
|
|
|
|
2006-07-19 13:34:55 +00:00
|
|
|
if (num_matches > 1 && (common_len != *place || !*lastwastab))
|
2005-02-08 20:37:53 +00:00
|
|
|
beep();
|
2000-11-14 17:46:06 +00:00
|
|
|
|
2005-05-26 18:20:05 +00:00
|
|
|
/* If there is more of a match to display on the statusbar, show
|
2005-07-18 18:43:39 +00:00
|
|
|
* it. We reset lastwastab to FALSE: it requires pressing Tab
|
2005-05-26 18:20:05 +00:00
|
|
|
* twice in succession with no statusbar changes to see a match
|
2005-02-08 20:37:53 +00:00
|
|
|
* list. */
|
|
|
|
if (common_len != *place) {
|
|
|
|
*lastwastab = FALSE;
|
2005-06-21 22:32:50 +00:00
|
|
|
buf = charealloc(buf, common_len + buf_len - *place + 1);
|
2005-11-05 06:08:44 +00:00
|
|
|
charmove(buf + common_len, buf + *place, buf_len -
|
|
|
|
*place + 1);
|
2005-06-22 00:24:11 +00:00
|
|
|
strncpy(buf, mzero, common_len);
|
2005-05-26 19:48:41 +00:00
|
|
|
*place = common_len;
|
2006-07-19 13:34:55 +00:00
|
|
|
} else if (!*lastwastab || num_matches < 2)
|
2005-02-08 20:37:53 +00:00
|
|
|
*lastwastab = TRUE;
|
|
|
|
else {
|
2008-05-31 23:09:40 +00:00
|
|
|
int longest_name = 0, ncols, editline = 0;
|
2000-11-05 21:54:23 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
/* Now we show a list of the available choices. */
|
|
|
|
assert(num_matches > 1);
|
|
|
|
|
|
|
|
/* Sort the list. */
|
|
|
|
qsort(matches, num_matches, sizeof(char *), diralphasort);
|
|
|
|
|
|
|
|
for (match = 0; match < num_matches; match++) {
|
|
|
|
common_len = strnlenpt(matches[match], COLS - 1);
|
2005-05-26 18:20:05 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
if (common_len > COLS - 1) {
|
|
|
|
longest_name = COLS - 1;
|
2000-11-05 21:54:23 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-05-26 18:20:05 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
if (common_len > longest_name)
|
|
|
|
longest_name = common_len;
|
2000-11-05 21:54:23 +00:00
|
|
|
}
|
2000-11-05 17:54:41 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
assert(longest_name <= COLS - 1);
|
2000-11-05 17:54:41 +00:00
|
|
|
|
2006-07-28 17:06:27 +00:00
|
|
|
/* Each column will be (longest_name + 2) columns wide, i.e.
|
2005-07-18 18:43:39 +00:00
|
|
|
* two spaces between columns, except that there will be
|
|
|
|
* only one space after the last column. */
|
2008-05-31 23:09:40 +00:00
|
|
|
ncols = (COLS + 1) / (longest_name + 2);
|
2000-11-15 01:25:42 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
/* Blank the edit window, and print the matches out
|
|
|
|
* there. */
|
|
|
|
blank_edit();
|
|
|
|
wmove(edit, 0, 0);
|
2000-11-05 21:54:23 +00:00
|
|
|
|
2016-02-13 19:41:12 +00:00
|
|
|
/* Don't show a cursor in the list of completions. */
|
2005-02-08 20:37:53 +00:00
|
|
|
curs_set(0);
|
2000-11-05 21:56:54 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
for (match = 0; match < num_matches; match++) {
|
|
|
|
char *disp;
|
2000-11-14 18:25:26 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
wmove(edit, editline, (longest_name + 2) *
|
2008-05-31 23:09:40 +00:00
|
|
|
(match % ncols));
|
2000-11-05 21:54:23 +00:00
|
|
|
|
2008-05-31 23:09:40 +00:00
|
|
|
if (match % ncols == 0 &&
|
2005-05-26 03:32:41 +00:00
|
|
|
editline == editwinrows - 1 &&
|
2008-05-31 23:09:40 +00:00
|
|
|
num_matches - match > ncols) {
|
2005-02-08 20:37:53 +00:00
|
|
|
waddstr(edit, _("(more)"));
|
|
|
|
break;
|
|
|
|
}
|
2000-11-05 21:54:23 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
disp = display_string(matches[match], 0, longest_name,
|
|
|
|
FALSE);
|
|
|
|
waddstr(edit, disp);
|
|
|
|
free(disp);
|
2000-11-05 22:48:35 +00:00
|
|
|
|
2008-05-31 23:09:40 +00:00
|
|
|
if ((match + 1) % ncols == 0)
|
2000-11-05 21:54:23 +00:00
|
|
|
editline++;
|
2000-11-05 17:54:41 +00:00
|
|
|
}
|
2005-07-01 22:58:47 +00:00
|
|
|
|
2005-07-26 14:42:57 +00:00
|
|
|
wnoutrefresh(edit);
|
2004-08-01 22:35:31 +00:00
|
|
|
*list = TRUE;
|
2005-02-08 20:37:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
free(mzero);
|
2000-11-05 17:54:41 +00:00
|
|
|
}
|
|
|
|
|
2005-06-15 06:30:05 +00:00
|
|
|
free_chararray(matches, num_matches);
|
2005-02-08 20:37:53 +00:00
|
|
|
|
2001-11-29 03:43:08 +00:00
|
|
|
/* Only refresh the edit window if we don't have a list of filename
|
2005-02-08 20:37:53 +00:00
|
|
|
* matches on it. */
|
2006-07-19 13:34:55 +00:00
|
|
|
if (!*list)
|
2006-02-18 21:32:29 +00:00
|
|
|
refresh_func();
|
2005-02-08 20:37:53 +00:00
|
|
|
|
2000-11-14 17:46:06 +00:00
|
|
|
return buf;
|
2000-11-05 17:54:41 +00:00
|
|
|
}
|
2002-09-13 18:14:04 +00:00
|
|
|
#endif /* !DISABLE_TABCOMP */
|
2001-01-03 07:11:47 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
/* Only print the last part of a path. Isn't there a shell command for
|
|
|
|
* this? */
|
2004-02-28 16:24:31 +00:00
|
|
|
const char *tail(const char *foo)
|
|
|
|
{
|
2005-02-08 20:37:53 +00:00
|
|
|
const char *tmp = strrchr(foo, '/');
|
2004-02-28 16:24:31 +00:00
|
|
|
|
2005-02-08 20:37:53 +00:00
|
|
|
if (tmp == NULL)
|
|
|
|
tmp = foo;
|
2007-04-19 04:12:54 +00:00
|
|
|
else
|
2004-02-28 16:24:31 +00:00
|
|
|
tmp++;
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
|
|
|
/* Return the constructed dirfile path, or NULL if we can't find the home
|
2006-12-15 04:53:47 +00:00
|
|
|
* directory. The string is dynamically allocated, and should be
|
|
|
|
* freed. */
|
2011-02-24 02:47:25 +00:00
|
|
|
char *construct_filename(const char *str)
|
2003-01-16 23:44:46 +00:00
|
|
|
{
|
2011-02-16 06:52:30 +00:00
|
|
|
char *newstr = NULL;
|
2003-01-16 23:44:46 +00:00
|
|
|
|
2004-08-17 05:23:38 +00:00
|
|
|
if (homedir != NULL) {
|
|
|
|
size_t homelen = strlen(homedir);
|
2003-01-16 23:44:46 +00:00
|
|
|
|
2011-02-16 06:52:30 +00:00
|
|
|
newstr = charalloc(homelen + strlen(str) + 1);
|
|
|
|
strcpy(newstr, homedir);
|
|
|
|
strcpy(newstr + homelen, str);
|
2003-02-13 22:00:19 +00:00
|
|
|
}
|
2006-10-03 19:15:01 +00:00
|
|
|
|
2011-02-16 06:52:30 +00:00
|
|
|
return newstr;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *histfilename(void)
|
|
|
|
{
|
2011-02-24 02:47:25 +00:00
|
|
|
return construct_filename("/.nano/search_history");
|
2011-02-16 06:52:30 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 12:35:18 +00:00
|
|
|
/* Construct the legacy history filename.
|
|
|
|
* (Deprecate in 2.5, delete later.) */
|
2011-02-16 06:52:30 +00:00
|
|
|
char *legacyhistfilename(void)
|
|
|
|
{
|
|
|
|
return construct_filename("/.nano_history");
|
|
|
|
}
|
|
|
|
|
|
|
|
char *poshistfilename(void)
|
|
|
|
{
|
2011-02-24 02:47:25 +00:00
|
|
|
return construct_filename("/.nano/filepos_history");
|
2011-02-16 06:52:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void history_error(const char *msg, ...)
|
|
|
|
{
|
2014-06-20 10:48:26 +00:00
|
|
|
va_list ap;
|
2011-02-16 06:52:30 +00:00
|
|
|
|
|
|
|
va_start(ap, msg);
|
|
|
|
vfprintf(stderr, _(msg), ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
fprintf(stderr, _("\nPress Enter to continue\n"));
|
|
|
|
while (getchar() != '\n')
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2014-04-08 12:35:18 +00:00
|
|
|
/* Now that we have more than one history file, let's just rely on a
|
|
|
|
* .nano dir for this stuff. Return 1 if the dir exists or was
|
|
|
|
* successfully created, and return 0 otherwise. */
|
2011-02-16 06:52:30 +00:00
|
|
|
int check_dotnano(void)
|
|
|
|
{
|
2015-07-22 18:02:36 +00:00
|
|
|
int ret = 1;
|
2011-02-16 06:52:30 +00:00
|
|
|
struct stat dirstat;
|
|
|
|
char *nanodir = construct_filename("/.nano");
|
|
|
|
|
|
|
|
if (stat(nanodir, &dirstat) == -1) {
|
|
|
|
if (mkdir(nanodir, S_IRWXU | S_IRWXG | S_IRWXO) == -1) {
|
2014-06-20 10:39:31 +00:00
|
|
|
history_error(N_("Unable to create directory %s: %s\n"
|
|
|
|
"It is required for saving/loading search history or cursor positions.\n"),
|
|
|
|
nanodir, strerror(errno));
|
2015-07-22 18:02:36 +00:00
|
|
|
ret = 0;
|
2011-02-16 06:52:30 +00:00
|
|
|
}
|
|
|
|
} else if (!S_ISDIR(dirstat.st_mode)) {
|
2014-06-20 10:39:31 +00:00
|
|
|
history_error(N_("Path %s is not a directory and needs to be.\n"
|
|
|
|
"Nano will be unable to load or save search history or cursor positions.\n"),
|
|
|
|
nanodir);
|
2015-07-22 18:02:36 +00:00
|
|
|
ret = 0;
|
2011-02-16 06:52:30 +00:00
|
|
|
}
|
2015-07-22 18:02:36 +00:00
|
|
|
|
|
|
|
free(nanodir);
|
|
|
|
return ret;
|
2004-08-17 05:23:38 +00:00
|
|
|
}
|
|
|
|
|
2014-06-19 13:08:23 +00:00
|
|
|
/* Load the search and replace histories from ~/.nano/search_history. */
|
2004-08-17 05:23:38 +00:00
|
|
|
void load_history(void)
|
|
|
|
{
|
|
|
|
char *nanohist = histfilename();
|
2011-02-16 06:52:30 +00:00
|
|
|
char *legacyhist = legacyhistfilename();
|
|
|
|
struct stat hstat;
|
|
|
|
|
2011-02-24 02:47:25 +00:00
|
|
|
if (stat(legacyhist, &hstat) != -1 && stat(nanohist, &hstat) == -1) {
|
2014-04-15 15:02:43 +00:00
|
|
|
if (rename(legacyhist, nanohist) == -1)
|
2014-06-19 13:08:23 +00:00
|
|
|
history_error(N_("Detected a legacy nano history file (%s) which I tried to move\n"
|
|
|
|
"to the preferred location (%s) but encountered an error: %s"),
|
|
|
|
legacyhist, nanohist, strerror(errno));
|
2011-02-16 06:52:30 +00:00
|
|
|
else
|
2014-06-19 13:08:23 +00:00
|
|
|
history_error(N_("Detected a legacy nano history file (%s) which I moved\n"
|
|
|
|
"to the preferred location (%s)\n(see the nano FAQ about this change)"),
|
|
|
|
legacyhist, nanohist);
|
2011-02-16 06:52:30 +00:00
|
|
|
}
|
|
|
|
|
2005-04-20 14:55:46 +00:00
|
|
|
/* Assume do_rcfile() has reported a missing home directory. */
|
2004-08-17 05:23:38 +00:00
|
|
|
if (nanohist != NULL) {
|
2006-04-05 21:25:47 +00:00
|
|
|
FILE *hist = fopen(nanohist, "rb");
|
2003-02-13 22:00:19 +00:00
|
|
|
|
2003-09-06 21:44:37 +00:00
|
|
|
if (hist == NULL) {
|
2004-08-11 05:13:08 +00:00
|
|
|
if (errno != ENOENT) {
|
2003-03-11 03:50:40 +00:00
|
|
|
/* Don't save history when we quit. */
|
|
|
|
UNSET(HISTORYLOG);
|
2011-02-16 06:52:30 +00:00
|
|
|
history_error(N_("Error reading %s: %s"), nanohist,
|
2005-02-14 05:00:15 +00:00
|
|
|
strerror(errno));
|
2003-03-11 03:50:40 +00:00
|
|
|
}
|
2003-01-16 23:44:46 +00:00
|
|
|
} else {
|
2006-12-15 04:53:47 +00:00
|
|
|
/* Load a history list (first the search history, then the
|
|
|
|
* replace history) from the oldest entry to the newest.
|
|
|
|
* Assume the last history entry is a blank line. */
|
2005-05-23 16:30:06 +00:00
|
|
|
filestruct **history = &search_history;
|
2004-08-17 05:23:38 +00:00
|
|
|
char *line = NULL;
|
2007-10-11 15:38:32 +00:00
|
|
|
size_t buf_len = 0;
|
2004-08-17 05:23:38 +00:00
|
|
|
ssize_t read;
|
|
|
|
|
2007-10-11 15:38:32 +00:00
|
|
|
while ((read = getline(&line, &buf_len, hist)) >= 0) {
|
2004-08-17 05:23:38 +00:00
|
|
|
if (read > 0 && line[read - 1] == '\n') {
|
|
|
|
read--;
|
|
|
|
line[read] = '\0';
|
|
|
|
}
|
|
|
|
if (read > 0) {
|
|
|
|
unsunder(line, read);
|
2005-06-02 18:41:31 +00:00
|
|
|
update_history(history, line);
|
|
|
|
} else
|
2003-01-16 23:44:46 +00:00
|
|
|
history = &replace_history;
|
|
|
|
}
|
2005-05-23 16:30:06 +00:00
|
|
|
|
2003-01-16 23:44:46 +00:00
|
|
|
fclose(hist);
|
2004-08-17 05:23:38 +00:00
|
|
|
free(line);
|
2003-01-16 23:44:46 +00:00
|
|
|
}
|
2004-08-17 05:23:38 +00:00
|
|
|
free(nanohist);
|
2011-02-16 06:52:30 +00:00
|
|
|
free(legacyhist);
|
2004-08-17 05:23:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Write the lines of a history list, starting with the line at h, to
|
|
|
|
* the open file at hist. Return TRUE if the write succeeded, and FALSE
|
|
|
|
* otherwise. */
|
2005-05-23 16:30:06 +00:00
|
|
|
bool writehist(FILE *hist, filestruct *h)
|
2004-08-17 05:23:38 +00:00
|
|
|
{
|
2005-05-23 16:30:06 +00:00
|
|
|
filestruct *p;
|
2004-08-17 05:23:38 +00:00
|
|
|
|
2006-12-15 04:53:47 +00:00
|
|
|
/* Write a history list from the oldest entry to the newest. Assume
|
|
|
|
* the last history entry is a blank line. */
|
2005-05-23 16:30:06 +00:00
|
|
|
for (p = h; p != NULL; p = p->next) {
|
2005-05-14 23:21:02 +00:00
|
|
|
size_t p_len = strlen(p->data);
|
2004-08-17 05:23:38 +00:00
|
|
|
|
2005-05-14 23:21:02 +00:00
|
|
|
sunder(p->data);
|
2005-05-23 16:30:06 +00:00
|
|
|
|
2005-05-14 23:21:02 +00:00
|
|
|
if (fwrite(p->data, sizeof(char), p_len, hist) < p_len ||
|
2004-08-17 05:23:38 +00:00
|
|
|
putc('\n', hist) == EOF)
|
|
|
|
return FALSE;
|
2003-01-16 23:44:46 +00:00
|
|
|
}
|
2005-05-23 16:30:06 +00:00
|
|
|
|
2004-08-17 05:23:38 +00:00
|
|
|
return TRUE;
|
2003-01-16 23:44:46 +00:00
|
|
|
}
|
|
|
|
|
2014-06-19 13:08:23 +00:00
|
|
|
/* Save the search and replace histories to ~/.nano/search_history. */
|
2003-01-16 23:44:46 +00:00
|
|
|
void save_history(void)
|
|
|
|
{
|
2004-08-17 05:23:38 +00:00
|
|
|
char *nanohist;
|
2003-01-16 23:44:46 +00:00
|
|
|
|
2005-04-20 14:55:46 +00:00
|
|
|
/* Don't save unchanged or empty histories. */
|
2005-05-23 16:30:06 +00:00
|
|
|
if (!history_has_changed() || (searchbot->lineno == 1 &&
|
2015-08-29 20:14:57 +00:00
|
|
|
replacebot->lineno == 1))
|
2003-01-16 23:44:46 +00:00
|
|
|
return;
|
|
|
|
|
2004-08-17 05:23:38 +00:00
|
|
|
nanohist = histfilename();
|
|
|
|
|
|
|
|
if (nanohist != NULL) {
|
|
|
|
FILE *hist = fopen(nanohist, "wb");
|
2003-02-13 22:00:19 +00:00
|
|
|
|
2004-07-18 17:43:43 +00:00
|
|
|
if (hist == NULL)
|
2015-12-23 13:37:55 +00:00
|
|
|
fprintf(stderr, _("Error writing %s: %s\n"), nanohist,
|
|
|
|
strerror(errno));
|
2004-07-18 17:43:43 +00:00
|
|
|
else {
|
2005-04-20 14:55:46 +00:00
|
|
|
/* Make sure no one else can read from or write to the
|
|
|
|
* history file. */
|
2003-01-16 23:44:46 +00:00
|
|
|
chmod(nanohist, S_IRUSR | S_IWUSR);
|
2004-08-17 05:23:38 +00:00
|
|
|
|
2015-08-29 20:14:57 +00:00
|
|
|
if (!writehist(hist, searchage) || !writehist(hist, replaceage))
|
2015-12-23 13:37:55 +00:00
|
|
|
fprintf(stderr, _("Error writing %s: %s\n"), nanohist,
|
2005-02-14 05:00:15 +00:00
|
|
|
strerror(errno));
|
2005-05-23 16:30:06 +00:00
|
|
|
|
2003-01-16 23:44:46 +00:00
|
|
|
fclose(hist);
|
|
|
|
}
|
2005-05-23 16:30:06 +00:00
|
|
|
|
2003-01-16 23:44:46 +00:00
|
|
|
free(nanohist);
|
|
|
|
}
|
|
|
|
}
|
2011-02-16 06:52:30 +00:00
|
|
|
|
2014-06-19 13:08:23 +00:00
|
|
|
/* Save the recorded last file positions to ~/.nano/filepos_history. */
|
2011-02-16 06:52:30 +00:00
|
|
|
void save_poshistory(void)
|
|
|
|
{
|
2016-01-13 20:08:36 +00:00
|
|
|
char *poshist = poshistfilename();
|
2011-02-18 07:30:57 +00:00
|
|
|
char *statusstr = NULL;
|
|
|
|
poshiststruct *posptr;
|
2016-01-13 20:08:36 +00:00
|
|
|
FILE *hist;
|
2011-02-16 06:52:30 +00:00
|
|
|
|
2016-01-13 20:08:36 +00:00
|
|
|
if (poshist == NULL)
|
|
|
|
return;
|
2011-02-16 06:52:30 +00:00
|
|
|
|
2016-01-13 20:08:36 +00:00
|
|
|
hist = fopen(poshist, "wb");
|
2011-02-16 06:52:30 +00:00
|
|
|
|
2016-01-13 20:08:36 +00:00
|
|
|
if (hist == NULL)
|
|
|
|
fprintf(stderr, _("Error writing %s: %s\n"), poshist, strerror(errno));
|
|
|
|
else {
|
|
|
|
/* Don't allow others to read or write the history file. */
|
|
|
|
chmod(poshist, S_IRUSR | S_IWUSR);
|
2011-02-16 06:52:30 +00:00
|
|
|
|
2016-01-13 20:08:36 +00:00
|
|
|
for (posptr = position_history; posptr != NULL; posptr = posptr->next) {
|
2016-02-13 17:00:06 +00:00
|
|
|
/* Assume 20 decimal positions each for line and column number,
|
|
|
|
* plus two spaces, plus the line feed, plus the null byte. */
|
|
|
|
statusstr = charalloc(strlen(posptr->filename) + 44);
|
2016-01-13 20:08:36 +00:00
|
|
|
sprintf(statusstr, "%s %ld %ld\n", posptr->filename, (long)posptr->lineno,
|
2014-06-09 15:08:59 +00:00
|
|
|
(long)posptr->xno);
|
2016-01-13 20:08:36 +00:00
|
|
|
if (fwrite(statusstr, sizeof(char), strlen(statusstr), hist) < strlen(statusstr))
|
|
|
|
fprintf(stderr, _("Error writing %s: %s\n"), poshist, strerror(errno));
|
|
|
|
free(statusstr);
|
2011-02-16 06:52:30 +00:00
|
|
|
}
|
2016-01-13 20:08:36 +00:00
|
|
|
fclose(hist);
|
2011-02-16 06:52:30 +00:00
|
|
|
}
|
2016-01-13 20:08:36 +00:00
|
|
|
free(poshist);
|
2011-02-16 06:52:30 +00:00
|
|
|
}
|
|
|
|
|
2014-06-19 13:08:23 +00:00
|
|
|
/* Update the recorded last file positions, given a filename, a line
|
|
|
|
* and a column. If no entry is found, add a new one at the end. */
|
2011-02-18 07:30:57 +00:00
|
|
|
void update_poshistory(char *filename, ssize_t lineno, ssize_t xpos)
|
|
|
|
{
|
2016-01-24 14:49:42 +00:00
|
|
|
poshiststruct *posptr, *theone, *posprev = NULL;
|
2014-06-20 10:48:26 +00:00
|
|
|
char *fullpath = get_full_path(filename);
|
2011-02-18 07:30:57 +00:00
|
|
|
|
2016-01-29 20:39:12 +00:00
|
|
|
if (fullpath == NULL || fullpath[strlen(fullpath) - 1] == '/') {
|
|
|
|
free(fullpath);
|
2014-06-20 10:48:26 +00:00
|
|
|
return;
|
2016-01-29 20:39:12 +00:00
|
|
|
}
|
2011-02-18 07:30:57 +00:00
|
|
|
|
2016-01-24 14:49:42 +00:00
|
|
|
/* Look for a matching filename in the list. */
|
2016-01-12 19:20:40 +00:00
|
|
|
for (posptr = position_history; posptr != NULL; posptr = posptr->next) {
|
2016-01-24 14:49:42 +00:00
|
|
|
if (!strcmp(posptr->filename, fullpath))
|
|
|
|
break;
|
2011-02-18 07:30:57 +00:00
|
|
|
posprev = posptr;
|
|
|
|
}
|
|
|
|
|
2016-02-07 12:49:42 +00:00
|
|
|
/* Don't record files that have the default cursor position. */
|
|
|
|
if (lineno == 1 && xpos == 1) {
|
|
|
|
if (posptr != NULL) {
|
|
|
|
if (posprev == NULL)
|
|
|
|
position_history = posptr->next;
|
|
|
|
else
|
|
|
|
posprev->next = posptr->next;
|
|
|
|
free(posptr->filename);
|
|
|
|
free(posptr);
|
|
|
|
}
|
|
|
|
free(fullpath);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-24 14:49:42 +00:00
|
|
|
theone = posptr;
|
2011-02-18 07:30:57 +00:00
|
|
|
|
2016-01-24 14:49:42 +00:00
|
|
|
/* If we didn't find it, make a new node; otherwise, if we're
|
|
|
|
* not at the end, move the matching one to the end. */
|
|
|
|
if (theone == NULL) {
|
|
|
|
theone = (poshiststruct *)nmalloc(sizeof(poshiststruct));
|
|
|
|
theone->filename = mallocstrcpy(NULL, fullpath);
|
|
|
|
if (position_history == NULL)
|
|
|
|
position_history = theone;
|
|
|
|
else
|
|
|
|
posprev->next = theone;
|
|
|
|
} else if (posptr->next != NULL) {
|
2016-01-25 20:26:01 +00:00
|
|
|
if (posprev == NULL)
|
|
|
|
position_history = posptr->next;
|
|
|
|
else
|
|
|
|
posprev->next = posptr->next;
|
2016-01-24 14:49:42 +00:00
|
|
|
while (posptr->next != NULL)
|
|
|
|
posptr = posptr->next;
|
|
|
|
posptr->next = theone;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Store the last cursor position. */
|
|
|
|
theone->lineno = lineno;
|
|
|
|
theone->xno = xpos;
|
|
|
|
theone->next = NULL;
|
2011-02-18 07:30:57 +00:00
|
|
|
|
|
|
|
free(fullpath);
|
|
|
|
}
|
|
|
|
|
2014-06-19 13:08:23 +00:00
|
|
|
/* Check the recorded last file positions to see if the given file
|
|
|
|
* matches an existing entry. If so, return 1 and set line and column
|
|
|
|
* to the retrieved values. Otherwise, return 0. */
|
2011-02-16 06:52:30 +00:00
|
|
|
int check_poshistory(const char *file, ssize_t *line, ssize_t *column)
|
|
|
|
{
|
|
|
|
poshiststruct *posptr;
|
|
|
|
char *fullpath = get_full_path(file);
|
|
|
|
|
|
|
|
if (fullpath == NULL)
|
2014-04-13 20:50:20 +00:00
|
|
|
return 0;
|
2011-02-16 06:52:30 +00:00
|
|
|
|
2016-01-12 19:20:40 +00:00
|
|
|
for (posptr = position_history; posptr != NULL; posptr = posptr->next) {
|
2011-02-16 06:52:30 +00:00
|
|
|
if (!strcmp(posptr->filename, fullpath)) {
|
|
|
|
*line = posptr->lineno;
|
|
|
|
*column = posptr->xno;
|
2011-02-18 07:30:57 +00:00
|
|
|
free(fullpath);
|
2011-02-16 06:52:30 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2011-02-18 07:30:57 +00:00
|
|
|
free(fullpath);
|
2011-02-16 06:52:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-06-19 13:08:23 +00:00
|
|
|
/* Load the recorded file positions from ~/.nano/filepos_history. */
|
2011-02-16 06:52:30 +00:00
|
|
|
void load_poshistory(void)
|
|
|
|
{
|
2016-01-12 11:16:39 +00:00
|
|
|
char *poshist = poshistfilename();
|
2016-01-12 20:26:59 +00:00
|
|
|
FILE *hist;
|
2011-02-16 06:52:30 +00:00
|
|
|
|
2016-01-12 20:26:59 +00:00
|
|
|
/* If the home directory is missing, do_rcfile() will have reported it. */
|
|
|
|
if (poshist == NULL)
|
|
|
|
return;
|
2011-02-16 06:52:30 +00:00
|
|
|
|
2016-01-12 20:26:59 +00:00
|
|
|
hist = fopen(poshist, "rb");
|
2016-01-12 20:08:31 +00:00
|
|
|
|
2016-01-12 20:26:59 +00:00
|
|
|
if (hist == NULL) {
|
|
|
|
if (errno != ENOENT) {
|
2016-01-13 20:32:40 +00:00
|
|
|
/* When reading failed, don't save history when we quit. */
|
2016-01-12 20:26:59 +00:00
|
|
|
UNSET(POS_HISTORY);
|
|
|
|
history_error(N_("Error reading %s: %s"), poshist, strerror(errno));
|
2011-02-16 06:52:30 +00:00
|
|
|
}
|
2016-01-12 20:26:59 +00:00
|
|
|
} else {
|
|
|
|
char *line = NULL, *lineptr, *xptr;
|
|
|
|
size_t buf_len = 0;
|
2016-01-17 17:04:28 +00:00
|
|
|
ssize_t read, count = 0;
|
2016-01-12 20:26:59 +00:00
|
|
|
poshiststruct *record_ptr = NULL, *newrecord;
|
|
|
|
|
|
|
|
/* Read and parse each line, and store the extracted data. */
|
|
|
|
while ((read = getline(&line, &buf_len, hist)) > 2) {
|
|
|
|
if (line[read - 1] == '\n')
|
|
|
|
line[--read] = '\0';
|
|
|
|
unsunder(line, read);
|
|
|
|
|
|
|
|
lineptr = parse_next_word(line);
|
|
|
|
xptr = parse_next_word(lineptr);
|
|
|
|
|
|
|
|
/* Create a new position record. */
|
|
|
|
newrecord = (poshiststruct *)nmalloc(sizeof(poshiststruct));
|
|
|
|
newrecord->filename = mallocstrcpy(NULL, line);
|
|
|
|
newrecord->lineno = atoi(lineptr);
|
|
|
|
newrecord->xno = atoi(xptr);
|
|
|
|
newrecord->next = NULL;
|
|
|
|
|
|
|
|
/* Add the record to the list. */
|
|
|
|
if (position_history == NULL)
|
|
|
|
position_history = newrecord;
|
|
|
|
else
|
|
|
|
record_ptr->next = newrecord;
|
|
|
|
|
|
|
|
record_ptr = newrecord;
|
2016-01-17 17:04:28 +00:00
|
|
|
|
|
|
|
/* Impose a limit, so the file will not grow indefinitely. */
|
2016-02-10 20:29:23 +00:00
|
|
|
if (++count > 200) {
|
|
|
|
poshiststruct *drop_record = position_history;
|
|
|
|
|
2016-01-17 17:04:28 +00:00
|
|
|
position_history = position_history->next;
|
2016-02-10 20:29:23 +00:00
|
|
|
|
|
|
|
free(drop_record->filename);
|
|
|
|
free(drop_record);
|
|
|
|
}
|
2016-01-12 20:26:59 +00:00
|
|
|
}
|
|
|
|
fclose(hist);
|
|
|
|
free(line);
|
2011-02-16 06:52:30 +00:00
|
|
|
}
|
2016-01-12 20:26:59 +00:00
|
|
|
free(poshist);
|
2011-02-16 06:52:30 +00:00
|
|
|
}
|
2014-06-19 20:05:24 +00:00
|
|
|
#endif /* !DISABLE_HISTORIES */
|