[BACK]Return to file.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mg

Annotation of src/usr.bin/mg/file.c, Revision 1.63

1.63    ! kjell       1: /*     $OpenBSD: file.c,v 1.62 2006/07/25 08:27:09 kjell Exp $ */
1.37      kjell       2:
                      3: /* This file is in the public domain. */
1.5       niklas      4:
1.1       deraadt     5: /*
1.4       millert     6:  *     File commands.
1.1       deraadt     7:  */
                      8:
1.54      kjell       9: #include <libgen.h>
                     10:
1.41      kjell      11: #include "def.h"
                     12:
1.1       deraadt    13: /*
1.4       millert    14:  * Insert a file into the current buffer.  Real easy - just call the
1.1       deraadt    15:  * insertfile routine with the file name.
                     16:  */
1.3       millert    17: /* ARGSUSED */
                     18: int
1.15      vincent    19: fileinsert(int f, int n)
1.1       deraadt    20: {
1.29      vincent    21:        char     fname[NFILEN], *bufp, *adjf;
1.1       deraadt    22:
1.54      kjell      23:        if (getbufcwd(fname, sizeof(fname)) != TRUE)
                     24:                fname[0] = '\0';
                     25:        bufp = eread("Insert file: ", fname, NFILEN,
                     26:            EFNEW | EFCR | EFFILE | EFDEF);
1.29      vincent    27:        if (bufp == NULL)
1.32      db         28:                return (ABORT);
1.29      vincent    29:        else if (bufp[0] == '\0')
1.32      db         30:                return (FALSE);
1.58      jason      31:        adjf = adjustname(bufp, TRUE);
1.22      vincent    32:        if (adjf == NULL)
                     33:                return (FALSE);
1.32      db         34:        return (insertfile(adjf, NULL, FALSE));
1.1       deraadt    35: }
                     36:
                     37: /*
1.9       mickey     38:  * Select a file for editing.  Look around to see if you can find the file
1.4       millert    39:  * in another buffer; if you can find it, just switch to the buffer.  If
1.9       mickey     40:  * you cannot find the file, create a new buffer, read in the text, and
1.4       millert    41:  * switch to the new buffer.
1.1       deraadt    42:  */
1.3       millert    43: /* ARGSUSED */
                     44: int
1.15      vincent    45: filevisit(int f, int n)
1.1       deraadt    46: {
1.45      deraadt    47:        struct buffer   *bp;
1.54      kjell      48:        char     fname[NFILEN], *bufp, *adjf;
1.39      kjell      49:        int      status;
1.34      cloder     50:
1.54      kjell      51:        if (getbufcwd(fname, sizeof(fname)) != TRUE)
1.34      cloder     52:                fname[0] = '\0';
1.38      kjell      53:        bufp = eread("Find file: ", fname, NFILEN,
                     54:            EFNEW | EFCR | EFFILE | EFDEF);
1.29      vincent    55:        if (bufp == NULL)
1.32      db         56:                return (ABORT);
1.29      vincent    57:        else if (bufp[0] == '\0')
1.32      db         58:                return (FALSE);
1.58      jason      59:        adjf = adjustname(fname, TRUE);
1.22      vincent    60:        if (adjf == NULL)
                     61:                return (FALSE);
1.3       millert    62:        if ((bp = findbuffer(adjf)) == NULL)
1.32      db         63:                return (FALSE);
1.1       deraadt    64:        curbp = bp;
1.55      kjell      65:        if (showbuffer(bp, curwp, WFFULL) != TRUE)
1.32      db         66:                return (FALSE);
1.39      kjell      67:        if (bp->b_fname[0] == '\0') {
1.30      jfb        68:                if ((status = readin(adjf)) != TRUE)
                     69:                        killbuffer(bp);
1.32      db         70:                return (status);
1.30      jfb        71:        }
1.32      db         72:        return (TRUE);
1.35      jason      73: }
                     74:
