[BACK]Return to grid.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/grid.c, Revision 1.46

1.46    ! nicm        1: /* $OpenBSD: grid.c,v 1.45 2015/09/02 17:12:07 nicm Exp $ */
1.1       nicm        2:
                      3: /*
                      4:  * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
                      5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
                      9:  *
                     10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
                     15:  * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
                     16:  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     17:  */
                     18:
                     19: #include <sys/types.h>
                     20:
1.20      nicm       21: #include <stdlib.h>
1.1       nicm       22: #include <string.h>
                     23:
                     24: #include "tmux.h"
                     25:
                     26: /*
                     27:  * Grid data. This is the basic data structure that represents what is shown on
                     28:  * screen.
                     29:  *
                     30:  * A grid is a grid of cells (struct grid_cell). Lines are not allocated until
                     31:  * cells in that line are written to. The grid is split into history and
                     32:  * viewable data with the history starting at row (line) 0 and extending to
                     33:  * (hsize - 1); from hsize to hsize + (sy - 1) is the viewable data. All
                     34:  * functions in this file work on absolute coordinates, grid-view.c has
                     35:  * functions which work on the screen data.
                     36:  */
                     37:
                     38: /* Default grid cell data. */
1.21      nicm       39: const struct grid_cell grid_default_cell = { 0, 0, 8, 8, (1 << 4) | 1, " " };
1.1       nicm       40:
                     41: #define grid_put_cell(gd, px, py, gc) do {                     \
1.10      nicm       42:        memcpy(&gd->linedata[py].celldata[px],                  \
                     43:            gc, sizeof gd->linedata[py].celldata[px]);          \
1.1       nicm       44: } while (0)
                     45: #define grid_put_utf8(gd, px, py, gc) do {                     \
1.10      nicm       46:        memcpy(&gd->linedata[py].utf8data[px],                  \
                     47:            gc, sizeof gd->linedata[py].utf8data[px]);          \
1.1       nicm       48: } while (0)
                     49:
                     50: int    grid_check_y(struct grid *, u_int);
                     51:
1.43      nicm       52: void   grid_reflow_join(struct grid *, u_int *, struct grid_line *, u_int);
                     53: void   grid_reflow_split(struct grid *, u_int *, struct grid_line *, u_int,
                     54:            u_int);
                     55: void   grid_reflow_move(struct grid *, u_int *, struct grid_line *);
                     56: size_t grid_string_cells_fg(const struct grid_cell *, int *);
                     57: size_t grid_string_cells_bg(const struct grid_cell *, int *);
                     58: void   grid_string_cells_code(const struct grid_cell *,
                     59:            const struct grid_cell *, char *, size_t, int);
                     60:
                     61: /* Check grid y position. */
1.1       nicm       62: int
                     63: grid_check_y(struct grid *gd, u_int py)
                     64: {
                     65:        if ((py) >= (gd)->hsize + (gd)->sy) {
                     66:                log_debug("y out of range: %u", py);
                     67:                return (-1);
                     68:        }
                     69:        return (0);
                     70: }
1.23      nicm       71:
1.1       nicm       72: /* Create a new grid. */
                     73: struct grid *
                     74: grid_create(u_int sx, u_int sy, u_int hlimit)
                     75: {
                     76:        struct grid     *gd;
                     77:
                     78:        gd = xmalloc(sizeof *gd);
                     79:        gd->sx = sx;
                     80:        gd->sy = sy;
                     81:
1.7       nicm       82:        gd->flags = GRID_HISTORY;
                     83:
1.1       nicm       84:        gd->hsize = 0;
                     85:        gd->hlimit = hlimit;
                     86:
1.10      nicm       87:        gd->linedata = xcalloc(gd->sy, sizeof *gd->linedata);
1.1       nicm       88:
                     89:        return (gd);
                     90: }
                     91:
                     92: /* Destroy grid. */
                     93: void
                     94: grid_destroy(struct grid *gd)
                     95: {
1.10      nicm       96:        struct grid_line        *gl;
                     97:        u_int                    yy;
1.1       nicm       98:
                     99:        for (yy = 0; yy < gd->hsize + gd->sy; yy++) {
1.10      nicm      100:                gl = &gd->linedata[yy];
1.20      nicm      101:                free(gl->celldata);
1.1       nicm      102:        }
                    103:
1.20      nicm      104:        free(gd->linedata);
1.1       nicm      105:
1.20      nicm      106:        free(gd);
1.1       nicm      107: }
                    108:
                    109: /* Compare grids. */
                    110: int
                    111: grid_compare(struct grid *ga, struct grid *gb)
                    112: {
1.10      nicm      113:        struct grid_line        *gla, *glb;
1.1       nicm      114:        struct grid_cell        *gca, *gcb;
                    115:        u_int                    xx, yy;
                    116:
1.33      nicm      117:        if (ga->sx != gb->sx || ga->sy != gb->sy)
1.1       nicm      118:                return (1);
                    119:
                    120:        for (yy = 0; yy < ga->sy; yy++) {
1.10      nicm      121:                gla = &ga->linedata[yy];
                    122:                glb = &gb->linedata[yy];
                    123:                if (gla->cellsize != glb->cellsize)
1.1       nicm      124:                        return (1);
                    125:                for (xx = 0; xx < ga->sx; xx++) {
1.10      nicm      126:                        gca = &gla->celldata[xx];
                    127:                        gcb = &glb->celldata[xx];
1.1       nicm      128:                        if (memcmp(gca, gcb, sizeof (struct grid_cell)) != 0)
                    129:                                return (1);
                    130:                }
                    131:        }
                    132:
                    133:        return (0);
                    134: }
                    135:
