Browse Source

* Improved vt220 import by adding a persistent context to canvases.

tags/v0.99.beta14
Sam Hocevar sam 18 years ago
parent
commit
4f4f887080
4 changed files with 137 additions and 83 deletions
  1. +3
    -0
      cucul/cucul.c
  2. +3
    -0
      cucul/cucul_internals.h
  3. +6
    -2
      cucul/frame.c
  4. +125
    -81
      cucul/import.c

+ 3
- 0
cucul/cucul.c View File

@@ -76,6 +76,7 @@ cucul_canvas_t * cucul_create_canvas(unsigned int width, unsigned int height)
cv->frames[0].handlex = cv->frames[0].handley = 0; cv->frames[0].handlex = cv->frames[0].handley = 0;
cv->frames[0].curattr = 0; cv->frames[0].curattr = 0;
cv->frames[0].name = strdup("frame#00000000"); cv->frames[0].name = strdup("frame#00000000");
cv->frames[0].import = NULL;


_cucul_load_frame_info(cv); _cucul_load_frame_info(cv);
cucul_set_color_ansi(cv, CUCUL_DEFAULT, CUCUL_TRANSPARENT); cucul_set_color_ansi(cv, CUCUL_DEFAULT, CUCUL_TRANSPARENT);
@@ -189,6 +190,8 @@ int cucul_free_canvas(cucul_canvas_t *cv)
free(cv->frames[f].chars); free(cv->frames[f].chars);
free(cv->frames[f].attrs); free(cv->frames[f].attrs);
free(cv->frames[f].name); free(cv->frames[f].name);
if(cv->frames[f].import)
free(cv->frames[f].import);
} }


free(cv->frames); free(cv->frames);


+ 3
- 0
cucul/cucul_internals.h View File

@@ -34,6 +34,9 @@ struct cucul_frame


/* Frame name */ /* Frame name */
char *name; char *name;

/* Private information */
void *import;
}; };


struct cucul_canvas struct cucul_canvas


+ 6
- 2
cucul/frame.c View File

@@ -168,7 +168,9 @@ int cucul_create_frame(cucul_canvas_t *cv, unsigned int id)
cv->frames[id].handley = cv->frames[cv->frame].handley; cv->frames[id].handley = cv->frames[cv->frame].handley;


cv->frames[id].name = strdup("frame#--------"); cv->frames[id].name = strdup("frame#--------");
sprintf(cv->frames[id].name + 6, "%.08x", cv->autoinc++);
sprintf(cv->frames[id].name + 6, "%.08x", ++cv->autoinc);

cv->frames[id].import = NULL;


return 0; return 0;
} }
@@ -179,7 +181,7 @@ int cucul_create_frame(cucul_canvas_t *cv, unsigned int id)
* *
* The frame index indicates the frame to delete. Valid values range from * The frame index indicates the frame to delete. Valid values range from
* 0 to the current canvas frame count minus 1. If the frame index is * 0 to the current canvas frame count minus 1. If the frame index is
* greater the or equals the current canvas frame count, the last frame
* greater than or equals the current canvas frame count, the last frame
* is deleted. * is deleted.
* *
* If the active frame is deleted, frame 0 becomes the new active frame. * If the active frame is deleted, frame 0 becomes the new active frame.
@@ -213,6 +215,8 @@ int cucul_free_frame(cucul_canvas_t *cv, unsigned int id)
free(cv->frames[id].chars); free(cv->frames[id].chars);
free(cv->frames[id].attrs); free(cv->frames[id].attrs);
free(cv->frames[id].name); free(cv->frames[id].name);
if(cv->frames[id].import)
free(cv->frames[id].import);


for(f = id + 1; f < cv->framecount; f++) for(f = id + 1; f < cv->framecount; f++)
cv->frames[f - 1] = cv->frames[f]; cv->frames[f - 1] = cv->frames[f];


+ 125
- 81
cucul/import.c View File