1.36      kjell      75: /*
                     76:  * Replace the current file with an alternate one. Semantics for finding
                     77:  * the replacement file are the same as 'filevisit', except the current
                     78:  * buffer is killed before the switch. If the kill fails, or is aborted,
                     79:  * revert to the original file.
                     80:  */
1.43      kjell      81: /* ARGSUSED */
1.35      jason      82: int
                     83: filevisitalt(int f, int n)
                     84: {
1.45      deraadt    85:        struct buffer   *bp;
1.54      kjell      86:        char     fname[NFILEN], *bufp, *adjf;
1.36      kjell      87:        int      status;
                     88:
1.54      kjell      89:        if (getbufcwd(fname, sizeof(fname)) != TRUE)
1.36      kjell      90:                fname[0] = '\0';
                     91:        bufp = eread("Find alternate file: ", fname, NFILEN,
                     92:            EFNEW | EFCR | EFFILE | EFDEF);
                     93:        if (bufp == NULL)
1.35      jason      94:                return (ABORT);
1.36      kjell      95:        else if (bufp[0] == '\0')
                     96:                return (FALSE);
                     97:
                     98:        status = killbuffer(curbp);
                     99:        if (status == ABORT || status == FALSE)
                    100:                return (ABORT);
                    101:
1.58      jason     102:        adjf = adjustname(fname, TRUE);
1.36      kjell     103:        if (adjf == NULL)
                    104:                return (FALSE);
                    105:        if ((bp = findbuffer(adjf)) == NULL)
                    106:                return (FALSE);
                    107:        curbp = bp;
1.55      kjell     108:        if (showbuffer(bp, curwp, WFFULL) != TRUE)
1.36      kjell     109:                return (FALSE);
                    110:        if (bp->b_fname[0] == '\0') {
                    111:                if ((status = readin(adjf)) != TRUE)
                    112:                        killbuffer(bp);
                    113:                return (status);
                    114:        }
                    115:        return (TRUE);
1.1       deraadt   116: }
                    117:
1.17      vincent   118: int
                    119: filevisitro(int f, int n)
                    120: {
                    121:        int error;
                    122:
                    123:        error = filevisit(f, n);
                    124:        if (error != TRUE)
                    125:                return (error);
                    126:        curbp->b_flag |= BFREADONLY;
                    127:        return (TRUE);
                    128: }
1.32      db        129:
1.1       deraadt   130: /*
1.4       millert   131:  * Pop to a file in the other window.  Same as the last function, but uses
1.1       deraadt   132:  * popbuf instead of showbuffer.
                    133:  */
1.3       millert   134: /* ARGSUSED */
                    135: int
1.15      vincent   136: poptofile(int f, int n)
1.1       deraadt   137: {
1.45      deraadt   138:        struct buffer   *bp;
                    139:        struct mgwin    *wp;
1.29      vincent   140:        char     fname[NFILEN], *adjf, *bufp;
1.39      kjell     141:        int      status;
1.1       deraadt   142:
1.54      kjell     143:        if (getbufcwd(fname, sizeof(fname)) != TRUE)
                    144:                fname[0] = '\0';
1.29      vincent   145:        if ((bufp = eread("Find file in other window: ", fname, NFILEN,
1.54      kjell     146:            EFNEW | EFCR | EFFILE | EFDEF)) == NULL)
1.32      db        147:                return (ABORT);
1.29      vincent   148:        else if (bufp[0] == '\0')
1.32      db        149:                return (FALSE);
1.58      jason     150:        adjf = adjustname(fname, TRUE);
1.22      vincent   151:        if (adjf == NULL)
                    152:                return (FALSE);
1.3       millert   153:        if ((bp = findbuffer(adjf)) == NULL)
1.32      db        154:                return (FALSE);
1.56      kjell     155:        if (bp == curbp)
                    156:                return (splitwind(f, n));
1.3       millert   157:        if ((wp = popbuf(bp)) == NULL)
1.32      db        158:                return (FALSE);
1.1       deraadt   159:        curbp = bp;
                    160:        curwp = wp;
1.39      kjell     161:        if (bp->b_fname[0] == '\0') {
1.30      jfb       162:                if ((status = readin(adjf)) != TRUE)
                    163:                        killbuffer(bp);
1.32      db        164:                return (status);
1.30      jfb       165:        }
1.32      db        166:        return (TRUE);
1.1       deraadt   167: }
                    168:
                    169: /*
1.32      db        170:  * Given a file name, either find the buffer it uses, or create a new
1.1       deraadt   171:  * empty buffer to put it in.
                    172:  */