1.15      nicm      136: /*
                    137:  * Collect lines from the history if at the limit. Free the top (oldest) 10%
                    138:  * and shift up.
                    139:  */
1.1       nicm      140: void
1.15      nicm      141: grid_collect_history(struct grid *gd)
1.1       nicm      142: {
                    143:        u_int   yy;
                    144:
1.15      nicm      145:        if (gd->hsize < gd->hlimit)
                    146:                return;
                    147:
                    148:        yy = gd->hlimit / 10;
                    149:        if (yy < 1)
                    150:                yy = 1;
                    151:
                    152:        grid_move_lines(gd, 0, yy, gd->hsize + gd->sy - yy);
                    153:        gd->hsize -= yy;
                    154: }
                    155:
1.17      nicm      156: /*
1.15      nicm      157:  * Scroll the entire visible screen, moving one line into the history. Just
                    158:  * allocate a new line at the bottom and move the history size indicator.
                    159:  */
                    160: void
                    161: grid_scroll_history(struct grid *gd)
                    162: {
                    163:        u_int   yy;
1.1       nicm      164:
                    165:        yy = gd->hsize + gd->sy;
1.41      nicm      166:        gd->linedata = xreallocarray(gd->linedata, yy + 1,
                    167:            sizeof *gd->linedata);
1.15      nicm      168:        memset(&gd->linedata[yy], 0, sizeof gd->linedata[yy]);
1.17      nicm      169:
1.15      nicm      170:        gd->hsize++;
                    171: }
1.1       nicm      172:
1.46    ! nicm      173: /* Clear the history. */
        !           174: void
        !           175: grid_clear_history(struct grid *gd)
        !           176: {
        !           177:        grid_clear_lines(gd, 0, gd->hsize);
        !           178:        grid_move_lines(gd, 0, gd->hsize, gd->sy);
        !           179:
        !           180:        gd->hsize = 0;
        !           181:        gd->linedata = xreallocarray(gd->linedata, gd->sy,
        !           182:            sizeof *gd->linedata);
        !           183: }
        !           184:
1.15      nicm      185: /* Scroll a region up, moving the top line into the history. */
                    186: void
                    187: grid_scroll_history_region(struct grid *gd, u_int upper, u_int lower)
                    188: {
                    189:        struct grid_line        *gl_history, *gl_upper, *gl_lower;
                    190:        u_int                    yy;
                    191:
                    192:        /* Create a space for a new line. */
                    193:        yy = gd->hsize + gd->sy;
1.41      nicm      194:        gd->linedata = xreallocarray(gd->linedata, yy + 1,
                    195:            sizeof *gd->linedata);
1.1       nicm      196:
1.15      nicm      197:        /* Move the entire screen down to free a space for this line. */
                    198:        gl_history = &gd->linedata[gd->hsize];
                    199:        memmove(gl_history + 1, gl_history, gd->sy * sizeof *gl_history);
                    200:
                    201:        /* Adjust the region and find its start and end. */
                    202:        upper++;
                    203:        gl_upper = &gd->linedata[upper];
                    204:        lower++;
                    205:        gl_lower = &gd->linedata[lower];
                    206:
                    207:        /* Move the line into the history. */
                    208:        memcpy(gl_history, gl_upper, sizeof *gl_history);
                    209:
                    210:        /* Then move the region up and clear the bottom line. */
                    211:        memmove(gl_upper, gl_upper + 1, (lower - upper) * sizeof *gl_upper);
                    212:        memset(gl_lower, 0, sizeof *gl_lower);
                    213:
                    214:        /* Move the history offset down over the line. */
1.1       nicm      215:        gd->hsize++;
                    216: }
                    217:
                    218: /* Expand line to fit to cell. */
                    219: void
