1 /* $NetBSD: undo.c,v 1.6 2014/03/23 05:06:42 dholland Exp $ */
3 /* undo.c: This file contains the undo routines for the ed line editor */
5 * Copyright (c) 1993 Andrew Moore, Talke Studio.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #include <sys/cdefs.h>
33 static char *rcsid
= "@(#)undo.c,v 1.1 1994/02/01 00:34:44 alm Exp";
35 __RCSID("$NetBSD: undo.c,v 1.6 2014/03/23 05:06:42 dholland Exp $");
42 #define USIZE 100 /* undo stack size */
43 undo_t
*ustack
= NULL
; /* undo stack */
44 long usize
= 0; /* stack size variable */
45 long u_p
= 0; /* undo stack pointer */
47 /* push_undo_stack: return pointer to initialized undo node */
49 push_undo_stack(int type
, long from
, long to
)
53 #if defined(sun) || defined(NO_REALLOC_NULL)
55 (ustack
= (undo_t
*) malloc((usize
= USIZE
) * sizeof(undo_t
))) == NULL
) {
56 fprintf(stderr
, "%s\n", strerror(errno
));
57 seterrmsg("out of memory");
63 (t
= (undo_t
*) realloc(ustack
, (usize
+= USIZE
) * sizeof(undo_t
))) != NULL
) {
65 ustack
[u_p
].type
= type
;
66 ustack
[u_p
].t
= get_addressed_line_node(to
);
67 ustack
[u_p
].h
= get_addressed_line_node(from
);
68 return ustack
+ u_p
++;
70 /* out of memory - release undo stack */
71 fprintf(stderr
, "%s\n", strerror(errno
));
72 seterrmsg("out of memory");
81 /* USWAP: swap undo nodes */
82 #define USWAP(x,y) { \
84 utmp = x, x = y, y = utmp; \
88 long u_current_addr
= -1; /* if >= 0, undo enabled */
89 long u_addr_last
= -1; /* if >= 0, undo enabled */
91 /* pop_undo_stack: undo last change to the editor buffer */
96 long o_current_addr
= current_addr
;
97 long o_addr_last
= addr_last
;
99 if (u_current_addr
== -1 || u_addr_last
== -1) {
100 seterrmsg("nothing to undo");
104 get_addressed_line_node(0); /* this get_addressed_line_node last! */
106 for (n
= u_p
; n
-- > 0;) {
107 switch(ustack
[n
].type
) {
109 REQUE(ustack
[n
].h
->q_back
, ustack
[n
].t
->q_forw
);
112 REQUE(ustack
[n
].h
->q_back
, ustack
[n
].h
);
113 REQUE(ustack
[n
].t
, ustack
[n
].t
->q_forw
);
117 REQUE(ustack
[n
- 1].h
, ustack
[n
].h
->q_forw
);
118 REQUE(ustack
[n
].t
->q_back
, ustack
[n
- 1].t
);
119 REQUE(ustack
[n
].h
, ustack
[n
].t
);
128 /* reverse undo stack order */
129 for (n
= u_p
; n
-- > (u_p
+ 1)/ 2;)
130 USWAP(ustack
[n
], ustack
[u_p
- 1 - n
]);
133 current_addr
= u_current_addr
, u_current_addr
= o_current_addr
;
134 addr_last
= u_addr_last
, u_addr_last
= o_addr_last
;
140 /* clear_undo_stack: clear the undo stack */
142 clear_undo_stack(void)
144 line_t
*lp
, *ep
, *tl
;
147 if (ustack
[u_p
].type
== UDEL
) {
148 ep
= ustack
[u_p
].t
->q_forw
;
149 for (lp
= ustack
[u_p
].h
; lp
!= ep
; lp
= tl
) {
150 unmark_line_node(lp
);
156 u_current_addr
= current_addr
;
157 u_addr_last
= addr_last
;