1.45      deraadt   173: struct buffer *
1.44      kjell     174: findbuffer(char *fn)
1.1       deraadt   175: {
1.52      deraadt   176:        struct buffer   *bp;
                    177:        char            bname[NBUFN], fname[NBUFN];
1.1       deraadt   178:
1.44      kjell     179:        if (strlcpy(fname, fn, sizeof(fname)) >= sizeof(fname)) {
                    180:                ewprintf("filename too long");
                    181:                return (NULL);
                    182:        }
                    183:
1.3       millert   184:        for (bp = bheadp; bp != NULL; bp = bp->b_bufp) {
1.6       art       185:                if (strcmp(bp->b_fname, fname) == 0)
1.32      db        186:                        return (bp);
1.1       deraadt   187:        }
1.53      kjell     188:        /* Not found. Create a new one, adjusting name first */
1.54      kjell     189:        if (augbname(bname, fname, sizeof(bname)) == FALSE)
1.44      kjell     190:                return (NULL);
1.10      vincent   191:
1.53      kjell     192:        bp = bfind(bname, TRUE);
                    193:        return (bp);
1.1       deraadt   194: }
                    195:
                    196: /*
1.9       mickey    197:  * Read the file "fname" into the current buffer.  Make all of the text
                    198:  * in the buffer go away, after checking for unsaved changes.  This is
                    199:  * called by the "read" command, the "visit" command, and the mainline
1.19      vincent   200:  * (for "mg file").
1.1       deraadt   201:  */
1.3       millert   202: int
1.19      vincent   203: readin(char *fname)
1.3       millert   204: {
1.45      deraadt   205:        struct mgwin    *wp;
1.41      kjell     206:        int      status, i, ro = FALSE;
1.20      vincent   207:        PF      *ael;
1.1       deraadt   208:
1.4       millert   209:        /* might be old */
                    210:        if (bclear(curbp) != TRUE)
1.32      db        211:                return (TRUE);
1.57      kjell     212:        /* Clear readonly. May be set by autoexec path */
                    213:        curbp->b_flag &=~ BFREADONLY;
1.30      jfb       214:        if ((status = insertfile(fname, fname, TRUE)) != TRUE) {
                    215:                ewprintf("File is not readable: %s", fname);
1.32      db        216:                return (FALSE);
1.30      jfb       217:        }
1.18      vincent   218:
1.57      kjell     219:        for (wp = wheadp; wp != NULL; wp = wp->w_wndp) {
                    220:                if (wp->w_bufp == curbp) {
1.62      kjell     221:                        wp->w_dotp = wp->w_linep = bfirstlp(curbp);
1.57      kjell     222:                        wp->w_doto = 0;
                    223:                        wp->w_markp = NULL;
                    224:                        wp->w_marko = 0;
                    225:                }
                    226:        }
                    227:
1.18      vincent   228:        /*
                    229:         * Call auto-executing function if we need to.
                    230:         */
                    231:        if ((ael = find_autoexec(fname)) != NULL) {
                    232:                for (i = 0; ael[i] != NULL; i++)
                    233:                        (*ael[i])(0, 1);
                    234:                free(ael);
                    235:        }
1.4       millert   236:
                    237:        /* no change */
                    238:        curbp->b_flag &= ~BFCHG;
1.16      vincent   239:
1.41      kjell     240:        /*
                    241:         * We need to set the READONLY flag after we insert the file,
                    242:         * unless the file is a directory.
                    243:         */
1.16      vincent   244:        if (access(fname, W_OK) && errno != ENOENT)
1.41      kjell     245:                ro = TRUE;
                    246:        if (fisdir(fname) == TRUE)
                    247:                ro = TRUE;
                    248:        if (ro == TRUE)
1.16      vincent   249:                curbp->b_flag |= BFREADONLY;
1.25      deraadt   250:
1.24      deraadt   251:        if (startrow)
                    252:                gotoline(FFARG, startrow);
1.16      vincent   253:
1.60      kjell     254:        undo_add_modified();
1.32      db        255:        return (status);
1.1       deraadt   256: }
1.4       millert   257:
1.1       deraadt   258: /*
                    259:  * NB, getting file attributes is done here under control of a flag
                    260:  * rather than in readin, which would be cleaner.  I was concerned
                    261:  * that some operating system might require the file to be open
                    262:  * in order to get the information.  Similarly for writing.
                    263:  */
                    264:
                    265: /*
1.39      kjell     266:  * Insert a file in the current buffer, after dot. If file is a directory,
                    267:  * and 'replacebuf' is TRUE, invoke dired mode, else die with an error.
                    268:  * If file is a regular file, set mark at the end of the text inserted;
1.47      kjell     269:  * point at the beginning.  Return a standard status. Print a summary
                    270:  * (lines read, error message) out as well. This routine also does the
                    271:  * read end of backup processing.  The BFBAK flag, if set in a buffer,
                    272:  * says that a backup should be taken.  It is set when a file is read in,
                    273:  * but not on a new file. You don't need to make a backup copy of nothing.
1.1       deraadt   274:  */
1.47      kjell     275:
1.9       mickey    276: static char    *line = NULL;
                    277: static int     linesize = 0;
