1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
/* xlpp.c - xlisp pretty printer */
/* Copyright (c) 1989, by David Michael Betz. */
/* You may give out copies of this software; for conditions see the file */
/* COPYING included with this distribution. */
#include "xlisp.h"
/* local variables */
static int pplevel,ppmargin,ppmaxlen;
static LVAL ppfile;
/* forward declarations */
LOCAL VOID pp P1H(LVAL);
LOCAL VOID pplist P1H(LVAL);
LOCAL VOID ppexpr P1H(LVAL);
LOCAL VOID ppputc P1H(int);
LOCAL VOID ppterpri(V);
LOCAL int ppflatsize P1H(LVAL);
/* xpp - pretty-print an expression */
LVAL xpp(V)
{
LVAL expr;
/* get printlevel and depth values */
expr = getvalue(s_printlevel);
if (fixp(expr) && getfixnum(expr) <= MAXPLEV && getfixnum(expr) >= 0) {
plevel = (int)getfixnum(expr);
}
else {
plevel = MAXPLEV;
}
expr = getvalue(s_printlength);
if (fixp(expr) && getfixnum(expr) <= MAXPLEN && getfixnum(expr) >= 0) {
plength = (int)getfixnum(expr);
}
else
plength = MAXPLEN;
/* get expression to print and file pointer */
expr = xlgetarg();
ppfile = (moreargs() ? xlgetfile(TRUE) : getvalue(s_stdout));
xllastarg();
/* pretty print the expression */
pplevel = ppmargin = 0; ppmaxlen = 40;
pp(expr); ppterpri();
/* return nil */
#ifdef MULVALS
xlnumresults = 0; /* no returned results if Multiple values */
xlresults[0] = NIL;
#endif /* MULVALS */
return (NIL);
}
/* pp - pretty print an expression */
LOCAL VOID pp P1C(LVAL, expr)
{
if (consp(expr))
pplist(expr);
else if (darrayp(expr)) {
LVAL value;
ppputc('#');
if (plevel == 0) return;
/* protect a pointer */
xlsave1(value);
value = cvfixnum((FIXTYPE) getdarrayrank(expr));
ppexpr(value);
ppputc('A');
value = array_to_nested_list(expr);
if (null(value)) {
ppputc('(');
ppputc(')');
}
else
pplist(value);
/* restore the stack frame */
xlpop();
}
else
ppexpr(expr);
}
/* pplist - pretty print a list */
LOCAL VOID pplist P1C(LVAL, expr)
{
int n;
/* if the expression will fit on one line, print it on one */
if ((n = ppflatsize(expr)) < ppmaxlen) {
xlprintl(ppfile,expr,TRUE);
pplevel += n;
}
/* otherwise print it on several lines */
else {
int llength = plength;
if (plevel-- == 0) {
ppputc('#');
plevel++;
return;
}
n = ppmargin;
ppputc('(');
if (atom(car(expr))) {
ppexpr(car(expr));
ppputc(' ');
ppmargin = pplevel;
expr = cdr(expr);
}
else
ppmargin = pplevel;
for (; consp(expr); expr = cdr(expr)) {
if (llength-- == 0) {
xlputstr(ppfile,"... )");
pplevel += 5;
ppmargin =n;
plevel++;
return;
}
pp(car(expr));
if (consp(cdr(expr)))
ppterpri();
}
if (expr != NIL) {
ppputc(' '); ppputc('.'); ppputc(' ');
ppexpr(expr);
}
ppputc(')');
ppmargin = n;
plevel++;
}
}
/* ppexpr - print an expression and update the indent level */
LOCAL VOID ppexpr P1C(LVAL, expr)
{
xlprintl(ppfile,expr,TRUE);
pplevel += ppflatsize(expr);
}
/* ppputc - output a character and update the indent level */
LOCAL VOID ppputc P1C(int, ch)
{
xlputc(ppfile,ch);
pplevel++;
}
/* ppterpri - terminate the print line and indent */
LOCAL VOID ppterpri(V)
{
xlterpri(ppfile);
for (pplevel = 0; pplevel < ppmargin; pplevel++)
xlputc(ppfile,' ');
}
/* ppflatsize - compute the flat size of an expression */
LOCAL int ppflatsize P1C(LVAL, expr)
{
LVAL ustream = newustream();
int size;
xlprot1(ustream);
xlprint(ustream,expr,TRUE);
/* calculate size */
for (size = 0, ustream = gethead(ustream);
!null(ustream);
size++, ustream = cdr(ustream)) ;
xlpop();
return (size);
}
|