This is file.c in view mode; [Download] [Up]
/* FILE.C: for MicroEMACS The routines in this file handle the reading, writing and lookup of disk files. All of details about the reading and writing of the disk are in "fileio.c". */ #include <stdio.h> #include "estruct.h" #include "etype.h" #include "edef.h" #include "elang.h" /* jbayer, added for stat function below */ #if V7 | USG | HPUX | BSD | SUN | XENIX #include <sys/types.h> #include <sys/stat.h> #endif /* * Read a file into the current * buffer. This is really easy; all you do is * find the name of the file, and call the standard * "read a file into the current buffer" code. * Bound to "C-X C-R". */ PASCAL NEAR fileread(f, n) int f, n; /* defualt and numeric arguments (unused) */ { register int s; /* status return */ char *fname; /* file name to read */ if (restflag) /* don't allow this command if restricted */ return(resterr()); if ((fname = gtfilename(TEXT131)) == NULL) /* "Read file" */ return(FALSE); return(readin(fname, TRUE)); } /* * Insert a file into the current * buffer. This is really easy; all you do it * find the name of the file, and call the standard * "insert a file into the current buffer" code. * Bound to "C-X C-I". */ PASCAL NEAR insfile(f, n) { register int s; char *fname; /* file name */ if (restflag) /* don't allow this command if restricted */ return(resterr()); if (curbp->b_mode&MDVIEW) /* don't allow this command if */ return(rdonly()); /* we are in read only mode */ if ((fname = gtfilename(TEXT132)) == NULL) /* "Insert file" */ return(FALSE); return(ifile(fname)); } /* * Select a file for editing. * Look around to see if you can find the * fine in another buffer; if you can find it * just switch to the buffer. If you cannot find * the file, create a new buffer, read in the * text, and switch to the new buffer. * Bound to C-X C-F. */ PASCAL NEAR filefind(f, n) { char *fname; /* file user wishes to find */ /* file name */ register int s; /* status return */ if (restflag) /* don't allow this command if restricted */ return(resterr()); if ((fname = gtfilename(TEXT133)) == NULL) /* "Find file" */ return(FALSE); return(getfile(fname, TRUE)); } PASCAL NEAR viewfile(f, n) /* visit a file in VIEW mode */ { char *fname; /* file user wishes to find */ /* file name */ register int s; /* status return */ if (restflag) /* don't allow this command if restricted */ return(resterr()); if ((fname = gtfilename(TEXT134)) == NULL) /* "View file" */ return(FALSE); s = getfile(fname, FALSE); if (s) { /* if we succeed, put it in view mode */ curwp->w_bufp->b_mode |= MDVIEW; upmode(); } return(s); } #if CRYPT PASCAL NEAR resetkey() /* reset the encryption key if needed */ { register int s; /* return status */ /* turn off the encryption flag */ cryptflag = FALSE; /* if we are in crypt mode */ if (curbp->b_mode & MDCRYPT) { if (curbp->b_key[0] == 0) { s = setekey(FALSE, 0); if (s != TRUE) return(s); } /* let others know... */ cryptflag = TRUE; /* and set up the key to be used! */ /* de-encrypt it */ crypt((char *)NULL, 0); crypt(curbp->b_key, strlen(curbp->b_key)); /* re-encrypt it...seeding it to start */ crypt((char *)NULL, 0); crypt(curbp->b_key, strlen(curbp->b_key)); } return(TRUE); } #endif PASCAL NEAR getfile(fname, lockfl) char fname[]; /* file name to find */ int lockfl; /* check the file for locks? */ { register BUFFER *bp; register LINE *lp; register int i; register int s; register int cmark; /* current mark */ char bname[NBUFN]; /* buffer name to put file */ #if MSDOS | OS2 | AOSVS mklower(fname); /* msdos isn't case sensitive */ #endif for (bp=bheadp; bp!=NULL; bp=bp->b_bufp) { if ((bp->b_flag&BFINVS)==0 && strcmp(bp->b_fname, fname)==0) { swbuffer(bp); lp = curwp->w_dotp; i = curwp->w_ntrows/2; while (i-- && lback(lp)!=curbp->b_linep) lp = lback(lp); curwp->w_linep = lp; curwp->w_flag |= WFMODE|WFHARD; mlwrite(TEXT135); /* "[Old buffer]" */ return(TRUE); } } makename(bname, fname); /* New buffer name. */ while ((bp=bfind(bname, FALSE, 0)) != NULL) { /* old buffer name conflict code */ s = mlreply(TEXT136, bname, NBUFN); /* "Buffer name: " */ if (s == ABORT) /* ^G to just quit */ return(s); if (s == FALSE) { /* CR to clobber it */ makename(bname, fname); break; } } if (bp==NULL && (bp=bfind(bname, TRUE, 0))==NULL) { mlwrite(TEXT137); /* "Cannot create buffer" */ return(FALSE); } if (--curbp->b_nwnd == 0) { /* Undisplay. */ curbp->b_dotp = curwp->w_dotp; curbp->b_doto = curwp->w_doto; for (cmark = 0; cmark < NMARKS; cmark++) { curbp->b_markp[cmark] = curwp->w_markp[cmark]; curbp->b_marko[cmark] = curwp->w_marko[cmark]; } curbp->b_fcol = curwp->w_fcol; } curbp = bp; /* Switch to it. */ curwp->w_bufp = bp; curbp->b_nwnd++; return(readin(fname, lockfl)); /* Read it in. */ } /* Read file "fname" into the current buffer, blowing away any text found there. Called by both the read and find commands. Return the final status of the read. Also called by the mainline, to read in a file specified on the command line as an argument. The command in $readhook is called after the buffer is set up and before it is read. */ PASCAL NEAR readin(fname, lockfl) char fname[]; /* name of file to read */ int lockfl; /* check for file locks? */ { register LINE *lp1; register LINE *lp2; register int i; register WINDOW *wp; register BUFFER *bp; register int s; register int nbytes; register int nline; register int cmark; /* current mark */ char mesg[NSTRING]; #if FILOCK if (lockfl && lockchk(fname) == ABORT) return(ABORT); #endif bp = curbp; /* Cheap. */ if ((s=bclear(bp)) != TRUE) /* Might be old. */ return(s); bp->b_flag &= ~(BFINVS|BFCHG); #if BACKUP curbp->b_bupflg = FALSE; /* no backup file yet */ #endif strcpy(bp->b_fname, fname); /* let a user macro get hold of things...if he wants */ execkey(&readhook, FALSE, 1); #if CRYPT /* set up for decryption */ s = resetkey(); if (s != TRUE) return(s); #endif /* turn off ALL keyboard translation in case we get a dos error */ TTkclose(); if ((s=ffropen(fname)) == FIOERR) /* Hard file open. */ goto out; if (s == FIOFNF) { /* File not found. */ mlwrite(TEXT138); /* "[New file]" */ goto out; } /* read the file in */ mlwrite(TEXT139); /* "[Reading file]" */ nline = 0; while ((s=ffgetline()) == FIOSUC) { nbytes = strlen(fline); if ((lp1=lalloc(nbytes)) == NULL) { s = FIOMEM; /* Keep message on the */ break; /* display. */ } lp2 = lback(curbp->b_linep); lp2->l_fp = lp1; lp1->l_fp = curbp->b_linep; lp1->l_bp = lp2; curbp->b_linep->l_bp = lp1; for (i=0; i<nbytes; ++i) lputc(lp1, i, fline[i]); ++nline; } ffclose(); /* Ignore errors. */ strcpy(mesg, "["); if (s==FIOERR) { strcat(mesg, TEXT141); /* "I/O ERROR, " */ curbp->b_flag |= BFTRUNC; } if (s == FIOMEM) { strcat(mesg, TEXT142); /* "OUT OF MEMORY, " */ curbp->b_flag |= BFTRUNC; } strcat(mesg, TEXT140); /* "Read " */ strcat(mesg, int_asc(nline)); strcat(mesg, TEXT143); /* " line" */ if (nline > 1) strcat(mesg, "s"); strcat(mesg, "]"); mlwrite(mesg); out: TTkopen(); /* open the keyboard again */ for (wp=wheadp; wp!=NULL; wp=wp->w_wndp) { if (wp->w_bufp == curbp) { wp->w_linep = lforw(curbp->b_linep); wp->w_dotp = lforw(curbp->b_linep); wp->w_doto = 0; for (cmark = 0; cmark < NMARKS; cmark++) { wp->w_markp[cmark] = NULL; wp->w_marko[cmark] = 0; } wp->w_flag |= WFMODE|WFHARD; } } if (s == FIOERR || s == FIOFNF) /* False if error. */ return(FALSE); return(TRUE); } /* * Take a file name, and from it * fabricate a buffer name. This routine knows * about the syntax of file names on the target system. * I suppose that this information could be put in * a better place than a line of code. * Returns a pointer into fname indicating the end of the file path; i.e., * 1 character BEYOND the path name. */ char *PASCAL NEAR makename(bname, fname) char bname[]; char fname[]; { register char *cp1; register char *cp2; register char *pathp; #if AOSVS | MV_UX resolve_full_pathname(fname, fname); mklower(fname); /* aos/vs not case sensitive */ #endif cp1 = &fname[0]; while (*cp1 != 0) ++cp1; #if AMIGA while (cp1!=&fname[0] && cp1[-1]!=':' && cp1[-1]!='/') --cp1; #endif #if AOSVS | MV_UX while (cp1!=&fname[0] && cp1[-1]!=':') --cp1; #endif #if VMS while (cp1!=&fname[0] && cp1[-1]!=':' && cp1[-1]!=']') --cp1; #endif #if MSDOS | MSDOS while (cp1!=&fname[0] && cp1[-1]!=':' && cp1[-1]!='\\'&&cp1[-1]!='/') --cp1; #endif #if ST520 while (cp1!=&fname[0] && cp1[-1]!=':' && cp1[-1]!='\\') --cp1; #endif #if FINDER while (cp1!=&fname[0] && cp1[-1]!=':' && cp1[-1]!='\\'&&cp1[-1]!='/') --cp1; #endif #if V7 | USG | HPUX | BSD | SUN | XENIX while (cp1!=&fname[0] && cp1[-1]!='/') --cp1; #endif #if WMCS while (cp1!=&fname[0] && cp1[-1]!='_' && cp1[-1]!='/') --cp1; #endif /* cp1 is pointing to the first real filename char */ pathp = cp1; cp2 = &bname[0]; while (cp2!=&bname[NBUFN-1] && *cp1!=0 && *cp1!=';') *cp2++ = *cp1++; *cp2 = 0; return(pathp); } PASCAL NEAR unqname(name) /* make sure a buffer name is unique */ char *name; /* name to check on */ { register char *sp; /* check to see if it is in the buffer list */ while (bfind(name, 0, FALSE) != NULL) { /* go to the end of the name */ sp = name; while (*sp) ++sp; if (sp == name || (*(sp-1) <'0' || *(sp-1) > '8')) { *sp++ = '0'; *sp = 0; } else *(--sp) += 1; } } /* * Ask for a file name, and write the * contents of the current buffer to that file. * Update the remembered file name and clear the * buffer changed flag. This handling of file names * is different from the earlier versions, and * is more compatable with Gosling EMACS than * with ITS EMACS. Bound to "C-X C-W". */ PASCAL NEAR filewrite(f, n) { register int s; char fname[NFILEN]; if (restflag) /* don't allow this command if restricted */ return(resterr()); if ((s=mlreply(TEXT144, fname, NFILEN)) != TRUE) /* "Write file: " */ return(s); if ((s=writeout(fname)) == TRUE) { strcpy(curbp->b_fname, fname); curbp->b_flag &= ~BFCHG; #if BACKUP curbp->b_bupflg = TRUE; #endif /* Update mode lines. */ upmode(); } return(s); } /* * Save the contents of the current * buffer in its associatd file. Do nothing * if nothing has changed (this may be a bug, not a * feature). Error if there is no remembered file * name for the buffer. Bound to "C-X C-S". May * get called by "C-Z". */ PASCAL NEAR filesave(f, n) { register int s; if (curbp->b_mode&MDVIEW) /* don't allow this command if */ return(rdonly()); /* we are in read only mode */ if ((curbp->b_flag&BFCHG) == 0) /* Return, no changes. */ return(TRUE); if (curbp->b_fname[0] == 0) { /* Must have a name. */ mlwrite(TEXT145); /* "No file name" */ return(FALSE); } /* complain about truncated files */ if ((curbp->b_flag&BFTRUNC) != 0) { if (mlyesno(TEXT146) == FALSE) { /* "Truncated file..write it out" */ mlwrite(TEXT8); /* "[Aborted]" */ return(FALSE); } } /* complain about narrowed buffers */ if ((curbp->b_flag&BFNAROW) != 0) { if (mlyesno(TEXT147) == FALSE) { /* "Narrowed Buffer..write it out" */ mlwrite(TEXT8); /* "[Aborted]" */ return(FALSE); } } if ((s=writeout(curbp->b_fname)) == TRUE) { curbp->b_flag &= ~BFCHG; #if BACKUP curbp->b_bupflg = TRUE; #endif /* Update mode lines. */ upmode(); } return(s); } /* * This function performs the details of file writing. It uses * the file management routines in the "fileio.c" package. The * number of lines written is displayed. Several errors are * possible, and cause writeout to return a FALSE result. When * $ssave is TRUE, the buffer is written out to a temporary * file, and then the old file is unlinked and the temporary * renamed to the original name. Before the file is written, * a user specifyable routine (in $writehook) can be run. */ PASCAL NEAR writeout(fn) char *fn; /* name of file to write current buffer to */ { register LINE *lp; /* line to scan while writing */ register char *sp; /* temporary string pointer */ register int nline; /* number of lines written */ int status; /* return status */ int sflag; /* are we safe saving? */ char tname[NSTRING]; /* temporary file name */ char buf[NSTRING]; /* message buffer */ int fstatus; /* jbayer, added to stat the old file */ struct stat statbuf; /* jbayer, added to stat the old file */ /* let a user macro get hold of things...if he wants */ execkey(&writehook, FALSE, 1); /* determine if we will use the save method */ sflag = FALSE; if (ssave && fexist(fn)) sflag = TRUE; #if CRYPT /* set up for file encryption */ status = resetkey(); if (status != TRUE) return(status); #endif /* turn off ALL keyboard translation in case we get a dos error */ TTkclose(); /* Perform Safe Save..... */ if (sflag) { /* duplicate original file name, and find where to trunc it */ sp = tname + (makename(tname, fn) - fn) + 1; strcpy(tname, fn); /* create a unique name, using random numbers */ do { *sp = 0; strcat(tname, int_asc(ernd())); } while(fexist(tname)); /* open the temporary file */ #if AOSVS status = ffwopen(fn, tname); #else status = ffwopen(tname); #endif } else #if AOSVS status = ffwopen(fn, NULL); #else status = ffwopen(fn); #endif /* if the open failed.. clean up and abort */ if (status != FIOSUC) { TTkopen(); return(FALSE); } /* write the current buffer's lines to the open disk file */ mlwrite(TEXT148); /* tell us that we're writing */ /* "[Writing...]" */ lp = lforw(curbp->b_linep); /* start at the first line. */ nline = 0; /* track the Number of lines */ while (lp != curbp->b_linep) { if ((status = ffputline(&lp->l_text[0], llength(lp))) != FIOSUC) break; ++nline; lp = lforw(lp); } /* report on status of file write */ *buf = 0; status |= ffclose(); if (status == FIOSUC) { /* report on success (or lack therof) */ strcpy(buf, TEXT149); /* "[Wrote " */ strcat(buf, int_asc(nline)); strcat(buf, TEXT143); /* " line" */ if (nline > 1) strcat(buf, "s"); if (sflag) { /* erase original file */ /* rename temporary file to original name */ /* J. Bayer */ fstatus = stat(fn,&statbuf); #if !BACKUP /* -- ZU */ if (unlink(fn) == 0 && rename(tname, fn) == 0) #else if (makebackup(fn) == TRUE && rename(tname, fn) == 0) /* -- UZ */ #endif ; else { strcat(buf, TEXT150); /* ", saved as " */ strcat(buf, tname); status = FIODEL; /* failed */ } /* following added by j.bayer */ if (status == FIOSUC && fstatus == 0) { chmod(fn, statbuf.st_mode); #if V7 | USG | HPUX | BSD | SUN | XENIX chown(fn, statbuf.st_uid, statbuf.st_gid); #endif } } strcat(buf, "]"); mlwrite(buf); } /* reopen the keyboard, and return our status */ TTkopen(); return(status == FIOSUC); } /* * The command allows the user * to modify the file name associated with * the current buffer. It is like the "f" command * in UNIX "ed". The operation is simple; just zap * the name in the BUFFER structure, and mark the windows * as needing an update. You can type a blank line at the * prompt if you wish. */ PASCAL NEAR filename(f, n) { register int s; char fname[NFILEN]; if (restflag) /* don't allow this command if restricted */ return(resterr()); if ((s=mlreply(TEXT151, fname, NFILEN)) == ABORT) /* "Name: " */ return(s); if (s == FALSE) strcpy(curbp->b_fname, ""); else strcpy(curbp->b_fname, fname); /* Update mode lines. */ upmode(); curbp->b_mode &= ~MDVIEW; /* no longer read only mode */ return(TRUE); } /* * Insert file "fname" into the current * buffer, Called by insert file command. Return the final * status of the read. */ PASCAL NEAR ifile(fname) char fname[]; { register LINE *lp0; register LINE *lp1; register LINE *lp2; register int i; register BUFFER *bp; register int s; register int nbytes; register int nline; int cmark; /* current mark */ char mesg[NSTRING]; bp = curbp; /* Cheap. */ bp->b_flag |= BFCHG; /* we have changed */ bp->b_flag &= ~BFINVS; /* and are not temporary*/ if ((s=ffropen(fname)) == FIOERR) /* Hard file open. */ goto out; if (s == FIOFNF) { /* File not found. */ mlwrite(TEXT152); /* "[No such file]" */ return(FALSE); } mlwrite(TEXT153); /* "[Inserting file]" */ #if CRYPT s = resetkey(); if (s != TRUE) return(s); #endif /* back up a line and save the mark here */ curwp->w_dotp = lback(curwp->w_dotp); curwp->w_doto = 0; for (cmark = 0; cmark < NMARKS; cmark++) { curwp->w_markp[cmark] = curwp->w_dotp; curwp->w_marko[cmark] = 0; } nline = 0; while ((s=ffgetline()) == FIOSUC) { nbytes = strlen(fline); if ((lp1=lalloc(nbytes)) == NULL) { s = FIOMEM; /* Keep message on the */ break; /* display. */ } lp0 = curwp->w_dotp; /* line previous to insert */ lp2 = lp0->l_fp; /* line after insert */ /* re-link new line between lp0 and lp2 */ lp2->l_bp = lp1; lp0->l_fp = lp1; lp1->l_bp = lp0; lp1->l_fp = lp2; /* and advance and write out the current line */ curwp->w_dotp = lp1; for (i=0; i<nbytes; ++i) lputc(lp1, i, fline[i]); ++nline; } ffclose(); /* Ignore errors. */ curwp->w_markp[0] = lforw(curwp->w_markp[0]); strcpy(mesg, "["); if (s==FIOERR) { strcat(mesg, TEXT141); /* "I/O ERROR, " */ curbp->b_flag |= BFTRUNC; } if (s == FIOMEM) { strcat(mesg, TEXT142); /* "OUT OF MEMORY, " */ curbp->b_flag |= BFTRUNC; } strcat(mesg, TEXT154); /* "Inserted " */ strcat(mesg, int_asc(nline)); strcat(mesg, TEXT143); /* " line" */ if (nline > 1) strcat(mesg, "s"); strcat(mesg, "]"); mlwrite(mesg); out: /* advance to the next line and mark the window for changes */ curwp->w_dotp = lforw(curwp->w_dotp); curwp->w_flag |= WFHARD | WFMODE; /* copy window parameters back to the buffer structure */ curbp->b_dotp = curwp->w_dotp; curbp->b_doto = curwp->w_doto; for (cmark = 0; cmark < NMARKS; cmark++) { curbp->b_markp[cmark] = curwp->w_markp[cmark]; curbp->b_marko[cmark] = curwp->w_marko[cmark]; } curbp->b_fcol = curwp->w_fcol; if (s == FIOERR) /* False if error. */ return(FALSE); return(TRUE); } /* -- ZU */ /* Make a backup file. * This is done by renaming the original file to a new name. * The name of the backup file is defined as follows: * * MSDOS: The base file name remains untouched, the extension has a tilde (~) * as its first character and the other characters moved one place * to the right. * UNIX: The first character is a '#'. The rest of the name is moved one * place to the right. The length of the filename may not exceed 14 * characters (for BSD the limit is 255). * * No other operating system supported by now. */ #if BACKUP PASCAL NEAR makebackup( filename ) char *filename; { char backupname[NFILEN]; #if MSDOS | V7 | USG | HPUX | BSD | SUN | XENIX if ( curbp->b_bupflg || /* already backed up */ !bakfile /* no backup file wanted */ ) { if( unlink( filename ) == 0 ) return( TRUE ); else return( FALSE ); } getbackupname( backupname, filename ); if( !fexist( filename )) /* no original file - */ return( TRUE ); /* nothing to backup */ if( fexist( backupname )) if( unlink( backupname )) /* file is readonly */ return( FALSE ); if( rename( filename, backupname ) != 0 ) return( FALSE ); return( TRUE ); #else /* for all other operating systems return fail */ return( FALSE ); #endif /* MSDOS | V7 | USG | HPUX | BSD | SUN | XENIX */ } /* Make the name of the backup file according to the original file name * This routines knows about the filename possibilities of the different * operating systems. */ PASCAL NEAR getbackupname( backup, file ) char *backup; char *file; { char temp[NFILEN]; int index; char *dotpos; strcpy( backup, file ); #if MSDOS for( index = strlen( backup ) -1; index >= 0 && backup[index] != '.'; index-- ) ; if( index < 0 ) strcat( backup, ".~" ); else { strcpy( temp, &backup[index +1] ); backup[index +1] = '~'; /* first char of new extension */ temp[2] = '\0'; /* extension is at most 3 chars */ strcpy( &backup[index +2], temp ); } #endif /* MSDOS */ #if V7 | USG | HPUX | BSD | SUN | XENIX /* strcpy( temp, "#" ); */ *temp = 0; for( index = strlen( backup ) -1; index >= 0 && backup[index] != '/'; index-- ) ; if( index >= 0 ) strcat( temp, &backup[index +1] ); else strncat( temp, backup, NFILEN -1 ); #if BSD /* BSD allows filenames up to 255 characters */ #if NFILEN < 255 if( strlen( temp ) > NFILEN ) temp[NFILEN] = '\0'; #else if( strlen( temp ) > 254 ) temp[255] = '\0'; #endif #else /* other Unixes allow only 14 characters */ if( strlen( temp ) > 12 ) temp[ 13] = '\0'; #endif strcat(temp,"-"); if( index >= 0 ) strncpy( &backup[index +1], temp, NFILEN - strlen( backup ) -1 ); else strncpy( backup, temp, NFILEN - strlen( backup ) -1 ); #endif /* V7 | USG | HPUX | BSD | SUN | XENIX */ } #endif /* BACKUP */ /* -- UZ */
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.