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 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551
|
/* future.c generated by valac 0.56.17, the Vala compiler
* generated from future.vala, do not modify */
/* future.vala
*
* Copyright (C) 2013 Maciej Piechotka
*
* 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
*
* Author:
* Maciej Piechotka <uzytkownik2@gmail.com>
*/
#include "gee.h"
#include <glib-object.h>
#include <glib.h>
#include <gio/gio.h>
#include <string.h>
#if !defined(VALA_STRICT_C)
#if !defined(__clang__) && defined(__GNUC__) && (__GNUC__ >= 14)
#pragma GCC diagnostic warning "-Wincompatible-pointer-types"
#elif defined(__clang__) && (__clang_major__ >= 16)
#pragma clang diagnostic ignored "-Wincompatible-function-pointer-types"
#pragma clang diagnostic ignored "-Wincompatible-pointer-types"
#endif
#endif
typedef struct _Block7Data Block7Data;
#define _gee_promise_unref0(var) ((var == NULL) ? NULL : (var = (gee_promise_unref (var), NULL)))
#define _g_object_unref0(var) ((var == NULL) ? NULL : (var = (g_object_unref (var), NULL)))
#define _g_error_free0(var) ((var == NULL) ? NULL : (var = (g_error_free (var), NULL)))
#define GEE_TYPE_LIGHT_MAP_FUTURE (gee_light_map_future_get_type ())
#define GEE_LIGHT_MAP_FUTURE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GEE_TYPE_LIGHT_MAP_FUTURE, GeeLightMapFuture))
#define GEE_LIGHT_MAP_FUTURE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GEE_TYPE_LIGHT_MAP_FUTURE, GeeLightMapFutureClass))
#define GEE_IS_LIGHT_MAP_FUTURE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GEE_TYPE_LIGHT_MAP_FUTURE))
#define GEE_IS_LIGHT_MAP_FUTURE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GEE_TYPE_LIGHT_MAP_FUTURE))
#define GEE_LIGHT_MAP_FUTURE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GEE_TYPE_LIGHT_MAP_FUTURE, GeeLightMapFutureClass))
typedef struct _GeeLightMapFuture GeeLightMapFuture;
typedef struct _GeeLightMapFutureClass GeeLightMapFutureClass;
typedef struct _Block8Data Block8Data;
typedef struct _GeeFutureDoZipData GeeFutureDoZipData;
typedef struct _Block9Data Block9Data;
typedef struct _GeeFutureDoFlatMapData GeeFutureDoFlatMapData;
#define GEE_FUTURE_TYPE_SOURCE_FUNC_ARRAY_ELEMENT (gee_future_source_func_array_element_get_type ())
typedef struct _GeeFutureSourceFuncArrayElement GeeFutureSourceFuncArrayElement;
struct _Block7Data {
int _ref_count_;
GeeFuture* self;
GType a_type;
GBoxedCopyFunc a_dup_func;
GDestroyNotify a_destroy_func;
GeePromise* promise;
GeeFutureMapFunc func;
gpointer func_target;
GDestroyNotify func_target_destroy_notify;
};
struct _Block8Data {
int _ref_count_;
GeeFuture* self;
GType a_type;
GBoxedCopyFunc a_dup_func;
GDestroyNotify a_destroy_func;
GType b_type;
GBoxedCopyFunc b_dup_func;
GDestroyNotify b_destroy_func;
};
struct _GeeFutureDoZipData {
int _state_;
GObject* _source_object_;
GAsyncResult* _res_;
GTask* _async_result;
GeeFutureZipFunc zip_func;
gpointer zip_func_target;
GeeFuture* first;
GeeFuture* second;
GeePromise* _result_;
GType a_type;
GBoxedCopyFunc a_dup_func;
GDestroyNotify a_destroy_func;
GType b_type;
GBoxedCopyFunc b_dup_func;
GDestroyNotify b_destroy_func;
GType c_type;
GBoxedCopyFunc c_dup_func;
GDestroyNotify c_destroy_func;
gpointer left;
gconstpointer _tmp0_;
gpointer _tmp1_;
gpointer right;
gconstpointer _tmp2_;
gpointer _tmp3_;
gconstpointer _tmp4_;
gconstpointer _tmp5_;
gpointer _tmp6_;
GError* ex;
GError* _tmp7_;
GError* _inner_error0_;
};
struct _Block9Data {
int _ref_count_;
GeeFuture* self;
GType a_type;
GBoxedCopyFunc a_dup_func;
GDestroyNotify a_destroy_func;
};
struct _GeeFutureDoFlatMapData {
int _state_;
GObject* _source_object_;
GAsyncResult* _res_;
GTask* _async_result;
GeeFutureFlatMapFunc func;
gpointer func_target;
GDestroyNotify func_target_destroy_notify;
GeeFuture* future;
GeePromise* promise;
GType a_type;
GBoxedCopyFunc a_dup_func;
GDestroyNotify a_destroy_func;
GType b_type;
GBoxedCopyFunc b_dup_func;
GDestroyNotify b_destroy_func;
gpointer input;
gconstpointer _tmp0_;
gpointer _tmp1_;
GeeFuture* output_future;
gconstpointer _tmp2_;
GeeFuture* _tmp3_;
gpointer output;
GeeFuture* _tmp4_;
gconstpointer _tmp5_;
gpointer _tmp6_;
gpointer _tmp7_;
GeeFuture* _tmp8_;
GError* _tmp9_;
GError* _tmp10_;
GError* _tmp11_;
GError* _tmp12_;
GError* _tmp13_;
GError* _tmp14_;
GError* ex;
GError* _tmp15_;
GError* _inner_error0_;
};
struct _GeeFutureSourceFuncArrayElement {
GSourceFunc func;
gpointer func_target;
GDestroyNotify func_target_destroy_notify;
};
static GeeFuture* gee_future_real_map (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GeeFutureMapFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify);
static Block7Data* block7_data_ref (Block7Data* _data7_);
static void block7_data_unref (void * _userdata_);
static void __lambda4_ (Block7Data* _data7_,
GObject* obj,
GAsyncResult* res);
static void ___lambda4__gasync_ready_callback (GObject* source_object,
GAsyncResult* res,
gpointer self);
static GeeFuture* gee_future_real_light_map (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GeeFutureLightMapFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify);
G_GNUC_INTERNAL GeeLightMapFuture* gee_light_map_future_new (GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GType g_type,
GBoxedCopyFunc g_dup_func,
GDestroyNotify g_destroy_func,
GeeFuture* base_future,
GeeFutureLightMapFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify);
G_GNUC_INTERNAL GeeLightMapFuture* gee_light_map_future_construct (GType object_type,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GType g_type,
GBoxedCopyFunc g_dup_func,
GDestroyNotify g_destroy_func,
GeeFuture* base_future,
GeeFutureLightMapFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify);
G_GNUC_INTERNAL GType gee_light_map_future_get_type (void) G_GNUC_CONST G_GNUC_UNUSED ;
static GeeFuture* gee_future_real_light_map_broken (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GeeFutureLightMapFunc func,
gpointer func_target);
static GeeFuture* gee_future_real_zip (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GType b_type,
GBoxedCopyFunc b_dup_func,
GDestroyNotify b_destroy_func,
GeeFutureZipFunc zip_func,
gpointer zip_func_target,
GeeFuture* second);
static Block8Data* block8_data_ref (Block8Data* _data8_);
static void block8_data_unref (void * _userdata_);
static void gee_future_do_zip (GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GType b_type,
GBoxedCopyFunc b_dup_func,
GDestroyNotify b_destroy_func,
GType c_type,
GBoxedCopyFunc c_dup_func,
GDestroyNotify c_destroy_func,
GeeFutureZipFunc zip_func,
gpointer zip_func_target,
GeeFuture* first,
GeeFuture* second,
GeePromise* _result_,
GAsyncReadyCallback _callback_,
gpointer _user_data_);
static void gee_future_do_zip_finish (GAsyncResult* _res_);
static void __lambda5_ (Block8Data* _data8_,
GObject* obj,
GAsyncResult* res);
static void ___lambda5__gasync_ready_callback (GObject* source_object,
GAsyncResult* res,
gpointer self);
static void gee_future_do_zip_data_free (gpointer _data);
static gboolean gee_future_do_zip_co (GeeFutureDoZipData* _data_);
static void gee_future_do_zip_ready (GObject* source_object,
GAsyncResult* _res_,
gpointer _user_data_);
static GeeFuture* gee_future_real_flat_map (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GeeFutureFlatMapFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify);
static Block9Data* block9_data_ref (Block9Data* _data9_);
static void block9_data_unref (void * _userdata_);
static void gee_future_do_flat_map (GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GType b_type,
GBoxedCopyFunc b_dup_func,
GDestroyNotify b_destroy_func,
GeeFutureFlatMapFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify,
GeeFuture* future,
GeePromise* promise,
GAsyncReadyCallback _callback_,
gpointer _user_data_);
static void gee_future_do_flat_map_finish (GAsyncResult* _res_);
static void __lambda6_ (Block9Data* _data9_,
GObject* obj,
GAsyncResult* res);
static void ___lambda6__gasync_ready_callback (GObject* source_object,
GAsyncResult* res,
gpointer self);
static void gee_future_do_flat_map_data_free (gpointer _data);
static gboolean gee_future_do_flat_map_co (GeeFutureDoFlatMapData* _data_);
static void gee_future_do_flat_map_ready (GObject* source_object,
GAsyncResult* _res_,
gpointer _user_data_);
G_GNUC_INTERNAL GType gee_future_source_func_array_element_get_type (void) G_GNUC_CONST G_GNUC_UNUSED ;
G_GNUC_INTERNAL GeeFutureSourceFuncArrayElement* gee_future_source_func_array_element_dup (const GeeFutureSourceFuncArrayElement* self);
G_GNUC_INTERNAL void gee_future_source_func_array_element_free (GeeFutureSourceFuncArrayElement* self);
G_GNUC_INTERNAL void gee_future_source_func_array_element_copy (const GeeFutureSourceFuncArrayElement* self,
GeeFutureSourceFuncArrayElement* dest);
G_GNUC_INTERNAL void gee_future_source_func_array_element_destroy (GeeFutureSourceFuncArrayElement* self);
G_GNUC_INTERNAL void gee_future_source_func_array_element_init (GeeFutureSourceFuncArrayElement *self,
GSourceFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify);
static GType gee_future_get_type_once (void);
/**
* Waits until the value is ready.
*
* @return The {@link value} associated with future
* @see ready
* @see wait_until
* @see wait_async
*/
gconstpointer
gee_future_wait (GeeFuture* self,
GError** error)
{
GeeFutureIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_FUTURE_GET_INTERFACE (self);
if (_iface_->wait) {
return _iface_->wait (self, error);
}
return NULL;
}
/**
* Waits until the value is ready or deadline have passed.
*
* @param end_time The time when the wait should finish
* @param value The {@link value} associated with future if the wait was successful
* @return ``true`` if the value was ready within deadline or ``false`` otherwise
* @see ready
* @see wait
* @see wait_async
*/
gboolean
gee_future_wait_until (GeeFuture* self,
gint64 end_time,
gconstpointer* value,
GError** error)
{
GeeFutureIface* _iface_;
g_return_val_if_fail (self != NULL, FALSE);
_iface_ = GEE_FUTURE_GET_INTERFACE (self);
if (_iface_->wait_until) {
return _iface_->wait_until (self, end_time, value, error);
}
return FALSE;
}
void
gee_future_wait_async (GeeFuture* self,
GAsyncReadyCallback _callback_,
gpointer _user_data_)
{
GeeFutureIface* _iface_;
_iface_ = GEE_FUTURE_GET_INTERFACE (self);
if (_iface_->wait_async) {
_iface_->wait_async (self, _callback_, _user_data_);
}
}
gconstpointer
gee_future_wait_finish (GeeFuture* self,
GAsyncResult* _res_,
GError** error)
{
GeeFutureIface* _iface_;
_iface_ = GEE_FUTURE_GET_INTERFACE (self);
if (_iface_->wait_finish) {
return _iface_->wait_finish (self, _res_, error);
}
return NULL;
}
/**
* Maps a future value to another value by a function and returns the
* another value in future.
*
* Note: As time taken by function might not contribute to
* {@link wait_until} and the implementation is allowed to compute
* value eagerly by {@link wait_async} it is recommended to use
* {@link task} and {@link flat_map} for longer computation.
*
* @param func Function applied to {@link value}
* @return Value returned by function
*
* @see flat_map
* @see light_map
*/
static Block7Data*
block7_data_ref (Block7Data* _data7_)
{
g_atomic_int_inc (&_data7_->_ref_count_);
return _data7_;
}
static void
block7_data_unref (void * _userdata_)
{
Block7Data* _data7_;
_data7_ = (Block7Data*) _userdata_;
if (g_atomic_int_dec_and_test (&_data7_->_ref_count_)) {
GeeFuture* self;
GType a_type;
GBoxedCopyFunc a_dup_func;
GDestroyNotify a_destroy_func;
self = _data7_->self;
a_type = _data7_->a_type;
a_dup_func = _data7_->a_dup_func;
a_destroy_func = _data7_->a_destroy_func;
_gee_promise_unref0 (_data7_->promise);
(_data7_->func_target_destroy_notify == NULL) ? NULL : (_data7_->func_target_destroy_notify (_data7_->func_target), NULL);
_data7_->func = NULL;
_data7_->func_target = NULL;
_data7_->func_target_destroy_notify = NULL;
_g_object_unref0 (self);
g_slice_free (Block7Data, _data7_);
}
}
static gpointer
_g_error_copy0 (gpointer self)
{
return self ? g_error_copy (self) : NULL;
}
static void
__lambda4_ (Block7Data* _data7_,
GObject* obj,
GAsyncResult* res)
{
GeeFuture* self;
GType a_type;
GBoxedCopyFunc a_dup_func;
GDestroyNotify a_destroy_func;
GError* _inner_error0_ = NULL;
self = _data7_->self;
a_type = _data7_->a_type;
a_dup_func = _data7_->a_dup_func;
a_destroy_func = _data7_->a_destroy_func;
g_return_if_fail (res != NULL);
{
gconstpointer _tmp0_ = NULL;
gconstpointer _tmp1_;
gpointer _tmp2_;
_tmp1_ = gee_future_wait_finish (self, res, &_inner_error0_);
_tmp0_ = _tmp1_;
if (G_UNLIKELY (_inner_error0_ != NULL)) {
if (g_error_matches (_inner_error0_, GEE_FUTURE_ERROR, GEE_FUTURE_ERROR_EXCEPTION)) {
goto __catch0_gee_future_error_exception;
}
goto __catch0_g_error;
}
_tmp2_ = _data7_->func (_tmp0_, _data7_->func_target);
gee_promise_set_value (_data7_->promise, _tmp2_);
}
goto __finally0;
__catch0_gee_future_error_exception:
{
GError* _tmp3_;
GError* _tmp4_;
GError* _tmp5_;
g_clear_error (&_inner_error0_);
_tmp3_ = gee_future_get_exception (self);
_tmp4_ = _tmp3_;
_tmp5_ = _g_error_copy0 (_tmp4_);
gee_promise_set_exception (_data7_->promise, _tmp5_);
}
goto __finally0;
__catch0_g_error:
{
GError* ex = NULL;
GError* _tmp6_;
ex = _inner_error0_;
_inner_error0_ = NULL;
_tmp6_ = ex;
ex = NULL;
gee_promise_set_exception (_data7_->promise, _tmp6_);
_g_error_free0 (ex);
}
__finally0:
if (G_UNLIKELY (_inner_error0_ != NULL)) {
g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error0_->message, g_quark_to_string (_inner_error0_->domain), _inner_error0_->code);
g_clear_error (&_inner_error0_);
return;
}
}
static void
___lambda4__gasync_ready_callback (GObject* source_object,
GAsyncResult* res,
gpointer self)
{
__lambda4_ (self, source_object, res);
block7_data_unref (self);
}
static gpointer
_g_object_ref0 (gpointer self)
{
return self ? g_object_ref (self) : NULL;
}
static GeeFuture*
gee_future_real_map (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GeeFutureMapFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify)
{
Block7Data* _data7_;
GeePromise* _tmp0_;
GeeFuture* _tmp1_;
GeeFuture* _tmp2_;
GeeFuture* _tmp3_;
GeeFuture* result;
_data7_ = g_slice_new0 (Block7Data);
_data7_->_ref_count_ = 1;
_data7_->self = g_object_ref (self);
_data7_->a_type = a_type;
_data7_->a_dup_func = a_dup_func;
_data7_->a_destroy_func = a_destroy_func;
(_data7_->func_target_destroy_notify == NULL) ? NULL : (_data7_->func_target_destroy_notify (_data7_->func_target), NULL);
_data7_->func = NULL;
_data7_->func_target = NULL;
_data7_->func_target_destroy_notify = NULL;
_data7_->func = func;
_data7_->func_target = func_target;
_data7_->func_target_destroy_notify = func_target_destroy_notify;
_tmp0_ = gee_promise_new (a_type, (GBoxedCopyFunc) a_dup_func, (GDestroyNotify) a_destroy_func);
_data7_->promise = _tmp0_;
gee_future_wait_async (self, ___lambda4__gasync_ready_callback, block7_data_ref (_data7_));
_tmp1_ = gee_promise_get_future (_data7_->promise);
_tmp2_ = _tmp1_;
_tmp3_ = _g_object_ref0 (_tmp2_);
result = _tmp3_;
block7_data_unref (_data7_);
_data7_ = NULL;
return result;
}
GeeFuture*
gee_future_map (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GeeFutureMapFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify)
{
GeeFutureIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_FUTURE_GET_INTERFACE (self);
if (_iface_->map) {
return _iface_->map (self, a_type, a_dup_func, a_destroy_func, func, func_target, func_target_destroy_notify);
}
return NULL;
}
/**
* Maps a future value to another value by a function and returns the
* another value in future.
*
* Note: The function may be reevaluated at any time and it might
* be called lazily. Therefore it is recommended for it to be
* idempotent. If the function needs to be called eagerly or have
* side-effects it is recommended to use {@link map}.
*
* Note: As time taken by function does not contribute to
* {@link wait_until} and the implementation is allowed to compute
* value eagerly by {@link wait_async} it is recommended to use
* {@link task} and {@link flat_map} for longer computation.
*
* @param func Function applied to {@link value}
* @return Value returned by function
*
* @see flat_map
* @see map
* @since 0.11.4
*/
static GeeFuture*
gee_future_real_light_map (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GeeFutureLightMapFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify)
{
GeeFutureLightMapFunc _tmp0_;
gpointer _tmp0__target;
GDestroyNotify _tmp0__target_destroy_notify;
GeeLightMapFuture* _tmp1_;
GeeFuture* result;
_tmp0_ = func;
_tmp0__target = func_target;
_tmp0__target_destroy_notify = func_target_destroy_notify;
func = NULL;
func_target = NULL;
func_target_destroy_notify = NULL;
_tmp1_ = gee_light_map_future_new (a_type, (GBoxedCopyFunc) a_dup_func, (GDestroyNotify) a_destroy_func, GEE_FUTURE_GET_INTERFACE (self)->get_g_type (self), (GBoxedCopyFunc) GEE_FUTURE_GET_INTERFACE (self)->get_g_dup_func (self), (GDestroyNotify) GEE_FUTURE_GET_INTERFACE (self)->get_g_destroy_func (self), self, _tmp0_, _tmp0__target, _tmp0__target_destroy_notify);
result = (GeeFuture*) _tmp1_;
(func_target_destroy_notify == NULL) ? NULL : (func_target_destroy_notify (func_target), NULL);
func = NULL;
func_target = NULL;
func_target_destroy_notify = NULL;
return result;
}
GeeFuture*
gee_future_light_map_fixed (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GeeFutureLightMapFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify)
{
GeeFutureIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_FUTURE_GET_INTERFACE (self);
if (_iface_->light_map_fixed) {
return _iface_->light_map_fixed (self, a_type, a_dup_func, a_destroy_func, func, func_target, func_target_destroy_notify);
}
return NULL;
}
static GeeFuture*
gee_future_real_light_map_broken (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GeeFutureLightMapFunc func,
gpointer func_target)
{
GeeFuture* _tmp0_;
GeeFuture* result;
_tmp0_ = gee_future_light_map_fixed (self, a_type, (GBoxedCopyFunc) a_dup_func, (GDestroyNotify) a_destroy_func, func, func_target, NULL);
result = _tmp0_;
return result;
}
GeeFuture*
gee_future_light_map (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GeeFutureLightMapFunc func,
gpointer func_target)
{
GeeFutureIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_FUTURE_GET_INTERFACE (self);
if (_iface_->light_map) {
return _iface_->light_map (self, a_type, a_dup_func, a_destroy_func, func, func_target);
}
return NULL;
}
/**
* Combines values of two futures using a function returning the combined
* value in future (call does not block).
*
* Note: As time taken by function does not contribute to
* {@link wait_until} and the implementation is allowed to compute
* value eagerly by {@link wait_async} it is recommended to return a
* future from {@link task} and use {@link flat_map} for longer computation.
*
* @param zip_func Function applied to values
* @param second Second parameter
* @return A combine value
* @since 0.11.4
*/
static Block8Data*
block8_data_ref (Block8Data* _data8_)
{
g_atomic_int_inc (&_data8_->_ref_count_);
return _data8_;
}
static void
block8_data_unref (void * _userdata_)
{
Block8Data* _data8_;
_data8_ = (Block8Data*) _userdata_;
if (g_atomic_int_dec_and_test (&_data8_->_ref_count_)) {
GeeFuture* self;
GType a_type;
GBoxedCopyFunc a_dup_func;
GDestroyNotify a_destroy_func;
GType b_type;
GBoxedCopyFunc b_dup_func;
GDestroyNotify b_destroy_func;
self = _data8_->self;
a_type = _data8_->a_type;
a_dup_func = _data8_->a_dup_func;
a_destroy_func = _data8_->a_destroy_func;
b_type = _data8_->b_type;
b_dup_func = _data8_->b_dup_func;
b_destroy_func = _data8_->b_destroy_func;
_g_object_unref0 (self);
g_slice_free (Block8Data, _data8_);
}
}
static void
__lambda5_ (Block8Data* _data8_,
GObject* obj,
GAsyncResult* res)
{
GeeFuture* self;
GType a_type;
GBoxedCopyFunc a_dup_func;
GDestroyNotify a_destroy_func;
GType b_type;
GBoxedCopyFunc b_dup_func;
GDestroyNotify b_destroy_func;
self = _data8_->self;
a_type = _data8_->a_type;
a_dup_func = _data8_->a_dup_func;
a_destroy_func = _data8_->a_destroy_func;
b_type = _data8_->b_type;
b_dup_func = _data8_->b_dup_func;
b_destroy_func = _data8_->b_destroy_func;
g_return_if_fail (res != NULL);
gee_future_do_zip_finish (res);
}
static void
___lambda5__gasync_ready_callback (GObject* source_object,
GAsyncResult* res,
gpointer self)
{
__lambda5_ (self, source_object, res);
block8_data_unref (self);
}
static GeeFuture*
gee_future_real_zip (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GType b_type,
GBoxedCopyFunc b_dup_func,
GDestroyNotify b_destroy_func,
GeeFutureZipFunc zip_func,
gpointer zip_func_target,
GeeFuture* second)
{
Block8Data* _data8_;
GeePromise* promise = NULL;
GeePromise* _tmp0_;
GeeFutureZipFunc _tmp1_;
gpointer _tmp1__target;
GeeFuture* _tmp2_;
GeeFuture* _tmp3_;
GeeFuture* _tmp4_;
GeeFuture* result;
g_return_val_if_fail (second != NULL, NULL);
_data8_ = g_slice_new0 (Block8Data);
_data8_->_ref_count_ = 1;
_data8_->self = g_object_ref (self);
_data8_->a_type = a_type;
_data8_->a_dup_func = a_dup_func;
_data8_->a_destroy_func = a_destroy_func;
_data8_->b_type = b_type;
_data8_->b_dup_func = b_dup_func;
_data8_->b_destroy_func = b_destroy_func;
_tmp0_ = gee_promise_new (b_type, (GBoxedCopyFunc) b_dup_func, (GDestroyNotify) b_destroy_func);
promise = _tmp0_;
_tmp1_ = zip_func;
_tmp1__target = zip_func_target;
zip_func = NULL;
zip_func_target = NULL;
gee_future_do_zip (GEE_FUTURE_GET_INTERFACE (self)->get_g_type (self), (GBoxedCopyFunc) GEE_FUTURE_GET_INTERFACE (self)->get_g_dup_func (self), (GDestroyNotify) GEE_FUTURE_GET_INTERFACE (self)->get_g_destroy_func (self), a_type, (GBoxedCopyFunc) a_dup_func, (GDestroyNotify) a_destroy_func, b_type, (GBoxedCopyFunc) b_dup_func, (GDestroyNotify) b_destroy_func, _tmp1_, _tmp1__target, self, second, promise, ___lambda5__gasync_ready_callback, block8_data_ref (_data8_));
_tmp2_ = gee_promise_get_future (promise);
_tmp3_ = _tmp2_;
_tmp4_ = _g_object_ref0 (_tmp3_);
result = _tmp4_;
_gee_promise_unref0 (promise);
block8_data_unref (_data8_);
_data8_ = NULL;
return result;
}
GeeFuture*
gee_future_zip (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GType b_type,
GBoxedCopyFunc b_dup_func,
GDestroyNotify b_destroy_func,
GeeFutureZipFunc zip_func,
gpointer zip_func_target,
GeeFuture* second)
{
GeeFutureIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_FUTURE_GET_INTERFACE (self);
if (_iface_->zip) {
return _iface_->zip (self, a_type, a_dup_func, a_destroy_func, b_type, b_dup_func, b_destroy_func, zip_func, zip_func_target, second);
}
return NULL;
}
static void
gee_future_do_zip_data_free (gpointer _data)
{
GeeFutureDoZipData* _data_;
_data_ = _data;
_g_object_unref0 (_data_->first);
_g_object_unref0 (_data_->second);
_gee_promise_unref0 (_data_->_result_);
g_slice_free (GeeFutureDoZipData, _data_);
}
static gpointer
_gee_promise_ref0 (gpointer self)
{
return self ? gee_promise_ref (self) : NULL;
}
static void
gee_future_do_zip (GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GType b_type,
GBoxedCopyFunc b_dup_func,
GDestroyNotify b_destroy_func,
GType c_type,
GBoxedCopyFunc c_dup_func,
GDestroyNotify c_destroy_func,
GeeFutureZipFunc zip_func,
gpointer zip_func_target,
GeeFuture* first,
GeeFuture* second,
GeePromise* _result_,
GAsyncReadyCallback _callback_,
gpointer _user_data_)
{
GeeFutureDoZipData* _data_;
GeeFuture* _tmp0_;
GeeFuture* _tmp1_;
GeePromise* _tmp2_;
g_return_if_fail (first != NULL);
g_return_if_fail (second != NULL);
g_return_if_fail (_result_ != NULL);
_data_ = g_slice_new0 (GeeFutureDoZipData);
_data_->_async_result = g_task_new (NULL, NULL, _callback_, _user_data_);
g_task_set_task_data (_data_->_async_result, _data_, gee_future_do_zip_data_free);
_data_->zip_func = zip_func;
_data_->zip_func_target = zip_func_target;
_tmp0_ = _g_object_ref0 (first);
_g_object_unref0 (_data_->first);
_data_->first = _tmp0_;
_tmp1_ = _g_object_ref0 (second);
_g_object_unref0 (_data_->second);
_data_->second = _tmp1_;
_tmp2_ = _gee_promise_ref0 (_result_);
_gee_promise_unref0 (_data_->_result_);
_data_->_result_ = _tmp2_;
_data_->a_type = a_type;
_data_->a_dup_func = a_dup_func;
_data_->a_destroy_func = a_destroy_func;
_data_->b_type = b_type;
_data_->b_dup_func = b_dup_func;
_data_->b_destroy_func = b_destroy_func;
_data_->c_type = c_type;
_data_->c_dup_func = c_dup_func;
_data_->c_destroy_func = c_destroy_func;
gee_future_do_zip_co (_data_);
}
static void
gee_future_do_zip_finish (GAsyncResult* _res_)
{
GeeFutureDoZipData* _data_;
_data_ = g_task_propagate_pointer (G_TASK (_res_), NULL);
}
static void
gee_future_do_zip_ready (GObject* source_object,
GAsyncResult* _res_,
gpointer _user_data_)
{
GeeFutureDoZipData* _data_;
_data_ = _user_data_;
_data_->_source_object_ = source_object;
_data_->_res_ = _res_;
gee_future_do_zip_co (_data_);
}
static gboolean
gee_future_do_zip_co (GeeFutureDoZipData* _data_)
{
switch (_data_->_state_) {
case 0:
goto _state_0;
case 1:
goto _state_1;
case 2:
goto _state_2;
default:
g_assert_not_reached ();
}
_state_0:
{
_data_->_state_ = 1;
gee_future_wait_async (_data_->first, gee_future_do_zip_ready, _data_);
return FALSE;
_state_1:
_data_->_tmp0_ = gee_future_wait_finish (_data_->first, _data_->_res_, &_data_->_inner_error0_);
_data_->_tmp1_ = ((_data_->_tmp0_ != NULL) && (_data_->a_dup_func != NULL)) ? _data_->a_dup_func ((gpointer) _data_->_tmp0_) : ((gpointer) _data_->_tmp0_);
_data_->left = _data_->_tmp1_;
if (G_UNLIKELY (_data_->_inner_error0_ != NULL)) {
goto __catch0_g_error;
}
_data_->_state_ = 2;
gee_future_wait_async (_data_->second, gee_future_do_zip_ready, _data_);
return FALSE;
_state_2:
_data_->_tmp2_ = gee_future_wait_finish (_data_->second, _data_->_res_, &_data_->_inner_error0_);
_data_->_tmp3_ = ((_data_->_tmp2_ != NULL) && (_data_->b_dup_func != NULL)) ? _data_->b_dup_func ((gpointer) _data_->_tmp2_) : ((gpointer) _data_->_tmp2_);
_data_->right = _data_->_tmp3_;
if (G_UNLIKELY (_data_->_inner_error0_ != NULL)) {
((_data_->left == NULL) || (_data_->a_destroy_func == NULL)) ? NULL : (_data_->left = (_data_->a_destroy_func (_data_->left), NULL));
goto __catch0_g_error;
}
_data_->_tmp4_ = _data_->left;
_data_->_tmp5_ = _data_->right;
_data_->_tmp6_ = _data_->zip_func (_data_->_tmp4_, _data_->_tmp5_, _data_->zip_func_target);
gee_promise_set_value (_data_->_result_, _data_->_tmp6_);
((_data_->right == NULL) || (_data_->b_destroy_func == NULL)) ? NULL : (_data_->right = (_data_->b_destroy_func (_data_->right), NULL));
((_data_->left == NULL) || (_data_->a_destroy_func == NULL)) ? NULL : (_data_->left = (_data_->a_destroy_func (_data_->left), NULL));
}
goto __finally0;
__catch0_g_error:
{
_data_->ex = _data_->_inner_error0_;
_data_->_inner_error0_ = NULL;
_data_->_tmp7_ = _data_->ex;
_data_->ex = NULL;
gee_promise_set_exception (_data_->_result_, _data_->_tmp7_);
_g_error_free0 (_data_->ex);
}
__finally0:
if (G_UNLIKELY (_data_->_inner_error0_ != NULL)) {
g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _data_->_inner_error0_->message, g_quark_to_string (_data_->_inner_error0_->domain), _data_->_inner_error0_->code);
g_clear_error (&_data_->_inner_error0_);
g_object_unref (_data_->_async_result);
return FALSE;
}
g_task_return_pointer (_data_->_async_result, _data_, NULL);
if (_data_->_state_ != 0) {
while (!g_task_get_completed (_data_->_async_result)) {
g_main_context_iteration (g_task_get_context (_data_->_async_result), TRUE);
}
}
g_object_unref (_data_->_async_result);
return FALSE;
}
/**
* Maps a future value to another future value which is returned (call does not block).
*
* Note: As time taken by function does not contribute to
* {@link wait_until} and the implementation is allowed to compute
* value eagerly by {@link wait_async} it is recommended to put the
* larger computation inside the returned future for example by
* {@link task}
*
* @param func Function applied to {@link value}
* @return Value of a future returned by function
*
* @see map
*/
static Block9Data*
block9_data_ref (Block9Data* _data9_)
{
g_atomic_int_inc (&_data9_->_ref_count_);
return _data9_;
}
static void
block9_data_unref (void * _userdata_)
{
Block9Data* _data9_;
_data9_ = (Block9Data*) _userdata_;
if (g_atomic_int_dec_and_test (&_data9_->_ref_count_)) {
GeeFuture* self;
GType a_type;
GBoxedCopyFunc a_dup_func;
GDestroyNotify a_destroy_func;
self = _data9_->self;
a_type = _data9_->a_type;
a_dup_func = _data9_->a_dup_func;
a_destroy_func = _data9_->a_destroy_func;
_g_object_unref0 (self);
g_slice_free (Block9Data, _data9_);
}
}
static void
__lambda6_ (Block9Data* _data9_,
GObject* obj,
GAsyncResult* res)
{
GeeFuture* self;
GType a_type;
GBoxedCopyFunc a_dup_func;
GDestroyNotify a_destroy_func;
self = _data9_->self;
a_type = _data9_->a_type;
a_dup_func = _data9_->a_dup_func;
a_destroy_func = _data9_->a_destroy_func;
g_return_if_fail (res != NULL);
gee_future_do_flat_map_finish (res);
}
static void
___lambda6__gasync_ready_callback (GObject* source_object,
GAsyncResult* res,
gpointer self)
{
__lambda6_ (self, source_object, res);
block9_data_unref (self);
}
static GeeFuture*
gee_future_real_flat_map (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GeeFutureFlatMapFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify)
{
Block9Data* _data9_;
GeePromise* promise = NULL;
GeePromise* _tmp0_;
GeeFutureFlatMapFunc _tmp1_;
gpointer _tmp1__target;
GDestroyNotify _tmp1__target_destroy_notify;
GeeFuture* _tmp2_;
GeeFuture* _tmp3_;
GeeFuture* _tmp4_;
GeeFuture* result;
_data9_ = g_slice_new0 (Block9Data);
_data9_->_ref_count_ = 1;
_data9_->self = g_object_ref (self);
_data9_->a_type = a_type;
_data9_->a_dup_func = a_dup_func;
_data9_->a_destroy_func = a_destroy_func;
_tmp0_ = gee_promise_new (a_type, (GBoxedCopyFunc) a_dup_func, (GDestroyNotify) a_destroy_func);
promise = _tmp0_;
_tmp1_ = func;
_tmp1__target = func_target;
_tmp1__target_destroy_notify = func_target_destroy_notify;
func = NULL;
func_target = NULL;
func_target_destroy_notify = NULL;
gee_future_do_flat_map (GEE_FUTURE_GET_INTERFACE (self)->get_g_type (self), (GBoxedCopyFunc) GEE_FUTURE_GET_INTERFACE (self)->get_g_dup_func (self), (GDestroyNotify) GEE_FUTURE_GET_INTERFACE (self)->get_g_destroy_func (self), a_type, (GBoxedCopyFunc) a_dup_func, (GDestroyNotify) a_destroy_func, _tmp1_, _tmp1__target, _tmp1__target_destroy_notify, self, promise, ___lambda6__gasync_ready_callback, block9_data_ref (_data9_));
_tmp2_ = gee_promise_get_future (promise);
_tmp3_ = _tmp2_;
_tmp4_ = _g_object_ref0 (_tmp3_);
result = _tmp4_;
_gee_promise_unref0 (promise);
block9_data_unref (_data9_);
_data9_ = NULL;
(func_target_destroy_notify == NULL) ? NULL : (func_target_destroy_notify (func_target), NULL);
func = NULL;
func_target = NULL;
func_target_destroy_notify = NULL;
return result;
}
GeeFuture*
gee_future_flat_map (GeeFuture* self,
GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GeeFutureFlatMapFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify)
{
GeeFutureIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_FUTURE_GET_INTERFACE (self);
if (_iface_->flat_map) {
return _iface_->flat_map (self, a_type, a_dup_func, a_destroy_func, func, func_target, func_target_destroy_notify);
}
return NULL;
}
static void
gee_future_do_flat_map_data_free (gpointer _data)
{
GeeFutureDoFlatMapData* _data_;
_data_ = _data;
(_data_->func_target_destroy_notify == NULL) ? NULL : (_data_->func_target_destroy_notify (_data_->func_target), NULL);
_data_->func = NULL;
_data_->func_target = NULL;
_data_->func_target_destroy_notify = NULL;
_g_object_unref0 (_data_->future);
_gee_promise_unref0 (_data_->promise);
g_slice_free (GeeFutureDoFlatMapData, _data_);
}
static void
gee_future_do_flat_map (GType a_type,
GBoxedCopyFunc a_dup_func,
GDestroyNotify a_destroy_func,
GType b_type,
GBoxedCopyFunc b_dup_func,
GDestroyNotify b_destroy_func,
GeeFutureFlatMapFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify,
GeeFuture* future,
GeePromise* promise,
GAsyncReadyCallback _callback_,
gpointer _user_data_)
{
GeeFutureDoFlatMapData* _data_;
GeeFuture* _tmp0_;
GeePromise* _tmp1_;
g_return_if_fail (future != NULL);
g_return_if_fail (promise != NULL);
_data_ = g_slice_new0 (GeeFutureDoFlatMapData);
_data_->_async_result = g_task_new (NULL, NULL, _callback_, _user_data_);
g_task_set_task_data (_data_->_async_result, _data_, gee_future_do_flat_map_data_free);
(_data_->func_target_destroy_notify == NULL) ? NULL : (_data_->func_target_destroy_notify (_data_->func_target), NULL);
_data_->func = NULL;
_data_->func_target = NULL;
_data_->func_target_destroy_notify = NULL;
_data_->func = func;
_data_->func_target = func_target;
_data_->func_target_destroy_notify = func_target_destroy_notify;
_tmp0_ = _g_object_ref0 (future);
_g_object_unref0 (_data_->future);
_data_->future = _tmp0_;
_tmp1_ = _gee_promise_ref0 (promise);
_gee_promise_unref0 (_data_->promise);
_data_->promise = _tmp1_;
_data_->a_type = a_type;
_data_->a_dup_func = a_dup_func;
_data_->a_destroy_func = a_destroy_func;
_data_->b_type = b_type;
_data_->b_dup_func = b_dup_func;
_data_->b_destroy_func = b_destroy_func;
gee_future_do_flat_map_co (_data_);
}
static void
gee_future_do_flat_map_finish (GAsyncResult* _res_)
{
GeeFutureDoFlatMapData* _data_;
_data_ = g_task_propagate_pointer (G_TASK (_res_), NULL);
}
static void
gee_future_do_flat_map_ready (GObject* source_object,
GAsyncResult* _res_,
gpointer _user_data_)
{
GeeFutureDoFlatMapData* _data_;
_data_ = _user_data_;
_data_->_source_object_ = source_object;
_data_->_res_ = _res_;
gee_future_do_flat_map_co (_data_);
}
static gboolean
gee_future_do_flat_map_co (GeeFutureDoFlatMapData* _data_)
{
switch (_data_->_state_) {
case 0:
goto _state_0;
case 1:
goto _state_1;
case 2:
goto _state_2;
default:
g_assert_not_reached ();
}
_state_0:
{
_data_->_state_ = 1;
gee_future_wait_async (_data_->future, gee_future_do_flat_map_ready, _data_);
return FALSE;
_state_1:
_data_->_tmp0_ = gee_future_wait_finish (_data_->future, _data_->_res_, &_data_->_inner_error0_);
_data_->_tmp1_ = ((_data_->_tmp0_ != NULL) && (_data_->a_dup_func != NULL)) ? _data_->a_dup_func ((gpointer) _data_->_tmp0_) : ((gpointer) _data_->_tmp0_);
_data_->input = _data_->_tmp1_;
if (G_UNLIKELY (_data_->_inner_error0_ != NULL)) {
if (g_error_matches (_data_->_inner_error0_, GEE_FUTURE_ERROR, GEE_FUTURE_ERROR_EXCEPTION)) {
goto __catch0_gee_future_error_exception;
}
goto __catch0_g_error;
}
_data_->_tmp2_ = _data_->input;
_data_->_tmp3_ = _data_->func (_data_->_tmp2_, _data_->func_target);
_data_->output_future = _data_->_tmp3_;
{
_data_->_tmp4_ = _data_->output_future;
_data_->_state_ = 2;
gee_future_wait_async (_data_->_tmp4_, gee_future_do_flat_map_ready, _data_);
return FALSE;
_state_2:
_data_->_tmp5_ = gee_future_wait_finish (_data_->_tmp4_, _data_->_res_, &_data_->_inner_error0_);
_data_->_tmp6_ = ((_data_->_tmp5_ != NULL) && (_data_->b_dup_func != NULL)) ? _data_->b_dup_func ((gpointer) _data_->_tmp5_) : ((gpointer) _data_->_tmp5_);
_data_->output = _data_->_tmp6_;
if (G_UNLIKELY (_data_->_inner_error0_ != NULL)) {
if (g_error_matches (_data_->_inner_error0_, GEE_FUTURE_ERROR, GEE_FUTURE_ERROR_EXCEPTION)) {
goto __catch1_gee_future_error_exception;
}
goto __finally1;
}
_data_->_tmp7_ = _data_->output;
_data_->output = NULL;
gee_promise_set_value (_data_->promise, _data_->_tmp7_);
((_data_->output == NULL) || (_data_->b_destroy_func == NULL)) ? NULL : (_data_->output = (_data_->b_destroy_func (_data_->output), NULL));
}
goto __finally1;
__catch1_gee_future_error_exception:
{
g_clear_error (&_data_->_inner_error0_);
_data_->_tmp8_ = _data_->output_future;
_data_->_tmp9_ = gee_future_get_exception (_data_->_tmp8_);
_data_->_tmp10_ = _data_->_tmp9_;
_data_->_tmp11_ = _g_error_copy0 (_data_->_tmp10_);
gee_promise_set_exception (_data_->promise, _data_->_tmp11_);
}
__finally1:
if (G_UNLIKELY (_data_->_inner_error0_ != NULL)) {
_g_object_unref0 (_data_->output_future);
((_data_->input == NULL) || (_data_->a_destroy_func == NULL)) ? NULL : (_data_->input = (_data_->a_destroy_func (_data_->input), NULL));
if (g_error_matches (_data_->_inner_error0_, GEE_FUTURE_ERROR, GEE_FUTURE_ERROR_EXCEPTION)) {
goto __catch0_gee_future_error_exception;
}
goto __catch0_g_error;
}
_g_object_unref0 (_data_->output_future);
((_data_->input == NULL) || (_data_->a_destroy_func == NULL)) ? NULL : (_data_->input = (_data_->a_destroy_func (_data_->input), NULL));
}
goto __finally0;
__catch0_gee_future_error_exception:
{
g_clear_error (&_data_->_inner_error0_);
_data_->_tmp12_ = gee_future_get_exception (_data_->future);
_data_->_tmp13_ = _data_->_tmp12_;
_data_->_tmp14_ = _g_error_copy0 (_data_->_tmp13_);
gee_promise_set_exception (_data_->promise, _data_->_tmp14_);
}
goto __finally0;
__catch0_g_error:
{
_data_->ex = _data_->_inner_error0_;
_data_->_inner_error0_ = NULL;
_data_->_tmp15_ = _data_->ex;
_data_->ex = NULL;
gee_promise_set_exception (_data_->promise, _data_->_tmp15_);
_g_error_free0 (_data_->ex);
}
__finally0:
if (G_UNLIKELY (_data_->_inner_error0_ != NULL)) {
(_data_->func_target_destroy_notify == NULL) ? NULL : (_data_->func_target_destroy_notify (_data_->func_target), NULL);
_data_->func = NULL;
_data_->func_target = NULL;
_data_->func_target_destroy_notify = NULL;
g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _data_->_inner_error0_->message, g_quark_to_string (_data_->_inner_error0_->domain), _data_->_inner_error0_->code);
g_clear_error (&_data_->_inner_error0_);
g_object_unref (_data_->_async_result);
return FALSE;
}
(_data_->func_target_destroy_notify == NULL) ? NULL : (_data_->func_target_destroy_notify (_data_->func_target), NULL);
_data_->func = NULL;
_data_->func_target = NULL;
_data_->func_target_destroy_notify = NULL;
g_task_return_pointer (_data_->_async_result, _data_, NULL);
if (_data_->_state_ != 0) {
while (!g_task_get_completed (_data_->_async_result)) {
g_main_context_iteration (g_task_get_context (_data_->_async_result), TRUE);
}
}
g_object_unref (_data_->_async_result);
return FALSE;
}
gconstpointer
gee_future_get_value (GeeFuture* self)
{
GeeFutureIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_FUTURE_GET_INTERFACE (self);
if (_iface_->get_value) {
return _iface_->get_value (self);
}
return NULL;
}
static gconstpointer
gee_future_real_get_value (GeeFuture* base)
{
gconstpointer result;
GeeFuture* self;
GError* _inner_error0_ = NULL;
self = base;
{
gconstpointer _tmp0_ = NULL;
gconstpointer _tmp1_;
_tmp1_ = gee_future_wait (self, &_inner_error0_);
_tmp0_ = _tmp1_;
if (G_UNLIKELY (_inner_error0_ != NULL)) {
if (_inner_error0_->domain == GEE_FUTURE_ERROR) {
goto __catch0_gee_future_error;
}
g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error0_->message, g_quark_to_string (_inner_error0_->domain), _inner_error0_->code);
g_clear_error (&_inner_error0_);
return NULL;
}
result = _tmp0_;
return result;
}
goto __finally0;
__catch0_gee_future_error:
{
g_clear_error (&_inner_error0_);
result = NULL;
return result;
}
__finally0:
g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error0_->message, g_quark_to_string (_inner_error0_->domain), _inner_error0_->code);
g_clear_error (&_inner_error0_);
return NULL;
}
gboolean
gee_future_get_ready (GeeFuture* self)
{
GeeFutureIface* _iface_;
g_return_val_if_fail (self != NULL, FALSE);
_iface_ = GEE_FUTURE_GET_INTERFACE (self);
if (_iface_->get_ready) {
return _iface_->get_ready (self);
}
return FALSE;
}
GError*
gee_future_get_exception (GeeFuture* self)
{
GeeFutureIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_FUTURE_GET_INTERFACE (self);
if (_iface_->get_exception) {
return _iface_->get_exception (self);
}
return NULL;
}
G_GNUC_INTERNAL void
gee_future_source_func_array_element_init (GeeFutureSourceFuncArrayElement *self,
GSourceFunc func,
gpointer func_target,
GDestroyNotify func_target_destroy_notify)
{
GSourceFunc _tmp0_;
gpointer _tmp0__target;
GDestroyNotify _tmp0__target_destroy_notify;
memset (self, 0, sizeof (GeeFutureSourceFuncArrayElement));
_tmp0_ = func;
_tmp0__target = func_target;
_tmp0__target_destroy_notify = func_target_destroy_notify;
func = NULL;
func_target = NULL;
func_target_destroy_notify = NULL;
((*self).func_target_destroy_notify == NULL) ? NULL : ((*self).func_target_destroy_notify ((*self).func_target), NULL);
(*self).func = NULL;
(*self).func_target = NULL;
(*self).func_target_destroy_notify = NULL;
(*self).func = _tmp0_;
(*self).func_target = _tmp0__target;
(*self).func_target_destroy_notify = _tmp0__target_destroy_notify;
(func_target_destroy_notify == NULL) ? NULL : (func_target_destroy_notify (func_target), NULL);
func = NULL;
func_target = NULL;
func_target_destroy_notify = NULL;
}
G_GNUC_INTERNAL void
gee_future_source_func_array_element_copy (const GeeFutureSourceFuncArrayElement* self,
GeeFutureSourceFuncArrayElement* dest)
{
GSourceFunc _tmp0_;
gpointer _tmp0__target;
_tmp0_ = (*self).func;
_tmp0__target = (*self).func_target;
((*dest).func_target_destroy_notify == NULL) ? NULL : ((*dest).func_target_destroy_notify ((*dest).func_target), NULL);
(*dest).func = NULL;
(*dest).func_target = NULL;
(*dest).func_target_destroy_notify = NULL;
(*dest).func = _tmp0_;
(*dest).func_target = _tmp0__target;
(*dest).func_target_destroy_notify = NULL;
}
G_GNUC_INTERNAL void
gee_future_source_func_array_element_destroy (GeeFutureSourceFuncArrayElement* self)
{
((*self).func_target_destroy_notify == NULL) ? NULL : ((*self).func_target_destroy_notify ((*self).func_target), NULL);
(*self).func = NULL;
(*self).func_target = NULL;
(*self).func_target_destroy_notify = NULL;
}
GeeFutureSourceFuncArrayElement*
gee_future_source_func_array_element_dup (const GeeFutureSourceFuncArrayElement* self)
{
GeeFutureSourceFuncArrayElement* dup;
dup = g_new0 (GeeFutureSourceFuncArrayElement, 1);
gee_future_source_func_array_element_copy (self, dup);
return dup;
}
G_GNUC_INTERNAL void
gee_future_source_func_array_element_free (GeeFutureSourceFuncArrayElement* self)
{
gee_future_source_func_array_element_destroy (self);
g_free (self);
}
static GType
gee_future_source_func_array_element_get_type_once (void)
{
GType gee_future_source_func_array_element_type_id;
gee_future_source_func_array_element_type_id = g_boxed_type_register_static ("GeeFutureSourceFuncArrayElement", (GBoxedCopyFunc) gee_future_source_func_array_element_dup, (GBoxedFreeFunc) gee_future_source_func_array_element_free);
return gee_future_source_func_array_element_type_id;
}
G_GNUC_INTERNAL GType
gee_future_source_func_array_element_get_type (void)
{
static volatile gsize gee_future_source_func_array_element_type_id__once = 0;
if (g_once_init_enter (&gee_future_source_func_array_element_type_id__once)) {
GType gee_future_source_func_array_element_type_id;
gee_future_source_func_array_element_type_id = gee_future_source_func_array_element_get_type_once ();
g_once_init_leave (&gee_future_source_func_array_element_type_id__once, gee_future_source_func_array_element_type_id);
}
return gee_future_source_func_array_element_type_id__once;
}
static void
gee_future_default_init (GeeFutureIface * iface,
gpointer iface_data)
{
/**
* Checks if value is ready. If it is calls to {@link wait} and
* {@link wait_until} will not block and value is returned immediately.
*/
g_object_interface_install_property (iface, g_param_spec_boolean ("ready", "ready", "ready", FALSE, G_PARAM_STATIC_STRINGS | G_PARAM_READABLE));
/**
* Checks the exception that have been set. I.e. if the computation
* has thrown the exception it should be set here and the {@link wait},
* {@link wait_until} and {@link wait_async} should throw
* {@link FutureError.EXCEPTION}.
*
* @since 0.11.5
*/
g_object_interface_install_property (iface, g_param_spec_boxed ("exception", "exception", "exception", G_TYPE_ERROR, G_PARAM_STATIC_STRINGS | G_PARAM_READABLE));
iface->map = gee_future_real_map;
iface->light_map_fixed = gee_future_real_light_map;
iface->light_map = gee_future_real_light_map_broken;
iface->zip = gee_future_real_zip;
iface->flat_map = gee_future_real_flat_map;
iface->get_value = gee_future_real_get_value;
}
/**
* Future is a value which might not yet be computed - for example it is calculated
* in different thread or depends on I/O value.
*
* All methods can be called from many threads as part of interface.
*
* Note: Statement that call does not block does not mean that it is lock-free.
* Internally the implementation is allowed to take mutex but it should guarantee
* that it is not for a long time (including blocking on anything else, I/O calls
* or callbacks).
*
* @see Promise
* @see Lazy
* @see task
* @see async_task
* @since 0.11.0
*/
static GType
gee_future_get_type_once (void)
{
static const GTypeInfo g_define_type_info = { sizeof (GeeFutureIface), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) gee_future_default_init, (GClassFinalizeFunc) NULL, NULL, 0, 0, (GInstanceInitFunc) NULL, NULL };
GType gee_future_type_id;
gee_future_type_id = g_type_register_static (G_TYPE_INTERFACE, "GeeFuture", &g_define_type_info, 0);
g_type_interface_add_prerequisite (gee_future_type_id, G_TYPE_OBJECT);
return gee_future_type_id;
}
GType
gee_future_get_type (void)
{
static volatile gsize gee_future_type_id__once = 0;
if (g_once_init_enter (&gee_future_type_id__once)) {
GType gee_future_type_id;
gee_future_type_id = gee_future_get_type_once ();
g_once_init_leave (&gee_future_type_id__once, gee_future_type_id);
}
return gee_future_type_id__once;
}
GQuark
gee_future_error_quark (void)
{
return g_quark_from_static_string ("gee-future-error-quark");
}
static GType
gee_future_error_get_type_once (void)
{
static const GEnumValue values[] = {{GEE_FUTURE_ERROR_ABANDON_PROMISE, "GEE_FUTURE_ERROR_ABANDON_PROMISE", "abandon-promise"}, {GEE_FUTURE_ERROR_EXCEPTION, "GEE_FUTURE_ERROR_EXCEPTION", "exception"}, {0, NULL, NULL}};
GType gee_future_error_type_id;
gee_future_error_type_id = g_enum_register_static ("GeeFutureError", values);
return gee_future_error_type_id;
}
GType
gee_future_error_get_type (void)
{
static volatile gsize gee_future_error_type_id__once = 0;
if (g_once_init_enter (&gee_future_error_type_id__once)) {
GType gee_future_error_type_id;
gee_future_error_type_id = gee_future_error_get_type_once ();
g_once_init_leave (&gee_future_error_type_id__once, gee_future_error_type_id);
}
return gee_future_error_type_id__once;
}
|