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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2009 Richard Hughes <richard@hughsie.com>
*
* Licensed under the GNU Lesser General Public License Version 2.1
*
* 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
*/
/**
* SECTION:pk-progress
* @short_description: Transaction progress information
*
* This GObject is available to clients to be able to query details about
* the transaction. All of the details on this object are stored as properties.
*/
#include "config.h"
#include <packagekit-glib2/pk-enum.h>
#include <packagekit-glib2/pk-package-id.h>
#include <packagekit-glib2/pk-progress.h>
#include <packagekit-glib2/pk-progress-private.h>
static void pk_progress_dispose (GObject *object);
static void pk_progress_finalize (GObject *object);
/**
* PkProgressPrivate:
*
* Private #PkProgress data
**/
struct _PkProgressPrivate
{
gchar *package_id;
gchar *transaction_id;
gint percentage;
gboolean allow_cancel;
PkRoleEnum role;
PkStatusEnum status;
gboolean caller_active;
guint elapsed_time;
guint remaining_time;
guint speed;
guint64 download_size_remaining;
guint64 transaction_flags;
guint uid;
gchar *sender;
PkItemProgress *item_progress;
PkPackage *package;
PkProgressCallback callback;
gpointer callback_user_data;
};
enum {
PROP_0,
PROP_PACKAGE_ID,
PROP_TRANSACTION_ID,
PROP_PERCENTAGE,
PROP_ALLOW_CANCEL,
PROP_ROLE,
PROP_STATUS,
PROP_CALLER_ACTIVE,
PROP_ELAPSED_TIME,
PROP_REMAINING_TIME,
PROP_SPEED,
PROP_DOWNLOAD_SIZE_REMAINING,
PROP_TRANSACTION_FLAGS,
PROP_UID,
PROP_SENDER,
PROP_PACKAGE,
PROP_ITEM_PROGRESS,
PROP_LAST
};
static GParamSpec *obj_properties[PROP_LAST] = { NULL, };
G_DEFINE_TYPE_WITH_PRIVATE (PkProgress, pk_progress, G_TYPE_OBJECT)
#define GET_PRIVATE(o) (pk_progress_get_instance_private (o))
/*
* pk_progress_get_property:
**/
static void
pk_progress_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
{
PkProgress *progress = PK_PROGRESS (object);
PkProgressPrivate *priv = GET_PRIVATE(progress);
switch (prop_id) {
case PROP_PACKAGE_ID:
g_value_set_string (value, priv->package_id);
break;
case PROP_TRANSACTION_ID:
g_value_set_string (value, priv->transaction_id);
break;
case PROP_PERCENTAGE:
g_value_set_int (value, priv->percentage);
break;
case PROP_ITEM_PROGRESS:
g_value_set_object (value, priv->item_progress);
break;
case PROP_ALLOW_CANCEL:
g_value_set_boolean (value, priv->allow_cancel);
break;
case PROP_STATUS:
g_value_set_uint (value, priv->status);
break;
case PROP_ROLE:
g_value_set_uint (value, priv->role);
break;
case PROP_CALLER_ACTIVE:
g_value_set_boolean (value, priv->caller_active);
break;
case PROP_ELAPSED_TIME:
g_value_set_uint (value, priv->elapsed_time);
break;
case PROP_REMAINING_TIME:
g_value_set_uint (value, priv->remaining_time);
break;
case PROP_SPEED:
g_value_set_uint (value, priv->speed);
break;
case PROP_DOWNLOAD_SIZE_REMAINING:
g_value_set_uint64 (value, priv->download_size_remaining);
break;
case PROP_TRANSACTION_FLAGS:
g_value_set_uint64 (value, priv->transaction_flags);
break;
case PROP_UID:
g_value_set_uint (value, priv->uid);
break;
case PROP_SENDER:
g_value_set_string (value, priv->sender);
break;
case PROP_PACKAGE:
g_value_set_object (value, priv->package);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static inline void
pk_progress_invoke_callback (PkProgress *progress, PkProgressType type)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_assert (PK_IS_PROGRESS (progress));
if (priv->callback)
priv->callback (progress, type, priv->callback_user_data);
}
/**
* pk_progress_set_package_id:
* @progress: a valid #PkProgress instance
* @package_id: a PackageID
*
* Set the package ID this transaction is acting on.
*
* Return value: %TRUE if value changed.
*
* Since: 0.5.2
**/
gboolean
pk_progress_set_package_id (PkProgress *progress, const gchar *package_id)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* the same as before? */
if (g_strcmp0 (priv->package_id, package_id) == 0)
return FALSE;
/* valid? */
if (!pk_package_id_check (package_id)) {
g_warning ("invalid package_id %s", package_id);
return FALSE;
}
/* new value */
g_free (priv->package_id);
priv->package_id = g_strdup (package_id);
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_PACKAGE_ID]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_PACKAGE_ID);
return TRUE;
}
/**
* pk_progress_get_package_id:
* @progress: a valid #PkProgress instance
*
* Get the package ID this transaction is acting on.
*
* Return value: a PackageID
*
* Since: 1.0.12
**/
const gchar *
pk_progress_get_package_id (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), NULL);
return priv->package_id;
}
/**
* pk_progress_set_item_progress:
* @progress: a valid #PkProgress instance
* @item_progress: a #PkItemProgress
*
* Set the item progress associated with this transaction.
*
* Return value: %TRUE if value changed.
*
* Since: 0.8.1
**/
gboolean
pk_progress_set_item_progress (PkProgress *progress,
PkItemProgress *item_progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
if (g_set_object (&priv->item_progress, item_progress)) {
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_ITEM_PROGRESS]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_ITEM_PROGRESS);
return TRUE;
}
return FALSE;
}
/**
* pk_progress_get_item_progress:
* @progress: a valid #PkProgress instance
*
* Get the item progress associated with this transaction.
*
* Return value: (transfer none): a #PkItemProgress
*
* Since: 1.0.12
**/
PkItemProgress *
pk_progress_get_item_progress (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), NULL);
return priv->item_progress;
}
/**
* pk_progress_set_transaction_id:
* @progress: a valid #PkProgress instance
* @transaction_id: a transaction ID.
*
* Set the ID used by this transaction.
*
* Since: 0.5.3
*
* Return value: %TRUE if value changed.
**/
gboolean
pk_progress_set_transaction_id (PkProgress *progress, const gchar *transaction_id)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* the same as before? */
if (g_strcmp0 (priv->transaction_id, transaction_id) == 0)
return FALSE;
/* new value */
g_free (priv->transaction_id);
priv->transaction_id = g_strdup (transaction_id);
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_TRANSACTION_ID]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_TRANSACTION_ID);
return TRUE;
}
/**
* pk_progress_get_transaction_id:
* @progress: a valid #PkProgress instance
*
* Get the ID used by this transaction.
*
* Return value: a transaction ID.
*
* Since: 1.0.12
**/
const gchar *
pk_progress_get_transaction_id (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), NULL);
return priv->transaction_id;
}
/**
* pk_progress_set_percentage:
* @progress: a valid #PkProgress instance
* @percentage: a percentage value (0-100)
*
* Set the percentage complete of this transaction.
*
* Return value: %TRUE if value changed.
*
* Since: 0.5.2
**/
gboolean
pk_progress_set_percentage (PkProgress *progress, gint percentage)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* the same as before? */
if (priv->percentage == percentage)
return FALSE;
/* new value */
priv->percentage = percentage;
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_PERCENTAGE]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_PERCENTAGE);
return TRUE;
}
/**
* pk_progress_get_percentage:
* @progress: a valid #PkProgress instance
*
* Get the percentage complete.
*
* Return value: a percentage (0-100)
*
* Since: 1.0.12
**/
gint
pk_progress_get_percentage (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), -1);
return priv->percentage;
}
/**
* pk_progress_set_status:
* @progress: a valid #PkProgress instance
* @status: a #PkStatusEnum
*
* Set the status of this transaction.
*
* Return value: %TRUE if value changed.
*
* Since: 0.5.2
**/
gboolean
pk_progress_set_status (PkProgress *progress, PkStatusEnum status)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* the same as before? */
if (priv->status == status)
return FALSE;
/* new value */
priv->status = status;
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_STATUS]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_STATUS);
return TRUE;
}
/**
* pk_progress_get_status:
* @progress: a valid #PkProgress instance
*
* Get the status of this transaction.
*
* Return value: a status string
*
* Since: 1.0.12
**/
PkStatusEnum
pk_progress_get_status (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), PK_STATUS_ENUM_UNKNOWN);
return priv->status;
}
/**
* pk_progress_set_role:
* @progress: a valid #PkProgress instance
* @role: a #PkRoleEnum
*
* Set the role of this transaction.
*
* Return value: %TRUE if value changed.
*
* Since: 0.5.2
**/
gboolean
pk_progress_set_role (PkProgress *progress, PkRoleEnum role)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* ignore unknown as we don't want to replace a valid value */
if (role == PK_ROLE_ENUM_UNKNOWN)
return FALSE;
/* the same as before? */
if (priv->role == role)
return FALSE;
/* new value */
priv->role = role;
g_debug ("role now %s", pk_role_enum_to_string (role));
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_ROLE]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_ROLE);
return TRUE;
}
/**
* pk_progress_get_role:
* @progress: a valid #PkProgress instance
*
* Get the role of this transaction.
*
* Return value: a #PkRoleEnum
*
* Since: 1.0.12
**/
PkRoleEnum
pk_progress_get_role (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), PK_ROLE_ENUM_UNKNOWN);
return priv->role;
}
/**
* pk_progress_set_allow_cancel:
* @progress: a valid #PkProgress instance
* @allow_cancel: %TRUE if this transaction can be cancelled.
*
* Set if this transaction can be cancelled.
*
* Return value: %TRUE if value changed.
*
* Since: 0.5.2
**/
gboolean
pk_progress_set_allow_cancel (PkProgress *progress, gboolean allow_cancel)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* the same as before? */
if (priv->allow_cancel == allow_cancel)
return FALSE;
/* new value */
priv->allow_cancel = allow_cancel;
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_ALLOW_CANCEL]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_ALLOW_CANCEL);
return TRUE;
}
/**
* pk_progress_get_allow_cancel:
* @progress: a valid #PkProgress instance
*
* Get if this transaction can be cancelled.
*
* Return value: %TRUE if progress can be cancelled.
*
* Since: 1.0.12
**/
gboolean
pk_progress_get_allow_cancel (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
return priv->allow_cancel;
}
/**
* pk_progress_set_caller_active:
* @progress: a valid #PkProgress instance
* @caller_active: %TRUE if the transaction caller is still connected.
*
* Set if the transaction caller is connected.
*
* Return value: %TRUE if value changed.
*
* Since: 0.5.2
**/
gboolean
pk_progress_set_caller_active (PkProgress *progress, gboolean caller_active)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* the same as before? */
if (priv->caller_active == caller_active)
return FALSE;
/* new value */
priv->caller_active = caller_active;
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_CALLER_ACTIVE]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_CALLER_ACTIVE);
return TRUE;
}
/**
* pk_progress_get_caller_active:
* @progress: a valid #PkProgress instance
*
* Get if the transaction caller is connected.
*
* Return value: %TRUE if the transaction caller is still connected.
*
* Since: 1.0.12
**/
gboolean
pk_progress_get_caller_active (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
return priv->caller_active;
}
/**
* pk_progress_set_elapsed_time:
* @progress: a valid #PkProgress instance
* @elapsed_time: time in seconds
*
* Set the amount of time the transaction has taken.
*
* Return value: %TRUE if value changed.
*
* Since: 0.5.2
**/
gboolean
pk_progress_set_elapsed_time (PkProgress *progress, guint elapsed_time)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* the same as before? */
if (priv->elapsed_time == elapsed_time)
return FALSE;
/* new value */
priv->elapsed_time = elapsed_time;
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_ELAPSED_TIME]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_ELAPSED_TIME);
return TRUE;
}
/**
* pk_progress_get_elapsed_time:
* @progress: a valid #PkProgress instance
*
* Get the amount of time the transaction has taken.
*
* Return value: time in seconds
*
* Since: 1.0.12
**/
guint
pk_progress_get_elapsed_time (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), 0);
return priv->elapsed_time;
}
/**
* pk_progress_set_remaining_time:
* @progress: a valid #PkProgress instance
* @remaining_time: time in seconds or 0 if unknown.
*
* Set the amount of time the transaction will take to complete.
*
* Return value: %TRUE if value changed.
*
* Since: 0.5.2
**/
gboolean
pk_progress_set_remaining_time (PkProgress *progress, guint remaining_time)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* the same as before? */
if (priv->remaining_time == remaining_time)
return FALSE;
/* new value */
priv->remaining_time = remaining_time;
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_REMAINING_TIME]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_REMAINING_TIME);
return TRUE;
}
/**
* pk_progress_get_remaining_time:
* @progress: a valid #PkProgress instance
*
* Get the amount of time the transaction will take to complete.
*
* Return value: time in seconds or 0 if unknown.
*
* Since: 1.0.12
**/
guint
pk_progress_get_remaining_time (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), 0);
return priv->remaining_time;
}
/**
* pk_progress_set_speed:
* @progress: a valid #PkProgress instance
* @speed: speed in bits per second or 0 if unknown
*
* Set the speed of this transaction.
*
* Return value: %TRUE if value changed.
*
* Since: 0.5.2
**/
gboolean
pk_progress_set_speed (PkProgress *progress, guint speed)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* the same as before? */
if (priv->speed == speed)
return FALSE;
/* new value */
priv->speed = speed;
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_SPEED]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_SPEED);
return TRUE;
}
/**
* pk_progress_get_speed:
* @progress: a valid #PkProgress instance
*
* Get the speed of this transaction.
*
* Return value: speed in bits per scond or 0 if unknown
*
* Since: 1.0.12
**/
guint
pk_progress_get_speed (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), 0);
return priv->speed;
}
/**
* pk_progress_set_download_size_remaining:
* @progress: a valid #PkProgress instance
* @download_size_remaining: number of bytes remaining to download.
*
* Set the number of bytes remaining to download.
*
* Return value: %TRUE if value changed.
*
* Since: 0.8.0
**/
gboolean
pk_progress_set_download_size_remaining (PkProgress *progress, guint64 download_size_remaining)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* the same as before? */
if (priv->download_size_remaining == download_size_remaining)
return FALSE;
/* new value */
priv->download_size_remaining = download_size_remaining;
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_DOWNLOAD_SIZE_REMAINING]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_DOWNLOAD_SIZE_REMAINING);
return TRUE;
}
/**
* pk_progress_get_download_size_remaining:
* @progress: a valid #PkProgress instance
*
* Get the number of bytes remaining to download.
*
* Return value: number of bytes remaining to download.
*
* Since: 1.0.12
**/
guint64
pk_progress_get_download_size_remaining (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), 0);
return priv->download_size_remaining;
}
/**
* pk_progress_set_transaction_flags:
* @progress: a valid #PkProgress instance
* @transaction_flags: a #PkBitfield containing #PkTransactionFlagEnum values.
*
* Set the flags associated with this transaction.
*
* Return value: %TRUE if value changed.
*
* Since: 0.8.8
**/
gboolean
pk_progress_set_transaction_flags (PkProgress *progress, guint64 transaction_flags)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* the same as before? */
if (priv->transaction_flags == transaction_flags)
return FALSE;
/* new value */
priv->transaction_flags = transaction_flags;
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_TRANSACTION_FLAGS]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_TRANSACTION_FLAGS);
return TRUE;
}
/**
* pk_progress_get_transaction_flags:
* @progress: a valid #PkProgress instance
*
* Get the flags associated with this transaction.
*
* Return value: a #PkBitfield containing #PkTransactionFlagEnum values.
*
* Since: 1.0.12
**/
guint64
pk_progress_get_transaction_flags (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), 0);
return priv->transaction_flags;
}
/**
* pk_progress_set_uid:
* @progress: a valid #PkProgress instance
* @uid: a UID
*
* Set the UID that started this transaction.
*
* Return value: %TRUE if value changed.
*
* Since: 0.5.2
**/
gboolean
pk_progress_set_uid (PkProgress *progress, guint uid)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* the same as before? */
if (priv->uid == uid)
return FALSE;
/* new value */
priv->uid = uid;
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_UID]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_UID);
return TRUE;
}
/**
* pk_progress_get_uid:
* @progress: a valid #PkProgress instance
*
* Get the UID that started this transaction.
*
* Return value: an UID
*
* Since: 1.0.12
**/
guint
pk_progress_get_uid (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), 0);
return priv->uid;
}
/**
* pk_progress_set_sender:
* @progress: a valid #PkProgress instance
* @bus_name: a D-Bus name
*
* Set the D-Bus name of the client that started this transaction.
*
* Return value: %TRUE if value changed.
*
* Since: 1.2.6
**/
gboolean
pk_progress_set_sender (PkProgress *progress, const gchar *bus_name)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
/* the same as before? */
if (g_strcmp0 (priv->sender, bus_name) == 0)
return FALSE;
/* new value */
g_free (priv->sender);
priv->sender = g_strdup (bus_name);
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_SENDER]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_SENDER);
return TRUE;
}
/**
* pk_progress_get_sender:
* @progress: a valid #PkProgress instance
*
* Get the D-Bus name of the client that started this transaction.
*
* Return value: a D-Bus name
*
* Since: 1.2.6
**/
gchar*
pk_progress_get_sender (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), NULL);
return priv->sender;
}
/**
* pk_progress_set_package:
* @progress: a valid #PkProgress instance
* @package: a #PkPackage
*
* Set the package this transaction is acting on.
*
* Return value: %TRUE if value changed.
*
* Since: 0.5.2
**/
gboolean
pk_progress_set_package (PkProgress *progress, PkPackage *package)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), FALSE);
if (g_set_object (&priv->package, package)) {
g_object_notify_by_pspec (G_OBJECT(progress), obj_properties[PROP_PACKAGE]);
pk_progress_invoke_callback (progress, PK_PROGRESS_TYPE_PACKAGE);
return TRUE;
}
return FALSE;
}
/**
* pk_progress_get_package:
* @progress: a valid #PkProgress instance
*
* Get the package this transaction is acting on.
*
* Return value: (transfer none): a #PkPackage
*
* Since: 1.0.12
**/
PkPackage *
pk_progress_get_package (PkProgress *progress)
{
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_return_val_if_fail (PK_IS_PROGRESS (progress), NULL);
return priv->package;
}
/**
* pk_progress_new_with_callback:
* @callback: (scope notified): the function to run when the progress changes
* @user_data: data to pass to @callback
*
* Create a progress with a callback function.
*
* Returns: (transfer full): a new #PkProgress
**/
PkProgress *
pk_progress_new_with_callback (PkProgressCallback callback, gpointer user_data)
{
PkProgress *progress;
PkProgressPrivate *priv;
progress = pk_progress_new ();
priv = pk_progress_get_instance_private (progress);
priv->callback = callback;
priv->callback_user_data = user_data;
return progress;
}
/*
* pk_progress_set_property:
**/
static void
pk_progress_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
{
PkProgress *progress = PK_PROGRESS (object);
switch (prop_id) {
case PROP_PACKAGE_ID:
pk_progress_set_package_id (progress, g_value_get_string (value));
break;
case PROP_TRANSACTION_ID:
pk_progress_set_transaction_id (progress, g_value_get_string (value));
break;
case PROP_PERCENTAGE:
pk_progress_set_percentage (progress, g_value_get_int (value));
break;
case PROP_ALLOW_CANCEL:
pk_progress_set_allow_cancel (progress, g_value_get_boolean (value));
break;
case PROP_STATUS:
pk_progress_set_status (progress, g_value_get_uint (value));
break;
case PROP_ROLE:
pk_progress_set_role (progress, g_value_get_uint (value));
break;
case PROP_CALLER_ACTIVE:
pk_progress_set_caller_active (progress, g_value_get_boolean (value));
break;
case PROP_ELAPSED_TIME:
pk_progress_set_elapsed_time (progress, g_value_get_uint (value));
break;
case PROP_REMAINING_TIME:
pk_progress_set_remaining_time (progress, g_value_get_uint (value));
break;
case PROP_SPEED:
pk_progress_set_speed (progress, g_value_get_uint (value));
break;
case PROP_UID:
pk_progress_set_uid (progress, g_value_get_uint (value));
break;
case PROP_PACKAGE:
pk_progress_set_package (progress, g_value_get_object (value));
break;
case PROP_ITEM_PROGRESS:
pk_progress_set_item_progress (progress, g_value_get_object (value));
break;
case PROP_SENDER:
pk_progress_set_sender (progress, g_value_get_string (value));
break;
case PROP_DOWNLOAD_SIZE_REMAINING:
pk_progress_set_download_size_remaining (progress, g_value_get_uint64 (value));
break;
case PROP_TRANSACTION_FLAGS:
pk_progress_set_transaction_flags (progress, g_value_get_uint64 (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
/*
* pk_progress_class_init:
**/
static void
pk_progress_class_init (PkProgressClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->get_property = pk_progress_get_property;
object_class->set_property = pk_progress_set_property;
object_class->dispose = pk_progress_dispose;
object_class->finalize = pk_progress_finalize;
/**
* PkProgress:package-id:
*
* Full package ID this transaction is acting on.
* e.g. 'gnome-power-manager;0.1.2;i386;fedora'
*
* Since: 0.5.2
*/
obj_properties[PROP_PACKAGE_ID] =
g_param_spec_string ("package-id", NULL, NULL,
NULL,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:transaction-id:
*
* ID used by this transaction.
*
* Since: 0.5.2
*/
obj_properties[PROP_TRANSACTION_ID] =
g_param_spec_string ("transaction-id", NULL, NULL,
NULL,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:percentage:
*
* Percentage complete of this transaction.
*
* Since: 0.5.2
*/
obj_properties[PROP_PERCENTAGE] =
g_param_spec_int ("percentage", NULL, NULL,
-1, G_MAXINT, -1,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:allow-cancel:
*
* %TRUE if this transaction can be cancelled.
*
* Since: 0.5.2
*/
obj_properties[PROP_ALLOW_CANCEL] =
g_param_spec_boolean ("allow-cancel", NULL, NULL,
FALSE,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:status:
*
* Status of this transaction.
*
* Since: 0.5.2
*/
obj_properties[PROP_STATUS] =
g_param_spec_uint ("status", NULL, NULL,
0, PK_STATUS_ENUM_LAST, PK_STATUS_ENUM_UNKNOWN,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:role:
*
* Role of this transaction.
*
* Since: 0.5.2
*/
obj_properties[PROP_ROLE] =
g_param_spec_uint ("role", NULL, NULL,
0, PK_ROLE_ENUM_LAST, PK_ROLE_ENUM_UNKNOWN,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:caller-active:
*
* %TRUE if the transaction caller is still connected.
*
* Since: 0.5.2
*/
obj_properties[PROP_CALLER_ACTIVE] =
g_param_spec_boolean ("caller-active", NULL, NULL,
FALSE,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:elapsed-time:
*
* Amount of time the transaction has taken in seconds.
*
* Since: 0.5.2
*/
obj_properties[PROP_ELAPSED_TIME] =
g_param_spec_uint ("elapsed-time", NULL, NULL,
0, G_MAXUINT, 0,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:remaining-time:
*
* Amount of time the transaction will take to complete in seconds or 0 if unknown.
*
* Since: 0.5.2
*/
obj_properties[PROP_REMAINING_TIME] =
g_param_spec_uint ("remaining-time", NULL, NULL,
0, G_MAXUINT, 0,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:speed:
*
* Transaction speed in bits per second or 0 if unknown.
*
* Since: 0.5.2
*/
obj_properties[PROP_SPEED] =
g_param_spec_uint ("speed", NULL, NULL,
0, G_MAXUINT, 0,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:download-size-remaining:
*
* Number of bytes remaining to download.
*
* Since: 0.8.0
*/
obj_properties[PROP_DOWNLOAD_SIZE_REMAINING] =
g_param_spec_uint64 ("download-size-remaining", NULL, NULL,
0, G_MAXUINT64, 0,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:transaction-flags:
*
* A #PkBitfield containing #PkTransactionFlagEnum associated with this transaction.
*
* Since: 0.8.8
*/
obj_properties[PROP_TRANSACTION_FLAGS] =
g_param_spec_uint64 ("transaction-flags", NULL, NULL,
0, G_MAXUINT64, 0,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:uid:
*
* The UID that started this transaction.
*
* Since: 0.5.2
*/
obj_properties[PROP_UID] =
g_param_spec_uint ("uid", NULL, NULL,
0, G_MAXUINT, 0,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:sender:
*
* The D-Bus name of the client that started this transaction.
*
* Since: 1.2.6
*/
obj_properties[PROP_SENDER] =
g_param_spec_string ("sender", NULL, NULL,
NULL,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:package:
*
* The package this transaction is acting on.
*
* Since: 0.5.3
*/
obj_properties[PROP_PACKAGE] =
g_param_spec_object ("package", NULL, NULL,
PK_TYPE_PACKAGE,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
/**
* PkProgress:item-progress:
*
* Item progress associated with this transaction.
*
* Since: 0.8.1
*/
obj_properties[PROP_ITEM_PROGRESS] =
g_param_spec_object ("item-progress", NULL, NULL,
PK_TYPE_ITEM_PROGRESS,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
g_object_class_install_properties (object_class, PROP_LAST, obj_properties);
}
/*
* pk_progress_init:
**/
static void
pk_progress_init (PkProgress *progress)
{
progress->priv = GET_PRIVATE(progress);
}
/*
* pk_progress_dispose:
**/
static void
pk_progress_dispose (GObject *object)
{
PkProgress *progress = PK_PROGRESS (object);
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_clear_object (&priv->package);
g_clear_object (&priv->item_progress);
G_OBJECT_CLASS (pk_progress_parent_class)->dispose (object);
}
/*
* pk_progress_finalize:
**/
static void
pk_progress_finalize (GObject *object)
{
PkProgress *progress = PK_PROGRESS (object);
PkProgressPrivate *priv = GET_PRIVATE(progress);
g_clear_pointer (&priv->package_id, g_free);
g_clear_pointer (&priv->transaction_id, g_free);
g_clear_pointer (&priv->sender, g_free);
G_OBJECT_CLASS (pk_progress_parent_class)->finalize (object);
}
/**
* pk_progress_new:
*
* #PkProgress is a nice GObject wrapper for PackageKit and makes writing
* frontends easy.
*
* Return value: A new #PkProgress instance
*
* Since: 0.5.2
**/
PkProgress *
pk_progress_new (void)
{
PkProgress *progress;
progress = g_object_new (PK_TYPE_PROGRESS, NULL);
return PK_PROGRESS (progress);
}
|