3 * Sven Verdoolaege. All rights reserved.
5 * See the LICENSE file for redistribution information.
10 #include <sys/types.h>
11 #include <sys/queue.h>
13 #include <bitstring.h>
21 #include "../common/common.h"
23 static void perr
__P((char *, char *));
27 * Create and partially initialize the GS structure.
28 * PUBLIC: GS * gs_init __P((char*));
37 /* Figure out what our name is. */
38 if ((p
= strrchr(name
, '/')) != NULL
)
41 /* Allocate the global structure. */
42 CALLOC_NOMSG(NULL
, gp
, GS
*, 1, sizeof(GS
));
48 /* Common global structure initialization. */
49 /* others will need to be copied from main.c */
50 CIRCLEQ_INIT(&gp
->dq
);
52 CIRCLEQ_INIT(&gp
->hq
);
53 gp
->noprint
= DEFAULT_NOPRINT
;
55 /* Structures shared by screens so stored in the GS structure. */
56 CIRCLEQ_INIT(&gp
->frefq
);
57 CIRCLEQ_INIT(&gp
->exfq
);
68 * PUBLIC: WIN * gs_new_win __P((GS *gp));
76 CALLOC_NOMSG(NULL
, wp
, WIN
*, 1, sizeof(*wp
));
80 /* Common global structure initialization. */
82 LIST_INSERT_HEAD(&wp
->ecq
, &wp
->excmd
, q
);
84 CIRCLEQ_INSERT_TAIL(&gp
->dq
, wp
, q
);
85 CIRCLEQ_INIT(&wp
->scrq
);
87 CIRCLEQ_INIT(&wp
->dcb_store
.textq
);
99 * PUBLIC: int win_end __P((WIN *wp));
106 CIRCLEQ_REMOVE(&wp
->gp
->dq
, wp
, q
);
108 while ((sp
= wp
->scrq
.cqh_first
) != (void *)&wp
->scrq
)
109 (void)screen_end(sp
);
111 /* Free key input queue. */
112 if (wp
->i_event
!= NULL
)
115 /* Free cut buffers. */
118 /* Free default buffer storage. */
119 (void)text_lfree(&wp
->dcb_store
.textq
);
121 #if defined(DEBUG) || defined(PURIFY) || defined(LIBRARY)
122 /* Free any temporary space. */
123 if (wp
->tmp_bp
!= NULL
)
132 * End the program, discarding screens and most of the global area.
134 * PUBLIC: void gs_end __P((GS *));
144 /* If there are any remaining screens, kill them off. */
145 if (gp
->ccl_sp
!= NULL
) {
146 (void)file_end(gp
->ccl_sp
, NULL
, 1);
147 (void)screen_end(gp
->ccl_sp
);
149 while ((wp
= gp
->dq
.cqh_first
) != (void *)&gp
->dq
)
151 while ((sp
= gp
->hq
.cqh_first
) != (void *)&gp
->hq
)
152 (void)screen_end(sp
);
154 #ifdef HAVE_PERL_INTERP
158 #if defined(DEBUG) || defined(PURIFY) || defined(LIBRARY)
161 while ((frp
= gp
->frefq
.cqh_first
) != (FREF
*)&gp
->frefq
) {
162 CIRCLEQ_REMOVE(&gp
->frefq
, frp
, q
);
163 if (frp
->name
!= NULL
)
165 if (frp
->tname
!= NULL
)
171 /* Free map sequences. */
174 /* Close message catalogs. */
178 gp
->env
->remove(gp
->env
, NULL
, 0);
180 gp->env->close(gp->env, 0);
184 /* Ring the bell if scheduled. */
185 if (F_ISSET(gp
, G_BELLSCHED
))
186 (void)fprintf(stderr
, "\07"); /* \a */
189 * Flush any remaining messages. If a message is here, it's almost
190 * certainly the message about the event that killed us (although
191 * it's possible that the user is sourcing a file that exits from the
194 while ((mp
= gp
->msgq
.lh_first
) != NULL
) {
195 (void)fprintf(stderr
, "%s%.*s",
196 mp
->mtype
== M_ERR
? "ex/vi: " : "", (int)mp
->len
, mp
->buf
);
198 #if defined(DEBUG) || defined(PURIFY) || defined(LIBRARY)
205 /* Close tracing file descriptor. */
213 * Print system error.
219 (void)fprintf(stderr
, "%s:", name
);
221 (void)fprintf(stderr
, "%s:", msg
);
222 (void)fprintf(stderr
, "%s\n", strerror(errno
));