1.14      nicm      220: grid_expand_line(struct grid *gd, u_int py, u_int sx)
1.1       nicm      221: {
1.10      nicm      222:        struct grid_line        *gl;
1.14      nicm      223:        u_int                    xx;
1.1       nicm      224:
1.10      nicm      225:        gl = &gd->linedata[py];
1.14      nicm      226:        if (sx <= gl->cellsize)
1.1       nicm      227:                return;
                    228:
1.41      nicm      229:        gl->celldata = xreallocarray(gl->celldata, sx, sizeof *gl->celldata);
1.10      nicm      230:        for (xx = gl->cellsize; xx < sx; xx++)
1.1       nicm      231:                grid_put_cell(gd, xx, py, &grid_default_cell);
1.10      nicm      232:        gl->cellsize = sx;
1.1       nicm      233: }
                    234:
1.26      nicm      235: /* Peek at grid line. */
                    236: const struct grid_line *
                    237: grid_peek_line(struct grid *gd, u_int py)
                    238: {
                    239:        if (grid_check_y(gd, py) != 0)
                    240:                return (NULL);
                    241:        return (&gd->linedata[py]);
                    242: }
                    243:
1.1       nicm      244: /* Get cell for reading. */
                    245: const struct grid_cell *
                    246: grid_peek_cell(struct grid *gd, u_int px, u_int py)
                    247: {
                    248:        if (grid_check_y(gd, py) != 0)
                    249:                return (&grid_default_cell);
                    250:
1.10      nicm      251:        if (px >= gd->linedata[py].cellsize)
1.1       nicm      252:                return (&grid_default_cell);
1.10      nicm      253:        return (&gd->linedata[py].celldata[px]);
1.1       nicm      254: }
                    255:
                    256: /* Get cell at relative position (for writing). */
                    257: struct grid_cell *
                    258: grid_get_cell(struct grid *gd, u_int px, u_int py)
                    259: {
                    260:        if (grid_check_y(gd, py) != 0)
                    261:                return (NULL);
                    262:
                    263:        grid_expand_line(gd, py, px + 1);
1.10      nicm      264:        return (&gd->linedata[py].celldata[px]);
1.1       nicm      265: }
                    266:
                    267: /* Set cell at relative position. */
                    268: void
1.31      nicm      269: grid_set_cell(struct grid *gd, u_int px, u_int py, const struct grid_cell *gc)
1.1       nicm      270: {
                    271:        if (grid_check_y(gd, py) != 0)
                    272:                return;
                    273:
                    274:        grid_expand_line(gd, py, px + 1);
                    275:        grid_put_cell(gd, px, py, gc);
                    276: }
                    277:
