1 /* $NetBSD: put.c,v 1.4 2014/01/26 21:43:45 christos Exp $ */
3 * Copyright (c) 1992, 1993, 1994
4 * The Regents of the University of California. All rights reserved.
5 * Copyright (c) 1992, 1993, 1994, 1995, 1996
6 * Keith Bostic. All rights reserved.
8 * See the LICENSE file for redistribution information.
13 #include <sys/cdefs.h>
16 static const char sccsid
[] = "Id: put.c,v 10.18 2001/06/25 15:19:11 skimo Exp (Berkeley) Date: 2001/06/25 15:19:11 ";
19 __RCSID("$NetBSD: put.c,v 1.4 2014/01/26 21:43:45 christos Exp $");
22 #include <sys/types.h>
23 #include <sys/queue.h>
25 #include <bitstring.h>
36 * Put text buffer contents into the file.
38 * MINIX: Updated to match: PUBLIC: int put __P((SCR *, CB *, CHAR_T *, MARK *, MARK *, int));
39 * PUBLIC: int put __P((SCR *, CB *, ARG_CHAR_T *, MARK *, MARK *, int));
42 put(SCR
*sp
, CB
*cbp
, ARG_CHAR_T
*namep
, MARK
*cp
, MARK
*rp
, int append
)
47 size_t blen
, clen
, len
;
57 "053|The default buffer is empty");
62 CBNAME(sp
, cbp
, name
);
64 msgq(sp
, M_ERR
, "054|Buffer %s is empty",
70 tp
= TAILQ_FIRST(&cbp
->textq
);
73 * It's possible to do a put into an empty file, meaning that the cut
74 * buffer simply becomes the file. It's a special case so that we can
75 * ignore it in general.
78 * Historically, pasting into a file with no lines in vi would preserve
79 * the single blank line. This is surely a result of the fact that the
80 * historic vi couldn't deal with a file that had no lines in it. This
81 * implementation treats that as a bug, and does not retain the blank
84 * Historical practice is that the cursor ends at the first character
88 if (db_last(sp
, &lno
))
92 ++lno
, ++sp
->rptlines
[L_ADDED
], tp
= TAILQ_NEXT(tp
, q
))
93 if (db_append(sp
, 1, lno
, tp
->lb
, tp
->len
))
101 /* If a line mode buffer, append each new line into the file. */
102 if (F_ISSET(cbp
, CB_LMODE
)) {
103 lno
= append
? cp
->lno
: cp
->lno
- 1;
106 ++lno
, ++sp
->rptlines
[L_ADDED
], tp
= TAILQ_NEXT(tp
, q
))
107 if (db_append(sp
, 1, lno
, tp
->lb
, tp
->len
))
110 (void)nonblank(sp
, rp
->lno
, &rp
->cno
);
115 * If buffer was cut in character mode, replace the current line with
116 * one built from the portion of the first line to the left of the
117 * split plus the first line in the CB. Append each intermediate line
118 * in the CB. Append a line built from the portion of the first line
119 * to the right of the split plus the last line in the CB.
121 * Get the first line.
124 if (db_get(sp
, lno
, DBG_FATAL
, &p
, &len
))
127 GET_SPACE_RETW(sp
, bp
, blen
, tp
->len
+ len
+ 1);
130 /* Original line, left of the split. */
131 if (len
> 0 && (clen
= cp
->cno
+ (append
? 1 : 0)) > 0) {
132 MEMCPYW(bp
, p
, clen
);
137 /* First line from the CB. */
139 MEMCPYW(t
, tp
->lb
, tp
->len
);
143 /* Calculate length left in the original line. */
144 clen
= len
== 0 ? 0 : len
- (cp
->cno
+ (append
? 1 : 0));
148 * In the historical 4BSD version of vi, character mode puts within
149 * a single line have two cursor behaviors: if the put is from the
150 * unnamed buffer, the cursor moves to the character inserted which
151 * appears last in the file. If the put is from a named buffer,
152 * the cursor moves to the character inserted which appears first
153 * in the file. In System III/V, it was changed at some point and
154 * the cursor always moves to the first character. In both versions
155 * of vi, character mode puts that cross line boundaries leave the
156 * cursor on the first character. Nvi implements the System III/V
157 * behavior, and expect POSIX.2 to do so as well.
160 rp
->cno
= len
== 0 ? 0 : sp
->cno
+ (append
&& tp
->len
? 1 : 0);
163 * If no more lines in the CB, append the rest of the original
164 * line and quit. Otherwise, build the last line before doing
165 * the intermediate lines, because the line changes will lose
168 if (TAILQ_NEXT(tp
, q
) == NULL
) {
173 if (db_set(sp
, lno
, bp
, t
- bp
))
175 if (sp
->rptlchange
!= lno
) {
176 sp
->rptlchange
= lno
;
177 ++sp
->rptlines
[L_CHANGED
];
181 * Have to build both the first and last lines of the
182 * put before doing any sets or we'll lose the cached
183 * line. Build both the first and last lines in the
184 * same buffer, so we don't have to have another buffer
187 * Last part of original line; check for space, reset
188 * the pointer into the buffer.
190 ltp
= TAILQ_LAST(&cbp
->textq
, _texth
);
192 ADD_SPACE_RETW(sp
, bp
, blen
, ltp
->len
+ clen
);
195 /* Add in last part of the CB. */
196 MEMCPYW(t
, ltp
->lb
, ltp
->len
);
198 MEMCPYW(t
+ ltp
->len
, p
, clen
);
202 * Now: bp points to the first character of the first
203 * line, t points to the last character of the last
204 * line, t - bp is the length of the first line, and
205 * clen is the length of the last. Just figured you'd
208 * Output the line replacing the original line.
210 if (db_set(sp
, lno
, bp
, t
- bp
))
212 if (sp
->rptlchange
!= lno
) {
213 sp
->rptlchange
= lno
;
214 ++sp
->rptlines
[L_CHANGED
];
217 /* Output any intermediate lines in the CB. */
218 for (tp
= TAILQ_NEXT(tp
, q
);
219 TAILQ_NEXT(tp
, q
) != NULL
;
220 ++lno
, ++sp
->rptlines
[L_ADDED
], tp
= TAILQ_NEXT(tp
, q
))
221 if (db_append(sp
, 1, lno
, tp
->lb
, tp
->len
))
224 if (db_append(sp
, 1, lno
, t
, clen
))
226 ++sp
->rptlines
[L_ADDED
];
233 FREE_SPACEW(sp
, bp
, blen
);