1.1       deraadt   278:
1.3       millert   279: int
1.39      kjell     280: insertfile(char *fname, char *newname, int replacebuf)
1.3       millert   281: {
1.45      deraadt   282:        struct buffer   *bp;
                    283:        struct line     *lp1, *lp2;
                    284:        struct line     *olp;                   /* line we started at */
                    285:        struct mgwin    *wp;
1.63    ! kjell     286:        int      nbytes, s, nline = 0, siz, x, x2;
1.19      vincent   287:        int      opos;                  /* offset we started at */
1.59      kjell     288:        int      oline;                 /* original line number */
1.4       millert   289:
1.39      kjell     290:        if (replacebuf == TRUE)
1.23      vincent   291:                x = undo_enable(FALSE);
1.63    ! kjell     292:        else
        !           293:                x = undo_enabled();
1.23      vincent   294:
1.4       millert   295:        lp1 = NULL;
1.1       deraadt   296:        if (line == NULL) {
                    297:                line = malloc(NLINE);
1.21      vincent   298:                if (line == NULL)
                    299:                        panic("out of memory");
1.1       deraadt   300:                linesize = NLINE;
                    301:        }
1.4       millert   302:
                    303:        /* cheap */
                    304:        bp = curbp;
1.54      kjell     305:        if (newname != NULL) {
                    306:                (void)strlcpy(bp->b_fname, newname, sizeof(bp->b_fname));
                    307:                (void)strlcpy(bp->b_cwd, dirname(newname),
                    308:                    sizeof(bp->b_cwd));
                    309:                (void)strlcat(bp->b_cwd, "/", sizeof(bp->b_cwd));
                    310:        }
1.4       millert   311:
                    312:        /* hard file open */
1.39      kjell     313:        if ((s = ffropen(fname, (replacebuf == TRUE) ? bp : NULL)) == FIOERR)
1.1       deraadt   314:                goto out;
1.4       millert   315:        if (s == FIOFNF) {
                    316:                /* file not found */
1.1       deraadt   317:                if (newname != NULL)
                    318:                        ewprintf("(New file)");
1.3       millert   319:                else
                    320:                        ewprintf("(File not found)");
1.1       deraadt   321:                goto out;
1.40      kjell     322:        } else if (s == FIODIR) {
                    323:                /* file was a directory */
                    324:                if (replacebuf == FALSE) {
                    325:                        ewprintf("Cannot insert: file is a directory, %s",
                    326:                            fname);
                    327:                        goto cleanup;
                    328:                }
                    329:                killbuffer(bp);
                    330:                if ((bp = dired_(fname)) == NULL)
                    331:                        return (FALSE);
                    332:                undo_enable(x);
                    333:                curbp = bp;
1.55      kjell     334:                return (showbuffer(bp, curwp, WFFULL | WFMODE));
1.54      kjell     335:        } else {
                    336:                (void)strlcpy(bp->b_cwd, dirname(fname), sizeof(bp->b_cwd));
                    337:                (void)strlcat(bp->b_cwd, "/", sizeof(bp->b_cwd));
1.1       deraadt   338:        }
                    339:        opos = curwp->w_doto;
1.4       millert   340:
1.59      kjell     341:        /* Open a new line, at point, and start inserting after it. */
1.23      vincent   342:        x2 = undo_enable(FALSE);
1.59      kjell     343:        oline = curwp->w_dotline;
1.20      vincent   344:        (void)lnewline();
1.1       deraadt   345:        olp = lback(curwp->w_dotp);
1.61      kjell     346:        if (olp == curbp->b_headp) {
1.1       deraadt   347:                /* if at end of buffer, create a line to insert before */
1.7       art       348:                (void)lnewline();
1.1       deraadt   349:                curwp->w_dotp = lback(curwp->w_dotp);
                    350:        }
1.23      vincent   351:        undo_enable(x2);
1.4       millert   352:
                    353:        /* don't count fake lines at the end */
                    354:        nline = 0;
1.19      vincent   355:        siz = 0;
1.3       millert   356:        while ((s = ffgetline(line, linesize, &nbytes)) != FIOERR) {
1.1       deraadt   357: doneread:
1.19      vincent   358:                siz += nbytes + 1;
1.3       millert   359:                switch (s) {
                    360:                case FIOSUC:
1.48      kjell     361:                        /* FALLTHRU */
1.4       millert   362:                case FIOEOF:
                    363:                        /* the last line of the file */
1.59      kjell     364:                        ++nline;
1.3       millert   365:                        if ((lp1 = lalloc(nbytes)) == NULL) {
1.4       millert   366:                                /* keep message on the display */
                    367:                                s = FIOERR;
                    368:                                goto endoffile;
1.3       millert   369:                        }
                    370:                        bcopy(line, &ltext(lp1)[0], nbytes);
                    371:                        lp2 = lback(curwp->w_dotp);
                    372:                        lp2->l_fp = lp1;
                    373:                        lp1->l_fp = curwp->w_dotp;
                    374:                        lp1->l_bp = lp2;
                    375:                        curwp->w_dotp->l_bp = lp1;
                    376:                        if (s == FIOEOF)
                    377:                                goto endoffile;
                    378:                        break;
1.19      vincent   379:                case FIOLONG: {
1.4       millert   380:                                /* a line too long to fit in our buffer */
1.9       mickey    381:                                char    *cp;
                    382:                                int     newsize;
1.3       millert   383:
                    384:                                newsize = linesize * 2;
                    385:                                if (newsize < 0 ||
1.51      deraadt   386:                                    (cp = malloc(newsize)) == NULL) {
1.3       millert   387:                                        ewprintf("Could not allocate %d bytes",
1.4       millert   388:                                            newsize);
                    389:                                                s = FIOERR;
                    390:                                                goto endoffile;
1.3       millert   391:                                }
                    392:                                bcopy(line, cp, linesize);
                    393:                                free(line);
                    394:                                line = cp;
1.9       mickey    395:                                s = ffgetline(line + linesize, linesize,
1.4       millert   396:                                    &nbytes);
1.3       millert   397:                                nbytes += linesize;
                    398:                                linesize = newsize;
                    399:                                if (s == FIOERR)
                    400:                                        goto endoffile;
                    401:                                goto doneread;
                    402:                        }
                    403:                default:
                    404:                        ewprintf("Unknown code %d reading file", s);
                    405:                        s = FIOERR;
                    406:                        break;
1.1       deraadt   407:                }
                    408:        }
                    409: endoffile:
1.59      kjell     410:        undo_add_insert(olp, opos, siz - 1);
1.19      vincent   411:
1.4       millert   412:        /* ignore errors */
1.8       art       413:        ffclose(NULL);
1.4       millert   414:        /* don't zap an error */
                    415:        if (s == FIOEOF) {
1.3       millert   416:                if (nline == 1)
                    417:                        ewprintf("(Read 1 line)");
                    418:                else
                    419:                        ewprintf("(Read %d lines)", nline);
1.1       deraadt   420:        }
1.4       millert   421:        /* set mark at the end of the text */
1.1       deraadt   422:        curwp->w_dotp = curwp->w_markp = lback(curwp->w_dotp);
                    423:        curwp->w_marko = llength(curwp->w_markp);
1.7       art       424:        (void)ldelnewline();
1.1       deraadt   425:        curwp->w_dotp = olp;
                    426:        curwp->w_doto = opos;
1.59      kjell     427:        curwp->w_dotline = oline;
1.61      kjell     428:        if (olp == curbp->b_headp)
1.3       millert   429:                curwp->w_dotp = lforw(olp);
1.1       deraadt   430:        if (newname != NULL)
1.3       millert   431:                bp->b_flag |= BFCHG | BFBAK;    /* Need a backup.        */
                    432:        else
                    433:                bp->b_flag |= BFCHG;
                    434:        /*
1.32      db        435:         * If the insert was at the end of buffer, set lp1 to the end of
1.3       millert   436:         * buffer line, and lp2 to the beginning of the newly inserted text.
                    437:         * (Otherwise lp2 is set to NULL.)  This is used below to set
                    438:         * pointers in other windows correctly if they are also at the end of
                    439:         * buffer.
1.1       deraadt   440:         */
1.61      kjell     441:        lp1 = bp->b_headp;
1.1       deraadt   442:        if (curwp->w_markp == lp1) {
                    443:                lp2 = curwp->w_dotp;
                    444:        } else {
1.4       millert   445:                /* delete extraneous newline */
1.7       art       446:                (void)ldelnewline();
1.1       deraadt   447: out:           lp2 = NULL;
                    448:        }
1.3       millert   449:        for (wp = wheadp; wp != NULL; wp = wp->w_wndp) {
1.1       deraadt   450:                if (wp->w_bufp == curbp) {
1.3       millert   451:                        wp->w_flag |= WFMODE | WFEDIT;
1.1       deraadt   452:                        if (wp != curwp && lp2 != NULL) {
1.3       millert   453:                                if (wp->w_dotp == lp1)
                    454:                                        wp->w_dotp = lp2;
                    455:                                if (wp->w_markp == lp1)
                    456:                                        wp->w_markp = lp2;
                    457:                                if (wp->w_linep == lp1)
                    458:                                        wp->w_linep = lp2;
1.1       deraadt   459:                        }
                    460:                }
                    461:        }
1.59      kjell     462:        bp->b_lines += nline;
1.40      kjell     463: cleanup:
1.39      kjell     464:        undo_enable(x);
1.23      vincent   465:
1.39      kjell     466:        /* return FALSE if error */
1.32      db        467:        return (s != FIOERR);
1.1       deraadt   468: }
                    469:
                    470: /*
1.9       mickey    471:  * Ask for a file name and write the contents of the current buffer to that
                    472:  * file.  Update the remembered file name and clear the buffer changed flag.
1.4       millert   473:  * This handling of file names is different from the earlier versions and
1.27      jmc       474:  * is more compatible with Gosling EMACS than with ITS EMACS.
1.1       deraadt   475:  */
1.3       millert   476: /* ARGSUSED */
                    477: int