1.14      nicm      278: /* Clear area. */
1.1       nicm      279: void
                    280: grid_clear(struct grid *gd, u_int px, u_int py, u_int nx, u_int ny)
                    281: {
                    282:        u_int   xx, yy;
                    283:
                    284:        if (nx == 0 || ny == 0)
                    285:                return;
                    286:
                    287:        if (px == 0 && nx == gd->sx) {
                    288:                grid_clear_lines(gd, py, ny);
                    289:                return;
                    290:        }
                    291:
                    292:        if (grid_check_y(gd, py) != 0)
                    293:                return;
                    294:        if (grid_check_y(gd, py + ny - 1) != 0)
                    295:                return;
                    296:
                    297:        for (yy = py; yy < py + ny; yy++) {
1.14      nicm      298:                if (px >= gd->linedata[yy].cellsize)
                    299:                        continue;
                    300:                if (px + nx >= gd->linedata[yy].cellsize) {
                    301:                        gd->linedata[yy].cellsize = px;
                    302:                        continue;
                    303:                }
1.1       nicm      304:                for (xx = px; xx < px + nx; xx++) {
1.10      nicm      305:                        if (xx >= gd->linedata[yy].cellsize)
1.1       nicm      306:                                break;
                    307:                        grid_put_cell(gd, xx, yy, &grid_default_cell);
                    308:                }
                    309:        }
                    310: }
                    311:
                    312: /* Clear lines. This just frees and truncates the lines. */
                    313: void
                    314: grid_clear_lines(struct grid *gd, u_int py, u_int ny)
                    315: {
1.10      nicm      316:        struct grid_line        *gl;
                    317:        u_int                    yy;
1.1       nicm      318:
                    319:        if (ny == 0)
                    320:                return;
                    321:
                    322:        if (grid_check_y(gd, py) != 0)
                    323:                return;
                    324:        if (grid_check_y(gd, py + ny - 1) != 0)
                    325:                return;
                    326:
                    327:        for (yy = py; yy < py + ny; yy++) {
1.10      nicm      328:                gl = &gd->linedata[yy];
1.20      nicm      329:                free(gl->celldata);
1.10      nicm      330:                memset(gl, 0, sizeof *gl);
1.1       nicm      331:        }
                    332: }
                    333:
                    334: /* Move a group of lines. */
                    335: void
                    336: grid_move_lines(struct grid *gd, u_int dy, u_int py, u_int ny)
                    337: {
                    338:        u_int   yy;
                    339:
                    340:        if (ny == 0 || py == dy)
                    341:                return;
                    342:
                    343:        if (grid_check_y(gd, py) != 0)
                    344:                return;
                    345:        if (grid_check_y(gd, py + ny - 1) != 0)
                    346:                return;
                    347:        if (grid_check_y(gd, dy) != 0)
                    348:                return;
                    349:        if (grid_check_y(gd, dy + ny - 1) != 0)
                    350:                return;
                    351:
                    352:        /* Free any lines which are being replaced. */
                    353:        for (yy = dy; yy < dy + ny; yy++) {
                    354:                if (yy >= py && yy < py + ny)
                    355:                        continue;
                    356:                grid_clear_lines(gd, yy, 1);
                    357:        }
                    358:
1.46    ! nicm      359:        memmove(&gd->linedata[dy], &gd->linedata[py],
        !           360:            ny * (sizeof *gd->linedata));
1.1       nicm      361:
                    362:        /* Wipe any lines that have been moved (without freeing them). */
                    363:        for (yy = py; yy < py + ny; yy++) {
                    364:                if (yy >= dy && yy < dy + ny)
                    365:                        continue;
1.10      nicm      366:                memset(&gd->linedata[yy], 0, sizeof gd->linedata[yy]);
1.1       nicm      367:        }
                    368: }
                    369:
                    370: /* Move a group of cells. */
                    371: void
                    372: grid_move_cells(struct grid *gd, u_int dx, u_int px, u_int py, u_int nx)
                    373: {
1.10      nicm      374:        struct grid_line        *gl;
                    375:        u_int                    xx;
1.1       nicm      376:
                    377:        if (nx == 0 || px == dx)
                    378:                return;
                    379:
                    380:        if (grid_check_y(gd, py) != 0)
                    381:                return;
1.10      nicm      382:        gl = &gd->linedata[py];
1.1       nicm      383:
                    384:        grid_expand_line(gd, py, px + nx);
                    385:        grid_expand_line(gd, py, dx + nx);
1.46    ! nicm      386:        memmove(&gl->celldata[dx], &gl->celldata[px],
        !           387:            nx * sizeof *gl->celldata);
1.1       nicm      388:
                    389:        /* Wipe any cells that have been moved. */
                    390:        for (xx = px; xx < px + nx; xx++) {
                    391:                if (xx >= dx && xx < dx + nx)
                    392:                        continue;
                    393:                grid_put_cell(gd, xx, py, &grid_default_cell);
                    394:        }
1.3       nicm      395: }
                    396:
