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
|
/*-
* Copyright (c) 1996
* Keith Bostic. All rights reserved.
*
* See the LICENSE file for redistribution information.
*/
#include "config.h"
#ifndef lint
static const char sccsid[] = "@(#)ip_funcs.c 8.4 (Berkeley) 10/13/96";
#endif /* not lint */
#include <sys/types.h>
#include <sys/queue.h>
#include <sys/time.h>
#include <bitstring.h>
#include <stdio.h>
#include "../common/common.h"
#include "../vi/vi.h"
#include "ip.h"
static int ip_send __P((SCR *, char *, IP_BUF *));
/*
* ip_addstr --
* Add len bytes from the string at the cursor, advancing the cursor.
*
* PUBLIC: int ip_addstr __P((SCR *, const char *, size_t));
*/
int
ip_addstr(sp, str, len)
SCR *sp;
const char *str;
size_t len;
{
IP_BUF ipb;
IP_PRIVATE *ipp;
int iv, rval;
ipp = IPP(sp);
/*
* If ex isn't in control, it's the last line of the screen and
* it's a split screen, use inverse video.
*/
iv = 0;
if (!F_ISSET(sp, SC_SCR_EXWROTE) &&
ipp->row == LASTLINE(sp) && IS_SPLIT(sp)) {
iv = 1;
ip_attr(sp, SA_INVERSE, 1);
}
ipb.code = IPO_ADDSTR;
ipb.len = len;
ipb.str = str;
rval = ip_send(sp, "s", &ipb);
if (iv)
ip_attr(sp, SA_INVERSE, 0);
return (rval);
}
/*
* ip_attr --
* Toggle a screen attribute on/off.
*
* PUBLIC: int ip_attr __P((SCR *, scr_attr_t, int));
*/
int
ip_attr(sp, attribute, on)
SCR *sp;
scr_attr_t attribute;
int on;
{
IP_BUF ipb;
ipb.code = IPO_ATTRIBUTE;
ipb.val1 = attribute;
ipb.val2 = on;
return (ip_send(sp, "12", &ipb));
}
/*
* ip_baud --
* Return the baud rate.
*
* PUBLIC: int ip_baud __P((SCR *, u_long *));
*/
int
ip_baud(sp, ratep)
SCR *sp;
u_long *ratep;
{
*ratep = 9600; /* XXX: Translation: fast. */
return (0);
}
/*
* ip_bell --
* Ring the bell/flash the screen.
*
* PUBLIC: int ip_bell __P((SCR *));
*/
int
ip_bell(sp)
SCR *sp;
{
IP_BUF ipb;
ipb.code = IPO_BELL;
return (ip_send(sp, NULL, &ipb));
}
/*
* ip_busy --
* Display a busy message.
*
* PUBLIC: void ip_busy __P((SCR *, const char *, busy_t));
*/
void
ip_busy(sp, str, bval)
SCR *sp;
const char *str;
busy_t bval;
{
IP_BUF ipb;
ipb.code = IPO_BUSY;
if (str == NULL) {
ipb.len = 0;
ipb.str = "";
} else {
ipb.len = strlen(str);
ipb.str = str;
}
ipb.val1 = bval;
(void)ip_send(sp, "s1", &ipb);
}
/*
* ip_clrtoeol --
* Clear from the current cursor to the end of the line.
*
* PUBLIC: int ip_clrtoeol __P((SCR *));
*/
int
ip_clrtoeol(sp)
SCR *sp;
{
IP_BUF ipb;
ipb.code = IPO_CLRTOEOL;
return (ip_send(sp, NULL, &ipb));
}
/*
* ip_cursor --
* Return the current cursor position.
*
* PUBLIC: int ip_cursor __P((SCR *, size_t *, size_t *));
*/
int
ip_cursor(sp, yp, xp)
SCR *sp;
size_t *yp, *xp;
{
IP_PRIVATE *ipp;
ipp = IPP(sp);
*yp = ipp->row;
*xp = ipp->col;
return (0);
}
/*
* ip_deleteln --
* Delete the current line, scrolling all lines below it.
*
* PUBLIC: int ip_deleteln __P((SCR *));
*/
int
ip_deleteln(sp)
SCR *sp;
{
IP_BUF ipb;
/*
* This clause is required because the curses screen uses reverse
* video to delimit split screens. If the screen does not do this,
* this code won't be necessary.
*
* If the bottom line was in reverse video, rewrite it in normal
* video before it's scrolled.
*/
if (!F_ISSET(sp, SC_SCR_EXWROTE) && IS_SPLIT(sp)) {
ipb.code = IPO_REWRITE;
ipb.val1 = RLNO(sp, LASTLINE(sp));
if (ip_send(sp, "1", &ipb))
return (1);
}
/*
* The bottom line is expected to be blank after this operation,
* and other screens must support that semantic.
*/
ipb.code = IPO_DELETELN;
return (ip_send(sp, NULL, &ipb));
}
/*
* ip_ex_adjust --
* Adjust the screen for ex.
*
* PUBLIC: int ip_ex_adjust __P((SCR *, exadj_t));
*/
int
ip_ex_adjust(sp, action)
SCR *sp;
exadj_t action;
{
abort();
/* NOTREACHED */
}
/*
* ip_insertln --
* Push down the current line, discarding the bottom line.
*
* PUBLIC: int ip_insertln __P((SCR *));
*/
int
ip_insertln(sp)
SCR *sp;
{
IP_BUF ipb;
ipb.code = IPO_INSERTLN;
return (ip_send(sp, NULL, &ipb));
}
/*
* ip_keyval --
* Return the value for a special key.
*
* PUBLIC: int ip_keyval __P((SCR *, scr_keyval_t, CHAR_T *, int *));
*/
int
ip_keyval(sp, val, chp, dnep)
SCR *sp;
scr_keyval_t val;
CHAR_T *chp;
int *dnep;
{
/*
* VEOF, VERASE and VKILL are required by POSIX 1003.1-1990,
* VWERASE is a 4BSD extension.
*/
switch (val) {
case KEY_VEOF:
*dnep = '\004'; /* ^D */
break;
case KEY_VERASE:
*dnep = '\b'; /* ^H */
break;
case KEY_VKILL:
*dnep = '\025'; /* ^U */
break;
#ifdef VWERASE
case KEY_VWERASE:
*dnep = '\027'; /* ^W */
break;
#endif
default:
*dnep = 1;
break;
}
return (0);
}
/*
* ip_move --
* Move the cursor.
*
* PUBLIC: int ip_move __P((SCR *, size_t, size_t));
*/
int
ip_move(sp, lno, cno)
SCR *sp;
size_t lno, cno;
{
IP_PRIVATE *ipp;
IP_BUF ipb;
ipp = IPP(sp);
ipp->row = lno;
ipp->col = cno;
ipb.code = IPO_MOVE;
ipb.val1 = RLNO(sp, lno);
ipb.val2 = cno;
return (ip_send(sp, "12", &ipb));
}
/*
* ip_refresh --
* Refresh the screen.
*
* PUBLIC: int ip_refresh __P((SCR *, int));
*/
int
ip_refresh(sp, repaint)
SCR *sp;
int repaint;
{
IP_BUF ipb;
ipb.code = repaint ? IPO_REDRAW : IPO_REFRESH;
return (ip_send(sp, NULL, &ipb));
}
/*
* ip_rename --
* Rename the file.
*
* PUBLIC: int ip_rename __P((SCR *));
*/
int
ip_rename(sp)
SCR *sp;
{
IP_BUF ipb;
ipb.code = IPO_RENAME;
ipb.len = strlen(sp->frp->name);
ipb.str = sp->frp->name;
return (ip_send(sp, "s", &ipb));
}
/*
* ip_suspend --
* Suspend a screen.
*
* PUBLIC: int ip_suspend __P((SCR *, int *));
*/
int
ip_suspend(sp, allowedp)
SCR *sp;
int *allowedp;
{
*allowedp = 0;
return (0);
}
/*
* ip_usage --
* Print out the ip usage messages.
*
* PUBLIC: void ip_usage __P((void));
*/
void
ip_usage()
{
#define USAGE "\
usage: vi [-eFlRrSv] [-c command] [-I ifd.ofd] [-t tag] [-w size] [file ...]\n"
(void)fprintf(stderr, "%s", USAGE);
#undef USAGE
}
/*
* ip_send --
* Construct and send an IP buffer.
*/
static int
ip_send(sp, fmt, ipbp)
SCR *sp;
char *fmt;
IP_BUF *ipbp;
{
IP_PRIVATE *ipp;
size_t blen, off;
u_int32_t ilen;
int nlen, n, nw, rval;
char *bp, *p;
ipp = IPP(sp);
GET_SPACE_RET(sp, bp, blen, 128);
p = bp;
nlen = 0;
*p++ = ipbp->code;
nlen += IPO_CODE_LEN;
if (fmt != NULL)
for (; *fmt != '\0'; ++fmt)
switch (*fmt) {
case '1': /* Value 1. */
ilen = htonl(ipbp->val1);
goto value;
case '2': /* Value 2. */
ilen = htonl(ipbp->val2);
value: nlen += IPO_INT_LEN;
off = p - bp;
ADD_SPACE_RET(sp, bp, blen, nlen);
p = bp + off;
memmove(p, &ilen, IPO_INT_LEN);
p += IPO_INT_LEN;
break;
case 's': /* String. */
ilen = ipbp->len; /* XXX: conversion. */
ilen = htonl(ilen);
nlen += IPO_INT_LEN + ipbp->len;
off = p - bp;
ADD_SPACE_RET(sp, bp, blen, nlen);
p = bp + off;
memmove(p, &ilen, IPO_INT_LEN);
p += IPO_INT_LEN;
memmove(p, ipbp->str, ipbp->len);
p += ipbp->len;
break;
}
rval = 0;
for (n = p - bp, p = bp; n > 0; n -= nw, p += nw)
if ((nw = write(ipp->o_fd, p, n)) < 0) {
rval = 1;
break;
}
FREE_SPACE(sp, bp, blen);
return (rval);
}
|