2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
2006-02-13 02:07:28 +03:00
|
|
|
* Copyright 2006 James Bursa <bursa@users.sourceforge.net>
|
2006-02-16 02:09:55 +03:00
|
|
|
* Copyright 2006 Adrian Lees <adrianl@users.sourceforge.net>
|
2003-02-09 15:58:15 +03:00
|
|
|
*/
|
|
|
|
|
2006-02-13 02:07:28 +03:00
|
|
|
/** \file
|
|
|
|
* Content for text/plain (implementation).
|
|
|
|
*/
|
|
|
|
|
2006-02-16 02:09:55 +03:00
|
|
|
#include <assert.h>
|
2006-02-13 02:07:28 +03:00
|
|
|
#include <errno.h>
|
2006-02-13 03:17:44 +03:00
|
|
|
#include <stddef.h>
|
2006-02-13 02:07:28 +03:00
|
|
|
#include <iconv.h>
|
2004-03-11 05:19:14 +03:00
|
|
|
#include "netsurf/content/content.h"
|
2006-02-13 02:07:28 +03:00
|
|
|
#include "netsurf/css/css.h"
|
|
|
|
#include "netsurf/desktop/gui.h"
|
|
|
|
#include "netsurf/desktop/plotters.h"
|
2006-02-16 02:09:55 +03:00
|
|
|
#include "netsurf/render/box.h"
|
2006-02-13 02:07:28 +03:00
|
|
|
#include "netsurf/render/font.h"
|
2003-02-09 15:58:15 +03:00
|
|
|
#include "netsurf/render/textplain.h"
|
2006-02-13 02:07:28 +03:00
|
|
|
#include "netsurf/utils/log.h"
|
2004-11-22 03:33:04 +03:00
|
|
|
#include "netsurf/utils/messages.h"
|
2006-02-13 02:07:28 +03:00
|
|
|
#include "netsurf/utils/talloc.h"
|
|
|
|
#include "netsurf/utils/utils.h"
|
|
|
|
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2006-02-13 02:07:28 +03:00
|
|
|
#define CHUNK 20480
|
|
|
|
#define MARGIN 4
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2006-02-13 02:07:28 +03:00
|
|
|
static struct css_style textplain_style;
|
2003-02-09 15:58:15 +03:00
|
|
|
|
|
|
|
|
2006-02-13 02:07:28 +03:00
|
|
|
/**
|
|
|
|
* Create a CONTENT_TEXTPLAIN.
|
|
|
|
*/
|
|
|
|
|
2004-06-11 00:41:26 +04:00
|
|
|
bool textplain_create(struct content *c, const char *params[])
|
2003-02-09 15:58:15 +03:00
|
|
|
{
|
2006-02-13 02:07:28 +03:00
|
|
|
unsigned int i;
|
|
|
|
char *utf8_data;
|
|
|
|
const char *encoding = "iso-8859-1";
|
|
|
|
iconv_t iconv_cd;
|
|
|
|
union content_msg_data msg_data;
|
|
|
|
|
|
|
|
textplain_style = css_base_style;
|
|
|
|
textplain_style.font_family = CSS_FONT_FAMILY_MONOSPACE;
|
|
|
|
|
|
|
|
utf8_data = talloc_array(c, char, CHUNK);
|
|
|
|
if (!utf8_data)
|
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
for (i = 0; params[i]; i += 2) {
|
|
|
|
if (strcasecmp(params[i], "charset") == 0) {
|
|
|
|
encoding = talloc_strdup(c, params[i + 1]);
|
|
|
|
if (!encoding)
|
|
|
|
goto no_memory;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
iconv_cd = iconv_open("utf-8", encoding);
|
|
|
|
if (iconv_cd == (iconv_t)(-1) && errno == EINVAL) {
|
|
|
|
LOG(("unsupported encoding \"%s\"", encoding));
|
|
|
|
iconv_cd = iconv_open("utf-8", "iso-8859-1");
|
|
|
|
}
|
|
|
|
if (iconv_cd == (iconv_t)(-1)) {
|
|
|
|
msg_data.error = strerror(errno);
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
warn_user("IconvFailed", strerror(errno));
|
2004-06-11 00:41:26 +04:00
|
|
|
return false;
|
2006-02-13 02:07:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
c->data.textplain.encoding = encoding;
|
|
|
|
c->data.textplain.iconv_cd = iconv_cd;
|
|
|
|
c->data.textplain.converted = 0;
|
|
|
|
c->data.textplain.utf8_data = utf8_data;
|
|
|
|
c->data.textplain.utf8_data_size = 0;
|
|
|
|
c->data.textplain.utf8_data_allocated = CHUNK;
|
2006-02-16 02:09:55 +03:00
|
|
|
c->data.textplain.physical_line = 0;
|
2006-02-13 02:07:28 +03:00
|
|
|
c->data.textplain.physical_line_count = 0;
|
2006-02-16 02:09:55 +03:00
|
|
|
c->data.textplain.formatted_width = 0;
|
2006-02-13 02:07:28 +03:00
|
|
|
|
2004-06-11 00:41:26 +04:00
|
|
|
return true;
|
2006-02-13 02:07:28 +03:00
|
|
|
|
|
|
|
no_memory:
|
|
|
|
msg_data.error = messages_get("NoMemory");
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
return false;
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
|
|
|
|
2006-02-13 02:07:28 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Process data for CONTENT_TEXTPLAIN.
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool textplain_process_data(struct content *c, char *data, unsigned int size)
|
2004-11-22 03:33:04 +03:00
|
|
|
{
|
2006-02-13 02:07:28 +03:00
|
|
|
iconv_t iconv_cd = c->data.textplain.iconv_cd;
|
|
|
|
size_t count;
|
2004-11-22 03:33:04 +03:00
|
|
|
union content_msg_data msg_data;
|
|
|
|
|
2006-02-13 02:07:28 +03:00
|
|
|
do {
|
|
|
|
char *inbuf = c->source_data + c->data.textplain.converted;
|
|
|
|
size_t inbytesleft = c->source_size -
|
|
|
|
c->data.textplain.converted;
|
|
|
|
char *outbuf = c->data.textplain.utf8_data +
|
|
|
|
c->data.textplain.utf8_data_size;
|
|
|
|
size_t outbytesleft = c->data.textplain.utf8_data_allocated -
|
|
|
|
c->data.textplain.utf8_data_size;
|
|
|
|
count = iconv(iconv_cd, &inbuf, &inbytesleft,
|
|
|
|
&outbuf, &outbytesleft);
|
|
|
|
c->data.textplain.converted = inbuf - c->source_data;
|
|
|
|
c->data.textplain.utf8_data_size = c->data.textplain.
|
|
|
|
utf8_data_allocated - outbytesleft;
|
2004-11-22 03:33:04 +03:00
|
|
|
|
2006-02-13 02:07:28 +03:00
|
|
|
if (count == (size_t)(-1) && errno == E2BIG) {
|
|
|
|
size_t allocated = CHUNK +
|
|
|
|
c->data.textplain.utf8_data_allocated;
|
|
|
|
char *utf8_data = talloc_realloc(c,
|
|
|
|
c->data.textplain.utf8_data,
|
|
|
|
char, allocated);
|
|
|
|
if (!utf8_data)
|
|
|
|
goto no_memory;
|
|
|
|
c->data.textplain.utf8_data = utf8_data;
|
|
|
|
c->data.textplain.utf8_data_allocated = allocated;
|
|
|
|
} else if (count == (size_t)(-1) && errno != EINVAL) {
|
|
|
|
msg_data.error = strerror(errno);
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
warn_user("IconvFailed", strerror(errno));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_multitask();
|
|
|
|
} while (!(c->data.textplain.converted == c->source_size ||
|
|
|
|
(count == (size_t)(-1) && errno == EINVAL)));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
no_memory:
|
|
|
|
msg_data.error = messages_get("NoMemory");
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a CONTENT_TEXTPLAIN for display.
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool textplain_convert(struct content *c, int width, int height)
|
|
|
|
{
|
|
|
|
iconv_close(c->data.textplain.iconv_cd);
|
|
|
|
c->data.textplain.iconv_cd = 0;
|
|
|
|
|
|
|
|
textplain_reformat(c, width, height);
|
|
|
|
c->status = CONTENT_STATUS_DONE;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reformat a CONTENT_TEXTPLAIN to a new width.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void textplain_reformat(struct content *c, int width, int height)
|
|
|
|
{
|
|
|
|
char *utf8_data = c->data.textplain.utf8_data;
|
|
|
|
size_t utf8_data_size = c->data.textplain.utf8_data_size;
|
|
|
|
unsigned long line_count = 0;
|
2006-02-16 02:09:55 +03:00
|
|
|
struct textplain_line *line = c->data.textplain.physical_line;
|
|
|
|
struct textplain_line *line1;
|
2006-02-13 02:07:28 +03:00
|
|
|
size_t i, space, col;
|
|
|
|
size_t columns = 80;
|
|
|
|
int character_width;
|
2006-02-16 02:09:55 +03:00
|
|
|
size_t line_start;
|
2006-02-13 02:07:28 +03:00
|
|
|
|
|
|
|
/* compute available columns (assuming monospaced font) - use 8
|
|
|
|
* characters for better accuracy */
|
|
|
|
if (!nsfont_width(&textplain_style, "ABCDEFGH", 8, &character_width))
|
|
|
|
return;
|
|
|
|
columns = (width - MARGIN - MARGIN) * 8 / character_width;
|
|
|
|
|
2006-02-16 02:09:55 +03:00
|
|
|
c->data.textplain.formatted_width = width;
|
|
|
|
|
2006-02-13 02:07:28 +03:00
|
|
|
c->data.textplain.physical_line_count = 0;
|
|
|
|
|
2006-02-16 02:09:55 +03:00
|
|
|
if (!line) {
|
|
|
|
c->data.textplain.physical_line = line =
|
|
|
|
talloc_array(c, struct textplain_line, 1024 + 3);
|
|
|
|
if (!line)
|
2006-02-13 02:07:28 +03:00
|
|
|
goto no_memory;
|
2004-11-22 03:33:04 +03:00
|
|
|
}
|
|
|
|
|
2006-02-16 02:09:55 +03:00
|
|
|
line[line_count++].start = line_start = 0;
|
2006-02-13 02:07:28 +03:00
|
|
|
space = 0;
|
|
|
|
for (i = 0, col = 0; i != utf8_data_size; i++) {
|
2006-02-16 02:09:55 +03:00
|
|
|
bool term = (utf8_data[i] == '\n' || utf8_data[i] == '\r');
|
|
|
|
if (term || col + 1 == columns) {
|
2006-02-13 02:07:28 +03:00
|
|
|
if (line_count % 1024 == 0) {
|
2006-02-16 02:09:55 +03:00
|
|
|
line1 = talloc_realloc(c, line,
|
|
|
|
struct textplain_line, line_count + 1024 + 3);
|
|
|
|
if (!line1)
|
2006-02-13 02:07:28 +03:00
|
|
|
goto no_memory;
|
2006-02-16 02:09:55 +03:00
|
|
|
c->data.textplain.physical_line =
|
|
|
|
line = line1;
|
|
|
|
}
|
|
|
|
if (term) {
|
|
|
|
line[line_count-1].length = i - line_start;
|
|
|
|
|
|
|
|
/* skip second char of CR/LF or LF/CR pair */
|
|
|
|
if (i + 1 < utf8_data_size &&
|
|
|
|
utf8_data[i+1] != utf8_data[i] &&
|
|
|
|
(utf8_data[i+1] == '\n' || utf8_data[i+1] == '\r'))
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (space) {
|
|
|
|
/* break at last space in line */
|
|
|
|
i = space;
|
|
|
|
line[line_count-1].length = (i + 1) - line_start;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
line[line_count-1].length = i - line_start;
|
|
|
|
}
|
|
|
|
line[line_count++].start = line_start = i + 1;
|
2006-02-13 02:07:28 +03:00
|
|
|
col = 0;
|
|
|
|
space = 0;
|
|
|
|
} else {
|
|
|
|
col++;
|
|
|
|
if (utf8_data[i] == ' ')
|
|
|
|
space = i;
|
2004-11-22 03:33:04 +03:00
|
|
|
}
|
|
|
|
}
|
2006-02-16 02:09:55 +03:00
|
|
|
line[line_count-1].length = i - line[line_count-1].start;
|
|
|
|
line[line_count].start = utf8_data_size;
|
2004-11-22 03:33:04 +03:00
|
|
|
|
2006-02-13 02:07:28 +03:00
|
|
|
c->data.textplain.physical_line_count = line_count;
|
|
|
|
c->width = width;
|
|
|
|
c->height = line_count *
|
|
|
|
css_len2px(&textplain_style.font_size.value.length,
|
|
|
|
&textplain_style) * 1.2 + MARGIN + MARGIN;
|
2004-11-22 03:33:04 +03:00
|
|
|
|
2006-02-13 02:07:28 +03:00
|
|
|
return;
|
2004-11-22 03:33:04 +03:00
|
|
|
|
2006-02-13 02:07:28 +03:00
|
|
|
no_memory:
|
|
|
|
LOG(("out of memory (line_count %lu)", line_count));
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
return;
|
2004-11-22 03:33:04 +03:00
|
|
|
}
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2006-02-13 02:07:28 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroy a CONTENT_TEXTPLAIN and free all resources it owns.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void textplain_destroy(struct content *c)
|
|
|
|
{
|
|
|
|
if (c->data.textplain.iconv_cd)
|
|
|
|
iconv_close(c->data.textplain.iconv_cd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draw a CONTENT_TEXTPLAIN using the current set of plotters (plot).
|
|
|
|
*
|
|
|
|
* \param c content of type CONTENT_TEXTPLAIN
|
|
|
|
* \param x coordinate for top-left of redraw
|
|
|
|
* \param y coordinate for top-left of redraw
|
|
|
|
* \param width available width
|
|
|
|
* \param height available height
|
|
|
|
* \param clip_x0 clip rectangle
|
|
|
|
* \param clip_y0 clip rectangle
|
|
|
|
* \param clip_x1 clip rectangle
|
|
|
|
* \param clip_y1 clip rectangle
|
|
|
|
* \param scale scale for redraw
|
|
|
|
* \param background_colour the background colour
|
|
|
|
* \return true if successful, false otherwise
|
|
|
|
*
|
|
|
|
* x, y, clip_[xy][01] are in target coordinates.
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool textplain_redraw(struct content *c, int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
int clip_x0, int clip_y0, int clip_x1, int clip_y1,
|
|
|
|
float scale, unsigned long background_colour)
|
2003-02-09 15:58:15 +03:00
|
|
|
{
|
2006-02-13 02:07:28 +03:00
|
|
|
char *utf8_data = c->data.textplain.utf8_data;
|
2006-02-16 02:09:55 +03:00
|
|
|
long lineno;
|
2006-02-13 02:07:28 +03:00
|
|
|
unsigned long line_count = c->data.textplain.physical_line_count;
|
|
|
|
float line_height = css_len2px(&textplain_style.font_size.value.length,
|
2006-02-16 02:09:55 +03:00
|
|
|
&textplain_style) * 1.2;
|
|
|
|
float scaled_line_height = line_height * scale;
|
|
|
|
long line0 = clip_y0 / scaled_line_height - 1;
|
|
|
|
long line1 = clip_y1 / scaled_line_height + 1;
|
|
|
|
struct textplain_line *line = c->data.textplain.physical_line;
|
2006-02-13 02:07:28 +03:00
|
|
|
size_t length;
|
2006-02-16 02:09:55 +03:00
|
|
|
struct rect clip;
|
|
|
|
|
|
|
|
clip.x0 = clip_x0;
|
|
|
|
clip.y0 = clip_y0;
|
|
|
|
clip.x1 = clip_x1;
|
|
|
|
clip.y1 = clip_y1;
|
2006-02-13 02:07:28 +03:00
|
|
|
|
|
|
|
if (line0 < 0)
|
|
|
|
line0 = 0;
|
|
|
|
if (line1 < 0)
|
|
|
|
line1 = 0;
|
|
|
|
if (line_count < (unsigned long) line0)
|
|
|
|
line0 = line_count;
|
|
|
|
if (line_count < (unsigned long) line1)
|
|
|
|
line1 = line_count;
|
|
|
|
if (line1 < line0)
|
|
|
|
line1 = line0;
|
|
|
|
|
|
|
|
if (!plot.clg(0xffffff))
|
|
|
|
return false;
|
|
|
|
|
2006-02-16 02:09:55 +03:00
|
|
|
if (!line)
|
2006-02-13 02:07:28 +03:00
|
|
|
return true;
|
|
|
|
|
|
|
|
x += MARGIN * scale;
|
|
|
|
y += MARGIN * scale;
|
2006-02-16 02:09:55 +03:00
|
|
|
for (lineno = line0; lineno != line1; lineno++) {
|
|
|
|
length = line[lineno].length;
|
2006-02-13 02:07:28 +03:00
|
|
|
if (!length)
|
|
|
|
continue;
|
2006-02-16 02:09:55 +03:00
|
|
|
if (!text_redraw(utf8_data + line[lineno].start, length,
|
|
|
|
line[lineno].start, false, &textplain_style,
|
|
|
|
x, y + (lineno * scaled_line_height),
|
|
|
|
&clip, line_height, scale,
|
|
|
|
background_colour, false))
|
2006-02-13 02:07:28 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
2006-02-16 02:09:55 +03:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return byte offset within UTF8 textplain content, given the co-ordinates
|
|
|
|
* of a point within a textplain content. 'dir' specifies the direction in
|
|
|
|
* which to search (-1 = above-left, +1 = below-right) if the co-ordinates are not
|
|
|
|
* contained within a line.
|
|
|
|
*
|
|
|
|
* \param c content of type CONTENT_TEXTPLAIN
|
|
|
|
* \param x x ordinate of point
|
|
|
|
* \param y y ordinate of point
|
|
|
|
* \param dir direction of search if not within line
|
|
|
|
* \return ptr to start of line containing (or nearest to) point
|
|
|
|
*/
|
|
|
|
|
2006-03-09 21:55:30 +03:00
|
|
|
size_t textplain_offset_from_coords(struct content *c, int x, int y, int dir)
|
2006-02-16 02:09:55 +03:00
|
|
|
{
|
|
|
|
float line_height = css_len2px(&textplain_style.font_size.value.length,
|
|
|
|
&textplain_style) * 1.2;
|
|
|
|
struct textplain_line *line;
|
|
|
|
int pixel_offset;
|
|
|
|
unsigned nlines;
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
assert(c->type == CONTENT_TEXTPLAIN);
|
|
|
|
|
|
|
|
y = (int)((float)(y - MARGIN) / line_height);
|
|
|
|
x -= MARGIN;
|
|
|
|
|
|
|
|
nlines = c->data.textplain.physical_line_count;
|
|
|
|
if (!nlines)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (y < 0) y = 0;
|
|
|
|
else if (y >= nlines)
|
|
|
|
y = nlines - 1;
|
|
|
|
line = &c->data.textplain.physical_line[y];
|
|
|
|
|
|
|
|
if (x < 0) x = 0;
|
|
|
|
|
|
|
|
nsfont_position_in_string(&textplain_style,
|
|
|
|
c->data.textplain.utf8_data + line->start,
|
|
|
|
line->length,
|
|
|
|
x,
|
|
|
|
&idx,
|
|
|
|
&pixel_offset);
|
|
|
|
|
|
|
|
return line->start + idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a byte offset within the text, return the line number
|
|
|
|
* of the line containing that offset (or -1 if offset invalid)
|
|
|
|
*
|
|
|
|
* \param c content of type CONTENT_TEXTPLAIN
|
|
|
|
* \param offset byte offset within textual representation
|
|
|
|
* \return line number, or -1 if offset invalid (larger than size)
|
|
|
|
*/
|
|
|
|
|
|
|
|
int textplain_find_line(struct content *c, unsigned offset)
|
|
|
|
{
|
|
|
|
struct textplain_line *line = c->data.textplain.physical_line;
|
|
|
|
int nlines = c->data.textplain.physical_line_count;
|
|
|
|
int lineno = 0;
|
|
|
|
|
|
|
|
assert(c->type == CONTENT_TEXTPLAIN);
|
|
|
|
|
|
|
|
if (offset > c->data.textplain.utf8_data_size)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* \todo - implement binary search here */
|
|
|
|
while (lineno < nlines && line[lineno].start < offset)
|
|
|
|
lineno++;
|
|
|
|
if (line[lineno].start > offset)
|
|
|
|
lineno--;
|
|
|
|
|
|
|
|
return lineno;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a range of byte offsets within a UTF8 textplain content,
|
|
|
|
* return a box that fully encloses the text
|
|
|
|
*
|
|
|
|
* \param c content of type CONTENT_TEXTPLAIN
|
|
|
|
* \param start byte offset of start of text range
|
|
|
|
* \param end byte offset of end
|
|
|
|
* \param r rectangle to be completed
|
|
|
|
*/
|
|
|
|
|
|
|
|
void textplain_coords_from_range(struct content *c, unsigned start, unsigned end,
|
|
|
|
struct rect *r)
|
|
|
|
{
|
|
|
|
float line_height = css_len2px(&textplain_style.font_size.value.length,
|
|
|
|
&textplain_style) * 1.2;
|
|
|
|
char *utf8_data = c->data.textplain.utf8_data;
|
|
|
|
struct textplain_line *line;
|
|
|
|
unsigned lineno = 0;
|
|
|
|
unsigned nlines;
|
|
|
|
|
|
|
|
assert(c->type == CONTENT_TEXTPLAIN);
|
|
|
|
assert(start <= end);
|
|
|
|
assert(end <= c->data.textplain.utf8_data_size);
|
|
|
|
|
|
|
|
nlines = c->data.textplain.physical_line_count;
|
|
|
|
line = c->data.textplain.physical_line;
|
|
|
|
|
|
|
|
/* find start */
|
|
|
|
lineno = textplain_find_line(c, start);
|
|
|
|
|
|
|
|
r->y0 = (int)(MARGIN + lineno * line_height);
|
|
|
|
|
|
|
|
if (lineno + 1 <= nlines || line[lineno + 1].start >= end) {
|
|
|
|
/* \todo - it may actually be more efficient just to run
|
|
|
|
forwards most of the time */
|
|
|
|
|
|
|
|
/* find end */
|
|
|
|
lineno = textplain_find_line(c, end);
|
|
|
|
|
|
|
|
r->x0 = 0;
|
|
|
|
r->x1 = c->data.textplain.formatted_width;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* single line */
|
|
|
|
nsfont_width(&textplain_style,
|
|
|
|
utf8_data + line[lineno].start,
|
|
|
|
start - line[lineno].start,
|
|
|
|
&r->x0);
|
|
|
|
|
|
|
|
nsfont_width(&textplain_style,
|
|
|
|
utf8_data + line[lineno].start,
|
|
|
|
min(line[lineno].length, end - line[lineno].start),
|
|
|
|
&r->x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
r->y1 = (int)(MARGIN + (lineno + 1) * line_height);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a pointer to the requested line of text.
|
|
|
|
*
|
|
|
|
* \param c content of type CONTENT_TEXTPLAIN
|
|
|
|
* \param lineno line number
|
|
|
|
* \param poffset receives byte offset of line start within text
|
|
|
|
* \param plen receives length of returned line
|
|
|
|
* \return pointer to text, or NULL if invalid line number
|
|
|
|
*/
|
|
|
|
|
|
|
|
char *textplain_get_line(struct content *c, unsigned lineno,
|
|
|
|
size_t *poffset, size_t *plen)
|
|
|
|
{
|
|
|
|
struct textplain_line *line;
|
|
|
|
|
|
|
|
assert(c->type == CONTENT_TEXTPLAIN);
|
|
|
|
|
|
|
|
if (lineno >= c->data.textplain.physical_line_count)
|
|
|
|
return NULL;
|
|
|
|
line = &c->data.textplain.physical_line[lineno];
|
|
|
|
|
|
|
|
*poffset = line->start;
|
|
|
|
*plen = line->length;
|
|
|
|
return c->data.textplain.utf8_data + line->start;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a pointer to the raw UTF-8 data, as opposed to the reformatted
|
|
|
|
* text to fit the window width. Thus only hard newlines are preserved
|
|
|
|
* in the saved/copied text of a selection.
|
|
|
|
*
|
|
|
|
* \param c content of type CONTENT_TEXTPLAIN
|
|
|
|
* \param start starting byte offset within UTF-8 text
|
|
|
|
* \param end ending byte offset
|
|
|
|
* \param plen receives validated length
|
|
|
|
* \return pointer to text, or NULL if no text
|
|
|
|
*/
|
|
|
|
|
|
|
|
char *textplain_get_raw_data(struct content *c, unsigned start, unsigned end,
|
|
|
|
size_t *plen)
|
|
|
|
{
|
|
|
|
size_t utf8_size = c->data.textplain.utf8_data_size;
|
|
|
|
|
|
|
|
assert(c->type == CONTENT_TEXTPLAIN);
|
|
|
|
|
|
|
|
/* any text at all? */
|
|
|
|
if (!utf8_size) return NULL;
|
|
|
|
|
|
|
|
/* clamp to valid offset range */
|
|
|
|
if (start >= utf8_size) start = utf8_size;
|
|
|
|
if (end >= utf8_size) end = utf8_size;
|
|
|
|
|
|
|
|
*plen = end - start;
|
|
|
|
|
|
|
|
return c->data.textplain.utf8_data + start;
|
|
|
|
}
|