1.24      nicm      397: /* Get ANSI foreground sequence. */
                    398: size_t
                    399: grid_string_cells_fg(const struct grid_cell *gc, int *values)
                    400: {
                    401:        size_t  n;
                    402:
                    403:        n = 0;
                    404:        if (gc->flags & GRID_FLAG_FG256) {
                    405:                values[n++] = 38;
                    406:                values[n++] = 5;
                    407:                values[n++] = gc->fg;
                    408:        } else {
                    409:                switch (gc->fg) {
1.45      nicm      410:                case 0:
                    411:                case 1:
                    412:                case 2:
                    413:                case 3:
                    414:                case 4:
                    415:                case 5:
                    416:                case 6:
                    417:                case 7:
                    418:                        values[n++] = gc->fg + 30;
                    419:                        break;
                    420:                case 8:
                    421:                        values[n++] = 39;
                    422:                        break;
                    423:                case 90:
                    424:                case 91:
                    425:                case 92:
                    426:                case 93:
                    427:                case 94:
                    428:                case 95:
                    429:                case 96:
                    430:                case 97:
                    431:                        values[n++] = gc->fg;
                    432:                        break;
1.24      nicm      433:                }
                    434:        }
                    435:        return (n);
                    436: }
                    437:
                    438: /* Get ANSI background sequence. */
                    439: size_t
                    440: grid_string_cells_bg(const struct grid_cell *gc, int *values)
                    441: {
                    442:        size_t  n;
                    443:
                    444:        n = 0;
                    445:        if (gc->flags & GRID_FLAG_BG256) {
                    446:                values[n++] = 48;
                    447:                values[n++] = 5;
                    448:                values[n++] = gc->bg;
                    449:        } else {
                    450:                switch (gc->bg) {
                    451:                case 0:
                    452:                case 1:
                    453:                case 2:
                    454:                case 3:
                    455:                case 4:
                    456:                case 5:
                    457:                case 6:
                    458:                case 7:
                    459:                        values[n++] = gc->bg + 40;
                    460:                        break;
                    461:                case 8:
                    462:                        values[n++] = 49;
                    463:                        break;
                    464:                case 100:
                    465:                case 101:
                    466:                case 102:
                    467:                case 103:
                    468:                case 104:
                    469:                        case 105:
                    470:                case 106:
                    471:                case 107:
                    472:                        values[n++] = gc->bg - 10;
                    473:                        break;
                    474:                }
                    475:        }
                    476:        return (n);
                    477: }
                    478:
                    479: /*
                    480:  * Returns ANSI code to set particular attributes (colour, bold and so on)
                    481:  * given a current state. The output buffer must be able to hold at least 57
                    482:  * bytes.
                    483:  */
                    484: void
                    485: grid_string_cells_code(const struct grid_cell *lastgc,
1.26      nicm      486:     const struct grid_cell *gc, char *buf, size_t len, int escape_c0)
1.24      nicm      487: {
                    488:        int     oldc[16], newc[16], s[32];
                    489:        size_t  noldc, nnewc, n, i;
                    490:        u_int   attr = gc->attr;
                    491:        u_int   lastattr = lastgc->attr;
                    492:        char    tmp[64];
                    493:
                    494:        struct {
                    495:                u_int   mask;
                    496:                u_int   code;
                    497:        } attrs[] = {
                    498:                { GRID_ATTR_BRIGHT, 1 },
                    499:                { GRID_ATTR_DIM, 2 },
                    500:                { GRID_ATTR_ITALICS, 3 },
                    501:                { GRID_ATTR_UNDERSCORE, 4 },
                    502:                { GRID_ATTR_BLINK, 5 },
                    503:                { GRID_ATTR_REVERSE, 7 },
                    504:                { GRID_ATTR_HIDDEN, 8 }
                    505:        };
                    506:        n = 0;
                    507:
                    508:        /* If any attribute is removed, begin with 0. */
                    509:        for (i = 0; i < nitems(attrs); i++) {
                    510:                if (!(attr & attrs[i].mask) && (lastattr & attrs[i].mask)) {
                    511:                        s[n++] = 0;
1.25      nicm      512:                        lastattr &= GRID_ATTR_CHARSET;
1.24      nicm      513:                        break;
                    514:                }
                    515:        }
                    516:        /* For each attribute that is newly set, add its code. */
                    517:        for (i = 0; i < nitems(attrs); i++) {
                    518:                if ((attr & attrs[i].mask) && !(lastattr & attrs[i].mask))
                    519:                        s[n++] = attrs[i].code;
                    520:        }
                    521:
1.39      nicm      522:        /* If the foreground colour changed, append its parameters. */
1.24      nicm      523:        nnewc = grid_string_cells_fg(gc, newc);
                    524:        noldc = grid_string_cells_fg(lastgc, oldc);
1.39      nicm      525:        if (nnewc != noldc || memcmp(newc, oldc, nnewc * sizeof newc[0]) != 0) {
1.24      nicm      526:                for (i = 0; i < nnewc; i++)
                    527:                        s[n++] = newc[i];
                    528:        }
                    529:
1.39      nicm      530:        /* If the background colour changed, append its parameters. */
1.24      nicm      531:        nnewc = grid_string_cells_bg(gc, newc);
                    532:        noldc = grid_string_cells_bg(lastgc, oldc);
1.39      nicm      533:        if (nnewc != noldc || memcmp(newc, oldc, nnewc * sizeof newc[0]) != 0) {
1.24      nicm      534:                for (i = 0; i < nnewc; i++)
                    535:                        s[n++] = newc[i];
                    536:        }
                    537:
                    538:        /* If there are any parameters, append an SGR code. */
                    539:        *buf = '\0';
                    540:        if (n > 0) {
1.26      nicm      541:                if (escape_c0)
                    542:                        strlcat(buf, "\\033[", len);
                    543:                else
                    544:                        strlcat(buf, "\033[", len);
1.24      nicm      545:                for (i = 0; i < n; i++) {
                    546:                        if (i + 1 < n)
                    547:                                xsnprintf(tmp, sizeof tmp, "%d;", s[i]);
                    548:                        else
                    549:                                xsnprintf(tmp, sizeof tmp, "%d", s[i]);
                    550:                        strlcat(buf, tmp, len);
                    551:                }
                    552:                strlcat(buf, "m", len);
                    553:        }
                    554:
                    555:        /* Append shift in/shift out if needed. */
1.26      nicm      556:        if ((attr & GRID_ATTR_CHARSET) && !(lastattr & GRID_ATTR_CHARSET)) {
                    557:                if (escape_c0)
                    558:                        strlcat(buf, "\\016", len);  /* SO */
                    559:                else
                    560:                        strlcat(buf, "\016", len);  /* SO */
                    561:        }
                    562:        if (!(attr & GRID_ATTR_CHARSET) && (lastattr & GRID_ATTR_CHARSET)) {
                    563:                if (escape_c0)
                    564:                        strlcat(buf, "\\017", len);  /* SI */
                    565:                else
                    566:                        strlcat(buf, "\017", len);  /* SI */
                    567:        }
1.24      nicm      568: }
                    569:
