1 /* $MirOS: src/gnu/usr.bin/rcs/src/rcsgen.c,v 1.3 2005/06/05 16:08:49 tg Exp $ */
2
3 /* Generate RCS revisions. */
4
5 /* Copyright 1982, 1988, 1989 Walter Tichy
6 Copyright 1990, 1991, 1992, 1993, 1994, 1995 Paul Eggert
7 Distributed under license by the Free Software Foundation, Inc.
8
9 This file is part of RCS.
10
11 RCS is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2, or (at your option)
14 any later version.
15
16 RCS is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with RCS; see the file COPYING.
23 If not, write to the Free Software Foundation,
24 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 Report problems and direct all questions to:
27
28 rcs-bugs@cs.purdue.edu
29
30 */
31
32 /*
33 * $Log: rcsgen.c,v $
34 * Revision 5.16 1995/06/16 06:19:24 eggert
35 * Update FSF address.
36 *
37 * Revision 5.15 1995/06/01 16:23:43 eggert
38 * (putadmin): Open RCS file with FOPEN_WB.
39 *
40 * Revision 5.14 1994/03/17 14:05:48 eggert
41 * Work around SVR4 stdio performance bug.
42 * Flush stderr after prompt. Remove lint.
43 *
44 * Revision 5.13 1993/11/03 17:42:27 eggert
45 * Don't discard ignored phrases. Improve quality of diagnostics.
46 *
47 * Revision 5.12 1992/07/28 16:12:44 eggert
48 * Statement macro names now end in _.
49 * Be consistent about pathnames vs filenames.
50 *
51 * Revision 5.11 1992/01/24 18:44:19 eggert
52 * Move put routines here from rcssyn.c.
53 * Add support for bad_creat0.
54 *
55 * Revision 5.10 1991/10/07 17:32:46 eggert
56 * Fix log bugs, e.g. ci -t/dev/null when has_mmap.
57 *
58 * Revision 5.9 1991/09/10 22:15:46 eggert
59 * Fix test for redirected stdin.
60 *
61 * Revision 5.8 1991/08/19 03:13:55 eggert
62 * Add piece tables. Tune.
63 *
64 * Revision 5.7 1991/04/21 11:58:24 eggert
65 * Add MS-DOS support.
66 *
67 * Revision 5.6 1990/12/27 19:54:26 eggert
68 * Fix bug: rcs -t inserted \n, making RCS file grow.
69 *
70 * Revision 5.5 1990/12/04 05:18:45 eggert
71 * Use -I for prompts and -q for diagnostics.
72 *
73 * Revision 5.4 1990/11/01 05:03:47 eggert
74 * Add -I and new -t behavior. Permit arbitrary data in logs.
75 *
76 * Revision 5.3 1990/09/21 06:12:43 hammer
77 * made putdesc() treat stdin the same whether or not it was from a terminal
78 * by making it recognize that a single '.' was then end of the
79 * description always
80 *
81 * Revision 5.2 1990/09/04 08:02:25 eggert
82 * Fix `co -p1.1 -ko' bug. Standardize yes-or-no procedure.
83 *
84 * Revision 5.1 1990/08/29 07:14:01 eggert
85 * Clean old log messages too.
86 *
87 * Revision 5.0 1990/08/22 08:12:52 eggert
88 * Remove compile-time limits; use malloc instead.
89 * Ansify and Posixate.
90 *
91 * Revision 4.7 89/05/01 15:12:49 narten
92 * changed copyright header to reflect current distribution rules
93 *
94 * Revision 4.6 88/08/28 14:59:10 eggert
95 * Shrink stdio code size; allow cc -R; remove lint; isatty() -> ttystdin()
96 *
97 * Revision 4.5 87/12/18 11:43:25 narten
98 * additional lint cleanups, and a bug fix from the 4.3BSD version that
99 * keeps "ci" from sticking a '\377' into the description if you run it
100 * with a zero-length file as the description. (Guy Harris)
101 *
102 * Revision 4.4 87/10/18 10:35:10 narten
103 * Updating version numbers. Changes relative to 1.1 actually relative to
104 * 4.2
105 *
106 * Revision 1.3 87/09/24 13:59:51 narten
107 * Sources now pass through lint (if you ignore printf/sprintf/fprintf
108 * warnings)
109 *
110 * Revision 1.2 87/03/27 14:22:27 jenkins
111 * Port to suns
112 *
113 * Revision 4.2 83/12/02 23:01:39 wft
114 * merged 4.1 and 3.3.1.1 (clearerr(stdin)).
115 *
116 * Revision 4.1 83/05/10 16:03:33 wft
117 * Changed putamin() to abort if trying to reread redirected stdin.
118 * Fixed getdesc() to output a prompt on initial newline.
119 *
120 * Revision 3.3.1.1 83/10/19 04:21:51 lepreau
121 * Added clearerr(stdin) for re-reading description from stdin.
122 *
123 * Revision 3.3 82/11/28 21:36:49 wft
124 * 4.2 prerelease
125 *
126 * Revision 3.3 82/11/28 21:36:49 wft
127 * Replaced ferror() followed by fclose() with ffclose().
128 * Putdesc() now suppresses the prompts if stdin
129 * is not a terminal. A pointer to the current log message is now
130 * inserted into the corresponding delta, rather than leaving it in a
131 * global variable.
132 *
133 * Revision 3.2 82/10/18 21:11:26 wft
134 * I added checks for write errors during editing, and improved
135 * the prompt on putdesc().
136 *
137 * Revision 3.1 82/10/13 15:55:09 wft
138 * corrected type of variables assigned to by getc (char --> int)
139 */
140
141
142
143
144 #include "rcsbase.h"
145
146 __RCSID("$MirOS: src/gnu/usr.bin/rcs/src/rcsgen.c,v 1.3 2005/06/05 16:08:49 tg Exp $");
147
148 int interactiveflag; /* Should we act as if stdin is a tty? */
149 struct buf curlogbuf; /* buffer for current log message */
150
151 enum stringwork { enter, copy, edit, expand, edit_expand };
152
153 static void putdelta(struct hshentry const*,FILE*);
154 static void scandeltatext(struct hshentry*,enum stringwork,int);
155
156
157
158
159 char const *
buildrevision(deltas,target,outfile,expandflag)160 buildrevision(deltas, target, outfile, expandflag)
161 struct hshentries const *deltas;
162 struct hshentry *target;
163 FILE *outfile;
164 int expandflag;
165 /* Function: Generates the revision given by target
166 * by retrieving all deltas given by parameter deltas and combining them.
167 * If outfile is set, the revision is output to it,
168 * otherwise written into a temporary file.
169 * Temporary files are allocated by maketemp().
170 * if expandflag is set, keyword expansion is performed.
171 * Return 0 if outfile is set, the name of the temporary file otherwise.
172 *
173 * Algorithm: Copy initial revision unchanged. Then edit all revisions but
174 * the last one into it, alternating input and output files (resultname and
175 * editname). The last revision is then edited in, performing simultaneous
176 * keyword substitution (this saves one extra pass).
177 * All this simplifies if only one revision needs to be generated,
178 * or no keyword expansion is necessary, or if output goes to stdout.
179 */
180 {
181 if (deltas->first == target) {
182 /* only latest revision to generate */
183 openfcopy(outfile);
184 scandeltatext(target, expandflag?expand:copy, true);
185 if (outfile)
186 return 0;
187 else {
188 Ozclose(&fcopy);
189 return resultname;
190 }
191 } else {
192 /* several revisions to generate */
193 /* Get initial revision without keyword expansion. */
194 scandeltatext(deltas->first, enter, false);
195 while ((deltas=deltas->rest)->rest) {
196 /* do all deltas except last one */
197 scandeltatext(deltas->first, edit, false);
198 }
199 if (expandflag || outfile) {
200 /* first, get to beginning of file*/
201 finishedit((struct hshentry*)0, outfile, false);
202 }
203 scandeltatext(target, expandflag?edit_expand:edit, true);
204 finishedit(
205 expandflag ? target : (struct hshentry*)0,
206 outfile, true
207 );
208 if (outfile)
209 return 0;
210 Ozclose(&fcopy);
211 return resultname;
212 }
213 }
214
215
216
217 static void
scandeltatext(delta,func,needlog)218 scandeltatext(delta, func, needlog)
219 struct hshentry *delta;
220 enum stringwork func;
221 int needlog;
222 /* Function: Scans delta text nodes up to and including the one given
223 * by delta. For the one given by delta, the log message is saved into
224 * delta->log if needlog is set; func specifies how to handle the text.
225 * Similarly, if needlog, delta->igtext is set to the ignored phrases.
226 * Assumes the initial lexeme must be read in first.
227 * Does not advance nexttok after it is finished.
228 */
229 {
230 struct hshentry const *nextdelta;
231 struct cbuf cb;
232
233 for (;;) {
234 if (eoflex())
235 fatserror("can't find delta for revision %s", delta->num);
236 nextlex();
237 if (!(nextdelta=getnum())) {
238 fatserror("delta number corrupted");
239 }
240 getkeystring(Klog);
241 if (needlog && delta==nextdelta) {
242 cb = savestring(&curlogbuf);
243 delta->log = cleanlogmsg(curlogbuf.string, cb.size);
244 nextlex();
245 delta->igtext = getphrases(Ktext);
246 } else {readstring();
247 ignorephrases(Ktext);
248 }
249 getkeystring(Ktext);
250
251 if (delta==nextdelta)
252 break;
253 readstring(); /* skip over it */
254
255 }
256 switch (func) {
257 case enter: enterstring(); break;
258 case copy: copystring(); break;
259 case expand: xpandstring(delta); break;
260 case edit: editstring((struct hshentry *)0); break;
261 case edit_expand: editstring(delta); break;
262 }
263 }
264
265 struct cbuf
cleanlogmsg(m,s)266 cleanlogmsg(m, s)
267 char *m;
268 size_t s;
269 {
270 register char *t = m;
271 register char const *f = t;
272 struct cbuf r;
273 while (s) {
274 --s;
275 if ((*t++ = *f++) == '\n')
276 while (m < --t)
277 if (t[-1]!=' ' && t[-1]!='\t') {
278 *t++ = '\n';
279 break;
280 }
281 }
282 while (m < t && (t[-1]==' ' || t[-1]=='\t' || t[-1]=='\n'))
283 --t;
284 r.string = m;
285 r.size = t - m;
286 return r;
287 }
288
289
ttystdin()290 int ttystdin()
291 {
292 static int initialized;
293 if (!initialized) {
294 if (!interactiveflag)
295 interactiveflag = isatty(STDIN_FILENO);
296 initialized = true;
297 }
298 return interactiveflag;
299 }
300
301 int
getcstdin()302 getcstdin()
303 {
304 register FILE *in;
305 register int c;
306
307 in = stdin;
308 if (feof(in) && ttystdin())
309 clearerr(in);
310 c = getc(in);
311 if (c == EOF) {
312 testIerror(in);
313 if (feof(in) && ttystdin())
314 afputc('\n',stderr);
315 }
316 return c;
317 }
318
319 int
yesorno(int default_answer,char const * question,...)320 yesorno(int default_answer, char const *question, ...)
321 {
322 va_list args;
323 register int c, r;
324 if (!quietflag && ttystdin()) {
325 oflush();
326 va_start(args, question);
327 fvfprintf(stderr, question, args);
328 va_end(args);
329 eflush();
330 r = c = getcstdin();
331 while (c!='\n' && !feof(stdin))
332 c = getcstdin();
333 if (r=='y' || r=='Y')
334 return true;
335 if (r=='n' || r=='N')
336 return false;
337 }
338 return default_answer;
339 }
340
341
342 void
putdesc(textflag,textfile)343 putdesc(textflag, textfile)
344 int textflag;
345 char *textfile;
346 /* Function: puts the descriptive text into file frewrite.
347 * if finptr && !textflag, the text is copied from the old description.
348 * Otherwise, if textfile, the text is read from that
349 * file, or from stdin, if !textfile.
350 * A textfile with a leading '-' is treated as a string, not a pathname.
351 * If finptr, the old descriptive text is discarded.
352 * Always clears foutptr.
353 */
354 {
355 static struct buf desc;
356 static struct cbuf desclean;
357
358 register FILE *txt;
359 register int c;
360 register FILE * frew;
361 register char *p;
362 register size_t s;
363 char const *plim;
364
365 frew = frewrite;
366 if (finptr && !textflag) {
367 /* copy old description */
368 aprintf(frew, "\n\n%s%c", Kdesc, nextc);
369 foutptr = frewrite;
370 getdesc(false);
371 foutptr = 0;
372 } else {
373 foutptr = 0;
374 /* get new description */
375 if (finptr) {
376 /*skip old description*/
377 getdesc(false);
378 }
379 aprintf(frew,"\n\n%s\n%c",Kdesc,SDELIM);
380 if (!textfile)
381 desclean = getsstdin(
382 "t-", "description",
383 "NOTE: This is NOT the log message!\n", &desc
384 );
385 else if (!desclean.string) {
386 if (*textfile == '-') {
387 p = textfile + 1;
388 s = strlen(p);
389 } else {
390 if (!(txt = fopenSafer(textfile, "r")))
391 efaterror(textfile);
392 bufalloc(&desc, 1);
393 p = desc.string;
394 plim = p + desc.size;
395 for (;;) {
396 if ((c=getc(txt)) == EOF) {
397 testIerror(txt);
398 if (feof(txt))
399 break;
400 }
401 if (plim <= p)
402 p = bufenlarge(&desc, &plim);
403 *p++ = c;
404 }
405 if (fclose(txt) != 0)
406 Ierror();
407 s = p - desc.string;
408 p = desc.string;
409 }
410 desclean = cleanlogmsg(p, s);
411 }
412 putstring(frew, false, desclean, true);
413 aputc_('\n', frew)
414 }
415 }
416
417 struct cbuf
getsstdin(option,name,note,buf)418 getsstdin(option, name, note, buf)
419 char const *option, *name, *note;
420 struct buf *buf;
421 {
422 register int c;
423 register char *p;
424 register size_t i;
425 register int tty = ttystdin();
426
427 if (tty) {
428 aprintf(stderr,
429 "enter %s, terminated with single '.' or end of file:\n%s>> ",
430 name, note
431 );
432 eflush();
433 } else if (feof(stdin))
434 rcsfaterror("can't reread redirected stdin for %s; use -%s<%s>",
435 name, option, name
436 );
437
438 for (
439 i = 0, p = 0;
440 c = getcstdin(), !feof(stdin);
441 bufrealloc(buf, i+1), p = buf->string, p[i++] = c
442 )
443 if (c == '\n') {
444 if (i && p[i-1]=='.' && (i==1 || p[i-2]=='\n')) {
445 /* Remove trailing '.'. */
446 --i;
447 break;
448 } else if (tty) {
449 aputs(">> ", stderr);
450 eflush();
451 }
452 }
453 return cleanlogmsg(p, i);
454 }
455
456
457 void
putadmin()458 putadmin()
459 /* Output the admin node. */
460 {
461 register FILE *fout;
462 struct assoc const *curassoc;
463 struct rcslock const *curlock;
464 struct access const *curaccess;
465
466 if (!(fout = frewrite)) {
467 # if bad_creat0
468 ORCSclose();
469 fout = fopenSafer(makedirtemp(0), FOPEN_WB);
470 # else
471 int fo = fdlock;
472 fdlock = -1;
473 fout = fdopen(fo, FOPEN_WB);
474 # endif
475
476 if (!(frewrite = fout))
477 efaterror(RCSname);
478 }
479
480 /*
481 * Output the first character with putc, not printf.
482 * Otherwise, an SVR4 stdio bug buffers output inefficiently.
483 */
484 aputc_(*Khead, fout)
485 aprintf(fout, "%s\t%s;\n", Khead + 1, Head?Head->num:"");
486 if (Dbranch && VERSION(4)<=RCSversion)
487 aprintf(fout, "%s\t%s;\n", Kbranch, Dbranch);
488
489 aputs(Kaccess, fout);
490 curaccess = AccessList;
491 while (curaccess) {
492 aprintf(fout, "\n\t%s", curaccess->login);
493 curaccess = curaccess->nextaccess;
494 }
495 aprintf(fout, ";\n%s", Ksymbols);
496 curassoc = Symbols;
497 while (curassoc) {
498 aprintf(fout, "\n\t%s:%s", curassoc->symbol, curassoc->num);
499 curassoc = curassoc->nextassoc;
500 }
501 aprintf(fout, ";\n%s", Klocks);
502 curlock = Locks;
503 while (curlock) {
504 aprintf(fout, "\n\t%s:%s", curlock->login, curlock->delta->num);
505 curlock = curlock->nextlock;
506 }
507 if (StrictLocks) aprintf(fout, "; %s", Kstrict);
508 aprintf(fout, ";\n");
509 if (Comment.size) {
510 aprintf(fout, "%s\t", Kcomment);
511 putstring(fout, true, Comment, false);
512 aprintf(fout, ";\n");
513 }
514 if (Expand != KEYVAL_EXPAND)
515 aprintf(fout, "%s\t%c%s%c;\n",
516 Kexpand, SDELIM, expand_names[Expand], SDELIM
517 );
518 awrite(Ignored.string, Ignored.size, fout);
519 aputc_('\n', fout)
520 }
521
522
523 static void
putdelta(node,fout)524 putdelta(node, fout)
525 register struct hshentry const *node;
526 register FILE * fout;
527 /* Output the delta NODE to FOUT. */
528 {
529 struct branchhead const *nextbranch;
530
531 if (!node) return;
532
533 aprintf(fout, "\n%s\n%s\t%s;\t%s %s;\t%s %s;\nbranches",
534 node->num,
535 Kdate, node->date,
536 Kauthor, node->author,
537 Kstate, node->state?node->state:""
538 );
539 nextbranch = node->branches;
540 while (nextbranch) {
541 aprintf(fout, "\n\t%s", nextbranch->hsh->num);
542 nextbranch = nextbranch->nextbranch;
543 }
544
545 aprintf(fout, ";\n%s\t%s;\n", Knext, node->next?node->next->num:"");
546 if (node->commitid)
547 aprintf(fout, "%s\t%s;\n", Kcommitid, node->commitid);
548 awrite(node->ig.string, node->ig.size, fout);
549 }
550
551
552 void
puttree(root,fout)553 puttree(root, fout)
554 struct hshentry const *root;
555 register FILE *fout;
556 /* Output the delta tree with base ROOT in preorder to FOUT. */
557 {
558 struct branchhead const *nextbranch;
559
560 if (!root) return;
561
562 if (root->selector)
563 putdelta(root, fout);
564
565 puttree(root->next, fout);
566
567 nextbranch = root->branches;
568 while (nextbranch) {
569 puttree(nextbranch->hsh, fout);
570 nextbranch = nextbranch->nextbranch;
571 }
572 }
573
574
575 int
putdtext(delta,srcname,fout,diffmt)576 putdtext(delta, srcname, fout, diffmt)
577 struct hshentry const *delta;
578 char const *srcname;
579 FILE *fout;
580 int diffmt;
581 /*
582 * Output a deltatext node with delta number DELTA->num, log message DELTA->log,
583 * ignored phrases DELTA->igtext and text SRCNAME to FOUT.
584 * Double up all SDELIMs in both the log and the text.
585 * Make sure the log message ends in \n.
586 * Return false on error.
587 * If DIFFMT, also check that the text is valid diff -n output.
588 */
589 {
590 RILE *fin;
591 if (!(fin = Iopen(srcname, "r", (struct stat*)0))) {
592 eerror(srcname);
593 return false;
594 }
595 putdftext(delta, fin, fout, diffmt);
596 Ifclose(fin);
597 return true;
598 }
599
600 void
putstring(out,delim,s,log)601 putstring(out, delim, s, log)
602 register FILE *out;
603 struct cbuf s;
604 int delim, log;
605 /*
606 * Output to OUT one SDELIM if DELIM, then the string S with SDELIMs doubled.
607 * If LOG is set then S is a log string; append a newline if S is nonempty.
608 */
609 {
610 register char const *sp;
611 register size_t ss;
612
613 if (delim)
614 aputc_(SDELIM, out)
615 sp = s.string;
616 for (ss = s.size; ss; --ss) {
617 if (*sp == SDELIM)
618 aputc_(SDELIM, out)
619 aputc_(*sp++, out)
620 }
621 if (s.size && log)
622 aputc_('\n', out)
623 aputc_(SDELIM, out)
624 }
625
626 void
putdftext(delta,finfile,foutfile,diffmt)627 putdftext(delta, finfile, foutfile, diffmt)
628 struct hshentry const *delta;
629 RILE *finfile;
630 FILE *foutfile;
631 int diffmt;
632 /* like putdtext(), except the source file is already open */
633 {
634 declarecache;
635 register FILE *fout;
636 register int c;
637 register RILE *fin;
638 int ed;
639 struct diffcmd dc;
640
641 fout = foutfile;
642 aprintf(fout, DELNUMFORM, delta->num, Klog);
643
644 /* put log */
645 putstring(fout, true, delta->log, true);
646 aputc_('\n', fout)
647
648 /* put ignored phrases */
649 awrite(delta->igtext.string, delta->igtext.size, fout);
650
651 /* put text */
652 aprintf(fout, "%s\n%c", Ktext, SDELIM);
653
654 fin = finfile;
655 setupcache(fin);
656 if (!diffmt) {
657 /* Copy the file */
658 cache(fin);
659 for (;;) {
660 cachegeteof_(c, break;)
661 if (c==SDELIM) aputc_(SDELIM, fout) /*double up SDELIM*/
662 aputc_(c, fout)
663 }
664 } else {
665 initdiffcmd(&dc);
666 while (0 <= (ed = getdiffcmd(fin, false, fout, &dc)))
667 if (ed) {
668 cache(fin);
669 while (dc.nlines--)
670 do {
671 cachegeteof_(c, { if (!dc.nlines) goto OK_EOF; unexpected_EOF(); })
672 if (c == SDELIM)
673 aputc_(SDELIM, fout)
674 aputc_(c, fout)
675 } while (c != '\n');
676 uncache(fin);
677 }
678 }
679 OK_EOF:
680 aprintf(fout, "%c\n", SDELIM);
681 }
682