1.20      vincent   478: filewrite(int f, int n)
1.1       deraadt   479: {
1.4       millert   480:        int      s;
1.53      kjell     481:        char     fname[NFILEN], bn[NBUFN];
                    482:        char    *adjfname, *bufp;
1.29      vincent   483:
1.54      kjell     484:        if (getbufcwd(fname, sizeof(fname)) != TRUE)
                    485:                fname[0] = '\0';
1.29      vincent   486:        if ((bufp = eread("Write file: ", fname, NFILEN,
1.54      kjell     487:            EFDEF | EFNEW | EFCR | EFFILE)) == NULL)
1.32      db        488:                return (ABORT);
1.29      vincent   489:        else if (bufp[0] == '\0')
1.32      db        490:                return (FALSE);
1.1       deraadt   491:
1.58      jason     492:        adjfname = adjustname(fname, TRUE);
1.22      vincent   493:        if (adjfname == NULL)
                    494:                return (FALSE);
1.1       deraadt   495:        /* old attributes are no longer current */
                    496:        bzero(&curbp->b_fi, sizeof(curbp->b_fi));
1.3       millert   497:        if ((s = writeout(curbp, adjfname)) == TRUE) {
1.53      kjell     498:                (void)strlcpy(curbp->b_fname, adjfname, sizeof(curbp->b_fname));
1.54      kjell     499:                if (getbufcwd(curbp->b_cwd, sizeof(curbp->b_cwd)) != TRUE)
                    500:                        (void)strlcpy(curbp->b_cwd, "/", sizeof(curbp->b_cwd));
1.50      kjell     501:                free(curbp->b_bname);
1.54      kjell     502:                if (augbname(bn, basename(curbp->b_fname), sizeof(bn))
1.53      kjell     503:                    == FALSE)
                    504:                        return (FALSE);
                    505:                if ((curbp->b_bname = strdup(bn)) == NULL)
                    506:                        return (FALSE);
1.1       deraadt   507:                curbp->b_flag &= ~(BFBAK | BFCHG);
                    508:                upmodes(curbp);
                    509:        }
1.32      db        510:        return (s);
1.1       deraadt   511: }
                    512:
                    513: /*
1.4       millert   514:  * Save the contents of the current buffer back into its associated file.
1.1       deraadt   515:  */
                    516: #ifndef        MAKEBACKUP
                    517: #define        MAKEBACKUP TRUE