1.3       nicm      570: /* Convert cells into a string. */
                    571: char *
1.24      nicm      572: grid_string_cells(struct grid *gd, u_int px, u_int py, u_int nx,
1.28      nicm      573:     struct grid_cell **lastgc, int with_codes, int escape_c0, int trim)
1.3       nicm      574: {
1.17      nicm      575:        const struct grid_cell  *gc;
1.24      nicm      576:        static struct grid_cell  lastgc1;
1.21      nicm      577:        struct utf8_data         ud;
1.38      nicm      578:        const char              *data;
1.24      nicm      579:        char                    *buf, code[128];
1.26      nicm      580:        size_t                   len, off, size, codelen;
1.16      nicm      581:        u_int                    xx;
1.30      nicm      582:        const struct grid_line  *gl;
1.3       nicm      583:
1.29      nicm      584:        if (lastgc != NULL && *lastgc == NULL) {
1.24      nicm      585:                memcpy(&lastgc1, &grid_default_cell, sizeof lastgc1);
                    586:                *lastgc = &lastgc1;
                    587:        }
                    588:
1.3       nicm      589:        len = 128;
                    590:        buf = xmalloc(len);
                    591:        off = 0;
                    592:
1.30      nicm      593:        gl = grid_peek_line(gd, py);
1.3       nicm      594:        for (xx = px; xx < px + nx; xx++) {
1.30      nicm      595:                if (gl == NULL || xx >= gl->cellsize)
                    596:                        break;
                    597:                gc = &gl->celldata[xx];
1.3       nicm      598:                if (gc->flags & GRID_FLAG_PADDING)
                    599:                        continue;
1.21      nicm      600:                grid_cell_get(gc, &ud);
1.3       nicm      601:
1.24      nicm      602:                if (with_codes) {
1.26      nicm      603:                        grid_string_cells_code(*lastgc, gc, code, sizeof code,
                    604:                            escape_c0);
1.24      nicm      605:                        codelen = strlen(code);
                    606:                        memcpy(*lastgc, gc, sizeof *gc);
                    607:                } else
                    608:                        codelen = 0;
                    609:
1.26      nicm      610:                data = ud.data;
                    611:                size = ud.size;
                    612:                if (escape_c0 && size == 1 && *data == '\\') {
1.27      nicm      613:                        data = "\\\\";
1.26      nicm      614:                        size = 2;
                    615:                }
                    616:
                    617:                while (len < off + size + codelen + 1) {
1.41      nicm      618:                        buf = xreallocarray(buf, 2, len);
1.21      nicm      619:                        len *= 2;
                    620:                }
1.3       nicm      621:
1.24      nicm      622:                if (codelen != 0) {
                    623:                        memcpy(buf + off, code, codelen);
                    624:                        off += codelen;
                    625:                }
1.26      nicm      626:                memcpy(buf + off, data, size);
                    627:                off += size;
1.3       nicm      628:        }
1.17      nicm      629:
1.37      nicm      630:        if (trim) {
1.28      nicm      631:                while (off > 0 && buf[off - 1] == ' ')
                    632:                        off--;
1.32      nicm      633:        }
1.3       nicm      634:        buf[off] = '\0';
1.26      nicm      635:
1.3       nicm      636:        return (buf);
1.7       nicm      637: }
                    638:
