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 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
|
/* state.c */
/* Copyright 1995 by Steve Kirkendall */
char id_state[] = "$Id: state.c,v 2.31 1999/02/06 22:32:28 steve Exp $";
#include "elvis.h"
#if USE_PROTOTYPES
static void fixbounds(WINDOW win);
#endif
/* This is the window that we're sending the character to. At the start of
* the processing for each keystroke, this is set to focus. The code
* here always uses focus instead of focus from that point on, because
* the code here assumes that the window won't switch during the processing
* of the keystroke, but focus may in fact change.
*/
WINDOW focus;
/* Push a single state, in the current stratum.
*
* After this function returns, several fields in the struct will still
* need to be initialized. This function is meant to be called only from
* vipush() and inputpush(); those functions initialize the other fields.
*/
void statepush(win, flags)
WINDOW win; /* window to receive new key state */
ELVISSTATE flags; /* flags of the new state */
{
STATE *newp;
/* allocate a STATE struct */
newp = (STATE *)safealloc(1, sizeof(STATE));
/* initialize the struct's values */
newp->flags = flags;
if (win->state != NULL)
{
newp->flags |= (win->state->flags & ELVIS_BOTTOM);
newp->cursor = win->state->cursor;
newp->top = win->state->top;
newp->bottom = win->state->bottom;
newp->acton = win->state->acton;
}
else if (!gui->moveto)
{
/* if GUI has no move() function, we can't support full-screen */
newp->flags |= ELVIS_BOTTOM;
}
if (newp->flags & ELVIS_BOTTOM)
{
newp->mapflags = MAP_OPEN;
}
/* link this into the stack */
newp->pop = win->state;
win->state = newp;
}
/* Pop a single state */
void statepop(win)
WINDOW win; /* window from which the state will be popped */
{
STATE *doomed;
assert(win->state != NULL);
/* if this is a stratum, then free the marks */
if (win->state->enter != NULL)
{
/* free the marks */
markfree(win->state->cursor);
markfree(win->state->top);
markfree(win->state->bottom);
/* also restore wantcol */
if (win->state->acton)
win->wantcol = win->state->acton->wantcol;
}
/* if we were editing a line before, and popping makes us switch
* buffers, then we aren't editing that line anymore.
*/
if (!win->state->pop || win->state->cursor != win->state->pop->cursor)
{
if (win->di->openline)
{
markfree(win->di->openline);
win->di->openline = NULL;
}
}
/* if this has an info struct, then free it now, too */
if (win->state->info != NULL)
{
safefree(win->state->info);
}
/* remove the state from the state stack, and free it */
doomed = win->state;
win->state = doomed->pop;
safefree(doomed);
}
/* Push a new stratum. This involves appending a new blank line to a buffer,
* possibly adding a the prompt character to that line, and then pushing an
* open input state onto the state stack.
*/
#if USE_PROTOTYPES
void statestratum(WINDOW win, CHAR *bufname, _CHAR_ prompt, RESULT (*enter)(WINDOW win))
#else
void statestratum(win, bufname, prompt, enter)
WINDOW win; /* window to receive new stratum */
CHAR *bufname; /* name of buffer to use in new stratum */
_CHAR_ prompt; /* prompt character, or '\0' for none */
RESULT (*enter)(); /* function which executes line */
#endif
{
BUFFER buf;
CHAR newtext[2];
MARK mark;
/* find the buffer. If it doesn't exist, then create it */
buf = bufalloc(bufname, 0, True); /*!!! sometimes False? */
/* create a blank line at the end of the buffer, and insert the prompt
* character there, if given.
*/
mark = markalloc(buf, o_bufchars(buf));
if (prompt && (prompt != ':' || o_prompt))
{
newtext[0] = prompt;
newtext[1] = '\n';
bufreplace(mark, mark, newtext, 2);
}
else
{
newtext[0] = '\n';
bufreplace(mark, mark, newtext, 1);
}
marksetoffset(mark, o_bufchars(buf) - 1);
/* use the prompt as a special key in case we hit a [More] prompt
* when switching back to the old key state.
*/
win->state->morekey = prompt;
/* push a new input state */
inputpush(win, ELVIS_BOTTOM|ELVIS_1LINE, 'i');
/* initialize the state to look like a new stratum */
win->state->cursor = mark;
win->state->top = markdup(mark);
win->state->bottom = markdup(mark);
win->state->acton = win->state->pop;
win->state->enter = enter;
win->state->prompt = prompt;
/* save the old stratum's wantcol (if there was an old stratum) */
if (win->state->acton)
win->state->acton->wantcol = win->wantcol;
}
static void fixbounds(win)
WINDOW win; /* window whose edit bounds need tweaking */
{
STATE *state;
/* Fix the edit bounds.
*
* Note that we do this for all strata on the stack, not just
* the current one. This is mostly for the benefit of the
* visual / and ? commands -- After the search, the current
* strata is still the regexp line entry one, but we need to
* worry about the edit limits of the main strata.
*/
for (state = win->state; state; state = state->acton)
{
if (markbuffer(state->top) != markbuffer(state->cursor)
|| markbuffer(state->top) != markbuffer(state->bottom)
|| markoffset(state->top) > markoffset(state->cursor)
|| markoffset(state->cursor) > markoffset(state->bottom))
{
marksetbuffer(state->top, markbuffer(state->cursor));
marksetbuffer(state->bottom, markbuffer(state->cursor));
if (state->acton == NULL)
{
/* in the main edit buffer, the edit bounds are
* changed to equal the cursor.
*/
marksetoffset(state->top, markoffset(state->cursor));
marksetoffset(state->bottom, markoffset(state->cursor));
}
else
{
/* in a history buffer, the edit bounds are set
* to the whole line that the cursor is on, and
* if the cursor has moved to a different line
* then it is moved to the end of that line.
*/
marksetoffset(state->top, markoffset((*dmnormal.move)(focus, state->top, 0L, 0L, False)));
marksetoffset(state->bottom, markoffset((*dmnormal.move)(focus, state->top, 0L, INFINITY, False)));
if (markoffset(state->cursor) < markoffset(state->top)
|| markoffset(state->cursor) > markoffset(state->bottom))
{
marksetoffset(state->top, markoffset(dispmove(focus, 0L, 0L)));
marksetoffset(state->bottom, markoffset(dispmove(focus, 0L, INFINITY)));
marksetoffset(state->cursor, markoffset(state->bottom));
}
}
}
}
}
/* This function processes a single keystroke in the context of the default
* window.
*/
void statekey(key)
_CHAR_ key; /* a single key to be parsed */
{
RESULT result;
STATE *state;
CHAR newtext[2];
int i, j;
assert(windefault);
/* make an unalterable copy of windefault */
focus = windefault;
state = focus->state;
/* If user wants to abort operation, then ignore this key. This is
* important to check for, because elvis may be stuck in a recursive
* loop.
*/
if (guipoll(False))
{
mapalert();
return;
}
/* if <Enter>, and not quoted, and this is a stratum, then call the
* enter() function. If it returns RESULT_MORE then follow that by
* processing <Enter> in the usual way; otherwise we're done.
*/
if ((key == '\r' || key == '\n')
&& (*state->shape)(focus) != CURSOR_QUOTE
&& state->enter)
{
/* adjust the input line */
inputbeforeenter(focus);
/* if this line was entered via a one-time command from
* visual mode, then force drawstate to be DRAW_VISUAL so
* the user isn't forced to hit <enter> unless there really
* is some useful text to be read. EXCEPTION: If this GUI
* doesn't do full-screen, then don't bother.
*/
if ((state->flags & ELVIS_1LINE) != 0 && gui->moveto != NULL)
{
focus->di->drawstate = DRAW_VISUAL;
}
/* call the "enter" function for this state, and see whether
* the command is complete.
*/
result = (*state->enter)(focus);
/* if input line wasn't ended by execution of the enter()
* function, then end it now.
*/
if (windefault
&& ((focus->state->acton->flags & ELVIS_BOTTOM) != 0
|| (focus->state->flags & (ELVIS_ONCE|ELVIS_1LINE|ELVIS_POP)) == 0))
drawopencomplete(focus);
/* check the results */
if (result != RESULT_MORE)
{
/* If the window went away, then no more processing
* is necessary. Note that we're checking windefault
* here, not focus! If windefault has become NULL,
* that means the window was destroyed, and focus now
* points to freed memory!
*/
if (!windefault)
{
return;
}
/* We did one command line. Is that all we wanted? */
state = focus->state;
if (state->flags & ELVIS_1LINE)
{
/* yes, pop the stratum */
while (state->acton != state->pop)
{
statepop(focus);
}
state->flags |= ELVIS_POP;
}
else
{
marksetoffset(state->cursor, o_bufchars(markbuffer(state->cursor)));
if (state->prompt && (state->prompt != ':' || o_prompt))
{
newtext[0] = state->prompt;
newtext[1] = '\n';
bufreplace(state->cursor, state->cursor, newtext, 2);
}
else
{
newtext[0] = '\n';
bufreplace(state->cursor, state->cursor, newtext, 1);
}
marksetoffset(state->cursor, o_bufchars(markbuffer(state->cursor)) - 1);
}
/* do the usual after-keystroke processing */
goto AfterKeystroke;
}
}
/* parse the keystroke for the current window */
if (key != (_CHAR_)-1)
result = (*state->parse)(key, state->info);
else
result = RESULT_COMPLETE;
/* If error, alert the window */
if (result == RESULT_ERROR)
{
/* clobber the "cmdchars" list - all chars entered */
focus->cmdchars[0] = '\0';
/* alert the window */
mapalert();
if (o_errorbells)
guibeep(focus);
}
else if (result == RESULT_COMPLETE && key != (_CHAR_)-1 && state == focus->state)
{
/* clobber the "cmdchars" list - all chars entered */
focus->cmdchars[0] = '\0';
/* We have parsed a complete command. Now perform it */
switch ((*state->perform)(focus))
{
case RESULT_ERROR:
/* command failed! alert the window */
mapalert();
if (o_errorbells)
guibeep(focus);
break;
case RESULT_MORE:
/* set the pushed state's ELVIS_MORE flag */
state->flags |= ELVIS_MORE;
break;
case RESULT_COMPLETE:
/* nothing, just fall through... */
;
}
/* The command may have caused the window to disappear.
* If so, then no more processing is necessary. Note that
* we check windefault, not focus! If windefault has become
* NULL, then the window was destroyed and focus points to
* freed memory.
*/
if (!windefault)
{
return;
}
/* If cursor has moved outside state->top and state->bottom,
* then make state->top and state->bottom equal the cursor.
*/
fixbounds(focus);
/* if the "optimize" option is false, and the current window
* is in vi mode, then update the current window's image.
*/
if (!o_optimize /* && focus */
&& !focus->state->pop
&& focus->di->curchgs != markbuffer(focus->cursor)->changes
&& (focus->di->drawstate == DRAW_VISUAL
|| focus->di->drawstate == DRAW_VMSG))
{
drawimage(focus);
if (gui->flush)
(*gui->flush)();
}
}
else if (result == RESULT_MORE)
{
/* partial command -- add this key to the cmdchars field */
/* if the array is full, then shift */
i = CHARlen(focus->cmdchars);
j = (iscntrl(key) ? 2 : 1);
if (i + j >= QTY(focus->cmdchars))
{
for (i = 0; focus->cmdchars[i]; i++)
{
focus->cmdchars[i] = focus->cmdchars[i + j];
}
i -= j;
}
/* stuff the new char into it */
switch (o_nonascii)
{
case 's': key &= 0x7f; break;
case 'n': key = '.'; break;
case 'm': if (key>0x7f && key<=0x9f)
key = '.'; break;
}
if (iscntrl(key))
{
focus->cmdchars[i++] = '^';
key ^= 0x40;
}
focus->cmdchars[i++] = key;
focus->cmdchars[i++] = '\0';
}
/* if visibly marking, then adjust the marks */
if (focus->seltop)
{
(void)v_visible(focus, NULL);
}
/* if we aren't still parsing, then perform other checks */
if (result != RESULT_MORE)
{
AfterKeystroke:
/* pop states, if we're supposed to */
while (focus->state && (focus->state->flags & ELVIS_POP))
{
/* pop the state */
statepop(focus);
/* if the next state has its ELVIS_MORE flag set, then
* call the next state's perform() function again.
*/
if (focus->state
&& focus->state->flags & ELVIS_MORE)
{
/* call the next state's perform() function again */
if (result != RESULT_ERROR)
result = (*focus->state->perform)(focus);
switch (result)
{
case RESULT_ERROR:
/* command failed! alert the window */
mapalert();
if (o_errorbells)
guibeep(focus);
focus->state->flags &= ~ELVIS_MORE;
break;
case RESULT_COMPLETE:
focus->state->flags &= ~ELVIS_MORE;
break;
case RESULT_MORE:
focus->state->flags |= ELVIS_MORE;
break;
}
}
}
/* fix the edit bounds */
fixbounds(focus);
/* convert ELVIS_ONCE to ELVIS_POP */
if (focus->state && (focus->state->flags & ELVIS_ONCE))
{
focus->state->flags |= ELVIS_POP;
}
/* if no states are left, then destroy the window */
if (!focus->state)
{
(*gui->destroygw)(focus->gw, True);
}
}
}
|