1.4       millert   518: #endif /* !MAKEBACKUP */
1.9       mickey    519: static int     makebackup = MAKEBACKUP;
1.1       deraadt   520:
1.3       millert   521: /* ARGSUSED */
                    522: int
1.20      vincent   523: filesave(int f, int n)
1.1       deraadt   524: {
1.32      db        525:        return (buffsave(curbp));
1.1       deraadt   526: }
                    527:
                    528: /*
1.9       mickey    529:  * Save the contents of the buffer argument into its associated file.  Do
                    530:  * nothing if there have been no changes (is this a bug, or a feature?).
                    531:  * Error if there is no remembered file name. If this is the first write
1.4       millert   532:  * since the read or visit, then a backup copy of the file is made.
1.9       mickey    533:  * Allow user to select whether or not to make backup files by looking at
1.4       millert   534:  * the value of makebackup.
1.1       deraadt   535:  */
1.3       millert   536: int
1.45      deraadt   537: buffsave(struct buffer *bp)
1.3       millert   538: {
1.4       millert   539:        int      s;
1.1       deraadt   540:
1.4       millert   541:        /* return, no changes */
                    542:        if ((bp->b_flag & BFCHG) == 0) {
1.1       deraadt   543:                ewprintf("(No changes need to be saved)");
1.32      db        544:                return (TRUE);
1.1       deraadt   545:        }
1.4       millert   546:
                    547:        /* must have a name */
                    548:        if (bp->b_fname[0] == '\0') {
1.1       deraadt   549:                ewprintf("No file name");
                    550:                return (FALSE);
                    551:        }
1.4       millert   552:
1.3       millert   553:        if (makebackup && (bp->b_flag & BFBAK)) {
1.1       deraadt   554:                s = fbackupfile(bp->b_fname);
1.4       millert   555:                /* hard error */
                    556:                if (s == ABORT)
1.32      db        557:                        return (FALSE);
1.4       millert   558:                /* softer error */
1.9       mickey    559:                if (s == FALSE &&
1.4       millert   560:                    (s = eyesno("Backup error, save anyway")) != TRUE)
1.32      db        561:                        return (s);
1.1       deraadt   562:        }
1.3       millert   563:        if ((s = writeout(bp, bp->b_fname)) == TRUE) {
1.1       deraadt   564:                bp->b_flag &= ~(BFCHG | BFBAK);
                    565:                upmodes(bp);
                    566:        }
1.32      db        567:        return (s);
1.1       deraadt   568: }
                    569:
