2011-11-07 13:46:58 -06:00
|
|
|
/*
|
2011-11-07 16:52:18 -06:00
|
|
|
* pluma-document-output-stream.c
|
|
|
|
* This file is part of pluma
|
2011-11-07 13:46:58 -06:00
|
|
|
*
|
|
|
|
* Copyright (C) 2010 - Ignacio Casal Quinteiro
|
|
|
|
*
|
2011-11-07 16:52:18 -06:00
|
|
|
* pluma is free software; you can redistribute it and/or modify
|
2011-11-07 13:46:58 -06:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
2011-11-07 16:52:18 -06:00
|
|
|
* pluma is distributed in the hope that it will be useful,
|
2011-11-07 13:46:58 -06:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2011-11-07 16:52:18 -06:00
|
|
|
* along with pluma; if not, write to the Free Software
|
2011-11-07 13:46:58 -06:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <glib.h>
|
|
|
|
#include <glib/gi18n.h>
|
|
|
|
#include <gio/gio.h>
|
2011-11-07 16:52:18 -06:00
|
|
|
#include "pluma-document-output-stream.h"
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
/* NOTE: never use async methods on this stream, the stream is just
|
|
|
|
* a wrapper around GtkTextBuffer api so that we can use GIO Stream
|
|
|
|
* methods, but the undelying code operates on a GtkTextBuffer, so
|
|
|
|
* there is no I/O involved and should be accessed only by the main
|
|
|
|
* thread */
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
#define PLUMA_DOCUMENT_OUTPUT_STREAM_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE((object),\
|
|
|
|
PLUMA_TYPE_DOCUMENT_OUTPUT_STREAM,\
|
|
|
|
PlumaDocumentOutputStreamPrivate))
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
#define MAX_UNICHAR_LEN 6
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
struct _PlumaDocumentOutputStreamPrivate
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaDocument *doc;
|
2011-11-07 13:46:58 -06:00
|
|
|
GtkTextIter pos;
|
|
|
|
|
|
|
|
gchar *buffer;
|
|
|
|
gsize buflen;
|
|
|
|
|
|
|
|
guint is_initialized : 1;
|
|
|
|
guint is_closed : 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_DOCUMENT
|
|
|
|
};
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
G_DEFINE_TYPE (PlumaDocumentOutputStream, pluma_document_output_stream, G_TYPE_OUTPUT_STREAM)
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
static gssize pluma_document_output_stream_write (GOutputStream *stream,
|
2011-11-07 13:46:58 -06:00
|
|
|
const void *buffer,
|
|
|
|
gsize count,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
|
2015-10-08 11:00:51 -05:00
|
|
|
static gboolean pluma_document_output_stream_flush (GOutputStream *stream,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
static gboolean pluma_document_output_stream_close (GOutputStream *stream,
|
2011-11-07 13:46:58 -06:00
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_document_output_stream_set_property (GObject *object,
|
2011-11-07 13:46:58 -06:00
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaDocumentOutputStream *stream = PLUMA_DOCUMENT_OUTPUT_STREAM (object);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_DOCUMENT:
|
2011-11-07 16:52:18 -06:00
|
|
|
stream->priv->doc = PLUMA_DOCUMENT (g_value_get_object (value));
|
2011-11-07 13:46:58 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_document_output_stream_get_property (GObject *object,
|
2011-11-07 13:46:58 -06:00
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaDocumentOutputStream *stream = PLUMA_DOCUMENT_OUTPUT_STREAM (object);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_DOCUMENT:
|
|
|
|
g_value_set_object (value, stream->priv->doc);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_document_output_stream_finalize (GObject *object)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaDocumentOutputStream *stream = PLUMA_DOCUMENT_OUTPUT_STREAM (object);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
g_free (stream->priv->buffer);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
G_OBJECT_CLASS (pluma_document_output_stream_parent_class)->finalize (object);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_document_output_stream_constructed (GObject *object)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaDocumentOutputStream *stream = PLUMA_DOCUMENT_OUTPUT_STREAM (object);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
if (!stream->priv->doc)
|
|
|
|
{
|
|
|
|
g_critical ("This should never happen, a problem happened constructing the Document Output Stream!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Init the undoable action */
|
|
|
|
gtk_source_buffer_begin_not_undoable_action (GTK_SOURCE_BUFFER (stream->priv->doc));
|
|
|
|
/* clear the buffer */
|
|
|
|
gtk_text_buffer_set_text (GTK_TEXT_BUFFER (stream->priv->doc),
|
|
|
|
"", 0);
|
|
|
|
gtk_text_buffer_set_modified (GTK_TEXT_BUFFER (stream->priv->doc),
|
|
|
|
FALSE);
|
|
|
|
|
|
|
|
gtk_source_buffer_end_not_undoable_action (GTK_SOURCE_BUFFER (stream->priv->doc));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_document_output_stream_class_init (PlumaDocumentOutputStreamClass *klass)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GOutputStreamClass *stream_class = G_OUTPUT_STREAM_CLASS (klass);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
object_class->get_property = pluma_document_output_stream_get_property;
|
|
|
|
object_class->set_property = pluma_document_output_stream_set_property;
|
|
|
|
object_class->finalize = pluma_document_output_stream_finalize;
|
|
|
|
object_class->constructed = pluma_document_output_stream_constructed;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
stream_class->write_fn = pluma_document_output_stream_write;
|
2015-10-08 11:00:51 -05:00
|
|
|
stream_class->flush = pluma_document_output_stream_flush;
|
2011-11-07 16:52:18 -06:00
|
|
|
stream_class->close_fn = pluma_document_output_stream_close;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_DOCUMENT,
|
|
|
|
g_param_spec_object ("document",
|
|
|
|
"Document",
|
|
|
|
"The document which is written",
|
2011-11-07 16:52:18 -06:00
|
|
|
PLUMA_TYPE_DOCUMENT,
|
2011-11-07 13:46:58 -06:00
|
|
|
G_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT_ONLY));
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
g_type_class_add_private (object_class, sizeof (PlumaDocumentOutputStreamPrivate));
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_document_output_stream_init (PlumaDocumentOutputStream *stream)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
stream->priv = PLUMA_DOCUMENT_OUTPUT_STREAM_GET_PRIVATE (stream);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
stream->priv->buffer = NULL;
|
|
|
|
stream->priv->buflen = 0;
|
|
|
|
|
|
|
|
stream->priv->is_initialized = FALSE;
|
|
|
|
stream->priv->is_closed = FALSE;
|
|
|
|
}
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
static PlumaDocumentNewlineType
|
2011-11-07 13:46:58 -06:00
|
|
|
get_newline_type (GtkTextIter *end)
|
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaDocumentNewlineType res;
|
2011-11-07 13:46:58 -06:00
|
|
|
GtkTextIter copy;
|
|
|
|
gunichar c;
|
|
|
|
|
|
|
|
copy = *end;
|
|
|
|
c = gtk_text_iter_get_char (©);
|
|
|
|
|
|
|
|
if (g_unichar_break_type (c) == G_UNICODE_BREAK_CARRIAGE_RETURN)
|
|
|
|
{
|
|
|
|
if (gtk_text_iter_forward_char (©) &&
|
|
|
|
g_unichar_break_type (gtk_text_iter_get_char (©)) == G_UNICODE_BREAK_LINE_FEED)
|
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
res = PLUMA_DOCUMENT_NEWLINE_TYPE_CR_LF;
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
res = PLUMA_DOCUMENT_NEWLINE_TYPE_CR;
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
res = PLUMA_DOCUMENT_NEWLINE_TYPE_LF;
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
GOutputStream *
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_document_output_stream_new (PlumaDocument *doc)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
return G_OUTPUT_STREAM (g_object_new (PLUMA_TYPE_DOCUMENT_OUTPUT_STREAM,
|
2011-11-07 13:46:58 -06:00
|
|
|
"document", doc, NULL));
|
|
|
|
}
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaDocumentNewlineType
|
|
|
|
pluma_document_output_stream_detect_newline_type (PlumaDocumentOutputStream *stream)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaDocumentNewlineType type;
|
2011-11-07 13:46:58 -06:00
|
|
|
GtkTextIter iter;
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
g_return_val_if_fail (PLUMA_IS_DOCUMENT_OUTPUT_STREAM (stream),
|
|
|
|
PLUMA_DOCUMENT_NEWLINE_TYPE_DEFAULT);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
type = PLUMA_DOCUMENT_NEWLINE_TYPE_DEFAULT;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
gtk_text_buffer_get_start_iter (GTK_TEXT_BUFFER (stream->priv->doc),
|
|
|
|
&iter);
|
|
|
|
|
|
|
|
if (gtk_text_iter_ends_line (&iter) || gtk_text_iter_forward_to_line_end (&iter))
|
|
|
|
{
|
|
|
|
type = get_newline_type (&iter);
|
|
|
|
}
|
|
|
|
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the last char is a newline, remove it from the buffer (otherwise
|
|
|
|
GtkTextView shows it as an empty line). See bug #324942. */
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
remove_ending_newline (PlumaDocumentOutputStream *stream)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
GtkTextIter end;
|
|
|
|
GtkTextIter start;
|
|
|
|
|
|
|
|
gtk_text_buffer_get_end_iter (GTK_TEXT_BUFFER (stream->priv->doc), &end);
|
|
|
|
start = end;
|
|
|
|
|
|
|
|
gtk_text_iter_set_line_offset (&start, 0);
|
|
|
|
|
|
|
|
if (gtk_text_iter_ends_line (&start) &&
|
|
|
|
gtk_text_iter_backward_line (&start))
|
|
|
|
{
|
|
|
|
if (!gtk_text_iter_ends_line (&start))
|
|
|
|
{
|
|
|
|
gtk_text_iter_forward_to_line_end (&start);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Delete the empty line which is from 'start' to 'end' */
|
|
|
|
gtk_text_buffer_delete (GTK_TEXT_BUFFER (stream->priv->doc),
|
|
|
|
&start,
|
|
|
|
&end);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
end_append_text_to_document (PlumaDocumentOutputStream *stream)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
remove_ending_newline (stream);
|
|
|
|
|
|
|
|
gtk_text_buffer_set_modified (GTK_TEXT_BUFFER (stream->priv->doc),
|
|
|
|
FALSE);
|
|
|
|
|
|
|
|
gtk_source_buffer_end_not_undoable_action (GTK_SOURCE_BUFFER (stream->priv->doc));
|
|
|
|
}
|
|
|
|
|
|
|
|
static gssize
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_document_output_stream_write (GOutputStream *stream,
|
2011-11-07 13:46:58 -06:00
|
|
|
const void *buffer,
|
|
|
|
gsize count,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaDocumentOutputStream *ostream;
|
2011-11-07 13:46:58 -06:00
|
|
|
gchar *text;
|
|
|
|
gsize len;
|
|
|
|
gboolean freetext = FALSE;
|
|
|
|
const gchar *end;
|
|
|
|
gboolean valid;
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return -1;
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
ostream = PLUMA_DOCUMENT_OUTPUT_STREAM (stream);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
if (!ostream->priv->is_initialized)
|
|
|
|
{
|
|
|
|
/* Init the undoable action */
|
|
|
|
gtk_source_buffer_begin_not_undoable_action (GTK_SOURCE_BUFFER (ostream->priv->doc));
|
|
|
|
|
|
|
|
gtk_text_buffer_get_start_iter (GTK_TEXT_BUFFER (ostream->priv->doc),
|
|
|
|
&ostream->priv->pos);
|
|
|
|
ostream->priv->is_initialized = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ostream->priv->buflen > 0)
|
|
|
|
{
|
|
|
|
len = ostream->priv->buflen + count;
|
|
|
|
text = g_new (gchar , len + 1);
|
|
|
|
memcpy (text, ostream->priv->buffer, ostream->priv->buflen);
|
|
|
|
memcpy (text + ostream->priv->buflen, buffer, count);
|
|
|
|
text[len] = '\0';
|
|
|
|
g_free (ostream->priv->buffer);
|
|
|
|
ostream->priv->buffer = NULL;
|
|
|
|
ostream->priv->buflen = 0;
|
|
|
|
freetext = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
text = (gchar *) buffer;
|
|
|
|
len = count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* validate */
|
|
|
|
valid = g_utf8_validate (text, len, &end);
|
|
|
|
|
2015-10-08 11:00:51 -05:00
|
|
|
/* Avoid keeping a CRLF across two buffers. */
|
|
|
|
if (valid && len > 1 && end[-1] == '\r')
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2015-10-08 11:00:51 -05:00
|
|
|
valid = FALSE;
|
|
|
|
end--;
|
|
|
|
}
|
2015-09-02 04:51:13 -05:00
|
|
|
|
2015-10-08 11:00:51 -05:00
|
|
|
if (!valid)
|
|
|
|
{
|
|
|
|
gsize nvalid = end - text;
|
|
|
|
gsize remainder = len - nvalid;
|
|
|
|
gunichar ch;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
if ((remainder < MAX_UNICHAR_LEN) &&
|
2015-10-08 11:00:51 -05:00
|
|
|
((ch = g_utf8_get_char_validated (text + nvalid, remainder)) == (gunichar)-2 ||
|
|
|
|
ch == (gunichar)'\r'))
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
ostream->priv->buffer = g_strndup (end, remainder);
|
|
|
|
ostream->priv->buflen = remainder;
|
|
|
|
len -= remainder;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-10-08 11:00:51 -05:00
|
|
|
/* TODO: we could escape invalid text and tag it in red
|
2011-11-07 13:46:58 -06:00
|
|
|
* and make the doc readonly.
|
|
|
|
*/
|
|
|
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_DATA,
|
|
|
|
_("Invalid UTF-8 sequence in input"));
|
|
|
|
|
|
|
|
if (freetext)
|
|
|
|
g_free (text);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_text_buffer_insert (GTK_TEXT_BUFFER (ostream->priv->doc),
|
|
|
|
&ostream->priv->pos, text, len);
|
|
|
|
|
|
|
|
if (freetext)
|
|
|
|
g_free (text);
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2015-10-08 11:00:51 -05:00
|
|
|
static gboolean
|
|
|
|
pluma_document_output_stream_flush (GOutputStream *stream,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
PlumaDocumentOutputStream *ostream = PLUMA_DOCUMENT_OUTPUT_STREAM (stream);
|
|
|
|
|
|
|
|
/* Flush deferred data if some. */
|
|
|
|
if (!ostream->priv->is_closed && ostream->priv->is_initialized &&
|
|
|
|
ostream->priv->buflen > 0 &&
|
|
|
|
pluma_document_output_stream_write (stream, "", 0, cancellable,
|
|
|
|
error) == -1)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
static gboolean
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_document_output_stream_close (GOutputStream *stream,
|
2011-11-07 13:46:58 -06:00
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaDocumentOutputStream *ostream = PLUMA_DOCUMENT_OUTPUT_STREAM (stream);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
if (!ostream->priv->is_closed && ostream->priv->is_initialized)
|
|
|
|
{
|
|
|
|
end_append_text_to_document (ostream);
|
|
|
|
ostream->priv->is_closed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ostream->priv->buflen > 0)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_DATA,
|
|
|
|
_("Incomplete UTF-8 sequence in input"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|