[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.57

1.57    ! kjell       1: /*     $OpenBSD: file.c,v 1.56 2006/06/01 01:41:49 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.29      vincent    31:        adjf = adjustname(bufp);
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.1       deraadt    59:        adjf = adjustname(fname);
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:
                    102:        adjf = adjustname(fname);
                    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.1       deraadt   150:        adjf = adjustname(fname);
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) {
        !           221:                        wp->w_dotp = wp->w_linep = lforw(curbp->b_linep);
        !           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.32      db        254:        return (status);
1.1       deraadt   255: }
1.4       millert   256:
1.1       deraadt   257: /*
                    258:  * NB, getting file attributes is done here under control of a flag
                    259:  * rather than in readin, which would be cleaner.  I was concerned
                    260:  * that some operating system might require the file to be open
                    261:  * in order to get the information.  Similarly for writing.
                    262:  */
                    263:
                    264: /*
1.39      kjell     265:  * Insert a file in the current buffer, after dot. If file is a directory,
                    266:  * and 'replacebuf' is TRUE, invoke dired mode, else die with an error.
                    267:  * If file is a regular file, set mark at the end of the text inserted;
1.47      kjell     268:  * point at the beginning.  Return a standard status. Print a summary
                    269:  * (lines read, error message) out as well. This routine also does the
                    270:  * read end of backup processing.  The BFBAK flag, if set in a buffer,
                    271:  * says that a backup should be taken.  It is set when a file is read in,
                    272:  * but not on a new file. You don't need to make a backup copy of nothing.
1.1       deraadt   273:  */
1.47      kjell     274:
1.9       mickey    275: static char    *line = NULL;
                    276: static int     linesize = 0;
1.1       deraadt   277:
1.3       millert   278: int
1.39      kjell     279: insertfile(char *fname, char *newname, int replacebuf)
1.3       millert   280: {
1.45      deraadt   281:        struct buffer   *bp;
                    282:        struct line     *lp1, *lp2;
                    283:        struct line     *olp;                   /* line we started at */
                    284:        struct mgwin    *wp;
1.23      vincent   285:        int      nbytes, s, nline, siz, x = -1, x2;
1.19      vincent   286:        int      opos;                  /* offset we started at */
1.4       millert   287:
1.39      kjell     288:        if (replacebuf == TRUE)
1.23      vincent   289:                x = undo_enable(FALSE);
                    290:
1.4       millert   291:        lp1 = NULL;
1.1       deraadt   292:        if (line == NULL) {
                    293:                line = malloc(NLINE);
1.21      vincent   294:                if (line == NULL)
                    295:                        panic("out of memory");
1.1       deraadt   296:                linesize = NLINE;
                    297:        }
1.4       millert   298:
                    299:        /* cheap */
                    300:        bp = curbp;
1.54      kjell     301:        if (newname != NULL) {
                    302:                (void)strlcpy(bp->b_fname, newname, sizeof(bp->b_fname));
                    303:                (void)strlcpy(bp->b_cwd, dirname(newname),
                    304:                    sizeof(bp->b_cwd));
                    305:                (void)strlcat(bp->b_cwd, "/", sizeof(bp->b_cwd));
                    306:        }
1.4       millert   307:
                    308:        /* hard file open */
1.39      kjell     309:        if ((s = ffropen(fname, (replacebuf == TRUE) ? bp : NULL)) == FIOERR)
1.1       deraadt   310:                goto out;
1.4       millert   311:        if (s == FIOFNF) {
                    312:                /* file not found */
1.1       deraadt   313:                if (newname != NULL)
                    314:                        ewprintf("(New file)");
1.3       millert   315:                else
                    316:                        ewprintf("(File not found)");
1.1       deraadt   317:                goto out;
1.40      kjell     318:        } else if (s == FIODIR) {
                    319:                /* file was a directory */
                    320:                if (replacebuf == FALSE) {
                    321:                        ewprintf("Cannot insert: file is a directory, %s",
                    322:                            fname);
                    323:                        goto cleanup;
                    324:                }
                    325:                killbuffer(bp);
                    326:                if ((bp = dired_(fname)) == NULL)
                    327:                        return (FALSE);
                    328:                undo_enable(x);
                    329:                curbp = bp;
1.55      kjell     330:                return (showbuffer(bp, curwp, WFFULL | WFMODE));
1.54      kjell     331:        } else {
                    332:                (void)strlcpy(bp->b_cwd, dirname(fname), sizeof(bp->b_cwd));
                    333:                (void)strlcat(bp->b_cwd, "/", sizeof(bp->b_cwd));
1.1       deraadt   334:        }
                    335:        opos = curwp->w_doto;
1.4       millert   336:
                    337:        /* open a new line, at point, and start inserting after it */
1.23      vincent   338:        x2 = undo_enable(FALSE);
1.20      vincent   339:        (void)lnewline();
1.1       deraadt   340:        olp = lback(curwp->w_dotp);
1.3       millert   341:        if (olp == curbp->b_linep) {
1.1       deraadt   342:                /* if at end of buffer, create a line to insert before */
1.7       art       343:                (void)lnewline();
1.1       deraadt   344:                curwp->w_dotp = lback(curwp->w_dotp);
                    345:        }
1.23      vincent   346:        undo_enable(x2);
1.4       millert   347:
                    348:        /* don't count fake lines at the end */
                    349:        nline = 0;
1.19      vincent   350:        siz = 0;
1.3       millert   351:        while ((s = ffgetline(line, linesize, &nbytes)) != FIOERR) {
1.1       deraadt   352: doneread:
1.19      vincent   353:                siz += nbytes + 1;
1.3       millert   354:                switch (s) {
                    355:                case FIOSUC:
                    356:                        ++nline;
1.48      kjell     357:                        /* FALLTHRU */
1.4       millert   358:                case FIOEOF:
                    359:                        /* the last line of the file */
1.3       millert   360:                        if ((lp1 = lalloc(nbytes)) == NULL) {
1.4       millert   361:                                /* keep message on the display */
                    362:                                s = FIOERR;
                    363:                                goto endoffile;
1.3       millert   364:                        }
                    365:                        bcopy(line, &ltext(lp1)[0], nbytes);
                    366:                        lp2 = lback(curwp->w_dotp);
                    367:                        lp2->l_fp = lp1;
                    368:                        lp1->l_fp = curwp->w_dotp;
                    369:                        lp1->l_bp = lp2;
                    370:                        curwp->w_dotp->l_bp = lp1;
                    371:                        if (s == FIOEOF)
                    372:                                goto endoffile;
                    373:                        break;
1.19      vincent   374:                case FIOLONG: {
1.4       millert   375:                                /* a line too long to fit in our buffer */
1.9       mickey    376:                                char    *cp;
                    377:                                int     newsize;
1.3       millert   378:
                    379:                                newsize = linesize * 2;
                    380:                                if (newsize < 0 ||
1.51      deraadt   381:                                    (cp = malloc(newsize)) == NULL) {
1.3       millert   382:                                        ewprintf("Could not allocate %d bytes",
1.4       millert   383:                                            newsize);
                    384:                                                s = FIOERR;
                    385:                                                goto endoffile;
1.3       millert   386:                                }
                    387:                                bcopy(line, cp, linesize);
                    388:                                free(line);
                    389:                                line = cp;
1.9       mickey    390:                                s = ffgetline(line + linesize, linesize,
1.4       millert   391:                                    &nbytes);
1.3       millert   392:                                nbytes += linesize;
                    393:                                linesize = newsize;
                    394:                                if (s == FIOERR)
                    395:                                        goto endoffile;
                    396:                                goto doneread;
                    397:                        }
                    398:                default:
                    399:                        ewprintf("Unknown code %d reading file", s);
                    400:                        s = FIOERR;
                    401:                        break;
1.1       deraadt   402:                }
                    403:        }
                    404: endoffile:
1.28      vincent   405:        undo_add_insert(olp, opos, siz-1);
1.19      vincent   406:
1.4       millert   407:        /* ignore errors */
1.8       art       408:        ffclose(NULL);
1.4       millert   409:        /* don't zap an error */
                    410:        if (s == FIOEOF) {
1.3       millert   411:                if (nline == 1)
                    412:                        ewprintf("(Read 1 line)");
                    413:                else
                    414:                        ewprintf("(Read %d lines)", nline);
1.1       deraadt   415:        }
1.4       millert   416:        /* set mark at the end of the text */
1.1       deraadt   417:        curwp->w_dotp = curwp->w_markp = lback(curwp->w_dotp);
                    418:        curwp->w_marko = llength(curwp->w_markp);
1.7       art       419:        (void)ldelnewline();
1.1       deraadt   420:        curwp->w_dotp = olp;
                    421:        curwp->w_doto = opos;
1.3       millert   422:        if (olp == curbp->b_linep)
                    423:                curwp->w_dotp = lforw(olp);
1.1       deraadt   424:        if (newname != NULL)
1.3       millert   425:                bp->b_flag |= BFCHG | BFBAK;    /* Need a backup.        */
                    426:        else
                    427:                bp->b_flag |= BFCHG;
                    428:        /*
1.32      db        429:         * If the insert was at the end of buffer, set lp1 to the end of
1.3       millert   430:         * buffer line, and lp2 to the beginning of the newly inserted text.
                    431:         * (Otherwise lp2 is set to NULL.)  This is used below to set
                    432:         * pointers in other windows correctly if they are also at the end of
                    433:         * buffer.
1.1       deraadt   434:         */
                    435:        lp1 = bp->b_linep;
                    436:        if (curwp->w_markp == lp1) {
                    437:                lp2 = curwp->w_dotp;
                    438:        } else {
1.4       millert   439:                /* delete extraneous newline */
1.7       art       440:                (void)ldelnewline();
1.1       deraadt   441: out:           lp2 = NULL;
                    442:        }
1.3       millert   443:        for (wp = wheadp; wp != NULL; wp = wp->w_wndp) {
1.1       deraadt   444:                if (wp->w_bufp == curbp) {
1.3       millert   445:                        wp->w_flag |= WFMODE | WFEDIT;
1.1       deraadt   446:                        if (wp != curwp && lp2 != NULL) {
1.3       millert   447:                                if (wp->w_dotp == lp1)
                    448:                                        wp->w_dotp = lp2;
                    449:                                if (wp->w_markp == lp1)
                    450:                                        wp->w_markp = lp2;
                    451:                                if (wp->w_linep == lp1)
                    452:                                        wp->w_linep = lp2;
1.1       deraadt   453:                        }
                    454:                }
                    455:        }
1.40      kjell     456: cleanup:
1.39      kjell     457:        undo_enable(x);
1.23      vincent   458:
1.39      kjell     459:        /* return FALSE if error */
1.32      db        460:        return (s != FIOERR);
1.1       deraadt   461: }
                    462:
                    463: /*
1.9       mickey    464:  * Ask for a file name and write the contents of the current buffer to that
                    465:  * file.  Update the remembered file name and clear the buffer changed flag.
1.4       millert   466:  * This handling of file names is different from the earlier versions and
1.27      jmc       467:  * is more compatible with Gosling EMACS than with ITS EMACS.
1.1       deraadt   468:  */
1.3       millert   469: /* ARGSUSED */
                    470: int
1.20      vincent   471: filewrite(int f, int n)
1.1       deraadt   472: {
1.4       millert   473:        int      s;
1.53      kjell     474:        char     fname[NFILEN], bn[NBUFN];
                    475:        char    *adjfname, *bufp;
1.29      vincent   476:
1.54      kjell     477:        if (getbufcwd(fname, sizeof(fname)) != TRUE)
                    478:                fname[0] = '\0';
1.29      vincent   479:        if ((bufp = eread("Write file: ", fname, NFILEN,
1.54      kjell     480:            EFDEF | EFNEW | EFCR | EFFILE)) == NULL)
1.32      db        481:                return (ABORT);
1.29      vincent   482:        else if (bufp[0] == '\0')
1.32      db        483:                return (FALSE);
1.1       deraadt   484:
                    485:        adjfname = adjustname(fname);
1.22      vincent   486:        if (adjfname == NULL)
                    487:                return (FALSE);
1.1       deraadt   488:        /* old attributes are no longer current */
                    489:        bzero(&curbp->b_fi, sizeof(curbp->b_fi));
1.3       millert   490:        if ((s = writeout(curbp, adjfname)) == TRUE) {
1.53      kjell     491:                (void)strlcpy(curbp->b_fname, adjfname, sizeof(curbp->b_fname));
1.54      kjell     492:                if (getbufcwd(curbp->b_cwd, sizeof(curbp->b_cwd)) != TRUE)
                    493:                        (void)strlcpy(curbp->b_cwd, "/", sizeof(curbp->b_cwd));
1.50      kjell     494:                free(curbp->b_bname);
1.54      kjell     495:                if (augbname(bn, basename(curbp->b_fname), sizeof(bn))
1.53      kjell     496:                    == FALSE)
                    497:                        return (FALSE);
                    498:                if ((curbp->b_bname = strdup(bn)) == NULL)
                    499:                        return (FALSE);
1.1       deraadt   500:                curbp->b_flag &= ~(BFBAK | BFCHG);
                    501:                upmodes(curbp);
                    502:        }
1.32      db        503:        return (s);
1.1       deraadt   504: }
                    505:
                    506: /*
1.4       millert   507:  * Save the contents of the current buffer back into its associated file.
1.1       deraadt   508:  */
                    509: #ifndef        MAKEBACKUP
                    510: #define        MAKEBACKUP TRUE
1.4       millert   511: #endif /* !MAKEBACKUP */
1.9       mickey    512: static int     makebackup = MAKEBACKUP;
1.1       deraadt   513:
1.3       millert   514: /* ARGSUSED */
                    515: int
1.20      vincent   516: filesave(int f, int n)
1.1       deraadt   517: {
1.32      db        518:        return (buffsave(curbp));
1.1       deraadt   519: }
                    520:
                    521: /*
1.9       mickey    522:  * Save the contents of the buffer argument into its associated file.  Do
                    523:  * nothing if there have been no changes (is this a bug, or a feature?).
                    524:  * Error if there is no remembered file name. If this is the first write
1.4       millert   525:  * since the read or visit, then a backup copy of the file is made.
1.9       mickey    526:  * Allow user to select whether or not to make backup files by looking at
1.4       millert   527:  * the value of makebackup.
1.1       deraadt   528:  */
1.3       millert   529: int
1.45      deraadt   530: buffsave(struct buffer *bp)
1.3       millert   531: {
1.4       millert   532:        int      s;
1.1       deraadt   533:
1.4       millert   534:        /* return, no changes */
                    535:        if ((bp->b_flag & BFCHG) == 0) {
1.1       deraadt   536:                ewprintf("(No changes need to be saved)");
1.32      db        537:                return (TRUE);
1.1       deraadt   538:        }
1.4       millert   539:
                    540:        /* must have a name */
                    541:        if (bp->b_fname[0] == '\0') {
1.1       deraadt   542:                ewprintf("No file name");
                    543:                return (FALSE);
                    544:        }
1.4       millert   545:
1.3       millert   546:        if (makebackup && (bp->b_flag & BFBAK)) {
1.1       deraadt   547:                s = fbackupfile(bp->b_fname);
1.4       millert   548:                /* hard error */
                    549:                if (s == ABORT)
1.32      db        550:                        return (FALSE);
1.4       millert   551:                /* softer error */
1.9       mickey    552:                if (s == FALSE &&
1.4       millert   553:                    (s = eyesno("Backup error, save anyway")) != TRUE)
1.32      db        554:                        return (s);
1.1       deraadt   555:        }
1.3       millert   556:        if ((s = writeout(bp, bp->b_fname)) == TRUE) {
1.1       deraadt   557:                bp->b_flag &= ~(BFCHG | BFBAK);
                    558:                upmodes(bp);
                    559:        }
1.32      db        560:        return (s);
1.1       deraadt   561: }
                    562:
1.3       millert   563: /*
                    564:  * Since we don't have variables (we probably should) this is a command
                    565:  * processor for changing the value of the make backup flag.  If no argument
                    566:  * is given, sets makebackup to true, so backups are made.  If an argument is
                    567:  * given, no backup files are made when saving a new version of a file. Only
                    568:  * used when BACKUP is #defined.
1.1       deraadt   569:  */
1.3       millert   570: /* ARGSUSED */
                    571: int
1.20      vincent   572: makebkfile(int f, int n)
1.1       deraadt   573: {
1.3       millert   574:        if (f & FFARG)
                    575:                makebackup = n > 0;
                    576:        else
                    577:                makebackup = !makebackup;
1.1       deraadt   578:        ewprintf("Backup files %sabled", makebackup ? "en" : "dis");
1.32      db        579:        return (TRUE);
1.1       deraadt   580: }
                    581:
                    582: /*
                    583:  * NB: bp is passed to both ffwopen and ffclose because some
                    584:  * attribute information may need to be updated at open time
                    585:  * and others after the close.  This is OS-dependent.  Note
                    586:  * that the ff routines are assumed to be able to tell whether
                    587:  * the attribute information has been set up in this buffer
                    588:  * or not.
                    589:  */
                    590:
                    591: /*
1.9       mickey    592:  * This function performs the details of file writing; writing the file
                    593:  * in buffer bp to file fn. Uses the file management routines in the
1.4       millert   594:  * "fileio.c" package. Most of the grief is checking of some sort.
1.1       deraadt   595:  */
1.3       millert   596: int
1.45      deraadt   597: writeout(struct buffer *bp, char *fn)
1.3       millert   598: {
1.4       millert   599:        int      s;
1.1       deraadt   600:
1.4       millert   601:        /* open writes message */
                    602:        if ((s = ffwopen(fn, bp)) != FIOSUC)
1.1       deraadt   603:                return (FALSE);
                    604:        s = ffputbuf(bp);
1.4       millert   605:        if (s == FIOSUC) {
                    606:                /* no write error */
1.1       deraadt   607:                s = ffclose(bp);
1.3       millert   608:                if (s == FIOSUC)
1.1       deraadt   609:                        ewprintf("Wrote %s", fn);
1.4       millert   610:        } else
                    611:                /* ignore close error if it is a write error */
1.7       art       612:                (void)ffclose(bp);
1.32      db        613:        return (s == FIOSUC);
1.1       deraadt   614: }
                    615:
                    616: /*
1.4       millert   617:  * Tag all windows for bp (all windows if bp == NULL) as needing their
1.1       deraadt   618:  * mode line updated.
                    619:  */
1.7       art       620: void
1.45      deraadt   621: upmodes(struct buffer *bp)
1.3       millert   622: {
1.45      deraadt   623:        struct mgwin    *wp;
1.1       deraadt   624:
                    625:        for (wp = wheadp; wp != NULL; wp = wp->w_wndp)
1.3       millert   626:                if (bp == NULL || curwp->w_bufp == bp)
                    627:                        wp->w_flag |= WFMODE;
1.1       deraadt   628: }