@@ -41,20 +41,22 @@ static inline uint16_t sscanu16(void const *s)
return hton16(x); return hton16(x);
} }


/* ANSI Graphic Rendition Combination Mode */
struct ansi_grcm
struct import
{ {
uint32_t clearattr;

/* ANSI Graphic Rendition Combination Mode */
uint8_t fg, bg; /* ANSI-context fg/bg */ uint8_t fg, bg; /* ANSI-context fg/bg */
uint8_t efg, ebg; /* Effective (libcucul) fg/bg */
uint8_t dfg, dbg; /* Default fg/bg */ uint8_t dfg, dbg; /* Default fg/bg */
uint8_t bold, blink, italics, negative, concealed, underline; uint8_t bold, blink, italics, negative, concealed, underline;
uint8_t faint, strike, proportional; /* unsupported */
}; };


static long int import_caca(cucul_canvas_t *, void const *, unsigned int); static long int import_caca(cucul_canvas_t *, void const *, unsigned int);
static long int import_text(cucul_canvas_t *, void const *, unsigned int); static long int import_text(cucul_canvas_t *, void const *, unsigned int);
static long int import_ansi(cucul_canvas_t *, void const *, unsigned int, int); static long int import_ansi(cucul_canvas_t *, void const *, unsigned int, int);


static void ansi_parse_grcm(cucul_canvas_t *, struct ansi_grcm *,
static void ansi_parse_grcm(cucul_canvas_t *, struct import *,
unsigned int, unsigned int const *); unsigned int, unsigned int const *);


/** \brief Import a memory buffer into a canvas /** \brief Import a memory buffer into a canvas
@@ -346,13 +348,23 @@ static long int import_text(cucul_canvas_t *cv,
static long int import_ansi(cucul_canvas_t *cv, static long int import_ansi(cucul_canvas_t *cv,
void const *data, unsigned int size, int utf8) void const *data, unsigned int size, int utf8)
{ {
struct ansi_grcm grcm;
struct import *im;
unsigned char const *buffer = (unsigned char const*)data; unsigned char const *buffer = (unsigned char const*)data;
unsigned int i, j, skip, growx = 0, growy = 0, dummy = 0;
unsigned int i, j, init, skip, growx = 0, growy = 0, dummy = 0;
unsigned int width, height; unsigned int width, height;
uint32_t savedattr, clearattr;
uint32_t savedattr;
int x = 0, y = 0, save_x = 0, save_y = 0; int x = 0, y = 0, save_x = 0, save_y = 0;


init = !!cv->frames[cv->frame].import;

if(!init)
{
cv->frames[cv->frame].import = malloc(sizeof(struct import));
memset(cv->frames[cv->frame].import, 0, sizeof(struct import));
}

im = (struct import *)cv->frames[cv->frame].import;

if(utf8) if(utf8)
{ {
width = cv->width; width = cv->width;
@@ -361,28 +373,32 @@ static long int import_ansi(cucul_canvas_t *cv,
growy = !height; growy = !height;
x = cv->frames[cv->frame].x; x = cv->frames[cv->frame].x;
y = cv->frames[cv->frame].y; y = cv->frames[cv->frame].y;
grcm.dfg = CUCUL_DEFAULT;
grcm.dbg = CUCUL_TRANSPARENT;
} }
else else
{ {
cucul_set_canvas_size(cv, width = 80, height = 0); cucul_set_canvas_size(cv, width = 80, height = 0);
growx = 0; growx = 0;
growy = 1; growy = 1;
grcm.dfg = CUCUL_LIGHTGRAY;
grcm.dbg = CUCUL_BLACK;
} }


savedattr = cucul_get_attr(cv, -1, -1);
cucul_set_color_ansi(cv, grcm.dfg, grcm.dbg);
clearattr = cucul_get_attr(cv, -1, -1);
if(!init)
{
if(utf8)
{
im->dfg = CUCUL_DEFAULT;
im->dbg = CUCUL_TRANSPARENT;
}
else
{
im->dfg = CUCUL_LIGHTGRAY;
im->dbg = CUCUL_BLACK;
}


if(utf8)
cucul_set_attr(cv, savedattr);
cucul_set_color_ansi(cv, im->dfg, im->dbg);
im->clearattr = cucul_get_attr(cv, -1, -1);


/* FIXME: this is not right, we should store the grcm information as a
* persistent structure within the canvas. */
ansi_parse_grcm(cv, &grcm, 1, &dummy);
ansi_parse_grcm(cv, im, 1, &dummy);
}


