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
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<chapter id="concepts">
<title>Important Concepts</title>
<para>
The following sections explain key concepts used internally in PackageKit.
</para>
<sect1 id="introduction-ideas-packageid">
<title>Package ID</title>
<para>
One important idea is the <literal>package_id</literal>.
This is the <literal>name;version;arch;data</literal> in
a single string and is meant to represent a single package.
This is important when multiple versions of a package are installed and
only the correct one is removed.
</para>
<para>
The <literal>package_id</literal> is parsed and checked carefully in
the helper code.
The package arch and data are optional, but 3 <literal>;</literal>'s must
be present.
For instance, <literal>gnome-keyring-manager;2.18.0;;</literal> is
valid but <literal>gnome-keyring-manager;2.18.0</literal> is not.
The data field is used for the repository name and/or installation state.
It should ideally not be parsed by frontends to extract state data, instead the
<code>PkInfoEnum</code> that is often provided alongside a <literal>package_id</literal>
will provide more accurate state information.
</para>
<para>
The data field for an installed package can either be
<literal>installed</literal> for installed packages, <literal>auto</literal>
for automatically installed packages or <literal>manual</literal> for manually
installed packages. If the package has a repository origin, the installation state may be
prefixed to the origin, divided by a colon, e.g. <literal>auto:fedora-devel</literal>.
If a package is not installed, the data field is equal to the package origin.
</para>
<para>
The data field for an non-installed local package must be
<literal>local</literal> as this signifies a repository name is not available
and that package resides locally on the client system.
</para>
<para>
For example:
</para>
<itemizedlist>
<listitem>
<para>
<literal>csup;20060318-5;x86_64;local</literal>: for locally available package file.
</para>
</listitem>
<listitem>
<para>
<literal>csup;20060318-5;x86_64;fedora-devel</literal>: for package that is not installed
and can be downladed from the Fedora development repostory.
</para>
</listitem>
<listitem>
<para>
<literal>csup;20060318-5;x86_64;installed:fedora-devel</literal>: for locally installed package
</para>
</listitem>
<listitem>
<para>
<literal>csup;20060318-5;x86_64;installed</literal>: for locally installed package without repository information
</para>
</listitem>
</itemizedlist>
<informaltable>
<tgroup cols="3">
<thead>
<row>
<entry>Situation</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>Searching</entry>
<entry><literal>installed</literal></entry>
<entry>If installed</entry>
</row>
<row>
<entry></entry>
<entry><literal>available</literal></entry>
<entry>If available to install</entry>
</row>
<row>
<entry>Getting Updates</entry>
<entry><literal>low</literal></entry>
<entry>If update is of low severity</entry>
</row>
<row>
<entry></entry>
<entry><literal>normal</literal></entry>
<entry>If update is of normal severity</entry>
</row>
<row>
<entry></entry>
<entry><literal>important</literal></entry>
<entry>If update is very important</entry>
</row>
<row>
<entry></entry>
<entry><literal>security</literal></entry>
<entry>If the update is security sensitive</entry>
</row>
<row>
<entry>Installing/Updating/Removing</entry>
<entry><literal>downloading</literal></entry>
<entry>If we are downloading this package</entry>
</row>
<row>
<entry></entry>
<entry><literal>updating</literal></entry>
<entry>If we are updating this package</entry>
</row>
<row>
<entry></entry>
<entry><literal>installing</literal></entry>
<entry>If we are installing this package</entry>
</row>
<row>
<entry></entry>
<entry><literal>removing</literal></entry>
<entry>If we are removing this package</entry>
</row>
<row>
<entry>Otherwise</entry>
<entry><literal>unknown</literal></entry>
<entry>If we cannot use any other option</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>
The backend must ensure that the package_id only matches on one
single package.
A single package_id must be enough to uniquely identify a single object
in any repository used on the system.
</para>
</sect1>
<sect1 id="introduction-ideas-filters">
<title>Filters</title>
<para>
Search filtering on the name is done in the backend for efficiency reasons.
This can be added into the compiled backend if this is not possible
in any new backend design.
</para>
<para>
Filter options are:
</para>
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>Option</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><literal>installed</literal> or <literal>~installed</literal></entry>
<entry>
If the package is currently installed.
Packages returned with the <literal>~installed</literal> filter set
are available in remote software sources.
</entry>
</row>
<row>
<entry><literal>devel</literal> or <literal>~devel</literal></entry>
<entry>
Development packages are typically not required for normal operation
and typically have the suffixes -devel, -dgb and -static.
</entry>
</row>
<row>
<entry><literal>gui</literal> or <literal>~gui</literal></entry>
<entry>
GUI programs typically depend on gtk, libkde or libxfce.
</entry>
</row>
<row>
<entry><literal>application</literal> or <literal>~application</literal></entry>
<entry>
Packages that provide desktop files and are probably applications.
</entry>
</row>
<row>
<entry><literal>free</literal> or <literal>~free</literal></entry>
<entry>
Free software. The package contains only software and
other content that is available under a free license.
See the <ulink url="http://fedoraproject.org/wiki/Licensing">Fedora wiki</ulink>
for a list of licenses that are considered free.
If a license cannot be determined from the package metadata, or the
status of the license is not known, the package will be marked as 'non-free'.
</entry>
</row>
<row>
<entry><literal>visible</literal> or <literal>~visible</literal></entry>
<entry>
Repositories may want to specify if a package should be visible
in an application chooser.
This is only really useful for embedded environments where the
package list is manually chosen.
</entry>
</row>
<row>
<entry><literal>supported</literal> or <literal>~supported</literal></entry>
<entry>
If the package is supported by the distribution or retailer or is a
unsupported third party package.
</entry>
</row>
<row>
<entry><literal>basename</literal> or <literal>~basename</literal></entry>
<entry>
The basename filter will only return results according to the
package basename.
This is useful if you are searching for pm-utils and you only
want to show the main pm-utils package, not any of the
<literal>-devel</literal> or <literal>-debuginfo</literal> or
<literal>-common</literal> suffixes in the UI.
The basename is normally the original name of the source package.
</entry>
</row>
<row>
<entry><literal>newest</literal> or <literal>~newest</literal></entry>
<entry>
<para>
The newest filter will only return the newest package available.
This is useful if you are searching for <literal>gimp</literal>
and only <literal>gimp-2.4.5-1.fc9.i386</literal> would be returned,
not <literal>gimp-2.4.5-1.fc9.i386</literal>,
<literal>gimp-2.4.4-1.fc9.i386</literal> and
<literal>gimp-2.4.3-1.fc9.i386</literal>.
</para>
<para>
<emphasis>NOTE:</emphasis>
The <literal>newest</literal> filter processes installed and available
package lists separately and so the <literal>installed</literal> or
<literal>~installed</literal> filter also has to be specified if only one type of
results are required.
There is no way to do a <literal>newest</literal> filter across both
installed and available packages.
</para>
</entry>
</row>
<row>
<entry><literal>arch</literal> or <literal>~arch</literal></entry>
<entry>
The arch filter will only return the packages that match the exact architecture
of the system, for instance only showing x86_64 packages on a AMD Turion 64.
This would mean that x86_64 packages could be filtered from non-native 32-bit
packages.
This allows the used to choose non-native packages if a multi-lib policy is allowed.
</entry>
</row>
<row>
<entry><literal>source</literal> or <literal>~source</literal></entry>
<entry>
The source filter will only return source packages.
These are typically useful when rebuilding other packages.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>
So valid options would be:
</para>
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>Option</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><literal>none</literal></entry>
<entry>All packages installed or available with no filtering</entry>
</row>
<row>
<entry><literal>devel;~installed</literal></entry>
<entry>All non-installed development packages</entry>
</row>
<row>
<entry><literal>installed;~devel</literal></entry>
<entry>All installed non-development packages</entry>
</row>
<row>
<entry><literal>gui;~installed;~devel</literal></entry>
<entry>All non-installed, non-devel gui programs</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<sect2 id="introduction-ideas-filters-removeinstalled">
<title>Removing installed versions in search results</title>
<para>
When outputting a list of packages, it's important to remove the <emphasis>available</emphasis>
package if the <emphasis>same</emphasis> version is installed.
This is required, as the user may do <literal>SearchName("kernel",filter="none")</literal>
and only want to return results that can be operated on.
For instance, suppose we have installed:
</para>
<simplelist type="horiz" columns="1">
<member><literal>kernel-2.6.29.4-167 (installed)</literal></member>
<member><literal>kernel-2.6.29.5-191 (installed)</literal></member>
</simplelist>
<para>
And in the remote software sources we have:
</para>
<simplelist type="horiz" columns="1">
<member><literal>kernel-2.6.29.4-167 (fedora)</literal></member>
<member><literal>kernel-2.6.29.5-191 (fedora-updates)</literal></member>
<member><literal>kernel-2.6.30.1-203 (fedora-updates)</literal></member>
</simplelist>
<para>
If we do <literal>Resolve("kernel",filter="none")</literal> we should expect:
</para>
<simplelist type="horiz" columns="1">
<member><literal>kernel-2.6.29.4-167 (installed)</literal></member>
<member><literal>kernel-2.6.29.5-191 (installed)</literal></member>
<member><literal>kernel-2.6.30.1-203 (fedora-updates)</literal></member>
</simplelist>
<para>
If the <literal>kernel-2.6.29.4-167 (fedora)</literal> result was returned,
this will be in the list of results, and is a valid install target.
The user will get very confused why <literal>2.6.29.4-167</literal> is both
installed and not installed.
</para>
</sect2>
<sect2 id="introduction-ideas-filters-examples">
<title>Filter examples</title>
<para>
Suppose we have installed:
</para>
<simplelist type="horiz" columns="1">
<member><literal>kernel-2.6.29.4-167 (installed)</literal></member>
<member><literal>kernel-2.6.29.5-191 (installed)</literal></member>
</simplelist>
<para>
In the remote software sources we have:
</para>
<simplelist type="horiz" columns="1">
<member><literal>kernel-2.6.29.4-167 (fedora)</literal></member>
<member><literal>kernel-2.6.29.5-191 (fedora-updates)</literal></member>
<member><literal>kernel-2.6.30.1-203 (fedora-updates)</literal></member>
</simplelist>
<para>
If we do <literal>Resolve("kernel",filter="none")</literal> we should expect:
</para>
<simplelist type="horiz" columns="1">
<member><literal>kernel-2.6.29.4-167 (installed)</literal></member>
<member><literal>kernel-2.6.29.5-191 (installed)</literal></member>
<member><literal>kernel-2.6.30.1-203 (fedora-updates)</literal></member>
</simplelist>
<para>
If we do <literal>Resolve("kernel",filter="installed")</literal> we should expect:
</para>
<simplelist type="horiz" columns="1">
<member><literal>kernel-2.6.29.4-167 (installed)</literal></member>
<member><literal>kernel-2.6.29.5-191 (installed)</literal></member>
</simplelist>
<para>
If we do <literal>Resolve("kernel",filter="~installed")</literal> we should expect:
</para>
<simplelist type="horiz" columns="1">
<member><literal>kernel-2.6.30.1-203 (fedora-updates)</literal></member>
</simplelist>
<para>
If we do <literal>Resolve("kernel",filter="newest;installed")</literal> we should expect:
</para>
<simplelist type="horiz" columns="1">
<member><literal>kernel-2.6.29.5-191 (installed)</literal></member>
</simplelist>
<para>
If we do <literal>Resolve("kernel",filter="newest")</literal> we should expect:
</para>
<simplelist type="horiz" columns="1">
<member><literal>kernel-2.6.29.5-191 (installed)</literal></member>
<member><literal>kernel-2.6.30.1-203 (fedora-updates)</literal></member>
</simplelist>
</sect2>
</sect1>
<sect1 id="introduction-errors">
<title>Error Enums</title>
<para>
If you have to handle an error, try to use <literal>internal-error</literal>
as little as possible.
Just ask on the mailing list, and we can add some more error enums to
cover the type of error in an abstract way as possible.
</para>
<para>
Every error should have an enumerated type
(e.g. <literal>out-of-memory</literal>) and also an error description.
The error description is not translated and not converted into the users
locale.
The error description should be descriptive, as it's for power users
and people trying to debug the problem.
For instance, "Out of memory" is not helpful as an error description
that is reported in a bugzilla, but "Could not create database index" is.
For the description use <literal>;</literal> to separate the lines if
required.
</para>
<para>
The following error enumerated types are available for use in all
backends:
</para>
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>Error</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><literal>out-of-memory</literal></entry>
<entry>There is an out of memory condition</entry>
</row>
<row>
<entry><literal>no-network</literal></entry>
<entry>There is no network connection that can be used</entry>
</row>
<row>
<entry><literal>not-supported</literal></entry>
<entry>
Not supported by the backend.
NOTE: You shouldn't be setting non-NULL in the compiled
backend symbol table if you find yourself using this.
</entry>
</row>
<row>
<entry><literal>internal-error</literal></entry>
<entry>
There was an unspecified internal error.
NOTE: Please try and be more specific.
If you are using this then we should probably add a new type.
</entry>
</row>
<row>
<entry><literal>no-cache</literal></entry>
<entry>
The operation is trying to read from the cache, but the cache
is not present or invalid
</entry>
</row>
<row>
<entry><literal>gpg-failure</literal></entry>
<entry>There was a GPG failure in the transaction</entry>
</row>
<row>
<entry><literal>package-id-invalid</literal></entry>
<entry>The package ID is not valid for this transaction</entry>
</row>
<row>
<entry><literal>package-not-installed</literal></entry>
<entry>
The package that is trying to be removed or updated is not
installed
</entry>
</row>
<row>
<entry><literal>package-not-found</literal></entry>
<entry>
The package that is trying to be removed or updated is not
installed
</entry>
</row>
<row>
<entry><literal>package-already-installed</literal></entry>
<entry>
The (single) package that is trying to be installed or updated is already
installed
</entry>
</row>
<row>
<entry><literal>all-packages-already-installed</literal></entry>
<entry>
Multiple package installs were attempted, but all of
them were already installed. The backend should
generate package-already-installed messages (not errors)
for each package.
</entry>
</row>
<row>
<entry><literal>package-download-failed</literal></entry>
<entry>A package failed to download correctly</entry>
</row>
<row>
<entry><literal>invalid-package-file</literal></entry>
<entry>
The file that is supposed to contain a package to
install is corrupt, or is not a valid package file
</entry>
</row>
<row>
<entry><literal>package-install-blocked</literal></entry>
<entry>
The backend's configuration or policy prevents the
install or updating of a package
</entry>
</row>
<row>
<entry><literal>dep-resolution-failed</literal></entry>
<entry>Dependency resolution failed</entry>
</row>
<row>
<entry><literal>filter-invalid</literal></entry>
<entry>
The filter was invalid.
NOTE: syntax checking is done in the backend loader, so you
should only use this if the filter is not supported by the
backend.
</entry>
</row>
<row>
<entry><literal>group-not-found</literal></entry>
<entry>
The specified software group was not found.
</entry>
</row>
<row>
<entry><literal>create-thread-failed</literal></entry>
<entry>Failed to create a thread</entry>
</row>
<row>
<entry><literal>transaction-error</literal></entry>
<entry>
There was a generic transaction error, but please give more
details in the description
</entry>
</row>
<row>
<entry><literal>transaction-cancelled</literal></entry>
<entry>
The transaction was cancelled as the result of a call
to Cancel()
</entry>
</row>
<row>
<entry><literal>repo-not-found</literal></entry>
<entry>The repository name could not be found</entry>
</row>
<row>
<entry><literal>repo-configuration-error</literal></entry>
<entry>One of the enabled repositories has invalid configuration</entry>
</row>
<row>
<entry><literal>repo-not-available</literal></entry>
<entry>
There was a (possibly transient) problem connecting to a
repository
</entry>
</row>
<row>
<entry><literal>cannot-remove-system-package</literal></entry>
<entry>
Could not remove a protected system package that is needed for
stable operation of the system
</entry>
</row>
<row>
<entry><literal>process-quit</literal></entry>
<entry>
The process was asked to quit, probably because it was cancelled
</entry>
</row>
<row>
<entry><literal>process-kill</literal></entry>
<entry>
The process was forcibly killed, probably because ignored the
quit request. This is probably due to it being cancelled
</entry>
</row>
<row>
<entry><literal>failed-config-parsing</literal></entry>
<entry>
Configuration files could not be read or parsed.
</entry>
</row>
<row>
<entry><literal>cannot-cancel</literal></entry>
<entry>
The Cancel() method was called, but it is too late to
cancel the current transaction.
</entry>
</row>
<row>
<entry><literal>cannot-get-lock</literal></entry>
<entry>
The backend could not acquire a lock on the underlying
package management system.
</entry>
</row>
<row>
<entry><literal>no-packages-to-update</literal></entry>
<entry>
UpdatePackages() was called, but there are no packages to update.
</entry>
</row>
<row>
<entry><literal>cannot-write-repo-config</literal></entry>
<entry>
RepoEnable() or RepoSetData() was called, but the
repository configuration file could not be written to.
</entry>
</row>
<row>
<entry><literal>local-install-failed</literal></entry>
<entry>
A local file could not be installed. The file might not
be readable, or it might not contain a valid package.
</entry>
</row>
<row>
<entry><literal>bad-gpg-signature</literal></entry>
<entry>
The package is signed with a GPG signature, but that
signature is not valid in some way.
</entry>
</row>
<row>
<entry><literal>package-corrupt</literal></entry>
<entry>
The downloaded package is corrupt.
</entry>
</row>
<row>
<entry><literal>file-not-found</literal></entry>
<entry>
The file could not be found on the system.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect1>
<sect1 id="introduction-group-type">
<title>Group type</title>
<para>
Groups are enumerated for localisation.
Backends should try to put packages in different groups if possible,
else just don't advertise SearchGroup and the options should not be
shown in the UI.
</para>
<para>
The following group enumerated types are available, but please check
<literal>libpackagekit/pk-enum.h</literal> for the latest list.
</para>
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>Group</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><literal>accessibility</literal></entry>
<entry>Accessibility</entry>
</row>
<row>
<entry><literal>accessories</literal></entry>
<entry>Accessories</entry>
</row>
<row>
<entry><literal>admin-tools</literal></entry>
<entry>Admin tools</entry>
</row>
<row>
<entry><literal>communication</literal></entry>
<entry>Communication</entry>
</row>
<row>
<entry><literal>desktop-gnome</literal></entry>
<entry>Gnome</entry>
</row>
<row>
<entry><literal>desktop-kde</literal></entry>
<entry>KDE</entry>
</row>
<row>
<entry><literal>desktop-dde</literal></entry>
<entry>DDE</entry>
</row>
<row>
<entry><literal>desktop-other</literal></entry>
<entry>Other desktops</entry>
</row>
<row>
<entry><literal>desktop-xfce</literal></entry>
<entry>Xfce</entry>
</row>
<row>
<entry><literal>education</literal></entry>
<entry>Education</entry>
</row>
<row>
<entry><literal>fonts</literal></entry>
<entry>Fonts</entry>
</row>
<row>
<entry><literal>games</literal></entry>
<entry>Games</entry>
</row>
<row>
<entry><literal>graphics</literal></entry>
<entry>Graphics</entry>
</row>
<row>
<entry><literal>internet</literal></entry>
<entry>Internet</entry>
</row>
<row>
<entry><literal>legacy</literal></entry>
<entry>Legacy</entry>
</row>
<row>
<entry><literal>localization</literal></entry>
<entry>Localization</entry>
</row>
<row>
<entry><literal>maps</literal></entry>
<entry>Maps</entry>
</row>
<row>
<entry><literal>network</literal></entry>
<entry>Network</entry>
</row>
<row>
<entry><literal>office</literal></entry>
<entry>Office</entry>
</row>
<row>
<entry><literal>other</literal></entry>
<entry>Other</entry>
</row>
<row>
<entry><literal>power-management</literal></entry>
<entry>Power management</entry>
</row>
<row>
<entry><literal>programming</literal></entry>
<entry>Programming</entry>
</row>
<row>
<entry><literal>publishing</literal></entry>
<entry>Publishing</entry>
</row>
<row>
<entry><literal>multimedia</literal></entry>
<entry>Multimedia</entry>
</row>
<row>
<entry><literal>security</literal></entry>
<entry>Security</entry>
</row>
<row>
<entry><literal>servers</literal></entry>
<entry>Servers</entry>
</row>
<row>
<entry><literal>system</literal></entry>
<entry>System</entry>
</row>
<row>
<entry><literal>virtualization</literal></entry>
<entry>Virtualization</entry>
</row>
<row>
<entry><literal>science</literal></entry>
<entry>Science</entry>
</row>
<row>
<entry><literal>documentation</literal></entry>
<entry>Documentation</entry>
</row>
<row>
<entry><literal>electronics</literal></entry>
<entry>Electronics</entry>
</row>
<row>
<entry><literal>vendor</literal></entry>
<entry>Vendor</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect1>
<sect1 id="introduction-cancellation">
<title>Cancellation</title>
<para>
If you have a multipart transaction that can be aborted in one phase but
not another then the AllowCancel signal can be sent.
This allows for example the hif download to be cancelled, but not the
install transaction.
By cancelling a job all subtransactions are killed.
</para>
<para>
By default actions cannot be cancelled unless enabled in the backend.
Use <literal>AllowCancel(true)</literal> to enable cancellation
and <literal>AllowCancel(false)</literal> to disable it.
This can be done for any job type.
</para>
<para>
For compiled backends that are threaded, the
<literal>cancel()</literal> method can be used to terminate
the thread.
</para>
<para>
For spawned backends, there are two staggered signals send to allow
locks to be released or for the backend to clean up after itself:
</para>
<itemizedlist>
<listitem>
<para>Send the process <literal>SIGQUIT</literal>.</para>
</listitem>
<listitem>
<para>Wait 500ms</para>
</listitem>
<listitem>
<para>
If the process has not already quit, send the process
<literal>SIGKILL</literal> to terminate it.
</para>
</listitem>
</itemizedlist>
</sect1>
<sect1 id="introduction-ideas-transactions">
<title>Transactions</title>
<para>
PackageKit does not ask the user questions when the transaction is running.
It also supports a fire-and-forget method invocation, which means that transactions will
have one calling method, and have many signals going back to the caller.
</para>
<para>
Each transaction is a new path on the <literal>org.freedesktop.PackageKit</literal>
service, and to create a path you have to call <literal>CreateTransaction</literal> on the base
interface which creates the new DBUS path, and returns the new path for you to connect to.
In the libpackagekit binding, <literal>PkControl</literal> handles the base interface,
whilst <literal>PkClient</literal> handles all the transaction interface stuff.
The <literal>org.freedesktop.PackageKit.Transaction</literal> interface can be used
on the newly created path, but only used once.
New methods require a new transaction path (i.e. another call to <literal>CreateTransaction</literal>)
which is synchronous and thus very fast.
</para>
<sect2 id="introduction-ideas-transactions-success">
<title>Transaction example: Success</title>
<mediaobject id="pk-transactions-success">
<imageobject>
<imagedata format="PNG" fileref="pk-transactions-success.png" align="center"/>
</imageobject>
</mediaobject>
<para>
A typical successful transaction would emit many signals such as
<literal>::Progress()</literal>, <literal>::Package()</literal> and
<literal>::StatusChanged()</literal>.
These are used to inform the client application of the current state,
so widgets such as icons or description text can be updated.
</para>
<para>
These different signals are needed for a few different reasons:
</para>
<itemizedlist>
<listitem>
<para>
<literal>::StatusChanged()</literal>: The global state of the
transaction, which will be useful for some GUIs.
Examples include downloading or installing, and this is designed
to be a 40,000ft view of what is happening.
</para>
</listitem>
<listitem>
<para>
<literal>::Package()</literal>: Used to either return a result
(e.g. returning results of the <literal>SearchName()</literal> method)
or to return progress about a _specific_ package.
For instance, when doing <literal>UpdatePackages()</literal>, sending
<literal>::Package(downloading)</literal> and then
<literal>::Package(installing)</literal> for each package as processed
in the transaction allows a GUI to position the cursor on the worked
on package and show the correct icon for that package.
</para>
</listitem>
<listitem>
<para>
<literal>::ErrorCode()</literal>: to show an error to the user about
the transaction, which can be cleaned up before sending
<literal>::Finished()</literal>.
</para>
</listitem>
<listitem>
<para>
<literal>::Finished()</literal>: to show the transaction has
finished, and others can be scheduled.
</para>
</listitem>
</itemizedlist>
</sect2>
<sect2 id="introduction-ideas-transactions-failure">
<title>Transaction example: Failure</title>
<mediaobject id="pk-transactions-failure">
<imageobject>
<imagedata format="PNG" fileref="pk-transactions-failure.png" align="center"/>
</imageobject>
</mediaobject>
<para>
This is the typical transaction failure case when there is no network available.
The user is not given the chance to requeue the transaction as it is a fatal error.
</para>
</sect2>
<sect2 id="introduction-ideas-transactions-trusted">
<title>Transaction example: Trusted</title>
<mediaobject id="pk-transactions-trusted">
<imageobject>
<imagedata format="PNG" fileref="pk-transactions-trusted.png" align="center"/>
</imageobject>
</mediaobject>
<para>
In this non-trivial example, a local file install is being attempted.
First the <literal>InstallFile</literal> is called with the <literal>only_trusted</literal>
flag set.
This will fail if the package does not have a valid GPG key, and ordinarily the transaction
would fail. What the client can do, e.g. using <literal>libpackagekit</literal>, is
to re-request the <literal>InstallFile</literal> with <literal>non-trusted</literal>.
This will use a different PolicyKit authentication, and allow the file to succeed.
</para>
<para>
So why do we bother calling <literal>only_trusted</literal> in the first place?
Well, the only_trusted PolicyKit role can be saved in the gnome-keyring, or could be
set to the users password as the GPG key is already only_trusted by the user.
The <literal>non-trusted</literal> action would likely ask for the administrator password,
and not allowed to be saved. This gives the user the benifit of installing only_trusted local
files without a password (common case) but requiring something stronger for untrusted or
unsigned files.
</para>
</sect2>
<sect2 id="introduction-ideas-transactions-auto-untrusted">
<title>Transaction example: Auto Untrusted</title>
<mediaobject id="pk-transactions-auto-untrusted">
<imageobject>
<imagedata format="PNG" fileref="pk-transactions-auto-untrusted.png" align="center"/>
</imageobject>
</mediaobject>
<para>
If <literal>SimulateInstallPackage</literal> or
<literal>SimulateInstallFile</literal> is used then the client
may receive a <literal>INFO_UNTRUSTED</literal> package.
</para>
<para>
This is used to inform the client that the action would require
the untrusted authentication type, which means the client does
not attempt to do <literal>SimulateInstallPackage(only_trusted=TRUE)</literal>
and only does <literal>SimulateInstallPackage(only_trusted=FALSE)</literal>.
This ensures the user has to only authenticate once for the
transaction as the <literal>only_trusted=TRUE</literal> action
may also require a password.
</para>
</sect2>
<sect2 id="introduction-ideas-transactions-sig-install">
<title>Transaction example: Package signature install</title>
<mediaobject id="pk-transactions-sig-install">
<imageobject>
<imagedata format="PNG" fileref="pk-transactions-sig-install.png" align="center"/>
</imageobject>
</mediaobject>
<para>
If the package is signed, and a valid GPG signature is available, then we need to ask the
user to import the key, and re-run the transaction.
This is done as three transactions, as other transactions may be queued and have a higher
priority, and to make sure that the transaction object is not reused.
</para>
<para>
Keep in mind that PackageKit can only be running one transaction at any
one time.
If we had designed the PackageKit API to block and wait for user input,
then no other transactions could be run whilst we are waiting for the user.
</para>
<para>
This is best explained using an example:
</para>
<itemizedlist>
<listitem>
<para>User clicks "install vmware" followed by "confirm".</para>
</listitem>
<listitem>
<para>User walks away from the computer and takes a nap</para>
</listitem>
<listitem>
<para>System upgrade is scheduled (300Mb of updates)</para>
</listitem>
</itemizedlist>
<para>
The vmware package is downloaded, but cannot be installed until a EULA
is agreed to.
If we pause the transaction then we never apply the updates automatically
and the computer is not kept up to date.
The user would have to wait a substantial amount of time waiting for
the updates to download when returning from his nap after clicking "I agree"
to the vmware EULA.
</para>
<para>
In the current system where transactions cannot block, the first
transaction downloads vmware, and then it finishes, and puts up a UI
for the user to click.
In the meantime the second transaction (the update) is scheduled,
downloaded and installed, and then finishes.
The user returns, clicks "okay" and a third transaction is created that
accepts the eula, and a forth that actually installs vmware.
</para>
<para>
It seems complicated, but it's essential to make sure none of the
callbacks block and stop other transactions from happening.
</para>
</sect2>
<sect2 id="introduction-ideas-transactions-download">
<title>Transaction example: Download</title>
<mediaobject id="pk-transactions-download">
<imageobject>
<imagedata format="PNG" fileref="pk-transactions-download.png" align="center"/>
</imageobject>
</mediaobject>
<para>
When the <literal>DownloadPackages()</literal> method is called on a number
of packages, then these are downloaded by the daemon into a temporary
directory.
This directory can only be written by the <literal>packagekitd</literal>
user (usually root) but can be read by all users.
The files are not downloaded into any specific directory, instead a
random one is created in <literal>/var/cache/PackageKit/downloads</literal>.
The reason for this intermediate step is that the
<literal>DownloadPackages()</literal> method does not take a destination
directory as the dameon is running as a different user to the user,
and in a different SELinux context.
</para>
<para>
To preserve the SELinux attributes and the correct user and group ownership
of the newly created files, the client (running in the user session) has
to copy the files from the temporary directory into the chosen destination
directory.
NOTE: this copy step is optional but recommended, as the files will remain in
the temporary directory until the daemon is times out and is restarted.
As the client does not know (intentionally) the temporary directory or the
filenames of the packages that are created, the <literal>::Files()</literal>
signal is emitted with the full path of the downloaded files.
It is expected the <literal>package_id</literal> parameter of
<literal>::Files()</literal> will be blank, although this is not mandated.
</para>
<para>
Multiple <literal>::Files()</literal> signals can be sent by the dameon,
as the download operation may be pipelined, and the client should honour
every signal by copying each file.
</para>
</sect2>
<sect2 id="introduction-ideas-transactions-set-locale">
<title>Transaction example: Setting the locale</title>
<mediaobject id="pk-transactions-set-locale">
<imageobject>
<imagedata format="PNG" fileref="pk-transactions-set-locale.png" align="center"/>
</imageobject>
</mediaobject>
<para>
The PackageKit backend may support native localisation, which we should support if the
translations exist.
In the prior examples the <literal>SetLocale()</literal> method has been left out for brevity.
If you are using the raw DBUS methods to access PackageKit, you will also need to make
a call to <literal>SetLocale()</literal> so the daemon knows what locale to assign the
transaction.
If you are using libpackagekit to schedule transactions, then the locale will be set
automatically in the <literal>PkControl</literal> GObject, and you do not need to call
<literal>pk_client_set_locale()</literal> manually.
</para>
</sect2>
<sect2 id="introduction-ideas-transactions-repair">
<title>Transaction example: Repair</title>
<mediaobject id="pk-transactions-repair">
<imageobject>
<imagedata format="PNG" fileref="pk-transactions-repair-required.png" align="center"/>
</imageobject>
</mediaobject>
<para>
If the package management system is damaged, a repair may be required.
This is not automatically done befor each transaction as the user
may have to verify destructive package actions or make manual changes to
configuration files.
</para>
<para>
This transaction sequence is not common and is not supported on
many backends.
It may be completely implemented in the frontend or not at all.
</para>
</sect2>
</sect1>
<sect1 id="introduction-ideas-transactionid">
<title>Transaction IDs</title>
<para>
A <literal>transaction_id</literal> is a unique identifier that
identifies the present or past transaction.
A transaction is made up of one or more sub-transactions.
A transaction has one <literal>role</literal> for the entire lifetime,
but the transaction can different values of <literal>status</literal>
as the transaction is processed.
</para>
<para>
For example, if the user "Installed OpenOffice" and the backend has to:
</para>
<itemizedlist>
<listitem>
<para>
update libxml2 as a dependency
</para>
</listitem>
<listitem>
<para>
install java as dependency
</para>
</listitem>
<listitem>
<para>
install openoffice-bin
</para>
</listitem>
<listitem>
<para>
install openoffice-clipart
</para>
</listitem>
</itemizedlist>
<para>
This is one single transaction with the role <literal>install</literal>,
with 4 different sub-transactions.
</para>
<para>
The <literal>transaction_id</literal> must be of the format
<literal>/job_identifier_data</literal> where the daemon controls
all parameters.
<literal>job</literal> is a monotonically updating number and is
retained over reboots.
<literal>identifier</literal> is random data used by the daemon to
ensure jobs started in parallel cannot race, and also to make a
malicious client program harder to write.
<literal>data</literal> can be used for ref-counting in the backend or
for any other purpose.
It is designed to make the life of a backend writer a little bit easier.
An example <literal>transaction_id</literal> would be
<literal>/45_dafeca_checkpoint32</literal>
</para>
</sect1>
<sect1 id="introduction-ideas-status">
<title>Status Values</title>
<para>
A transaction will have different status values as it it queued, prepared
and executed.
The <literal>::StatusChanged</literal> signal from PkClient allow you
to design user interfaces that tell the user what is happening with the
transaction.
</para>
<para>
A typical transaction will have the following states:
</para>
<itemizedlist>
<listitem>
<para>
Queued in the active queue (<literal>PK_STATUS_ENUM_WAIT</literal>)
</para>
</listitem>
<listitem>
<para>
Transaction started, and is being prepared (<literal>PK_STATUS_ENUM_SETUP</literal>)
</para>
</listitem>
<listitem>
<para>
The transaction is running (<literal>PK_STATUS_ENUM_RUNNING</literal>)
</para>
</listitem>
<listitem>
<para>
(optional) Data is downloading (<literal>PK_STATUS_ENUM_DOWNLOADING</literal>)
</para>
</listitem>
<listitem>
<para>
(optional) Data is installing (<literal>PK_STATUS_ENUM_INSTALLING</literal>)
</para>
</listitem>
<listitem>
<para>
The transaction is finished (<literal>PK_STATUS_ENUM_FINISHED</literal>)
</para>
</listitem>
</itemizedlist>
<para>
If the transaction is waiting for other jobs to finish (in the active queue)
then the status will be stuck at <literal>PK_STATUS_ENUM_WAIT</literal>
and the UI should show a message to this effect.
</para>
<para>
If the transaction is waiting for a package lock (when a legacy tool like
<literal>pirut</literal> is loaded and has the <literal>hif</literal> lock)
then the transaction will be stuck at <literal>PK_STATUS_ENUM_WAITING_FOR_LOCK</literal>.
</para>
<para>
As a backend writer, you do not have to set <literal>PK_STATUS_ENUM_RUNNING</literal>
manually, as this will be set for you if you set any other value such as
<literal>PK_STATUS_ENUM_DOWNLOADING</literal> or <literal>PK_STATUS_ENUM_INFO</literal>.
However, you will need to avoid setting any status values until a package
lock is available and the transaction has started.
</para>
</sect1>
</chapter>
|