1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
|
/*-
* Copyright (c) 1991, 1993, 1994
* The Regents of the University of California. All rights reserved.
* Copyright (c) 1991, 1993, 1994, 1995, 1996
* Keith Bostic. All rights reserved.
*
* See the LICENSE file for redistribution information.
*/
#include "config.h"
#ifndef lint
static const char sccsid[] = "@(#)ex_args.c 10.16 (Berkeley) 7/13/96";
#endif /* not lint */
#include <sys/types.h>
#include <sys/queue.h>
#include <sys/time.h>
#include <bitstring.h>
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../common/common.h"
#include "../vi/vi.h"
static int ex_N_next __P((SCR *, EXCMD *));
/*
* ex_next -- :next [+cmd] [files]
* Edit the next file, optionally setting the list of files.
*
* !!!
* The :next command behaved differently from the :rewind command in
* historic vi. See nvi/docs/autowrite for details, but the basic
* idea was that it ignored the force flag if the autowrite flag was
* set. This implementation handles them all identically.
*
* PUBLIC: int ex_next __P((SCR *, EXCMD *));
*/
int
ex_next(sp, cmdp)
SCR *sp;
EXCMD *cmdp;
{
ARGS **argv;
FREF *frp;
int noargs;
char **ap;
/* Check for file to move to. */
if (cmdp->argc == 0 && (sp->cargv == NULL || sp->cargv[1] == NULL)) {
msgq(sp, M_ERR, "111|No more files to edit");
return (1);
}
if (F_ISSET(cmdp, E_NEWSCREEN)) {
/* By default, edit the next file in the old argument list. */
if (cmdp->argc == 0) {
if (argv_exp0(sp,
cmdp, sp->cargv[1], strlen(sp->cargv[1])))
return (1);
return (ex_edit(sp, cmdp));
}
return (ex_N_next(sp, cmdp));
}
/* Check modification. */
if (file_m1(sp,
FL_ISSET(cmdp->iflags, E_C_FORCE), FS_ALL | FS_POSSIBLE))
return (1);
/* Any arguments are a replacement file list. */
if (cmdp->argc) {
/* Free the current list. */
if (!F_ISSET(sp, SC_ARGNOFREE) && sp->argv != NULL) {
for (ap = sp->argv; *ap != NULL; ++ap)
free(*ap);
free(sp->argv);
}
F_CLR(sp, SC_ARGNOFREE | SC_ARGRECOVER);
sp->cargv = NULL;
/* Create a new list. */
CALLOC_RET(sp,
sp->argv, char **, cmdp->argc + 1, sizeof(char *));
for (ap = sp->argv,
argv = cmdp->argv; argv[0]->len != 0; ++ap, ++argv)
if ((*ap =
v_strdup(sp, argv[0]->bp, argv[0]->len)) == NULL)
return (1);
*ap = NULL;
/* Switch to the first file. */
sp->cargv = sp->argv;
if ((frp = file_add(sp, *sp->cargv)) == NULL)
return (1);
noargs = 0;
/* Display a file count with the welcome message. */
F_SET(sp, SC_STATUS_CNT);
} else {
if ((frp = file_add(sp, sp->cargv[1])) == NULL)
return (1);
if (F_ISSET(sp, SC_ARGRECOVER))
F_SET(frp, FR_RECOVER);
noargs = 1;
}
if (file_init(sp, frp, NULL, FS_SETALT |
(FL_ISSET(cmdp->iflags, E_C_FORCE) ? FS_FORCE : 0)))
return (1);
if (noargs)
++sp->cargv;
F_SET(sp, SC_FSWITCH);
return (0);
}
/*
* ex_N_next --
* New screen version of ex_next.
*/
static int
ex_N_next(sp, cmdp)
SCR *sp;
EXCMD *cmdp;
{
SCR *new;
FREF *frp;
/* Get a new screen. */
if (screen_init(sp->gp, sp, &new))
return (1);
if (vs_split(sp, new, 0)) {
(void)screen_end(new);
return (1);
}
/* Get a backing file. */
if ((frp = file_add(new, cmdp->argv[0]->bp)) == NULL ||
file_init(new, frp, NULL,
(FL_ISSET(cmdp->iflags, E_C_FORCE) ? FS_FORCE : 0))) {
(void)vs_discard(new, NULL);
(void)screen_end(new);
return (1);
}
/* The arguments are a replacement file list. */
new->cargv = new->argv = ex_buildargv(sp, cmdp, NULL);
/* Display a file count with the welcome message. */
F_SET(new, SC_STATUS_CNT);
/* Set up the switch. */
sp->nextdisp = new;
F_SET(sp, SC_SSWITCH);
return (0);
}
/*
* ex_prev -- :prev
* Edit the previous file.
*
* PUBLIC: int ex_prev __P((SCR *, EXCMD *));
*/
int
ex_prev(sp, cmdp)
SCR *sp;
EXCMD *cmdp;
{
FREF *frp;
if (sp->cargv == sp->argv) {
msgq(sp, M_ERR, "112|No previous files to edit");
return (1);
}
if (F_ISSET(cmdp, E_NEWSCREEN)) {
if (argv_exp0(sp, cmdp, sp->cargv[-1], strlen(sp->cargv[-1])))
return (1);
return (ex_edit(sp, cmdp));
}
if (file_m1(sp,
FL_ISSET(cmdp->iflags, E_C_FORCE), FS_ALL | FS_POSSIBLE))
return (1);
if ((frp = file_add(sp, sp->cargv[-1])) == NULL)
return (1);
if (file_init(sp, frp, NULL, FS_SETALT |
(FL_ISSET(cmdp->iflags, E_C_FORCE) ? FS_FORCE : 0)))
return (1);
--sp->cargv;
F_SET(sp, SC_FSWITCH);
return (0);
}
/*
* ex_rew -- :rew
* Re-edit the list of files.
*
* !!!
* Historic practice was that all files would start editing at the beginning
* of the file. We don't get this right because we may have multiple screens
* and we can't clear the FR_CURSORSET bit for a single screen. I don't see
* anyone noticing, but if they do, we'll have to put information into the SCR
* structure so we can keep track of it.
*
* PUBLIC: int ex_rew __P((SCR *, EXCMD *));
*/
int
ex_rew(sp, cmdp)
SCR *sp;
EXCMD *cmdp;
{
FREF *frp;
/*
* !!!
* Historic practice -- you can rewind to the current file.
*/
if (sp->argv == NULL) {
msgq(sp, M_ERR, "113|No previous files to rewind");
return (1);
}
if (file_m1(sp,
FL_ISSET(cmdp->iflags, E_C_FORCE), FS_ALL | FS_POSSIBLE))
return (1);
/* Switch to the first one. */
sp->cargv = sp->argv;
if ((frp = file_add(sp, *sp->cargv)) == NULL)
return (1);
if (file_init(sp, frp, NULL, FS_SETALT |
(FL_ISSET(cmdp->iflags, E_C_FORCE) ? FS_FORCE : 0)))
return (1);
/* Switch and display a file count with the welcome message. */
F_SET(sp, SC_FSWITCH | SC_STATUS_CNT);
return (0);
}
/*
* ex_args -- :args
* Display the list of files.
*
* PUBLIC: int ex_args __P((SCR *, EXCMD *));
*/
int
ex_args(sp, cmdp)
SCR *sp;
EXCMD *cmdp;
{
GS *gp;
int cnt, col, len, sep;
char **ap;
if (sp->argv == NULL) {
(void)msgq(sp, M_ERR, "114|No file list to display");
return (0);
}
gp = sp->gp;
col = len = sep = 0;
for (cnt = 1, ap = sp->argv; *ap != NULL; ++ap) {
col += len = strlen(*ap) + sep + (ap == sp->cargv ? 2 : 0);
if (col >= sp->cols - 1) {
col = len;
sep = 0;
(void)ex_puts(sp, "\n");
} else if (cnt != 1) {
sep = 1;
(void)ex_puts(sp, " ");
}
++cnt;
(void)ex_printf(sp, "%s%s%s", ap == sp->cargv ? "[" : "",
*ap, ap == sp->cargv ? "]" : "");
if (INTERRUPTED(sp))
break;
}
(void)ex_puts(sp, "\n");
return (0);
}
/*
* ex_buildargv --
* Build a new file argument list.
*
* PUBLIC: char **ex_buildargv __P((SCR *, EXCMD *, char *));
*/
char **
ex_buildargv(sp, cmdp, name)
SCR *sp;
EXCMD *cmdp;
char *name;
{
ARGS **argv;
int argc;
char **ap, **s_argv;
argc = cmdp == NULL ? 1 : cmdp->argc;
CALLOC(sp, s_argv, char **, argc + 1, sizeof(char *));
if ((ap = s_argv) == NULL)
return (NULL);
if (cmdp == NULL) {
if ((*ap = v_strdup(sp, name, strlen(name))) == NULL)
return (NULL);
++ap;
} else
for (argv = cmdp->argv; argv[0]->len != 0; ++ap, ++argv)
if ((*ap =
v_strdup(sp, argv[0]->bp, argv[0]->len)) == NULL)
return (NULL);
*ap = NULL;
return (s_argv);
}
|