for(i = 0; i < size; i += skip) for(i = 0; i < size; i += skip)
{ {
@@ -417,25 +433,6 @@ static long int import_ansi(cucul_canvas_t *cv,
x--; x--;
} }


else if(buffer[i] == '\x1b' && buffer[i + 1] == ']'
&& buffer[i + 2] == '0' && buffer[i + 3] == ';')
{
for(j = i + 4; j < size; j++)
if(buffer[j] == '\x07' || buffer[j] == '\x1b'
|| buffer[j] == '\r' || buffer[j] == '\n')
break;

if(j < size && buffer[j] == '\x07')
{
char *title = malloc(j - i - 4 + 1);
memcpy(title, buffer + i + 4, j - i - 4);
title[j - i - 4] = '\0';
debug("ansi import: got display title '%s'", title);
skip += j - i;
free(title);
}
}

/* If there are not enough characters to parse the escape sequence, /* If there are not enough characters to parse the escape sequence,
* wait until the next try. We require 3. */ * wait until the next try. We require 3. */
else if(buffer[i] == '\x1b' && i + 2 >= size) else if(buffer[i] == '\x1b' && i + 2 >= size)
@@ -538,7 +535,7 @@ static long int import_ansi(cucul_canvas_t *cv,
break; break;
case 'J': /* ED (0x4a) - Erase In Page */ case 'J': /* ED (0x4a) - Erase In Page */
savedattr = cucul_get_attr(cv, -1, -1); savedattr = cucul_get_attr(cv, -1, -1);
cucul_set_attr(cv, clearattr);
cucul_set_attr(cv, im->clearattr);
if(!argc || argv[0] == 0) if(!argc || argv[0] == 0)
{ {
cucul_draw_line(cv, x, y, width, y, ' '); cucul_draw_line(cv, x, y, width, y, ' ');
@@ -576,7 +573,7 @@ static long int import_ansi(cucul_canvas_t *cv,
} }
#if 0 #if 0
savedattr = cucul_get_attr(cv, -1, -1); savedattr = cucul_get_attr(cv, -1, -1);
cucul_set_attr(cv, clearattr);
cucul_set_attr(cv, im->clearattr);
for( ; (unsigned int)j < width; j++) for( ; (unsigned int)j < width; j++)
cucul_put_char(cv, j, y, ' '); cucul_put_char(cv, j, y, ' ');
cucul_set_attr(cv, savedattr); cucul_set_attr(cv, savedattr);
@@ -585,7 +582,7 @@ static long int import_ansi(cucul_canvas_t *cv,
if(argc && argv[0]) if(argc && argv[0])
{ {
savedattr = cucul_get_attr(cv, -1, -1); savedattr = cucul_get_attr(cv, -1, -1);
cucul_set_attr(cv, clearattr);
cucul_set_attr(cv, im->clearattr);
cucul_draw_line(cv, x, y, x + argv[0] - 1, y, ' '); cucul_draw_line(cv, x, y, x + argv[0] - 1, y, ' ');
cucul_set_attr(cv, savedattr); cucul_set_attr(cv, savedattr);
} }
@@ -603,7 +600,10 @@ static long int import_ansi(cucul_canvas_t *cv,
debug("ansi import: reset mode %i", argc ? (int)argv[0] : -1); debug("ansi import: reset mode %i", argc ? (int)argv[0] : -1);
break; break;
case 'm': /* SGR (0x6d) - Select Graphic Rendition */ case 'm': /* SGR (0x6d) - Select Graphic Rendition */
ansi_parse_grcm(cv, &grcm, argc, argv);
if(argc)
ansi_parse_grcm(cv, im, argc, argv);
else
ansi_parse_grcm(cv, im, 1, &dummy);
break; break;
case 's': /* Private (save cursor position) */ case 's': /* Private (save cursor position) */
save_x = x; save_x = x;
@@ -620,6 +620,43 @@ static long int import_ansi(cucul_canvas_t *cv,
} }
} }


/* Parse OSC stuff. */
else if(buffer[i] == '\x1b' && buffer[i + 1] == ']')
{
char *string;
unsigned int command = 0;
unsigned int mode = 2, semicolon, final;

for(semicolon = mode; i + semicolon < size; semicolon++)
{
if(buffer[i + semicolon] < '0' || buffer[i + semicolon] > '9')
break;
command = 10 * command + (buffer[i + semicolon] - '0');
}

if(i + semicolon >= size || buffer[i + semicolon] != ';')
break; /* Invalid Mode */

for(final = semicolon + 1; i + final < size; final++)
if(buffer[i + final] < 0x20)
break;

if(i + final >= size || buffer[i + final] != '\a')
break; /* Not enough data or no bell found */
/* FIXME: XTerm also reacts to <ESC><backslash> and <ST> */
/* FIXME: differenciate between not enough data (try again)
* and invalid data (print shit) */

skip += final;

string = malloc(final - (semicolon + 1) + 1);
memcpy(string, buffer + (semicolon + 1), final - (semicolon + 1));
string[final - (semicolon + 1)] = '\0';
debug("ansi import: got OSC command %i string '%s'", command,
string);
free(string);
}

/* Get the character we’re going to paste */ /* Get the character we’re going to paste */
else if(utf8) else if(utf8)
{ {
@@ -657,7 +694,7 @@ static long int import_ansi(cucul_canvas_t *cv,
if(growx) if(growx)
{ {
savedattr = cucul_get_attr(cv, -1, -1); savedattr = cucul_get_attr(cv, -1, -1);
cucul_set_attr(cv, clearattr);
cucul_set_attr(cv, im->clearattr);
cucul_set_canvas_size(cv, width = x + wch, height); cucul_set_canvas_size(cv, width = x + wch, height);
cucul_set_attr(cv, savedattr); cucul_set_attr(cv, savedattr);
} }
@@ -672,7 +709,7 @@ static long int import_ansi(cucul_canvas_t *cv,
if((unsigned int)y >= height) if((unsigned int)y >= height)
{ {
savedattr = cucul_get_attr(cv, -1, -1); savedattr = cucul_get_attr(cv, -1, -1);
cucul_set_attr(cv, clearattr);
cucul_set_attr(cv, im->clearattr);
if(growy) if(growy)
{ {
cucul_set_canvas_size(cv, width, height = y + 1); cucul_set_canvas_size(cv, width, height = y + 1);
@@ -706,7 +743,7 @@ static long int import_ansi(cucul_canvas_t *cv,
if(growy && (unsigned int)y > height) if(growy && (unsigned int)y > height)
{ {
savedattr = cucul_get_attr(cv, -1, -1); savedattr = cucul_get_attr(cv, -1, -1);
cucul_set_attr(cv, clearattr);
cucul_set_attr(cv, im->clearattr);
cucul_set_canvas_size(cv, width, height = y); cucul_set_canvas_size(cv, width, height = y);
cucul_set_attr(cv, savedattr); cucul_set_attr(cv, savedattr);
} }
@@ -714,15 +751,15 @@ static long int import_ansi(cucul_canvas_t *cv,
cv->frames[cv->frame].x = x; cv->frames[cv->frame].x = x;
cv->frames[cv->frame].y = y; cv->frames[cv->frame].y = y;


if(utf8)
cucul_set_attr(cv, savedattr);
// if(utf8)
// cucul_set_attr(cv, savedattr);


return i; return i;
} }


/* XXX : ANSI loader helper */ /* XXX : ANSI loader helper */


static void ansi_parse_grcm(cucul_canvas_t *cv, struct ansi_grcm *g,
static void ansi_parse_grcm(cucul_canvas_t *cv, struct import *im,
unsigned int argc, unsigned int const *argv) unsigned int argc, unsigned int const *argv)
{ {
static uint8_t const ansi2cucul[] = static uint8_t const ansi2cucul[] =
@@ -732,93 +769,100 @@ static void ansi_parse_grcm(cucul_canvas_t *cv, struct ansi_grcm *g,
}; };


unsigned int j; unsigned int j;
uint8_t efg, ebg; /* Effective (libcucul) fg/bg */


for(j = 0; j < argc; j++) for(j = 0; j < argc; j++)
{ {
/* Defined in ECMA-48 8.3.117: SGR - SELECT GRAPHIC RENDITION */ /* Defined in ECMA-48 8.3.117: SGR - SELECT GRAPHIC RENDITION */
if(argv[j] >= 30 && argv[j] <= 37) if(argv[j] >= 30 && argv[j] <= 37)
g->fg = ansi2cucul[argv[j] - 30];
im->fg = ansi2cucul[argv[j] - 30];
else if(argv[j] >= 40 && argv[j] <= 47) else if(argv[j] >= 40 && argv[j] <= 47)
g->bg = ansi2cucul[argv[j] - 40];
im->bg = ansi2cucul[argv[j] - 40];
else if(argv[j] >= 90 && argv[j] <= 97) else if(argv[j] >= 90 && argv[j] <= 97)
g->fg = ansi2cucul[argv[j] - 90] + 8;
im->fg = ansi2cucul[argv[j] - 90] + 8;
else if(argv[j] >= 100 && argv[j] <= 107) else if(argv[j] >= 100 && argv[j] <= 107)
g->bg = ansi2cucul[argv[j] - 100] + 8;
im->bg = ansi2cucul[argv[j] - 100] + 8;
else switch(argv[j]) else switch(argv[j])
{ {
case 0: /* default rendition */ case 0: /* default rendition */
g->fg = g->dfg;
g->bg = g->dbg;
g->bold = g->blink = g->italics = 0;
g->negative = g->concealed = g->underline = 0;
im->fg = im->dfg;
im->bg = im->dbg;
im->bold = im->blink = im->italics = im->negative
= im->concealed = im->underline = im->faint = im->strike
= im->proportional = 0;
break; break;
case 1: /* bold or increased intensity */ case 1: /* bold or increased intensity */
g->bold = 1;
im->bold = 1;
break; break;
case 2: /* faint, decreased intensity or second colour */ case 2: /* faint, decreased intensity or second colour */
im->faint = 1;
break; break;
case 3: /* italicized */ case 3: /* italicized */
g->italics = 1;
im->italics = 1;
break; break;
case 4: /* singly underlined */ case 4: /* singly underlined */
g->underline = 1;
im->underline = 1;
break; break;
case 5: /* slowly blinking (less then 150 per minute) */ case 5: /* slowly blinking (less then 150 per minute) */
case 6: /* rapidly blinking (150 per minute or more) */ case 6: /* rapidly blinking (150 per minute or more) */
g->blink = 1;
im->blink = 1;
break; break;
case 7: /* negative image */ case 7: /* negative image */
g->negative = 1;
im->negative = 1;
break; break;
case 8: /* concealed characters */ case 8: /* concealed characters */
g->concealed = 1;
im->concealed = 1;
break; break;
case 9: /* crossed-out (characters still legible but marked as to be case 9: /* crossed-out (characters still legible but marked as to be
* deleted */ * deleted */
im->strike = 1;
break; break;
case 21: /* doubly underlined */ case 21: /* doubly underlined */
g->underline = 1;
im->underline = 1;
break; break;
case 22: /* normal colour or normal intensity (neither bold nor case 22: /* normal colour or normal intensity (neither bold nor
* faint) */ * faint) */
g->bold = 0;
im->bold = im->faint = 0;
break; break;
case 23: /* not italicized, not fraktur */ case 23: /* not italicized, not fraktur */
g->italics = 0;
im->italics = 0;
break; break;
case 24: /* not underlined (neither singly nor doubly) */ case 24: /* not underlined (neither singly nor doubly) */
g->underline = 0;
im->underline = 0;
break; break;
case 25: /* steady (not blinking) */ case 25: /* steady (not blinking) */
g->blink = 0;
im->blink = 0;
break; break;
case 26: /* (reserved for proportional spacing as specified in CCITT case 26: /* (reserved for proportional spacing as specified in CCITT
* Recommendation T.61) */ * Recommendation T.61) */
im->proportional = 1;
break; break;
case 27: /* positive image */ case 27: /* positive image */
g->negative = 0;
im->negative = 0;
break; break;
case 28: /* revealed characters */ case 28: /* revealed characters */
g->concealed = 0;
im->concealed = 0;
break; break;
case 29: /* not crossed out */ case 29: /* not crossed out */
im->strike = 0;
break; break;
case 38: /* (reserved for future standardization, intended for setting case 38: /* (reserved for future standardization, intended for setting
* character foreground colour as specified in ISO 8613-6 * character foreground colour as specified in ISO 8613-6
* [CCITT Recommendation T.416]) */ * [CCITT Recommendation T.416]) */
break; break;
case 39: /* default display colour (implementation-defined) */ case 39: /* default display colour (implementation-defined) */
g->fg = g->dfg;
im->fg = im->dfg;
break; break;
case 48: /* (reserved for future standardization, intended for setting case 48: /* (reserved for future standardization, intended for setting
* character background colour as specified in ISO 8613-6 * character background colour as specified in ISO 8613-6
* [CCITT Recommendation T.416]) */ * [CCITT Recommendation T.416]) */
break; break;
case 49: /* default background colour (implementation-defined) */ case 49: /* default background colour (implementation-defined) */
g->bg = g->dbg;
im->bg = im->dbg;
break; break;
case 50: /* (reserved for cancelling the effect of the rendering case 50: /* (reserved for cancelling the effect of the rendering
* aspect established by parameter value 26) */ * aspect established by parameter value 26) */
im->proportional = 0;
break; break;
default: default:
debug("ansi import: unknown sgr %i", argv[j]); debug("ansi import: unknown sgr %i", argv[j]);
@@ -826,24 +870,24 @@ static void ansi_parse_grcm(cucul_canvas_t *cv, struct ansi_grcm *g,
} }
} }


if(g->concealed)
if(im->concealed)
{ {
g->efg = g->ebg = CUCUL_TRANSPARENT;
efg = ebg = CUCUL_TRANSPARENT;
} }
else else
{ {
g->efg = g->negative ? g->bg : g->fg;
g->ebg = g->negative ? g->fg : g->bg;
efg = im->negative ? im->bg : im->fg;
ebg = im->negative ? im->fg : im->bg;


if(g->bold)
if(im->bold)
{ {
if(g->efg < 8)
g->efg += 8;
else if(g->efg == CUCUL_DEFAULT)
g->efg = CUCUL_WHITE;
if(efg < 8)
efg += 8;
else if(efg == CUCUL_DEFAULT)
efg = CUCUL_WHITE;
} }
} }


cucul_set_color_ansi(cv, g->efg, g->ebg);
cucul_set_color_ansi(cv, efg, ebg);
} }



Loading…
Cancel
Save