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
|
<?xml version="1.0" encoding="utf-8"?>
<page xmlns="http://projectmallard.org/1.0/" xmlns:its="http://www.w3.org/2005/11/its" xmlns:xi="http://www.w3.org/2003/XInclude" type="topic" id="async-programming" xml:lang="es">
<info>
<link type="guide" xref="index#specific-how-tos"/>
<credit type="author copyright">
<name>Philip Withnall</name>
<email its:translate="no">philip.withnall@collabora.co.uk</email>
<years>2015</years>
</credit>
<include xmlns="http://www.w3.org/2001/XInclude" href="cc-by-sa-3-0.xml"/>
<desc>Uso de métodos asíncronos al estilo de GLib en varias situaciones</desc>
<mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
<mal:name>Daniel Mustieles</mal:name>
<mal:email>daniel.mustieles@gmail.com</mal:email>
<mal:years>2016-2020</mal:years>
</mal:credit>
<mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
<mal:name>Javier Mazorra</mal:name>
<mal:email>mazi.debian@gmail.com</mal:email>
<mal:years>2016, 2020</mal:years>
</mal:credit>
</info>
<title>Programación asíncrona</title>
<synopsis>
<title>Resumen</title>
<list>
<item><p>Uso de llamadas asíncronas con preferencia a las llamadas síncronas o uso explícito de hilos (<link xref="#concepts"/>)</p></item>
<item><p>Aprenda y siga el patrón de GLib para declarar API asíncronas (<link xref="#api-pattern"/>)</p></item>
<item><p>Coloque el retorno de llamadas de funciones asíncronas en orden descendente del archivo para que el control del flujo sea fácil de seguir (<link xref="#single-call"/>)</p></item>
<item><p>Use la presencia de un <link href="https://developer.gnome.org/gio/stable/GTask.html"><code>GTask</code></link> o <link href="https://developer.gnome.org/gio/stable/GCancellable.html"><code>GCancellable</code></link> para indicar si una operación está en curso (<link xref="#single-call"/>, <link xref="#gtask"/>)</p></item>
<item><p>Si ejecuta operaciones en paralelo, realice un seguimiento de cuántas operaciones aún deben comenzar y cuántas aún deben finalizar — la operación global se completa una vez que ambos recuentos son cero (<link xref="#parallel"/>)</p></item>
<item><p>Separe el estado de las operaciones en estructuras ‘task data’ para <link href="https://developer.gnome.org/gio/stable/GTask.html"><code>GTask</code>s</link>, permitiendo que se reutilicen las operaciones más fácilmente sin necesidad de cambios en la gestión del estado global (<link xref="#gtask"/>)</p></item>
<item><p>Considere cómo los métodos asíncronos en una instancia de un objeto interactúan con la finalización de esa instancia (<link xref="#lifetimes"/>)</p></item>
</list>
</synopsis>
<section id="concepts">
<title>Conceptos</title>
<p>GLib soporta programación <em>asíncrona</em>, donde se pueden iniciar operaciones de larga duración, ejecutarlas ‘en segundo plano’, e invocar un retorno de función cuando se completan y sus resultados están disponibles. Esto está en contraste directo con las operaciones de larga duración <em>asíncronas</em>, que son una única llamada de función que bloquea el control de flujo del programa hasta que se completa.</p>
<p>Como se discutió en <link xref="main-contexts"/> y <link xref="threading#when-to-use-threading"/>, las operaciones asíncronas deberían ser favorecidas sobre las síncronas y sobre el uso explícito de hilos. No bloquean el contexto principal como las operaciones síncronas y son más fáciles de utilizar correctamente que los hilos. Frecuentemente tienen una menor penalización en el rendimiento que generar un hilo y enviarle trabajo.</p>
</section>
<section id="api-pattern">
<title>Patrón API</title>
<p>Las llamadas asíncronas siguen un patrón estándar en código GLib. Para una operación llamada <code>load_data</code> en la clase <code>File</code> en el espacio de nombres <code>Foo</code>, habrá:</p>
<list>
<item>
<code mime="text/x-csrc">
foo_file_load_data_async (FooFile *self,
…,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data)</code>
</item>
<item>
<code mime="text/x-csrc">
foo_file_load_data_finish (FooFile *self,
GAsyncResult *result,
…,
GError **error)</code>
</item>
</list>
<p>Los parámetros <code>…</code> para <code>foo_file_load_data_async()</code> son los específicos para la operación, en este caso, quizá el tamaño de un búfer para cargar. De manera similar para <code>foo_file_load_data_finish()</code> son los valores de retorno específicos de la operación, quizá una ubicación para devolver una cadena de tipo de contenido en este caso.</p>
<p>Cuando se llama a <code>foo_file_load_data_async()</code>, planifica la carga de la operación en segundo plano (como un nuevo descriptor de un archivo en el <link xref="main-contexts"><code>GMainContext</code></link> o como un nuevo hilo activo, por ejemplo), después vuelve sin bloquear.</p>
<p>Cuando se completa la operación, el <code>retorno de función</code> se ejecuta en el mismo <code>GMainContext</code> que la llamada asíncrona original. El retorno de función se invoca <em>exactamente</em> una vez, tanto si la operación concluyó con éxito como si concluyó con error.</p>
<p>Desde el retorno de llamada <code>foo_file_data_finish()</code> se puede llamar por el código del usuario para obtener valores de retorno y detalles de error, pasando la instancia <link href="https://developer.gnome.org/gio/stable/GAsyncResult.html"><code>GAsyncResult</code></link> que se pasó al retorno de llamada.</p>
</section>
<section id="lifetimes">
<title>Tiempos de vida de la operación</title>
<p>Al escribir operaciones asíncronas, es común escribirlas como métodos de una clase. En este caso, es importante definir cómo las operaciones en curso en una instancia de clase interactúan con la finalización de esa instancia. Hay dos enfoques:</p>
<terms>
<item>
<title>Fuerte</title>
<p>La operación en curso mantiene una referencia a la instancia de clase, forzándola a permanecer viva mientras dure la operación. La clase debe proporcionar algún tipo de método de «cierre» o «cancelación» que otras clases puedan utilizar para forzar la cancelación de la operación y permitir que se finalice esa instancia.</p>
</item>
<item>
<title>Débil</title>
<p>La operación en curso <em>no</em> mantiene una referencia a la instancia de la clase, y la clase cancela la operación (usando <link href="https://developer.gnome.org/gio/stable/GCancellable.html#g-cancellable-cancel"><code>g_cancellable_cancel()</code></link>) en su función de disposición.</p>
</item>
</terms>
<p>
Which approach is used depends on the class’ design. A class which wraps
a particular operation (perhaps a <code>MyFileTransfer</code> class, for
example) might want to use the <em style="strong">weak</em> approach.
A class which manages multiple network connections and asynchronous
operations on them may use the <em style="strong">strong</em> approach
instead. Due to incoming network connections, for example, it might not be
in complete control of the scheduling of its asynchronous calls, so the
weak approach would not be appropriate — any code dropping a reference to
the object could not be sure it was not accidentally killing a new network
connection.
</p>
</section>
<section id="async-examples">
<title>Ejemplos de uso de funciones asíncronas</title>
<p>
It is often the case that multiple asynchronous calls need to be used to
complete an operation. For example, opening a file for reading, then
performing a couple of reads, and then closing the file. Or opening
several network sockets in parallel and waiting until they are all open
before continuing with other work. Some examples of these situations are
given below.
</p>
<section id="single-call">
<title>Operación individual</title>
<p>Una sola llamada asincrónica requiere dos funciones: una para iniciar la operación y otra para completarla. En C, la parte exigente de ejecarut una llamada asíncrona es almacenar correctamente el estado entre estas dos funciones y manejar los cambios a ese estado en el tiempo entre esas dos funciones que se están llamando. Por ejemplo, la cancelación de una llamada asíncrona en curso es un cambio de estado, y si no se implementa con cuidado, algunas actualizaciones de la IU (por ejemplo) realizadas al cancelar una operación serán deshechas por las actualizaciones en el retorno de llamada de la operación.</p>
<example>
<p>Este ejemplo muestra cómo copiar un archivo de una ubicación en el sistema de archivos a otra. Los principios clave demostrados aquí son:</p>
<list>
<item><p>
Placing the <code>copy_button_clicked_cb()</code> (start) and
<code>copy_finish_cb()</code> (finish) functions in order by using
a forward declaration for <code>copy_finish_cb()</code>. This means
the control flow continues linearly down the file, rather than
getting to the bottom of <code>copy_button_clicked_cb()</code> and
resuming in <code>copy_finish_cb()</code> somewhere else in the
file.
</p></item>
<item><p>
Use of a
<link href="https://developer.gnome.org/gio/stable/GCancellable.html"><code>GCancellable</code></link>
to allow cancelling the operation
after it has started. The code in
<code>cancel_button_clicked_cb()</code> is very simple: as the
<code>copy_finish_cb()</code> callback is <em>guaranteed</em> to be
invoked when the operation completes (even when completing early
due to cancellation), all the UI and state updates for cancellation
can be handled there, rather than in
<code>cancel_button_clicked_cb()</code>.
</p></item>
<item><p>
An operation is ongoing exactly while
<code>MyObjectPrivate.copy_cancellable</code> is
non-<code>NULL</code>, making it easy to track running operations.
Note that this means only one file copy operation can be started
via <code>copy_button_clicked_cb()</code> at a time. One
<code>GCancellable</code> cannot easily be used for multiple
operations like this.
</p></item>
</list>
<code mime="text/x-csrc" style="valid">
static void
copy_finish_cb (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
static void
copy_button_clicked_cb (GtkButton *button
gpointer user_data)
{
MyObjectPrivate *priv;
GFile *source = NULL, *destination = NULL; /* owned */
priv = my_object_get_instance_private (MY_OBJECT (user_data));
/* Operation already in progress? */
if (priv->copy_cancellable != NULL)
{
g_debug ("Copy already in progress.");
return;
}
/* Build source and destination file paths. */
source = g_file_new_for_path (/* some path generated from UI */);
destination = g_file_new_for_path (/* some other path generated from UI */);
/* Set up a cancellable. */
priv->copy_cancellable = g_cancellable_new ();
g_file_copy_async (source, destination, G_FILE_COPY_NONE, G_PRIORITY_DEFAULT,
priv->copy_cancellable, NULL, NULL,
copy_finish_cb, user_data);
g_object_unref (destination);
g_object_unref (source);
/* Update UI to show copy is in progress. */
…
}
static void
copy_finish_cb (GObject *source_object,
GAsyncResult *result,
gpointer user_data)
{
MyObjectPrivate *priv;
GFile *source; /* unowned */
GError *error = NULL;
source = G_FILE (source_object);
priv = my_object_get_instance_private (MY_OBJECT (user_data));
/* Handle completion of the operation. */
g_file_copy_finish (source, result, &error);
if (error != NULL &&
!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
{
/* Should update the UI to signal failure.
* Ignore failure due to cancellation. */
g_warning ("Failed to copy file: %s", error->message);
}
g_clear_error (&error);
/* Clear the cancellable to signify the operation has finished. */
g_clear_object (&priv->copy_cancellable);
/* Update UI to show copy as complete. */
…
}
static void
cancel_button_clicked_cb (GtkButton *button,
gpointer user_data)
{
MyObjectPrivate *priv;
GFile *source = NULL, *destination = NULL; /* owned */
priv = my_object_get_instance_private (MY_OBJECT (user_data));
/* Operation in progress? No-op if @copy_cancellable is %NULL. */
g_cancellable_cancel (priv->copy_cancellable);
}
static void
my_object_dispose (GObject *obj)
{
MyObjectPrivate *priv;
priv = my_object_get_instance_private (MY_OBJECT (obj));
/* Cancel any ongoing copy operation.
*
* This ensures that if #MyObject is disposed part-way through a copy, the
* callback doesn’t get invoked with an invalid #MyObject pointer. */
g_cancellable_cancel (priv->copy_cancellable);
/* Do other dispose calls here. */
…
/* Chain up. */
G_OBJECT_CLASS (my_object_parent_class)->dispose (obj);
}</code>
<p>
For comparison, here is the same code implemented using the
<em>synchronous</em> version of
<link href="https://developer.gnome.org/gio/stable/GFile.html#g-file-copy"><code>g_file_copy()</code></link>.
Note how the order of statements is almost identical. Cancellation
cannot be supported here, as the UI is blocked from receiving ‘click’
events on the cancellation button while the copy is ongoing, so
<code>NULL</code> is passed to the <code>GCancellable</code>
parameter. This is the main reason why this code should <em>not</em>
be used in practice.
</p>
<code mime="text/x-csrc" style="invalid">
static void
copy_button_clicked_cb (GtkButton *button
gpointer user_data)
{
MyObjectPrivate *priv;
GFile *source = NULL, *destination = NULL; /* owned */
priv = my_object_get_instance_private (MY_OBJECT (user_data));
/* Build source and destination file paths. */
source = g_file_new_for_path (/* some path generated from UI */);
destination = g_file_new_for_path (/* some other path generated from UI */);
g_file_copy (source, destination, G_FILE_COPY_NONE,
NULL /* cancellable */, NULL, NULL,
&error);
g_object_unref (destination);
g_object_unref (source);
/* Handle completion of the operation. */
if (error != NULL)
{
/* Should update the UI to signal failure.
* Ignore failure due to cancellation. */
g_warning ("Failed to copy file: %s", error->message);
}
g_clear_error (&error);
/* Update UI to show copy as complete. */
…
}</code>
</example>
</section>
<section id="series">
<title>Operaciones en serie</title>
<p>Una situación común es ejecutar múltiples operaciones asincrónicas en serie, cuando cada operación depende de que se complete la anterior.</p>
<example>
<p>En este ejemplo, la aplicación lee una dirección de socket desde un archivo, abre una conexión a esa dirección, lee un mensaje y luego termina.</p>
<p>Los puntos clave en este ejemplo son:</p>
<list>
<item><p>Cada retorno de llamada es numerada consistentemente y están todas colocadas en orden en el archivo para que el código siga secuencialmente.</p></item>
<item><p>Como en <link xref="#single-call"/>, un único <code>GCancellable</code> indica que la serie de operaciones está en curso. Al cancelarlo se aborta toda la secuencia.</p></item>
<item><p>Como en <link xref="#single-call"/>, la operación pendiente se cancela si se elimina la instancia propietaria de <code>MyObject</code> para evitar que se llame a los retornos de función después con un puntero a <code>MyObject</code> no válido.</p></item>
</list>
<p>
<link xref="#gtask"/> gives a version of this example wrapped in a
<link href="https://developer.gnome.org/gio/stable/GTask.html"><code>GTask</code></link>
for convenience.
</p>
<code mime="text/x-csrc" style="valid">
static void
connect_to_server_cb1 (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
static void
connect_to_server_cb2 (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
static void
connect_to_server_cb3 (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
static void
connect_to_server (MyObject *self)
{
MyObjectPrivate *priv;
GFile *address_file = NULL; /* owned */
priv = my_object_get_instance_private (self);
if (priv->connect_cancellable != NULL)
{
/* Already connecting. */
return;
}
/* Set up a cancellable. */
priv->connect_cancellable = g_cancellable_new ();
/* Read the socket address. */
address_file = build_address_file ();
g_file_load_contents_async (address_file, priv->connect_cancellable,
connect_to_server_cb1, self);
g_object_unref (address_file);
}
static void
connect_to_server_cb1 (GObject *source_object,
GAsyncResult *result,
gpointer user_data)
{
MyObject *self;
MyObjectPrivate *priv;
GFile *address_file; /* unowned */
gchar *address = NULL; /* owned */
gsize address_size = 0;
GInetAddress *inet_address = NULL; /* owned */
GInetSocketAddress *inet_socket_address = NULL; /* owned */
guint16 port = 123;
GSocketClient *socket_client = NULL; /* owned */
GError *error = NULL;
address_file = G_FILE (source_object);
self = MY_OBJECT (user_data);
priv = my_object_get_instance_private (self);
/* Finish loading the address. */
g_file_load_contents_finish (address_file, result, &address,
&address_size, NULL, &error);
if (error != NULL)
{
goto done;
}
/* Parse the address. */
inet_address = g_inet_address_new_from_string (address);
if (inet_address == NULL)
{
/* Error. */
g_set_error (&error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
"Invalid address ‘%s’.", address);
goto done;
}
inet_socket_address = g_inet_socket_address_new (inet_address, port);
/* Connect to the given address. */
socket_client = g_socket_client_new ();
g_socket_client_connect_async (socket_client,
G_SOCKET_CONNECTABLE (inet_socket_address),
priv->connect_cancellable,
connect_to_server_cb2,
self);
done:
if (error != NULL)
{
/* Stop the operation. */
if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
{
g_warning ("Failed to load server address: %s", error->message);
}
g_clear_object (&priv->connect_cancellable);
g_error_free (error);
}
g_free (address);
g_clear_object (&inet_address);
g_clear_object (&inet_socket_address);
g_clear_object (&socket_client);
}
static void
connect_to_server_cb2 (GObject *source_object,
GAsyncResult *result,
gpointer user_data)
{
MyObject *self;
MyObjectPrivate *priv;
GSocketClient *socket_client; /* unowned */
GSocketConnection *connection = NULL; /* owned */
GInputStream *input_stream; /* unowned */
GError *error = NULL;
socket_client = G_SOCKET_CLIENT (source_object);
self = MY_OBJECT (user_data);
priv = my_object_get_instance_private (self);
/* Finish connecting to the socket. */
connection = g_socket_client_connect_finish (socket_client, result,
&error);
if (error != NULL)
{
goto done;
}
/* Store a reference to the connection so it is kept open while we read from
* it: #GInputStream does not keep a reference to a #GIOStream which contains
* it. */
priv->connection = g_object_ref (connection);
/* Read a message from the connection. This uses a single buffer stored in
* #MyObject, meaning that only one connect_to_server() operation can run at
* any time. The buffer could instead be allocated dynamically if this is a
* problem. */
input_stream = g_io_stream_get_input_stream (G_IO_STREAM (connection));
g_input_stream_read_async (input_stream,
priv->message_buffer,
sizeof (priv->message_buffer),
G_PRIORITY_DEFAULT, priv->connect_cancellable,
connect_to_server_cb3, self);
done:
if (error != NULL)
{
/* Stop the operation. */
if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
{
g_warning ("Failed to connect to server: %s", error->message);
}
g_clear_object (&priv->connect_cancellable);
g_clear_object (&priv->connection);
g_error_free (error);
}
g_clear_object (&connection);
}
static void
connect_to_server_cb3 (GObject *source_object,
GAsyncResult *result,
gpointer user_data)
{
MyObject *self;
MyObjectPrivate *priv;
GInputStream *input_stream; /* unowned */
gssize len = 0;
GError *error = NULL;
input_stream = G_INPUT_STREAM (source_object);
self = MY_OBJECT (user_data);
priv = my_object_get_instance_private (self);
/* Finish reading from the socket. */
len = g_input_stream_read_finish (input_stream, result, &error);
if (error != NULL)
{
goto done;
}
/* Handle the message. */
g_assert_cmpint (len, >=, 0);
g_assert_cmpuint ((gsize) len, <=, sizeof (priv->message_buffer));
handle_received_message (self, priv->message_buffer, len, &error);
if (error != NULL)
{
goto done;
}
done:
/* Unconditionally mark the operation as finished.
*
* The streams should automatically close as this
* last reference is dropped. */
g_clear_object (&priv->connect_cancellable);
g_clear_object (&priv->connection);
if (error != NULL)
{
/* Warn about the error. */
if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
{
g_warning ("Failed to read from the server: %s", error->message);
}
g_error_free (error);
}
}
static void
my_object_dispose (GObject *obj)
{
MyObjectPrivate *priv;
priv = my_object_get_instance_private (MY_OBJECT (obj));
/* Cancel any ongoing connection operations.
*
* This ensures that if #MyObject is disposed part-way through the
* connect_to_server() sequence of operations, the sequence gets cancelled and
* doesn’t continue with an invalid #MyObject pointer. */
g_cancellable_cancel (priv->connect_cancellable);
/* Do other dispose calls here. */
…
/* Chain up. */
G_OBJECT_CLASS (my_object_parent_class)->dispose (obj);
}</code>
</example>
</section>
<section id="parallel">
<title>Operaciones en paralelo</title>
<p>Otra situación común es ejecutar múltiples operaciones asincrónicas en paralelo, considerando que la operación general se completa cuando todos sus componentes están completos.</p>
<example>
<p>En este ejemplo, la aplicación elimina varios archivos en paralelo.</p>
<p>Los puntos clave en este ejemplo son:</p>
<list>
<item><p>
The number of pending asynchronous operations (ones which have
started but not yet finished) is tracked as
<code>n_deletions_pending</code>. The <code>delete_files_cb()</code>
callback only considers the entire operation complete once this
reaches zero.
</p></item>
<item><p>
<code>n_deletions_to_start</code> tracks deletion operations being
started, in case
<link href="https://developer.gnome.org/gio/stable/GFile.html#g-file-delete-async"><code>g_file_delete_async()</code></link>
manages to use a fast path and complete synchronously (without
blocking).
</p></item>
<item><p>
As in <link xref="#single-call"/>, all pending deletions are
cancelled if the owning <code>MyObject</code> instance is disposed,
to prevent callbacks being called later with an invalid
<code>MyObject</code> pointer.
</p></item>
</list>
<code mime="text/x-csrc" style="valid">
static void
delete_files_cb (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
static void
delete_files (MyObject *self,
GPtrArray/*<owned GFile*>>*/ *files)
{
MyObjectPrivate *priv;
GFile *address_file = NULL; /* owned */
priv = my_object_get_instance_private (self);
/* Set up a cancellable if no operation is ongoing already. */
if (priv->delete_cancellable == NULL)
{
priv->delete_cancellable = g_cancellable_new ();
priv->n_deletions_pending = 0;
priv->n_deletions_total = 0;
}
/* Update internal state, and temporarily set @n_deletions_to_start. This is
* used in delete_files_cb() to avoid indicating the overall operation has
* completed while deletions are still being started. This can happen if
* g_file_delete_async() completes synchronously, for example if there’s a
* non-blocking fast path for the given file system. */
priv->n_deletions_pending += files->len;
priv->n_deletions_total += files->len;
priv->n_deletions_to_start = files->len;
/* Update the UI to indicate the files are being deleted. */
update_ui_to_show_progress (self,
priv->n_deletions_pending,
priv->n_deletions_total);
/* Start all the deletion operations in parallel. They share the same
* #GCancellable. */
for (i = 0; i < files->len; i++)
{
GFile *file = files->pdata[i];
priv->n_deletions_to_start--;
g_file_delete_async (file, G_PRIORITY_DEFAULT, priv->delete_cancellable,
delete_files_cb, self);
}
}
static void
delete_files_cb (GObject *source_object,
GAsyncResult *result,
gpointer user_data)
{
MyObject *self;
MyObjectPrivate *priv;
GFile *file; /* unowned */
GError *error = NULL;
file = G_FILE (source_object);
self = MY_OBJECT (user_data);
priv = my_object_get_instance_private (self);
/* Finish deleting the file. */
g_file_delete_finish (file, result, &error);
if (error != NULL &&
!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
{
g_warning ("Error deleting file: %s", error->message);
}
g_clear_error (&error);
/* Update the internal state. */
g_assert_cmpuint (priv->n_deletions_pending, >, 0);
priv->n_deletions_pending--;
/* Update the UI to show progress. */
update_ui_to_show_progress (self,
priv->n_deletions_pending,
priv->n_deletions_total);
/* If all deletions have completed, and no more are being started,
* update the UI to show completion. */
if (priv->n_deletions_pending == 0 && priv->n_deletions_to_start == 0)
{
update_ui_to_show_completion (self);
/* Clear the operation state. */
g_clear_object (&priv->delete_cancellable);
priv->n_deletions_total = 0;
}
}
static void
my_object_dispose (GObject *obj)
{
MyObjectPrivate *priv;
priv = my_object_get_instance_private (MY_OBJECT (obj));
/* Cancel any ongoing deletion operations.
*
* This ensures that if #MyObject is disposed part-way through the
* delete_files() set of operations, the set gets cancelled and
* doesn’t continue with an invalid #MyObject pointer. */
g_cancellable_cancel (priv->delete_cancellable);
/* Do other dispose calls here. */
…
/* Chain up. */
G_OBJECT_CLASS (my_object_parent_class)->dispose (obj);
}</code>
</example>
</section>
<section id="gtask">
<title>Envoltorio con <code>GTask</code></title>
<p>
Often when an asynchronous operation (or set of operations) becomes more
complex, it needs associated state. This is typically stored in a custom
structure — but defining a new structure to store the standard callback,
user data and cancellable tuple is laborious.
<link href="https://developer.gnome.org/gio/stable/GTask.html"><code>GTask</code></link>
eases this by providing a standardized way to wrap all three, plus extra
custom ‘task data’.
</p>
<p>
The use of a <code>GTask</code> can replace the use of a
<link href="https://developer.gnome.org/gio/stable/GCancellable.html"><code>GCancellable</code></link>
for indicating whether an operation is ongoing.
</p>
<example>
<p>
This example is functionally the same as <link xref="#series"/>, but
refactored to use a <code>GTask</code> to wrap the sequence of
operations.
</p>
<p>Los puntos clave en este ejemplo son:</p>
<list>
<item><p>
State which was in <code>MyObjectPrivate</code> in
<link xref="#series"/> is now in the
<code>ConnectToServerData</code> closure, which is set as the ‘task
data’ of the <code>GTask</code> representing the overall operation.
This means it’s automatically freed after the operation returns.
</p></item>
<item><p>
Furthermore, this means that manipulations of
<code>MyObjectPrivate</code> state are limited to the start and end
of the sequence of operations, so reusing the task in different
situations becomes easier — for example, it is now a lot easier to
support running multiple such tasks in parallel.
</p></item>
<item><p>
As the <code>GTask</code> holds a reference to
<code>MyObject</code>, it is impossible for the object to be
disposed while the sequence of operations is ongoing, so the
<code>my_object_dispose()</code> code has been removed. Instead, a
<code>my_object_close()</code> method exists to allow any pending
operations can be cancelled so <code>MyObject</code> can be disposed
when desired.
</p></item>
</list>
<code mime="text/x-csrc" style="valid">
static void
connect_to_server_cb1 (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
static void
connect_to_server_cb2 (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
static void
connect_to_server_cb3 (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
typedef struct {
GSocketConnection *connection; /* nullable; owned */
guint8 message_buffer[128];
} ConnectToServerData;
static void
connect_to_server_data_free (ConnectToServerData *data)
{
g_clear_object (&data->connection);
}
void
my_object_connect_to_server_async (MyObject *self,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data)
{
MyObjectPrivate *priv;
GTask *task = NULL; /* owned */
ConnectToServerData *data = NULL; /* owned */
GFile *address_file = NULL; /* owned */
g_return_if_fail (MY_IS_OBJECT (self));
g_return_if_fail (cancellable == NULL || G_IS_CANCELLABLE (cancellable));
priv = my_object_get_instance_private (self);
if (priv->connect_task != NULL)
{
g_task_report_new_error (self, callback, user_data, NULL,
G_IO_ERROR, G_IO_ERROR_PENDING,
"Already connecting to the server.");
return;
}
/* Set up a cancellable. */
if (cancellable != NULL)
{
g_object_ref (cancellable);
}
else
{
cancellable = g_cancellable_new ();
}
/* Set up the task. */
task = g_task_new (self, cancellable, callback, user_data);
g_task_set_check_cancellable (task, FALSE);
data = g_malloc0 (sizeof (ConnectToServerData));
g_task_set_task_data (task, data,
(GDestroyNotify) connect_to_server_data_free);
g_object_unref (cancellable);
priv->connect_task = g_object_ref (task);
/* Read the socket address. */
address_file = build_address_file ();
g_file_load_contents_async (address_file, g_task_get_cancellable (task),
connect_to_server_cb1, g_object_ref (task));
g_object_unref (address_file);
g_clear_object (&task);
}
static void
connect_to_server_cb1 (GObject *source_object,
GAsyncResult *result,
gpointer user_data)
{
MyObject *self;
MyObjectPrivate *priv;
GTask *task = NULL; /* owned */
GFile *address_file; /* unowned */
gchar *address = NULL; /* owned */
gsize address_size = 0;
GInetAddress *inet_address = NULL; /* owned */
GInetSocketAddress *inet_socket_address = NULL; /* owned */
guint16 port = 123;
GSocketClient *socket_client = NULL; /* owned */
GError *error = NULL;
address_file = G_FILE (source_object);
task = G_TASK (user_data);
self = g_task_get_source_object (task);
priv = my_object_get_instance_private (self);
/* Finish loading the address. */
g_file_load_contents_finish (address_file, result, &address,
&address_size, NULL, &error);
if (error != NULL)
{
goto done;
}
/* Parse the address. */
inet_address = g_inet_address_new_from_string (address);
if (inet_address == NULL)
{
/* Error. */
g_set_error (&error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
"Invalid address ‘%s’.", address);
goto done;
}
inet_socket_address = g_inet_socket_address_new (inet_address, port);
/* Connect to the given address. */
socket_client = g_socket_client_new ();
g_socket_client_connect_async (socket_client,
G_SOCKET_CONNECTABLE (inet_socket_address),
g_task_get_cancellable (task),
connect_to_server_cb2,
g_object_ref (task));
done:
if (error != NULL)
{
/* Stop the operation and propagate the error. */
g_clear_object (&priv->connect_task);
g_task_return_error (task, error);
}
g_free (address);
g_clear_object (&inet_address);
g_clear_object (&inet_socket_address);
g_clear_object (&socket_client);
g_clear_object (&task);
}
static void
connect_to_server_cb2 (GObject *source_object,
GAsyncResult *result,
gpointer user_data)
{
MyObject *self;
MyObjectPrivate *priv;
GTask *task = NULL; /* owned */
ConnectToServerData *data; /* unowned */
GSocketClient *socket_client; /* unowned */
GSocketConnection *connection = NULL; /* owned */
GInputStream *input_stream; /* unowned */
GError *error = NULL;
socket_client = G_SOCKET_CLIENT (source_object);
task = G_TASK (user_data);
data = g_task_get_task_data (task);
self = g_task_get_source_object (task);
priv = my_object_get_instance_private (self);
/* Finish connecting to the socket. */
connection = g_socket_client_connect_finish (socket_client, result,
&error);
if (error != NULL)
{
goto done;
}
/* Store a reference to the connection so it is kept open while we read from
* it: #GInputStream does not keep a reference to a #GIOStream which contains
* it. */
data->connection = g_object_ref (connection);
/* Read a message from the connection. As the buffer is allocated as part of
* the per-task @data, multiple tasks can run concurrently. */
input_stream = g_io_stream_get_input_stream (G_IO_STREAM (connection));
g_input_stream_read_async (input_stream,
data->message_buffer,
sizeof (data->message_buffer),
G_PRIORITY_DEFAULT, g_task_get_cancellable (task),
connect_to_server_cb3, g_object_ref (task));
done:
if (error != NULL)
{
/* Stop the operation and propagate the error. */
g_clear_object (&priv->connect_task);
g_task_return_error (task, error);
}
g_clear_object (&connection);
g_clear_object (&task);
}
static void
connect_to_server_cb3 (GObject *source_object,
GAsyncResult *result,
gpointer user_data)
{
MyObject *self;
MyObjectPrivate *priv;
GTask *task = NULL; /* owned */
ConnectToServerData *data; /* unowned */
GInputStream *input_stream; /* unowned */
gssize len = 0;
GError *error = NULL;
input_stream = G_INPUT_STREAM (source_object);
task = G_TASK (user_data);
data = g_task_get_task_data (task);
self = g_task_get_source_object (task);
priv = my_object_get_instance_private (self);
/* Finish reading from the socket. */
len = g_input_stream_read_finish (input_stream, result, &error);
if (error != NULL)
{
goto done;
}
/* Handle the message. */
g_assert_cmpint (len, >=, 0);
g_assert_cmpuint ((gsize) len, <=, sizeof (data->message_buffer));
handle_received_message (self, data->message_buffer, len, &error);
if (error != NULL)
{
goto done;
}
/* Success! */
g_task_return_boolean (task, TRUE);
done:
/* Unconditionally mark the operation as finished.
*
* The streams should automatically close as this
* last reference is dropped. */
g_clear_object (&priv->connect_task);
if (error != NULL)
{
/* Stop the operation and propagate the error. */
g_task_return_error (task, error);
}
g_clear_object (&task);
}
void
my_object_connect_to_server_finish (MyObject *self,
GAsyncResult *result,
GError **error)
{
g_return_if_fail (MY_IS_OBJECT (self));
g_return_if_fail (g_task_is_valid (result, self));
g_return_if_fail (error == NULL || *error == NULL);
g_task_propagate_boolean (G_TASK (result), error);
}
void
my_object_close (MyObject *self)
{
MyObjectPrivate *priv;
g_return_if_fail (MY_IS_OBJECT (self));
priv = my_object_get_instance_private (self);
if (priv->connect_task != NULL)
{
GCancellable *cancellable = g_task_get_cancellable (priv->connect_task);
g_cancellable_cancel (cancellable);
}
}</code>
</example>
</section>
</section>
</page>
|