1.3       millert   570: /*
                    571:  * Since we don't have variables (we probably should) this is a command
                    572:  * processor for changing the value of the make backup flag.  If no argument
                    573:  * is given, sets makebackup to true, so backups are made.  If an argument is
1.59      kjell     574:  * given, no backup files are made when saving a new version of a file.
1.1       deraadt   575:  */
1.3       millert   576: /* ARGSUSED */
                    577: int
1.20      vincent   578: makebkfile(int f, int n)
1.1       deraadt   579: {
1.3       millert   580:        if (f & FFARG)
                    581:                makebackup = n > 0;
                    582:        else
                    583:                makebackup = !makebackup;
1.1       deraadt   584:        ewprintf("Backup files %sabled", makebackup ? "en" : "dis");
1.32      db        585:        return (TRUE);
1.1       deraadt   586: }
                    587:
                    588: /*
                    589:  * NB: bp is passed to both ffwopen and ffclose because some
                    590:  * attribute information may need to be updated at open time
                    591:  * and others after the close.  This is OS-dependent.  Note
                    592:  * that the ff routines are assumed to be able to tell whether
                    593:  * the attribute information has been set up in this buffer
                    594:  * or not.
                    595:  */
                    596:
                    597: /*
1.9       mickey    598:  * This function performs the details of file writing; writing the file
                    599:  * in buffer bp to file fn. Uses the file management routines in the
1.4       millert   600:  * "fileio.c" package. Most of the grief is checking of some sort.
1.1       deraadt   601:  */
1.3       millert   602: int
1.45      deraadt   603: writeout(struct buffer *bp, char *fn)
1.3       millert   604: {
1.4       millert   605:        int      s;
1.1       deraadt   606:
1.4       millert   607:        /* open writes message */
                    608:        if ((s = ffwopen(fn, bp)) != FIOSUC)
1.1       deraadt   609:                return (FALSE);
                    610:        s = ffputbuf(bp);
1.4       millert   611:        if (s == FIOSUC) {
                    612:                /* no write error */
1.1       deraadt   613:                s = ffclose(bp);
1.3       millert   614:                if (s == FIOSUC)
1.1       deraadt   615:                        ewprintf("Wrote %s", fn);
1.4       millert   616:        } else
                    617:                /* ignore close error if it is a write error */
1.7       art       618:                (void)ffclose(bp);
1.32      db        619:        return (s == FIOSUC);
1.1       deraadt   620: }
                    621:
                    622: /*
1.4       millert   623:  * Tag all windows for bp (all windows if bp == NULL) as needing their
1.1       deraadt   624:  * mode line updated.
                    625:  */
1.7       art       626: void
1.45      deraadt   627: upmodes(struct buffer *bp)
1.3       millert   628: {
1.45      deraadt   629:        struct mgwin    *wp;
1.1       deraadt   630:
                    631:        for (wp = wheadp; wp != NULL; wp = wp->w_wndp)
1.3       millert   632:                if (bp == NULL || curwp->w_bufp == bp)
                    633:                        wp->w_flag |= WFMODE;
1.1       deraadt   634: }