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 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; coding: utf-8 -*- */
/*
* This file is part of GtkSourceView
*
* Copyright (C) 2014, 2015 - Sébastien Wilmet <swilmet@gnome.org>
*
* GtkSourceView is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* GtkSourceView is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "gtksourcefile.h"
#include "gtksourceencoding.h"
#include "gtksource-enumtypes.h"
/**
* SECTION:file
* @Short_description: On-disk representation of a GtkSourceBuffer
* @Title: GtkSourceFile
* @See_also: #GtkSourceFileLoader, #GtkSourceFileSaver
*
* A #GtkSourceFile object is the on-disk representation of a #GtkSourceBuffer.
* With a #GtkSourceFile, you can create and configure a #GtkSourceFileLoader
* and #GtkSourceFileSaver which take by default the values of the
* #GtkSourceFile properties (except for the file loader which auto-detect some
* properties). On a successful load or save operation, the #GtkSourceFile
* properties are updated. If an operation fails, the #GtkSourceFile properties
* have still the previous valid values.
*
* <warning>
* This class is no longer maintained, patches are not accepted. There is a
* better implementation in the
* <ulink url="https://wiki.gnome.org/Projects/Tepl">Tepl</ulink> library.
* </warning>
*/
enum
{
PROP_0,
PROP_LOCATION,
PROP_ENCODING,
PROP_NEWLINE_TYPE,
PROP_COMPRESSION_TYPE,
PROP_READ_ONLY
};
struct _GtkSourceFilePrivate
{
GFile *location;
const GtkSourceEncoding *encoding;
GtkSourceNewlineType newline_type;
GtkSourceCompressionType compression_type;
GtkSourceMountOperationFactory mount_operation_factory;
gpointer mount_operation_userdata;
GDestroyNotify mount_operation_notify;
/* Last known modification time of 'location'. The value is updated on a
* file loading or file saving.
*/
GTimeVal modification_time;
guint modification_time_set : 1;
guint externally_modified : 1;
guint deleted : 1;
guint readonly : 1;
};
G_DEFINE_TYPE_WITH_PRIVATE (GtkSourceFile, gtk_source_file, G_TYPE_OBJECT)
static void
gtk_source_file_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
GtkSourceFile *file;
g_return_if_fail (GTK_SOURCE_IS_FILE (object));
file = GTK_SOURCE_FILE (object);
switch (prop_id)
{
case PROP_LOCATION:
g_value_set_object (value, file->priv->location);
break;
case PROP_ENCODING:
g_value_set_boxed (value, file->priv->encoding);
break;
case PROP_NEWLINE_TYPE:
g_value_set_enum (value, file->priv->newline_type);
break;
case PROP_COMPRESSION_TYPE:
g_value_set_enum (value, file->priv->compression_type);
break;
case PROP_READ_ONLY:
g_value_set_boolean (value, file->priv->readonly);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gtk_source_file_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
GtkSourceFile *file;
g_return_if_fail (GTK_SOURCE_IS_FILE (object));
file = GTK_SOURCE_FILE (object);
switch (prop_id)
{
case PROP_LOCATION:
gtk_source_file_set_location (file, g_value_get_object (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gtk_source_file_dispose (GObject *object)
{
GtkSourceFile *file = GTK_SOURCE_FILE (object);
g_clear_object (&file->priv->location);
if (file->priv->mount_operation_notify != NULL)
{
file->priv->mount_operation_notify (file->priv->mount_operation_userdata);
file->priv->mount_operation_notify = NULL;
}
G_OBJECT_CLASS (gtk_source_file_parent_class)->dispose (object);
}
static void
gtk_source_file_class_init (GtkSourceFileClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->get_property = gtk_source_file_get_property;
object_class->set_property = gtk_source_file_set_property;
object_class->dispose = gtk_source_file_dispose;
/**
* GtkSourceFile:location:
*
* The location.
*
* Since: 3.14
*/
g_object_class_install_property (object_class,
PROP_LOCATION,
g_param_spec_object ("location",
"Location",
"",
G_TYPE_FILE,
G_PARAM_READWRITE |
G_PARAM_CONSTRUCT |
G_PARAM_STATIC_STRINGS));
/**
* GtkSourceFile:encoding:
*
* The character encoding, initially %NULL. After a successful file
* loading or saving operation, the encoding is non-%NULL.
*
* Since: 3.14
*/
g_object_class_install_property (object_class,
PROP_ENCODING,
g_param_spec_boxed ("encoding",
"Encoding",
"",
GTK_SOURCE_TYPE_ENCODING,
G_PARAM_READABLE |
G_PARAM_STATIC_STRINGS));
/**
* GtkSourceFile:newline-type:
*
* The line ending type.
*
* Since: 3.14
*/
g_object_class_install_property (object_class,
PROP_NEWLINE_TYPE,
g_param_spec_enum ("newline-type",
"Newline type",
"",
GTK_SOURCE_TYPE_NEWLINE_TYPE,
GTK_SOURCE_NEWLINE_TYPE_LF,
G_PARAM_READABLE |
G_PARAM_STATIC_STRINGS));
/**
* GtkSourceFile:compression-type:
*
* The compression type.
*
* Since: 3.14
*/
g_object_class_install_property (object_class,
PROP_COMPRESSION_TYPE,
g_param_spec_enum ("compression-type",
"Compression type",
"",
GTK_SOURCE_TYPE_COMPRESSION_TYPE,
GTK_SOURCE_COMPRESSION_TYPE_NONE,
G_PARAM_READABLE |
G_PARAM_STATIC_STRINGS));
/**
* GtkSourceFile:read-only:
*
* Whether the file is read-only or not. The value of this property is
* not updated automatically (there is no file monitors).
*
* Since: 3.18
*/
g_object_class_install_property (object_class,
PROP_READ_ONLY,
g_param_spec_boolean ("read-only",
"Read Only",
"",
FALSE,
G_PARAM_READABLE |
G_PARAM_STATIC_STRINGS));
}
static void
gtk_source_file_init (GtkSourceFile *file)
{
file->priv = gtk_source_file_get_instance_private (file);
file->priv->encoding = NULL;
file->priv->newline_type = GTK_SOURCE_NEWLINE_TYPE_LF;
file->priv->compression_type = GTK_SOURCE_COMPRESSION_TYPE_NONE;
}
/**
* gtk_source_file_new:
*
* Returns: a new #GtkSourceFile object.
* Since: 3.14
*/
GtkSourceFile *
gtk_source_file_new (void)
{
return g_object_new (GTK_SOURCE_TYPE_FILE, NULL);
}
/**
* gtk_source_file_set_location:
* @file: a #GtkSourceFile.
* @location: (nullable): the new #GFile, or %NULL.
*
* Sets the location.
*
* Since: 3.14
*/
void
gtk_source_file_set_location (GtkSourceFile *file,
GFile *location)
{
g_return_if_fail (GTK_SOURCE_IS_FILE (file));
g_return_if_fail (location == NULL || G_IS_FILE (location));
if (g_set_object (&file->priv->location, location))
{
g_object_notify (G_OBJECT (file), "location");
/* The modification_time is for the old location. */
file->priv->modification_time_set = FALSE;
file->priv->externally_modified = FALSE;
file->priv->deleted = FALSE;
}
}
/**
* gtk_source_file_get_location:
* @file: a #GtkSourceFile.
*
* Returns: (transfer none): the #GFile.
* Since: 3.14
*/
GFile *
gtk_source_file_get_location (GtkSourceFile *file)
{
g_return_val_if_fail (GTK_SOURCE_IS_FILE (file), NULL);
return file->priv->location;
}
void
_gtk_source_file_set_encoding (GtkSourceFile *file,
const GtkSourceEncoding *encoding)
{
g_return_if_fail (GTK_SOURCE_IS_FILE (file));
if (file->priv->encoding != encoding)
{
file->priv->encoding = encoding;
g_object_notify (G_OBJECT (file), "encoding");
}
}
/**
* gtk_source_file_get_encoding:
* @file: a #GtkSourceFile.
*
* The encoding is initially %NULL. After a successful file loading or saving
* operation, the encoding is non-%NULL.
*
* Returns: the character encoding.
* Since: 3.14
*/
const GtkSourceEncoding *
gtk_source_file_get_encoding (GtkSourceFile *file)
{
g_return_val_if_fail (GTK_SOURCE_IS_FILE (file), NULL);
return file->priv->encoding;
}
void
_gtk_source_file_set_newline_type (GtkSourceFile *file,
GtkSourceNewlineType newline_type)
{
g_return_if_fail (GTK_SOURCE_IS_FILE (file));
if (file->priv->newline_type != newline_type)
{
file->priv->newline_type = newline_type;
g_object_notify (G_OBJECT (file), "newline-type");
}
}
/**
* gtk_source_file_get_newline_type:
* @file: a #GtkSourceFile.
*
* Returns: the newline type.
* Since: 3.14
*/
GtkSourceNewlineType
gtk_source_file_get_newline_type (GtkSourceFile *file)
{
g_return_val_if_fail (GTK_SOURCE_IS_FILE (file), GTK_SOURCE_NEWLINE_TYPE_DEFAULT);
return file->priv->newline_type;
}
void
_gtk_source_file_set_compression_type (GtkSourceFile *file,
GtkSourceCompressionType compression_type)
{
g_return_if_fail (GTK_SOURCE_IS_FILE (file));
if (file->priv->compression_type != compression_type)
{
file->priv->compression_type = compression_type;
g_object_notify (G_OBJECT (file), "compression-type");
}
}
/**
* gtk_source_file_get_compression_type:
* @file: a #GtkSourceFile.
*
* Returns: the compression type.
* Since: 3.14
*/
GtkSourceCompressionType
gtk_source_file_get_compression_type (GtkSourceFile *file)
{
g_return_val_if_fail (GTK_SOURCE_IS_FILE (file), GTK_SOURCE_COMPRESSION_TYPE_NONE);
return file->priv->compression_type;
}
/**
* gtk_source_file_set_mount_operation_factory:
* @file: a #GtkSourceFile.
* @callback: (scope notified): a #GtkSourceMountOperationFactory to call when a
* #GMountOperation is needed.
* @user_data: the data to pass to the @callback function.
* @notify: (nullable): function to call on @user_data when the @callback is no
* longer needed, or %NULL.
*
* Sets a #GtkSourceMountOperationFactory function that will be called when a
* #GMountOperation must be created. This is useful for creating a
* #GtkMountOperation with the parent #GtkWindow.
*
* If a mount operation factory isn't set, g_mount_operation_new() will be
* called.
*
* Since: 3.14
*/
void
gtk_source_file_set_mount_operation_factory (GtkSourceFile *file,
GtkSourceMountOperationFactory callback,
gpointer user_data,
GDestroyNotify notify)
{
g_return_if_fail (GTK_SOURCE_IS_FILE (file));
if (file->priv->mount_operation_notify != NULL)
{
file->priv->mount_operation_notify (file->priv->mount_operation_userdata);
}
file->priv->mount_operation_factory = callback;
file->priv->mount_operation_userdata = user_data;
file->priv->mount_operation_notify = notify;
}
GMountOperation *
_gtk_source_file_create_mount_operation (GtkSourceFile *file)
{
return (file != NULL && file->priv->mount_operation_factory != NULL) ?
file->priv->mount_operation_factory (file, file->priv->mount_operation_userdata) :
g_mount_operation_new ();
}
gboolean
_gtk_source_file_get_modification_time (GtkSourceFile *file,
GTimeVal *modification_time)
{
g_assert (modification_time != NULL);
if (file == NULL)
{
return FALSE;
}
g_return_val_if_fail (GTK_SOURCE_IS_FILE (file), FALSE);
if (file->priv->modification_time_set)
{
*modification_time = file->priv->modification_time;
}
return file->priv->modification_time_set;
}
void
_gtk_source_file_set_modification_time (GtkSourceFile *file,
GTimeVal modification_time)
{
if (file != NULL)
{
g_return_if_fail (GTK_SOURCE_IS_FILE (file));
file->priv->modification_time = modification_time;
file->priv->modification_time_set = TRUE;
}
}
/**
* gtk_source_file_is_local:
* @file: a #GtkSourceFile.
*
* Returns whether the file is local. If the #GtkSourceFile:location is %NULL,
* returns %FALSE.
*
* Returns: whether the file is local.
* Since: 3.18
*/
gboolean
gtk_source_file_is_local (GtkSourceFile *file)
{
g_return_val_if_fail (GTK_SOURCE_IS_FILE (file), FALSE);
if (file->priv->location == NULL)
{
return FALSE;
}
return g_file_has_uri_scheme (file->priv->location, "file");
}
/**
* gtk_source_file_check_file_on_disk:
* @file: a #GtkSourceFile.
*
* Checks synchronously the file on disk, to know whether the file is externally
* modified, or has been deleted, and whether the file is read-only.
*
* #GtkSourceFile doesn't create a #GFileMonitor to track those properties, so
* this function needs to be called instead. Creating lots of #GFileMonitor's
* would take lots of resources.
*
* Since this function is synchronous, it is advised to call it only on local
* files. See gtk_source_file_is_local().
*
* Since: 3.18
*/
void
gtk_source_file_check_file_on_disk (GtkSourceFile *file)
{
GFileInfo *info;
if (file->priv->location == NULL)
{
return;
}
info = g_file_query_info (file->priv->location,
G_FILE_ATTRIBUTE_TIME_MODIFIED ","
G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE,
G_FILE_QUERY_INFO_NONE,
NULL,
NULL);
if (info == NULL)
{
file->priv->deleted = TRUE;
return;
}
if (g_file_info_has_attribute (info, G_FILE_ATTRIBUTE_TIME_MODIFIED) &&
file->priv->modification_time_set)
{
GTimeVal timeval;
g_file_info_get_modification_time (info, &timeval);
/* Note that the modification time can even go backwards if the
* user is copying over an old file.
*/
if (timeval.tv_sec != file->priv->modification_time.tv_sec ||
timeval.tv_usec != file->priv->modification_time.tv_usec)
{
file->priv->externally_modified = TRUE;
}
}
if (g_file_info_has_attribute (info, G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE))
{
gboolean readonly;
readonly = !g_file_info_get_attribute_boolean (info, G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE);
_gtk_source_file_set_readonly (file, readonly);
}
g_object_unref (info);
}
void
_gtk_source_file_set_externally_modified (GtkSourceFile *file,
gboolean externally_modified)
{
g_return_if_fail (GTK_SOURCE_IS_FILE (file));
file->priv->externally_modified = externally_modified != FALSE;
}
/**
* gtk_source_file_is_externally_modified:
* @file: a #GtkSourceFile.
*
* Returns whether the file is externally modified. If the
* #GtkSourceFile:location is %NULL, returns %FALSE.
*
* To have an up-to-date value, you must first call
* gtk_source_file_check_file_on_disk().
*
* Returns: whether the file is externally modified.
* Since: 3.18
*/
gboolean
gtk_source_file_is_externally_modified (GtkSourceFile *file)
{
g_return_val_if_fail (GTK_SOURCE_IS_FILE (file), FALSE);
return file->priv->externally_modified;
}
void
_gtk_source_file_set_deleted (GtkSourceFile *file,
gboolean deleted)
{
g_return_if_fail (GTK_SOURCE_IS_FILE (file));
file->priv->deleted = deleted != FALSE;
}
/**
* gtk_source_file_is_deleted:
* @file: a #GtkSourceFile.
*
* Returns whether the file has been deleted. If the
* #GtkSourceFile:location is %NULL, returns %FALSE.
*
* To have an up-to-date value, you must first call
* gtk_source_file_check_file_on_disk().
*
* Returns: whether the file has been deleted.
* Since: 3.18
*/
gboolean
gtk_source_file_is_deleted (GtkSourceFile *file)
{
g_return_val_if_fail (GTK_SOURCE_IS_FILE (file), FALSE);
return file->priv->deleted;
}
void
_gtk_source_file_set_readonly (GtkSourceFile *file,
gboolean readonly)
{
g_return_if_fail (GTK_SOURCE_IS_FILE (file));
readonly = readonly != FALSE;
if (file->priv->readonly != readonly)
{
file->priv->readonly = readonly;
g_object_notify (G_OBJECT (file), "read-only");
}
}
/**
* gtk_source_file_is_readonly:
* @file: a #GtkSourceFile.
*
* Returns whether the file is read-only. If the
* #GtkSourceFile:location is %NULL, returns %FALSE.
*
* To have an up-to-date value, you must first call
* gtk_source_file_check_file_on_disk().
*
* Returns: whether the file is read-only.
* Since: 3.18
*/
gboolean
gtk_source_file_is_readonly (GtkSourceFile *file)
{
g_return_val_if_fail (GTK_SOURCE_IS_FILE (file), FALSE);
return file->priv->readonly;
}
|