1.17      nicm      639: /*
1.7       nicm      640:  * Duplicate a set of lines between two grids. If there aren't enough lines in
                    641:  * either source or destination, the number of lines is limited to the number
                    642:  * available.
                    643:  */
                    644: void
1.31      nicm      645: grid_duplicate_lines(struct grid *dst, u_int dy, struct grid *src, u_int sy,
                    646:     u_int ny)
1.7       nicm      647: {
1.10      nicm      648:        struct grid_line        *dstl, *srcl;
                    649:        u_int                    yy;
1.7       nicm      650:
                    651:        if (dy + ny > dst->hsize + dst->sy)
                    652:                ny = dst->hsize + dst->sy - dy;
                    653:        if (sy + ny > src->hsize + src->sy)
                    654:                ny = src->hsize + src->sy - sy;
                    655:        grid_clear_lines(dst, dy, ny);
                    656:
                    657:        for (yy = 0; yy < ny; yy++) {
1.11      nicm      658:                srcl = &src->linedata[sy];
                    659:                dstl = &dst->linedata[dy];
1.10      nicm      660:
                    661:                memcpy(dstl, srcl, sizeof *dstl);
                    662:                if (srcl->cellsize != 0) {
1.42      deraadt   663:                        dstl->celldata = xreallocarray(NULL,
1.10      nicm      664:                            srcl->cellsize, sizeof *dstl->celldata);
                    665:                        memcpy(dstl->celldata, srcl->celldata,
                    666:                            srcl->cellsize * sizeof *dstl->celldata);
1.44      nicm      667:                } else
                    668:                        dstl->celldata = NULL;
1.7       nicm      669:
1.10      nicm      670:                sy++;
                    671:                dy++;
1.7       nicm      672:        }
1.22      nicm      673: }
                    674:
