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 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* gtksourceundomanagerdefault.c
* This file is part of GtkSourceView
*
* Copyright (C) 1998, 1999 - Alex Roberts, Evan Lawrence
* Copyright (C) 2000, 2001 - Chema Celorio, Paolo Maggi
* Copyright (C) 2002-2005 - Paolo Maggi
* Copyright (C) 2014 - Sébastien Wilmet <swilmet@gnome.org>
*
* This library 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.
*
* This library 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "gtksourceundomanagerdefault.h"
#include <string.h>
#include "gtksourceundomanager.h"
/* unlimited by default */
#define DEFAULT_MAX_UNDO_LEVELS -1
typedef struct _Action Action;
typedef struct _ActionGroup ActionGroup;
typedef enum
{
ACTION_TYPE_INSERT,
ACTION_TYPE_DELETE
} ActionType;
struct _Action
{
ActionType type;
/* Character offset for the start of @text in the GtkTextBuffer. */
gint start;
/* Character offset for the end of @text in the GtkTextBuffer. */
gint end;
/* Nul-terminated text.
* TODO A possible memory optimization is to store the text only when
* needed. For an insertion that is located in the history on the undo
* side, the text is not needed since it is already present in the
* buffer. The same for a deletion on the redo side. But the last action
* text is needed for the merging.
*/
gchar *text;
/* Used only for a deletion. If forward is TRUE, the Delete key was
* probably used. If forward is FALSE, the Backspace key was probably
* used.
*/
guint forward : 1;
};
struct _ActionGroup
{
/* One or several Action's that forms a single undo or redo step. The
* most recent action is at the end of the list.
* In fact, actions can be grouped with
* gtk_text_buffer_begin_user_action() and
* gtk_text_buffer_end_user_action().
*/
GQueue *actions;
/* If force_not_mergeable is FALSE, there are dynamic checks to see if
* the action group is mergeable. For example if the saved_location is
* just after the action group, the action group is not mergeable, so
* the saved_location isn't lost.
*/
guint force_not_mergeable : 1;
};
struct _GtkSourceUndoManagerDefaultPrivate
{
/* Weak ref to the buffer. */
GtkTextBuffer *buffer;
/* List of ActionGroup's. The most recent ActionGroup is at the end of
* the list.
*/
GQueue *action_groups;
/* Current location in 'action_groups', where we are located in the
* history. The redo steps are on the right of the pointer, and the undo
* steps are on the left. In other words, the next redo step is
* location->data. The next undo step is location->prev->data. But the
* location should not be seen as a node, it should be seen as a
* vertical bar between two nodes, like a GtkTextIter between two
* characters.
*/
GList *location;
/* The number of nested calls to
* gtk_source_buffer_begin_not_undoable_action().
*/
guint running_not_undoable_actions;
/* Max number of action groups. */
gint max_undo_levels;
/* The location in 'action_groups' where the buffer is saved. I.e. when
* gtk_text_buffer_set_modified (buffer, FALSE) was called for the last
* time.
* NULL is for the end of 'action_groups'.
* 'has_saved_location' is FALSE if the history doesn't contain a saved
* location.
*/
GList *saved_location;
guint has_saved_location : 1;
guint can_undo : 1;
guint can_redo : 1;
/* Whether we are between a begin-user-action and a end-user-action.
* Some operations, like undo and redo, are not allowed during a user
* action (it would screw up the history).
* At the beginning of a user action, a new action group is created. At
* the end of the user action, we try to merge the group with the
* previous one. So when an insertion or deletion occurs when
* running_user_action is TRUE, we don't need to create a new group. But
* when running_user_action is FALSE, we need to put the insertion or
* deletion into a new group and try to merge it directly with the
* previous group.
*/
guint running_user_action : 1;
};
enum
{
PROP_0,
PROP_BUFFER,
PROP_MAX_UNDO_LEVELS
};
static void gtk_source_undo_manager_iface_init (GtkSourceUndoManagerIface *iface);
static gboolean action_merge (Action *action,
Action *new_action);
G_DEFINE_TYPE_WITH_CODE (GtkSourceUndoManagerDefault,
gtk_source_undo_manager_default,
G_TYPE_OBJECT,
G_ADD_PRIVATE (GtkSourceUndoManagerDefault)
G_IMPLEMENT_INTERFACE (GTK_SOURCE_TYPE_UNDO_MANAGER,
gtk_source_undo_manager_iface_init))
/* Utilities functions */
static Action *
action_new (void)
{
return g_slice_new0 (Action);
}
static void
action_free (Action *action)
{
if (action != NULL)
{
g_free (action->text);
g_slice_free (Action, action);
}
}
static ActionGroup *
action_group_new (void)
{
ActionGroup *group;
group = g_slice_new (ActionGroup);
group->actions = g_queue_new ();
group->force_not_mergeable = FALSE;
return group;
}
static void
action_group_free (ActionGroup *group)
{
if (group != NULL)
{
g_queue_free_full (group->actions, (GDestroyNotify) action_free);
g_slice_free (ActionGroup, group);
}
}
static void
update_can_undo_can_redo (GtkSourceUndoManagerDefault *manager)
{
gboolean can_undo;
gboolean can_redo;
if (manager->priv->running_user_action)
{
can_undo = FALSE;
can_redo = FALSE;
}
else if (manager->priv->location != NULL)
{
can_undo = manager->priv->location->prev != NULL;
can_redo = TRUE;
}
else
{
can_undo = manager->priv->action_groups->tail != NULL;
can_redo = FALSE;
}
if (manager->priv->can_undo != can_undo)
{
manager->priv->can_undo = can_undo;
gtk_source_undo_manager_can_undo_changed (GTK_SOURCE_UNDO_MANAGER (manager));
}
if (manager->priv->can_redo != can_redo)
{
manager->priv->can_redo = can_redo;
gtk_source_undo_manager_can_redo_changed (GTK_SOURCE_UNDO_MANAGER (manager));
}
}
static void
clear_all (GtkSourceUndoManagerDefault *manager)
{
GList *l;
if (manager->priv->has_saved_location &&
manager->priv->saved_location != manager->priv->location)
{
manager->priv->has_saved_location = FALSE;
}
for (l = manager->priv->action_groups->head; l != NULL; l = l->next)
{
ActionGroup *group = l->data;
action_group_free (group);
}
g_queue_clear (manager->priv->action_groups);
manager->priv->location = NULL;
manager->priv->saved_location = NULL;
update_can_undo_can_redo (manager);
}
static void
remove_last_action_group (GtkSourceUndoManagerDefault *manager)
{
ActionGroup *group;
if (manager->priv->action_groups->length == 0)
{
return;
}
if (manager->priv->location == manager->priv->action_groups->tail)
{
manager->priv->location = NULL;
}
if (manager->priv->has_saved_location)
{
if (manager->priv->saved_location == NULL)
{
manager->priv->has_saved_location = FALSE;
}
else if (manager->priv->saved_location == manager->priv->action_groups->tail)
{
manager->priv->saved_location = NULL;
}
}
group = g_queue_pop_tail (manager->priv->action_groups);
action_group_free (group);
}
static void
remove_first_action_group (GtkSourceUndoManagerDefault *manager)
{
GList *first_node;
ActionGroup *group;
first_node = manager->priv->action_groups->head;
if (first_node == NULL)
{
return;
}
if (manager->priv->location == first_node)
{
manager->priv->location = first_node->next;
}
if (manager->priv->has_saved_location &&
manager->priv->saved_location == first_node)
{
manager->priv->has_saved_location = FALSE;
}
group = g_queue_pop_head (manager->priv->action_groups);
action_group_free (group);
}
static void
check_history_size (GtkSourceUndoManagerDefault *manager)
{
if (manager->priv->max_undo_levels == -1)
{
return;
}
if (manager->priv->max_undo_levels == 0)
{
clear_all (manager);
return;
}
while (manager->priv->action_groups->length > manager->priv->max_undo_levels)
{
/* Strip redo action groups first. */
if (manager->priv->location != NULL)
{
remove_last_action_group (manager);
}
else
{
remove_first_action_group (manager);
}
}
update_can_undo_can_redo (manager);
}
static void
insert_new_action_group (GtkSourceUndoManagerDefault *manager)
{
ActionGroup *group = action_group_new ();
if (manager->priv->location != NULL)
{
g_queue_insert_before (manager->priv->action_groups,
manager->priv->location,
group);
}
else
{
g_queue_push_tail (manager->priv->action_groups,
group);
}
if (manager->priv->has_saved_location &&
manager->priv->saved_location == manager->priv->location)
{
if (manager->priv->saved_location != NULL)
{
manager->priv->saved_location = manager->priv->saved_location->prev;
}
else
{
manager->priv->saved_location = manager->priv->action_groups->tail;
}
g_assert (manager->priv->saved_location != NULL);
g_assert (manager->priv->saved_location->data == group);
}
}
static void
remove_redo_action_groups (GtkSourceUndoManagerDefault *manager)
{
while (manager->priv->location != NULL)
{
remove_last_action_group (manager);
}
}
/* Try to merge @new_group into @group. Returns TRUE if merged. It is up to the
* caller to free @new_group.
*/
static gboolean
action_group_merge (ActionGroup *group,
ActionGroup *new_group)
{
Action *action;
Action *new_action;
g_assert (group != NULL);
g_assert (new_group != NULL);
if (new_group->actions->length == 0)
{
return TRUE;
}
if (group->force_not_mergeable ||
new_group->force_not_mergeable ||
group->actions->length > 1 ||
new_group->actions->length > 1)
{
return FALSE;
}
action = g_queue_peek_head (group->actions);
new_action = g_queue_peek_head (new_group->actions);
return action_merge (action, new_action);
}
/* Try to merge the current action group with the previous one. The "current
* action group" is the node on the left of location.
*/
static void
try_merge_current_action_group (GtkSourceUndoManagerDefault *manager)
{
GList *new_node = NULL;
GList *prev_node = NULL;
ActionGroup *new_group = NULL;
ActionGroup *prev_group = NULL;
if (manager->priv->location != NULL)
{
new_node = manager->priv->location->prev;
}
else
{
new_node = manager->priv->action_groups->tail;
}
g_assert (new_node != NULL);
new_group = new_node->data;
prev_node = new_node->prev;
if (prev_node != NULL)
{
prev_group = prev_node->data;
/* If the previous group is empty, it means that it was not correctly
* merged.
*/
g_assert_cmpuint (prev_group->actions->length, >, 0);
}
/* If the saved_location is between the two nodes, the two nodes cannot
* be merged. Except if the new node is empty.
*/
if (manager->priv->has_saved_location &&
manager->priv->saved_location == new_node &&
new_group->actions->length > 0)
{
goto end;
}
if ((prev_group == NULL && new_group->actions->length == 0) ||
(prev_group != NULL && action_group_merge (prev_group, new_group)))
{
if (manager->priv->has_saved_location &&
manager->priv->saved_location == new_node)
{
manager->priv->saved_location = new_node->next;
}
/* Of course, no need to update location, since new_node is on
* the left of location.
*/
g_assert (manager->priv->location != new_node);
action_group_free (new_group);
g_queue_delete_link (manager->priv->action_groups, new_node);
check_history_size (manager);
update_can_undo_can_redo (manager);
return;
}
end:
/* "Archive" prev_group. It will never be mergeable again. If the user
* does some undo's to return to this location, a new action won't be
* merged with an "archived" action group.
*/
if (prev_group != NULL)
{
prev_group->force_not_mergeable = TRUE;
}
check_history_size (manager);
update_can_undo_can_redo (manager);
}
static void
insert_action (GtkSourceUndoManagerDefault *manager,
Action *new_action)
{
ActionGroup *group;
g_assert (new_action != NULL);
remove_redo_action_groups (manager);
g_assert (manager->priv->location == NULL);
if (!manager->priv->running_user_action)
{
insert_new_action_group (manager);
}
group = g_queue_peek_tail (manager->priv->action_groups);
g_assert (group != NULL);
/* Inside a group, don't try to merge the actions. It is needed to keep
* them separate so when undoing or redoing, the cursor position is set
* at the right place.
* For example with the search and replace, we replace all occurrences
* of 'a' by '' (i.e. delete all a's). The text "aaba" becomes "b". On
* undo, the cursor position should be placed at "a|aba", not "aa|ba"
* (but it's a detail).
*/
g_queue_push_tail (group->actions, new_action);
/* An action is mergeable only for an insertion or deletion of a single
* character. If the text contains several characters, the new_action
* can for example come from a copy/paste.
*/
if (new_action->end - new_action->start > 1 ||
g_str_equal (new_action->text, "\n"))
{
group->force_not_mergeable = TRUE;
}
if (!manager->priv->running_user_action)
{
try_merge_current_action_group (manager);
}
}
static void
delete_text (GtkTextBuffer *buffer,
gint start,
gint end)
{
GtkTextIter start_iter;
GtkTextIter end_iter;
gtk_text_buffer_get_iter_at_offset (buffer, &start_iter, start);
gtk_text_buffer_get_iter_at_offset (buffer, &end_iter, end);
gtk_text_buffer_begin_user_action (buffer);
gtk_text_buffer_delete (buffer, &start_iter, &end_iter);
gtk_text_buffer_end_user_action (buffer);
}
static void
insert_text (GtkTextBuffer *buffer,
gint offset,
const gchar *text)
{
GtkTextIter iter;
gtk_text_buffer_get_iter_at_offset (buffer, &iter, offset);
gtk_text_buffer_begin_user_action (buffer);
gtk_text_buffer_insert (buffer, &iter, text, -1);
gtk_text_buffer_end_user_action (buffer);
}
static gunichar
get_last_char (const gchar *text)
{
gchar *pos;
pos = g_utf8_find_prev_char (text, text + strlen (text));
if (pos == NULL)
{
return '\0';
}
return g_utf8_get_char (pos);
}
/* ActionInsert implementation */
static void
action_insert_undo (GtkTextBuffer *buffer,
Action *action)
{
g_assert_cmpint (action->type, ==, ACTION_TYPE_INSERT);
delete_text (buffer, action->start, action->end);
}
static void
action_insert_redo (GtkTextBuffer *buffer,
Action *action)
{
g_assert_cmpint (action->type, ==, ACTION_TYPE_INSERT);
insert_text (buffer, action->start, action->text);
}
static gboolean
action_insert_merge (Action *action,
Action *new_action)
{
gint new_text_length;
gunichar new_char;
gunichar last_char;
gchar *merged_text;
g_assert_cmpint (action->type, ==, ACTION_TYPE_INSERT);
g_assert_cmpint (new_action->type, ==, ACTION_TYPE_INSERT);
new_text_length = new_action->end - new_action->start;
g_assert_cmpint (new_text_length, ==, 1);
new_char = g_utf8_get_char (new_action->text);
g_assert (new_char != '\n');
if (action->end != new_action->start)
{
return FALSE;
}
last_char = get_last_char (action->text);
/* If I type character by character the text "hello world", there will
* be two actions: "hello" and " world". If I click on undo, only
* "hello" remains, not the space. The space makes sense only when
* a second word is present.
* Note that the spaces or tabs at the beginning of a line (for code
* indentation) are removed with the first word of the line. For example
* if I type character by character " return FALSE;", there are two
* actions: " return" and " FALSE;". If I undo two times, maybe I still
* want the indentation. But with auto-indent, when we press Enter to
* create a newline, the indentation is part of the action that adds the
* newline, i.e. we have the three actions "\n ", "return" and
* " FALSE;".
*/
if ((new_char == ' ' || new_char == '\t') &&
(last_char != ' ' && last_char != '\t'))
{
return FALSE;
}
merged_text = g_strdup_printf ("%s%s", action->text, new_action->text);
g_free (action->text);
action->text = merged_text;
action->end = new_action->end;
return TRUE;
}
static void
action_insert_set_cursor_position (GtkTextBuffer *buffer,
Action *action,
gboolean undo)
{
GtkTextIter iter;
g_assert_cmpint (action->type, ==, ACTION_TYPE_INSERT);
if (undo)
{
gtk_text_buffer_get_iter_at_offset (buffer, &iter, action->start);
}
else /* redo */
{
gtk_text_buffer_get_iter_at_offset (buffer, &iter, action->end);
}
gtk_text_buffer_place_cursor (buffer, &iter);
}
/* ActionDelete implementation */
static void
action_delete_undo (GtkTextBuffer *buffer,
Action *action)
{
g_assert_cmpint (action->type, ==, ACTION_TYPE_DELETE);
insert_text (buffer, action->start, action->text);
}
static void
action_delete_redo (GtkTextBuffer *buffer,
Action *action)
{
g_assert_cmpint (action->type, ==, ACTION_TYPE_DELETE);
delete_text (buffer, action->start, action->end);
}
static gboolean
action_delete_merge (Action *action,
Action *new_action)
{
gint new_text_length;
gunichar new_char;
g_assert_cmpint (action->type, ==, ACTION_TYPE_DELETE);
g_assert_cmpint (new_action->type, ==, ACTION_TYPE_DELETE);
new_text_length = new_action->end - new_action->start;
g_assert_cmpint (new_text_length, ==, 1);
new_char = g_utf8_get_char (new_action->text);
g_assert (new_char != '\n');
/* A Backspace can not be merged with a Delete.
* Two Backspaces or two Deletes must follow each other.
* In "abc", if the cursor is at offset 2 and I press the Backspace key,
* then move the cursor after 'c' and press Backspace again, the two
* deletes won't be merged, since there was a cursor movement in
* between.
*/
if ((action->forward != new_action->forward) ||
(action->forward && action->start != new_action->start) ||
(!action->forward && action->start != new_action->end))
{
return FALSE;
}
/* forward, Delete key pressed several times */
if (action->start == new_action->start)
{
gunichar last_char;
gchar *merged_text;
last_char = get_last_char (action->text);
/* Same as action_insert_merge(). */
if ((new_char == ' ' || new_char == '\t') &&
(last_char != ' ' && last_char != '\t'))
{
return FALSE;
}
merged_text = g_strdup_printf ("%s%s", action->text, new_action->text);
g_free (action->text);
action->text = merged_text;
action->end += new_text_length;
return TRUE;
}
/* backward, Backspace key pressed several times */
if (action->start == new_action->end)
{
gunichar last_char;
gchar *merged_text;
/* The last char deleted, but since it's with the Backspace key,
* it's the first char in action->text.
*/
last_char = g_utf8_get_char (action->text);
/* Same as action_insert_merge(). */
if ((new_char != ' ' && new_char != '\t') &&
(last_char == ' ' || last_char == '\t'))
{
return FALSE;
}
merged_text = g_strdup_printf ("%s%s", new_action->text, action->text);
g_free (action->text);
action->text = merged_text;
action->start = new_action->start;
return TRUE;
}
g_assert_not_reached ();
return FALSE;
}
static void
action_delete_set_cursor_position (GtkTextBuffer *buffer,
Action *action,
gboolean undo)
{
GtkTextIter iter;
g_assert_cmpint (action->type, ==, ACTION_TYPE_DELETE);
if (undo)
{
gtk_text_buffer_get_iter_at_offset (buffer, &iter, action->end);
}
else /* redo */
{
gtk_text_buffer_get_iter_at_offset (buffer, &iter, action->start);
}
gtk_text_buffer_place_cursor (buffer, &iter);
}
/* Action interface.
* The Action struct can be seen as an interface. All the explicit case analysis
* on the action type are grouped in this code section. This can easily be
* modified as an object-oriented architecture with polymorphism.
*/
static void
action_undo (GtkTextBuffer *buffer,
Action *action)
{
g_assert (action != NULL);
switch (action->type)
{
case ACTION_TYPE_INSERT:
action_insert_undo (buffer, action);
break;
case ACTION_TYPE_DELETE:
action_delete_undo (buffer, action);
break;
default:
g_return_if_reached ();
break;
}
}
static void
action_redo (GtkTextBuffer *buffer,
Action *action)
{
g_assert (action != NULL);
switch (action->type)
{
case ACTION_TYPE_INSERT:
action_insert_redo (buffer, action);
break;
case ACTION_TYPE_DELETE:
action_delete_redo (buffer, action);
break;
default:
g_return_if_reached ();
break;
}
}
/* Try to merge @new_action into @action. Returns TRUE if merged. It is up to
* the caller to free @new_action if needed.
*/
static gboolean
action_merge (Action *action,
Action *new_action)
{
g_assert (action != NULL);
g_assert (new_action != NULL);
if (action->type != new_action->type)
{
return FALSE;
}
switch (action->type)
{
case ACTION_TYPE_INSERT:
return action_insert_merge (action, new_action);
case ACTION_TYPE_DELETE:
return action_delete_merge (action, new_action);
default:
g_return_val_if_reached (FALSE);
break;
}
}
/* Set the cursor position according to @action.
* If @undo is TRUE, @action has just been undone. If @undo is FALSE, @action
* has just been redone.
*/
static void
action_set_cursor_position (GtkTextBuffer *buffer,
Action *action,
gboolean undo)
{
g_assert (action != NULL);
switch (action->type)
{
case ACTION_TYPE_INSERT:
action_insert_set_cursor_position (buffer, action, undo);
break;
case ACTION_TYPE_DELETE:
action_delete_set_cursor_position (buffer, action, undo);
break;
default:
g_return_if_reached ();
break;
}
}
/* Buffer signal handlers */
static void
insert_text_cb (GtkTextBuffer *buffer,
GtkTextIter *location,
const gchar *text,
gint length,
GtkSourceUndoManagerDefault *manager)
{
Action *action = action_new ();
action->type = ACTION_TYPE_INSERT;
action->start = gtk_text_iter_get_offset (location);
action->text = g_strndup (text, length);
action->end = action->start + g_utf8_strlen (action->text, -1);
insert_action (manager, action);
}
static void
delete_range_cb (GtkTextBuffer *buffer,
GtkTextIter *start,
GtkTextIter *end,
GtkSourceUndoManagerDefault *manager)
{
Action *action = action_new ();
GtkTextIter cursor_pos;
action->type = ACTION_TYPE_DELETE;
action->start = gtk_text_iter_get_offset (start);
action->end = gtk_text_iter_get_offset (end);
action->text = gtk_text_buffer_get_slice (buffer, start, end, TRUE);
g_assert_cmpint (action->start, <, action->end);
gtk_text_buffer_get_iter_at_mark (buffer, &cursor_pos,
gtk_text_buffer_get_insert (buffer));
action->forward = gtk_text_iter_equal (&cursor_pos, start);
insert_action (manager, action);
}
static void
begin_user_action_cb (GtkTextBuffer *buffer,
GtkSourceUndoManagerDefault *manager)
{
insert_new_action_group (manager);
manager->priv->running_user_action = TRUE;
update_can_undo_can_redo (manager);
}
static void
end_user_action_cb (GtkTextBuffer *buffer,
GtkSourceUndoManagerDefault *manager)
{
try_merge_current_action_group (manager);
manager->priv->running_user_action = FALSE;
update_can_undo_can_redo (manager);
}
static void
modified_changed_cb (GtkTextBuffer *buffer,
GtkSourceUndoManagerDefault *manager)
{
if (gtk_text_buffer_get_modified (buffer))
{
/* It can happen for example when the file on disk has been
* deleted.
*/
if (manager->priv->has_saved_location &&
manager->priv->saved_location == manager->priv->location)
{
manager->priv->has_saved_location = FALSE;
}
}
/* saved */
else
{
manager->priv->saved_location = manager->priv->location;
manager->priv->has_saved_location = TRUE;
/* Saving a buffer during a user action is allowed, the user
* action is split.
* FIXME and/or a warning should be printed?
*/
if (manager->priv->running_user_action)
{
try_merge_current_action_group (manager);
insert_new_action_group (manager);
}
}
}
static void
block_signal_handlers (GtkSourceUndoManagerDefault *manager)
{
if (manager->priv->buffer == NULL)
{
return;
}
g_signal_handlers_block_by_func (manager->priv->buffer,
insert_text_cb,
manager);
g_signal_handlers_block_by_func (manager->priv->buffer,
delete_range_cb,
manager);
g_signal_handlers_block_by_func (manager->priv->buffer,
begin_user_action_cb,
manager);
g_signal_handlers_block_by_func (manager->priv->buffer,
end_user_action_cb,
manager);
g_signal_handlers_block_by_func (manager->priv->buffer,
modified_changed_cb,
manager);
}
static void
unblock_signal_handlers (GtkSourceUndoManagerDefault *manager)
{
if (manager->priv->buffer == NULL)
{
return;
}
g_signal_handlers_unblock_by_func (manager->priv->buffer,
insert_text_cb,
manager);
g_signal_handlers_unblock_by_func (manager->priv->buffer,
delete_range_cb,
manager);
g_signal_handlers_unblock_by_func (manager->priv->buffer,
begin_user_action_cb,
manager);
g_signal_handlers_unblock_by_func (manager->priv->buffer,
end_user_action_cb,
manager);
g_signal_handlers_unblock_by_func (manager->priv->buffer,
modified_changed_cb,
manager);
}
static void
set_buffer (GtkSourceUndoManagerDefault *manager,
GtkTextBuffer *buffer)
{
g_assert (manager->priv->buffer == NULL);
if (buffer == NULL)
{
return;
}
manager->priv->buffer = buffer;
g_object_add_weak_pointer (G_OBJECT (buffer),
(gpointer *)&manager->priv->buffer);
g_signal_connect_object (buffer,
"insert-text",
G_CALLBACK (insert_text_cb),
manager,
0);
g_signal_connect_object (buffer,
"delete-range",
G_CALLBACK (delete_range_cb),
manager,
0);
g_signal_connect_object (buffer,
"begin-user-action",
G_CALLBACK (begin_user_action_cb),
manager,
0);
g_signal_connect_object (buffer,
"end-user-action",
G_CALLBACK (end_user_action_cb),
manager,
0);
g_signal_connect_object (buffer,
"modified-changed",
G_CALLBACK (modified_changed_cb),
manager,
0);
modified_changed_cb (manager->priv->buffer, manager);
}
/* GObject construction, destruction and properties */
static void
gtk_source_undo_manager_default_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
GtkSourceUndoManagerDefault *manager = GTK_SOURCE_UNDO_MANAGER_DEFAULT (object);
switch (prop_id)
{
case PROP_BUFFER:
set_buffer (manager, g_value_get_object (value));
break;
case PROP_MAX_UNDO_LEVELS:
gtk_source_undo_manager_default_set_max_undo_levels (manager, g_value_get_int (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gtk_source_undo_manager_default_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
GtkSourceUndoManagerDefault *manager = GTK_SOURCE_UNDO_MANAGER_DEFAULT (object);
switch (prop_id)
{
case PROP_BUFFER:
g_value_set_object (value, manager->priv->buffer);
break;
case PROP_MAX_UNDO_LEVELS:
g_value_set_int (value, manager->priv->max_undo_levels);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gtk_source_undo_manager_default_dispose (GObject *object)
{
GtkSourceUndoManagerDefault *manager = GTK_SOURCE_UNDO_MANAGER_DEFAULT (object);
if (manager->priv->buffer != NULL)
{
g_object_remove_weak_pointer (G_OBJECT (manager->priv->buffer),
(gpointer *)&manager->priv->buffer);
manager->priv->buffer = NULL;
}
G_OBJECT_CLASS (gtk_source_undo_manager_default_parent_class)->dispose (object);
}
static void
gtk_source_undo_manager_default_finalize (GObject *object)
{
GtkSourceUndoManagerDefault *manager = GTK_SOURCE_UNDO_MANAGER_DEFAULT (object);
g_queue_free_full (manager->priv->action_groups,
(GDestroyNotify) action_group_free);
G_OBJECT_CLASS (gtk_source_undo_manager_default_parent_class)->finalize (object);
}
static void
gtk_source_undo_manager_default_class_init (GtkSourceUndoManagerDefaultClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->set_property = gtk_source_undo_manager_default_set_property;
object_class->get_property = gtk_source_undo_manager_default_get_property;
object_class->dispose = gtk_source_undo_manager_default_dispose;
object_class->finalize = gtk_source_undo_manager_default_finalize;
g_object_class_install_property (object_class,
PROP_BUFFER,
g_param_spec_object ("buffer",
"Buffer",
"The text buffer to add undo support on",
GTK_TYPE_TEXT_BUFFER,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
g_object_class_install_property (object_class,
PROP_MAX_UNDO_LEVELS,
g_param_spec_int ("max-undo-levels",
"Max Undo Levels",
"Number of undo levels for the buffer",
-1,
G_MAXINT,
DEFAULT_MAX_UNDO_LEVELS,
G_PARAM_READWRITE));
}
static void
gtk_source_undo_manager_default_init (GtkSourceUndoManagerDefault *manager)
{
manager->priv = gtk_source_undo_manager_default_get_instance_private (manager);
manager->priv->action_groups = g_queue_new ();
manager->priv->max_undo_levels = DEFAULT_MAX_UNDO_LEVELS;
}
/* Interface implementation */
static gboolean
gtk_source_undo_manager_can_undo_impl (GtkSourceUndoManager *undo_manager)
{
GtkSourceUndoManagerDefault *manager = GTK_SOURCE_UNDO_MANAGER_DEFAULT (undo_manager);
return manager->priv->can_undo;
}
static gboolean
gtk_source_undo_manager_can_redo_impl (GtkSourceUndoManager *undo_manager)
{
GtkSourceUndoManagerDefault *manager = GTK_SOURCE_UNDO_MANAGER_DEFAULT (undo_manager);
return manager->priv->can_redo;
}
static void
restore_modified_state (GtkSourceUndoManagerDefault *manager,
GList *old_location,
GList *new_location)
{
if (manager->priv->has_saved_location)
{
if (old_location == manager->priv->saved_location)
{
gtk_text_buffer_set_modified (manager->priv->buffer, TRUE);
}
else if (new_location == manager->priv->saved_location)
{
gtk_text_buffer_set_modified (manager->priv->buffer, FALSE);
}
}
}
static void
gtk_source_undo_manager_undo_impl (GtkSourceUndoManager *undo_manager)
{
GtkSourceUndoManagerDefault *manager = GTK_SOURCE_UNDO_MANAGER_DEFAULT (undo_manager);
GList *old_location;
GList *new_location;
ActionGroup *group;
Action *action;
GList *l;
g_return_if_fail (manager->priv->can_undo);
old_location = manager->priv->location;
if (old_location != NULL)
{
new_location = manager->priv->location->prev;
}
else
{
new_location = manager->priv->action_groups->tail;
}
g_assert (new_location != NULL);
group = new_location->data;
/* Empty groups are inserted at the beginning of a user action, but
* during a user action can_undo is FALSE.
*/
g_assert_cmpuint (group->actions->length, >, 0);
block_signal_handlers (manager);
for (l = group->actions->tail; l != NULL; l = l->prev)
{
action = l->data;
action_undo (manager->priv->buffer, action);
}
restore_modified_state (manager, old_location, new_location);
/* After an undo, place the cursor at the first action in the group. For
* a search and replace, it will be the first occurrence in the buffer.
*/
action = g_queue_peek_head (group->actions);
action_set_cursor_position (manager->priv->buffer, action, TRUE);
unblock_signal_handlers (manager);
manager->priv->location = new_location;
update_can_undo_can_redo (manager);
}
static void
gtk_source_undo_manager_redo_impl (GtkSourceUndoManager *undo_manager)
{
GtkSourceUndoManagerDefault *manager = GTK_SOURCE_UNDO_MANAGER_DEFAULT (undo_manager);
GList *old_location;
GList *new_location;
ActionGroup *group;
GList *l;
g_return_if_fail (manager->priv->can_redo);
old_location = manager->priv->location;
g_assert (old_location != NULL);
new_location = old_location->next;
group = old_location->data;
block_signal_handlers (manager);
for (l = group->actions->head; l != NULL; l = l->next)
{
Action *action = l->data;
action_redo (manager->priv->buffer, action);
/* For a redo, place the cursor at the first action in the
* group. For an undo the first action is also chosen, so when
* undoing/redoing a search and replace, the cursor position
* stays at the first occurrence and the user can see the
* replacement easily.
* For a redo, if we choose the last action in the group, when
* undoing/redoing a search and replace, the cursor position
* will jump between the first occurrence and the last
* occurrence. Staying at the same place is probably better.
*/
if (l == group->actions->head)
{
action_set_cursor_position (manager->priv->buffer, action, FALSE);
}
}
restore_modified_state (manager, old_location, new_location);
unblock_signal_handlers (manager);
manager->priv->location = new_location;
update_can_undo_can_redo (manager);
}
static void
gtk_source_undo_manager_begin_not_undoable_action_impl (GtkSourceUndoManager *undo_manager)
{
GtkSourceUndoManagerDefault *manager = GTK_SOURCE_UNDO_MANAGER_DEFAULT (undo_manager);
manager->priv->running_not_undoable_actions++;
if (manager->priv->running_not_undoable_actions == 1)
{
block_signal_handlers (manager);
}
}
static void
gtk_source_undo_manager_end_not_undoable_action_impl (GtkSourceUndoManager *undo_manager)
{
GtkSourceUndoManagerDefault *manager = GTK_SOURCE_UNDO_MANAGER_DEFAULT (undo_manager);
g_return_if_fail (manager->priv->running_not_undoable_actions > 0);
manager->priv->running_not_undoable_actions--;
if (manager->priv->running_not_undoable_actions == 0)
{
unblock_signal_handlers (manager);
clear_all (manager);
}
}
static void
gtk_source_undo_manager_iface_init (GtkSourceUndoManagerIface *iface)
{
iface->can_undo = gtk_source_undo_manager_can_undo_impl;
iface->can_redo = gtk_source_undo_manager_can_redo_impl;
iface->undo = gtk_source_undo_manager_undo_impl;
iface->redo = gtk_source_undo_manager_redo_impl;
iface->begin_not_undoable_action = gtk_source_undo_manager_begin_not_undoable_action_impl;
iface->end_not_undoable_action = gtk_source_undo_manager_end_not_undoable_action_impl;
}
/* Public functions */
void
gtk_source_undo_manager_default_set_max_undo_levels (GtkSourceUndoManagerDefault *manager,
gint max_undo_levels)
{
g_return_if_fail (GTK_SOURCE_IS_UNDO_MANAGER_DEFAULT (manager));
g_return_if_fail (max_undo_levels >= -1);
if (manager->priv->max_undo_levels != max_undo_levels)
{
if (max_undo_levels == 0)
{
/* disable the undo manager */
block_signal_handlers (manager);
}
else if (manager->priv->max_undo_levels == 0)
{
unblock_signal_handlers (manager);
}
manager->priv->max_undo_levels = max_undo_levels;
check_history_size (manager);
g_object_notify (G_OBJECT (manager), "max-undo-levels");
}
}
|