1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
/* SPDX-FileCopyrightText: 2023-2025 - Sébastien Wilmet
* SPDX-License-Identifier: LGPL-3.0-or-later
*/
#include "gfls-loader-basic.h"
#include "gfls-error.h"
#include "gfls-input-stream.h"
#include "gfls-utf8.h"
/**
* SECTION:gfls-loader-basic
* @Title: GflsLoaderBasic
* @Short_description: Basic file loader
*
* Basic file loader that validates input for GtkTextView purposes:
* - Must not exceed a certain size (because all the content of a GtkTextBuffer
* is stored in memory).
* - Must be valid UTF-8 already (GTK in general accepts only UTF-8 only
* strings).
* - Must not contain very long lines (not well supported by the GtkTextView
* widget, there can be performance problems and freezes).
*
* So:
* - No character encoding auto-detection and/or conversion.
* - No workarounds for problems found, just return an error without the
* possibility to re-configure the loading.
*
* But this basic file loader offers a convenient API for the above: #GFile
* loading with the intention to put its content into a GtkTextBuffer.
*/
/* When the file size is unknown, start with 8 KiB. */
#define DEFAULT_FILE_SIZE (8192)
typedef struct
{
/* Config */
gsize max_size;
guint max_n_bytes_per_line;
/* Intermediate data */
gsize expected_file_size;
// TODO: close explicitly the stream? to get a GError if any.
// With g_input_stream_close_async/finish().
// Do it here? Or in gfls_input_stream_read_async/finish(), since it is
// meant as the only read operation?
GInputStream *input_stream;
/* Result */
GBytes *bytes;
} TaskData;
static TaskData *
task_data_new (gsize max_size,
guint max_n_bytes_per_line)
{
TaskData *task_data;
task_data = g_new0 (TaskData, 1);
task_data->max_size = max_size;
task_data->max_n_bytes_per_line = max_n_bytes_per_line;
return task_data;
}
static void
task_data_free (TaskData *task_data)
{
if (task_data != NULL)
{
g_clear_object (&task_data->input_stream);
g_clear_pointer (&task_data->bytes, g_bytes_unref);
g_free (task_data);
}
}
static void
check_bytes (GTask *task)
{
TaskData *task_data;
const gchar *text;
gsize n_bytes;
task_data = g_task_get_task_data (task);
text = g_bytes_get_data (task_data->bytes, &n_bytes);
if (!g_utf8_validate_len (text, n_bytes, NULL))
{
g_task_return_error (task, _gfls_loader_error_not_utf8 ());
g_object_unref (task);
return;
}
if (gfls_utf8_find_very_long_line (text, task_data->max_n_bytes_per_line) != NULL)
{
g_task_return_error (task, _gfls_loader_error_has_very_long_line ());
g_object_unref (task);
return;
}
/* Everything OK, finally done. */
g_task_return_boolean (task, TRUE);
g_object_unref (task);
}
static void
read_input_stream_cb (GObject *source_object,
GAsyncResult *result,
gpointer user_data)
{
GInputStream *input_stream = G_INPUT_STREAM (source_object);
GTask *task = G_TASK (user_data);
TaskData *task_data;
gboolean is_truncated = FALSE;
GError *error = NULL;
task_data = g_task_get_task_data (task);
g_clear_pointer (&task_data->bytes, g_bytes_unref);
task_data->bytes = gfls_input_stream_read_finish (input_stream,
result,
&is_truncated,
&error);
if (error != NULL)
{
g_task_return_error (task, error);
g_object_unref (task);
return;
}
if (is_truncated)
{
/* Free memory as early as possible, especially because it
* reached the maximum.
*/
g_clear_pointer (&task_data->bytes, g_bytes_unref);
g_task_return_error (task, _gfls_loader_error_too_big_read ());
g_object_unref (task);
return;
}
check_bytes (task);
}
static void
read_input_stream (GTask *task)
{
TaskData *task_data = g_task_get_task_data (task);
gfls_input_stream_read_async (task_data->input_stream,
task_data->expected_file_size,
task_data->max_size,
g_task_get_priority (task),
g_task_get_cancellable (task),
read_input_stream_cb,
task);
}
static void
open_file_cb (GObject *source_object,
GAsyncResult *result,
gpointer user_data)
{
GFile *file = G_FILE (source_object);
GTask *task = G_TASK (user_data);
GFileInputStream *file_input_stream;
TaskData *task_data;
GError *error = NULL;
file_input_stream = g_file_read_finish (file, result, &error);
if (error != NULL)
{
g_task_return_error (task, error);
g_object_unref (task);
g_clear_object (&file_input_stream);
return;
}
task_data = g_task_get_task_data (task);
g_clear_object (&task_data->input_stream);
task_data->input_stream = G_INPUT_STREAM (file_input_stream);
read_input_stream (task);
}
static void
open_file (GTask *task)
{
GFile *file = g_task_get_source_object (task);
g_file_read_async (file,
g_task_get_priority (task),
g_task_get_cancellable (task),
open_file_cb,
task);
}
static void
query_file_info_cb (GObject *source_object,
GAsyncResult *result,
gpointer user_data)
{
GFile *file = G_FILE (source_object);
GTask *task = G_TASK (user_data);
TaskData *task_data;
GFileInfo *info;
GError *error = NULL;
info = g_file_query_info_finish (file, result, &error);
if (error != NULL)
{
g_task_return_error (task, error);
g_object_unref (task);
g_clear_object (&info);
return;
}
task_data = g_task_get_task_data (task);
if (g_file_info_has_attribute (info, G_FILE_ATTRIBUTE_STANDARD_SIZE))
{
task_data->expected_file_size = g_file_info_get_size (info);
if (task_data->expected_file_size > task_data->max_size)
{
g_task_return_error (task, _gfls_loader_error_too_big_file_size ());
g_object_unref (task);
g_clear_object (&info);
return;
}
}
else
{
task_data->expected_file_size = DEFAULT_FILE_SIZE;
}
open_file (task);
g_clear_object (&info);
}
static void
query_file_info (GTask *task)
{
GFile *file = g_task_get_source_object (task);
g_file_query_info_async (file,
G_FILE_ATTRIBUTE_STANDARD_SIZE,
G_FILE_QUERY_INFO_NONE,
g_task_get_priority (task),
g_task_get_cancellable (task),
query_file_info_cb,
task);
}
/**
* gfls_loader_basic_load_async:
* @file: a #GFile.
* @max_size: the maximum allowed number of bytes in total.
* @max_n_bytes_per_line: the maximum allowed number of bytes per line, as per
* gfls_utf8_find_very_long_line().
* @io_priority: the I/O priority of the request. E.g. %G_PRIORITY_LOW,
* %G_PRIORITY_DEFAULT or %G_PRIORITY_HIGH.
* @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
* @callback: (scope async): a #GAsyncReadyCallback to call when the operation
* is finished.
* @user_data: user data to pass to @callback.
*
* Starts a basic file loading operation.
*
* If the @file content is not a valid UTF-8 string, or if the @max_size or
* @max_n_bytes_per_line conditions are not satisfied, an error will be returned
* without the file content.
*
* See the #GAsyncResult documentation to know how to use this function.
*
* Since: 0.1
*/
void
gfls_loader_basic_load_async (GFile *file,
gsize max_size,
guint max_n_bytes_per_line,
gint io_priority,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data)
{
GTask *task;
TaskData *task_data;
g_return_if_fail (G_IS_FILE (file));
g_return_if_fail (cancellable == NULL || G_IS_CANCELLABLE (cancellable));
task = g_task_new (file, cancellable, callback, user_data);
g_task_set_priority (task, io_priority);
task_data = task_data_new (max_size, max_n_bytes_per_line);
g_task_set_task_data (task, task_data, (GDestroyNotify) task_data_free);
query_file_info (task);
}
/**
* gfls_loader_basic_load_finish:
* @file: a #GFile.
* @result: a #GAsyncResult.
* @error: a #GError, or %NULL.
*
* Finishes an operation started with gfls_loader_basic_load_async().
*
* If everything went well, a #GBytes with the #GFile content (unmodified) is
* returned. It is guaranteed to be a valid UTF-8 string.
*
* Otherwise an error is returned. The %GFLS_LOADER_ERROR domain is used, among
* others.
*
* The data contained in the resulting #GBytes is always zero-terminated, but
* this is not included in the #GBytes length. The resulting #GBytes should be
* freed with g_bytes_unref() when no longer in use.
*
* Returns: a #GBytes, or %NULL on error.
* Since: 0.1
*/
GBytes *
gfls_loader_basic_load_finish (GFile *file,
GAsyncResult *result,
GError **error)
{
gboolean ok;
g_return_val_if_fail (G_IS_FILE (file), NULL);
g_return_val_if_fail (g_task_is_valid (result, file), NULL);
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
ok = g_task_propagate_boolean (G_TASK (result), error);
if (ok)
{
TaskData *task_data;
GBytes *bytes;
task_data = g_task_get_task_data (G_TASK (result));
bytes = task_data->bytes;
task_data->bytes = NULL;
return bytes;
}
return NULL;
}
|