1.23      nicm      675: /* Join line data. */
                    676: void
                    677: grid_reflow_join(struct grid *dst, u_int *py, struct grid_line *src_gl,
                    678:     u_int new_x)
                    679: {
                    680:        struct grid_line        *dst_gl = &dst->linedata[(*py) - 1];
                    681:        u_int                    left, to_copy, ox, nx;
                    682:
                    683:        /* How much is left on the old line? */
                    684:        left = new_x - dst_gl->cellsize;
                    685:
                    686:        /* Work out how much to append. */
                    687:        to_copy = src_gl->cellsize;
                    688:        if (to_copy > left)
                    689:                to_copy = left;
                    690:        ox = dst_gl->cellsize;
                    691:        nx = ox + to_copy;
                    692:
                    693:        /* Resize the destination line. */
1.41      nicm      694:        dst_gl->celldata = xreallocarray(dst_gl->celldata, nx,
1.23      nicm      695:            sizeof *dst_gl->celldata);
                    696:        dst_gl->cellsize = nx;
                    697:
                    698:        /* Append as much as possible. */
                    699:        memcpy(&dst_gl->celldata[ox], &src_gl->celldata[0],
                    700:            to_copy * sizeof src_gl->celldata[0]);
                    701:
                    702:        /* If there is any left in the source, split it. */
                    703:        if (src_gl->cellsize > to_copy) {
                    704:                dst_gl->flags |= GRID_LINE_WRAPPED;
                    705:
                    706:                src_gl->cellsize -= to_copy;
                    707:                grid_reflow_split(dst, py, src_gl, new_x, to_copy);
                    708:        }
                    709: }
                    710:
                    711: /* Split line data. */
                    712: void
                    713: grid_reflow_split(struct grid *dst, u_int *py, struct grid_line *src_gl,
                    714:     u_int new_x, u_int offset)
                    715: {
                    716:        struct grid_line        *dst_gl = NULL;
                    717:        u_int                    to_copy;
                    718:
                    719:        /* Loop and copy sections of the source line. */
                    720:        while (src_gl->cellsize > 0) {
                    721:                /* Create new line. */
                    722:                if (*py >= dst->hsize + dst->sy)
                    723:                        grid_scroll_history(dst);
                    724:                dst_gl = &dst->linedata[*py];
                    725:                (*py)++;
                    726:
                    727:                /* How much should we copy? */
                    728:                to_copy = new_x;
                    729:                if (to_copy > src_gl->cellsize)
                    730:                        to_copy = src_gl->cellsize;
                    731:
                    732:                /* Expand destination line. */
1.41      nicm      733:                dst_gl->celldata = xreallocarray(NULL, to_copy,
1.40      nicm      734:                    sizeof *dst_gl->celldata);
1.23      nicm      735:                dst_gl->cellsize = to_copy;
                    736:                dst_gl->flags |= GRID_LINE_WRAPPED;
                    737:
                    738:                /* Copy the data. */
1.35      nicm      739:                memcpy(&dst_gl->celldata[0], &src_gl->celldata[offset],
1.23      nicm      740:                    to_copy * sizeof dst_gl->celldata[0]);
                    741:
                    742:                /* Move offset and reduce old line size. */
                    743:                offset += to_copy;
                    744:                src_gl->cellsize -= to_copy;
                    745:        }
                    746:
                    747:        /* Last line is not wrapped. */
                    748:        if (dst_gl != NULL)
                    749:                dst_gl->flags &= ~GRID_LINE_WRAPPED;
                    750: }
                    751:
                    752: /* Move line data. */
                    753: void
                    754: grid_reflow_move(struct grid *dst, u_int *py, struct grid_line *src_gl)
                    755: {
                    756:        struct grid_line        *dst_gl;
                    757:
                    758:        /* Create new line. */
                    759:        if (*py >= dst->hsize + dst->sy)
                    760:                grid_scroll_history(dst);
                    761:        dst_gl = &dst->linedata[*py];
                    762:        (*py)++;
                    763:
                    764:        /* Copy the old line. */
                    765:        memcpy(dst_gl, src_gl, sizeof *dst_gl);
                    766:        dst_gl->flags &= ~GRID_LINE_WRAPPED;
                    767:
                    768:        /* Clear old line. */
                    769:        src_gl->celldata = NULL;
                    770: }
                    771:
1.22      nicm      772: /*
1.23      nicm      773:  * Reflow lines from src grid into dst grid of width new_x. Returns number of
                    774:  * lines fewer in the visible area. The source grid is destroyed.
1.22      nicm      775:  */
                    776: u_int
1.23      nicm      777: grid_reflow(struct grid *dst, struct grid *src, u_int new_x)
1.22      nicm      778: {
1.23      nicm      779:        u_int                    py, sy, line;
1.22      nicm      780:        int                      previous_wrapped;
1.23      nicm      781:        struct grid_line        *src_gl;
                    782:
                    783:        py = 0;
                    784:        sy = src->sy;
1.22      nicm      785:
1.23      nicm      786:        previous_wrapped = 0;
                    787:        for (line = 0; line < sy + src->hsize; line++) {
                    788:                src_gl = src->linedata + line;
1.22      nicm      789:                if (!previous_wrapped) {
1.23      nicm      790:                        /* Wasn't wrapped. If smaller, move to destination. */
                    791:                        if (src_gl->cellsize <= new_x)
                    792:                                grid_reflow_move(dst, &py, src_gl);
                    793:                        else
                    794:                                grid_reflow_split(dst, &py, src_gl, new_x, 0);
                    795:                } else {
                    796:                        /* Previous was wrapped. Try to join. */
                    797:                        grid_reflow_join(dst, &py, src_gl, new_x);
1.22      nicm      798:                }
1.23      nicm      799:                previous_wrapped = src_gl->flags & GRID_LINE_WRAPPED;
1.22      nicm      800:        }
                    801:
1.23      nicm      802:        grid_destroy(src);
                    803:
                    804:        if (py > sy)
1.22      nicm      805:                return (0);
1.23      nicm      806:        return (sy - py);
1.1       nicm      807: }