1 /* $NetBSD: put.c,v 1.3 2013/11/25 22:43:46 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.
14 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 ";
17 #include <sys/types.h>
18 #include <sys/queue.h>
20 #include <bitstring.h>
31 * Put text buffer contents into the file.
33 * PUBLIC: int put __P((SCR *, CB *, CHAR_T *, MARK *, MARK *, int));
36 put(SCR
*sp
, CB
*cbp
, ARG_CHAR_T
*namep
, MARK
*cp
, MARK
*rp
, int append
)
41 size_t blen
, clen
, len
;
51 "053|The default buffer is empty");
56 CBNAME(sp
, cbp
, name
);
58 msgq(sp
, M_ERR
, "054|Buffer %s is empty",
64 tp
= TAILQ_FIRST(&cbp
->textq
);
67 * It's possible to do a put into an empty file, meaning that the cut
68 * buffer simply becomes the file. It's a special case so that we can
69 * ignore it in general.
72 * Historically, pasting into a file with no lines in vi would preserve
73 * the single blank line. This is surely a result of the fact that the
74 * historic vi couldn't deal with a file that had no lines in it. This
75 * implementation treats that as a bug, and does not retain the blank
78 * Historical practice is that the cursor ends at the first character
82 if (db_last(sp
, &lno
))
86 ++lno
, ++sp
->rptlines
[L_ADDED
], tp
= TAILQ_NEXT(tp
, q
))
87 if (db_append(sp
, 1, lno
, tp
->lb
, tp
->len
))
95 /* If a line mode buffer, append each new line into the file. */
96 if (F_ISSET(cbp
, CB_LMODE
)) {
97 lno
= append
? cp
->lno
: cp
->lno
- 1;
100 ++lno
, ++sp
->rptlines
[L_ADDED
], tp
= TAILQ_NEXT(tp
, q
))
101 if (db_append(sp
, 1, lno
, tp
->lb
, tp
->len
))
104 (void)nonblank(sp
, rp
->lno
, &rp
->cno
);
109 * If buffer was cut in character mode, replace the current line with
110 * one built from the portion of the first line to the left of the
111 * split plus the first line in the CB. Append each intermediate line
112 * in the CB. Append a line built from the portion of the first line
113 * to the right of the split plus the last line in the CB.
115 * Get the first line.
118 if (db_get(sp
, lno
, DBG_FATAL
, &p
, &len
))
121 GET_SPACE_RETW(sp
, bp
, blen
, tp
->len
+ len
+ 1);
124 /* Original line, left of the split. */
125 if (len
> 0 && (clen
= cp
->cno
+ (append
? 1 : 0)) > 0) {
126 MEMCPYW(bp
, p
, clen
);
131 /* First line from the CB. */
133 MEMCPYW(t
, tp
->lb
, tp
->len
);
137 /* Calculate length left in the original line. */
138 clen
= len
== 0 ? 0 : len
- (cp
->cno
+ (append
? 1 : 0));
142 * In the historical 4BSD version of vi, character mode puts within
143 * a single line have two cursor behaviors: if the put is from the
144 * unnamed buffer, the cursor moves to the character inserted which
145 * appears last in the file. If the put is from a named buffer,
146 * the cursor moves to the character inserted which appears first
147 * in the file. In System III/V, it was changed at some point and
148 * the cursor always moves to the first character. In both versions
149 * of vi, character mode puts that cross line boundaries leave the
150 * cursor on the first character. Nvi implements the System III/V
151 * behavior, and expect POSIX.2 to do so as well.
154 rp
->cno
= len
== 0 ? 0 : sp
->cno
+ (append
&& tp
->len
? 1 : 0);
157 * If no more lines in the CB, append the rest of the original
158 * line and quit. Otherwise, build the last line before doing
159 * the intermediate lines, because the line changes will lose
162 if (TAILQ_NEXT(tp
, q
) == NULL
) {
167 if (db_set(sp
, lno
, bp
, t
- bp
))
169 if (sp
->rptlchange
!= lno
) {
170 sp
->rptlchange
= lno
;
171 ++sp
->rptlines
[L_CHANGED
];
175 * Have to build both the first and last lines of the
176 * put before doing any sets or we'll lose the cached
177 * line. Build both the first and last lines in the
178 * same buffer, so we don't have to have another buffer
181 * Last part of original line; check for space, reset
182 * the pointer into the buffer.
184 ltp
= TAILQ_LAST(&cbp
->textq
, _texth
);
186 ADD_SPACE_RETW(sp
, bp
, blen
, ltp
->len
+ clen
);
189 /* Add in last part of the CB. */
190 MEMCPYW(t
, ltp
->lb
, ltp
->len
);
192 MEMCPYW(t
+ ltp
->len
, p
, clen
);
196 * Now: bp points to the first character of the first
197 * line, t points to the last character of the last
198 * line, t - bp is the length of the first line, and
199 * clen is the length of the last. Just figured you'd
202 * Output the line replacing the original line.
204 if (db_set(sp
, lno
, bp
, t
- bp
))
206 if (sp
->rptlchange
!= lno
) {
207 sp
->rptlchange
= lno
;
208 ++sp
->rptlines
[L_CHANGED
];
211 /* Output any intermediate lines in the CB. */
212 for (tp
= TAILQ_NEXT(tp
, q
);
213 TAILQ_NEXT(tp
, q
) != NULL
;
214 ++lno
, ++sp
->rptlines
[L_ADDED
], tp
= TAILQ_NEXT(tp
, q
))
215 if (db_append(sp
, 1, lno
, tp
->lb
, tp
->len
))
218 if (db_append(sp
, 1, lno
, t
, clen
))
220 ++sp
->rptlines
[L_ADDED
];
227 FREE_SPACEW(sp
, bp
, blen
);