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 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184
|
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtOrganizer module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or any later version approved by the KDE Free
** Qt Foundation. The licenses are as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "qorganizermanagerengine.h"
#include "qorganizeritems.h"
#include "qorganizeritemdetails.h"
#include "qorganizeritemfilters.h"
#include "qorganizeritemrequests.h"
#include "qorganizeritemrequests_p.h"
#include <QtCore/qmutex.h>
QT_BEGIN_NAMESPACE_ORGANIZER
/*!
\class QOrganizerManagerEngine
\brief The QOrganizerManagerEngine class provides the interface to implement functionalities
of organizer managers.
\inmodule QtOrganizer
\ingroup organizer-backends
This class should only be used by backend developers. Instances of this class are provided to
QOrganizerManager by a QOrganizerManagerEngineFactory instance, which is loaded from a plugin.
The default implementation of this interface provides a backend doing nothing, so that backend
developers only need to reimplement the functionalities needed.
More information on writing a organizer engine plugin is available in the \l{Qt Organizer Manager Engines}
documentation.
\sa QOrganizerManager, QOrganizerManagerEngineFactory
*/
/*!
\fn QOrganizerManagerEngine::dataChanged()
This signal should be emitted if the internal state of the plugin changes, and it is unable to
determine the changes which occurred, or if it considers the changes to be radical enough to
require clients to reload all data.
If this signal is emitted, no other signals will be emitted for the associated changes.
\sa itemsAdded(), itemsChanged(), itemsRemoved()
*/
/*!
\fn QOrganizerManagerEngine::itemsAdded(const QList<QOrganizerItemId> &itemIds);
This signal should be emitted at some point once the items identified by \a itemIds have been
added to the backend.
This signal should not be emitted if the dataChanged() signal was previously emitted for these
changes.
\sa dataChanged()
*/
/*!
\fn QOrganizerManagerEngine::itemsChanged(const QList<QOrganizerItemId> &itemIds, const QList<QOrganizerItemDetail::DetailType> &typesChanged);
This signal should be emitted at some point once the items identified by \a itemIds have been
modified in the backend.
The set of item detail types modified in the reported changes is a subset of those listed in
\a typesChanged, unless \a typesChanged is empty, in which case no limitation on the reported
changes may be assumed.
This signal should not be emitted if the dataChanged() signal was previously emitted for these
changes.
\sa dataChanged()
*/
/*!
\fn QOrganizerManagerEngine::itemsRemoved(const QList<QOrganizerItemId> &itemIds);
This signal should be emitted at some point once the items identified by \a itemIds have been
removed from the backend.
This signal should not be emitted if the dataChanged() signal was previously emitted for these
changes.
\sa dataChanged()
*/
/*!
\fn QOrganizerManagerEngine::itemsModified(const QList<QPair<QOrganizerItemId, QOrganizerManager::Operation> > &itemIds)
This signal should be emitted at some point once the items identified by \a itemIds have been
modified in the backend.
This signal should not be emitted if the dataChanged() signal was previously emitted for these
changes.
\sa dataChanged()
*/
/*!
\fn QOrganizerManagerEngine::collectionsAdded(const QList<QOrganizerCollectionId> &collectionIds)
This signal should be emitted at some point once the collections identified by \a collectionIds
have been added to the backend.
This signal should not be emitted if the dataChanged() signal was previously emitted for these
changes.
\sa dataChanged()
*/
/*!
\fn QOrganizerManagerEngine::collectionsChanged(const QList<QOrganizerCollectionId> &collectionIds)
This signal should be emitted at some point once the collections identified by \a collectionIds
have been changed in the backend.
This signal should not be emitted if items in the collections have been added, modified, or
removed.
This signal should not be emitted if the dataChanged() signal was previously emitted for these
changes.
\sa dataChanged()
*/
/*!
\fn QOrganizerManagerEngine::collectionsRemoved(const QList<QOrganizerCollectionId> &collectionIds)
This signal should be emitted at some point once the collections identified by \a collectionIds
have been removed from the backend.
This signal should not be emitted if the dataChanged() signal was previously emitted for these
changes.
\sa dataChanged()
*/
/*!
\fn QOrganizerManagerEngine::collectionsModified(const QList<QPair<QOrganizerCollectionId, QOrganizerManager::Operation> > &collectionIds)
This signal should be emitted at some point once the collections identified by \a collectionIds
have been modified in the backend.
This signal should not be emitted if the dataChanged() signal was previously emitted for these
changes.
\sa dataChanged()
*/
/*!
Constructs an empty QOrganizerManagerEngine with the given \a parent.
*/
QOrganizerManagerEngine::QOrganizerManagerEngine(QObject *parent)
: QObject(parent)
{
}
/*!
This function should be reimplemented to return the name of this backend. The default implementation
returns the name "invalid".
*/
QString QOrganizerManagerEngine::managerName() const
{
return QString(QStringLiteral("invalid"));
}
/*!
Returns the parameters with which this engine was constructed. Note that
the engine may have discarded unused or invalid parameters at the time of
construction, and these will not be returned.
*/
QMap<QString, QString> QOrganizerManagerEngine::managerParameters() const
{
return QMap<QString, QString>();
}
/*!
Returns the subset of the manager parameters that are relevant when interpreting
contact ID values. Since contact ID comparison involves equivalence of
managerUri values, parameters that do not differentiate contact IDs should not
be returned by this function.
For example, a manager engine may support 'user' and 'cachesize' parameters,
where the former distinguishes between separate user domains, and the latter
is for performance tuning. The 'user' parameter will be relevant to the interpretation
of contact IDs and thus should be returned by this function, whereas 'cachesize'
is not relevant and should be omitted.
\sa managerUri(), managerParamaters()
*/
QMap<QString, QString> QOrganizerManagerEngine::idInterpretationParameters() const
{
return QMap<QString, QString>(); // default implementation returns no parameters.
}
/*!
\fn QString QOrganizerManagerEngine::managerUri() const
Returns the unique URI of this manager, which is built from the manager name and the
ID interpretation parameters used to construct it.
\sa idInterpretationParameters()
*/
/*!
\fn QOrganizerItemId QOrganizerManagerEngine::itemId(const QByteArray &localId) const
Returns the organizer item ID for this managerUri() and the given
engine specific ID part \a localId.
*/
/*!
\fn QOrganizerCollectionId QOrganizerManagerEngine::collectionId(const QByteArray &localId) const
Returns the organizer collection ID for this managerUri() and the given
engine specific ID part \a localId.
*/
/*!
This function should be reimplemented to support synchronous calls to fetch occurrences of the
given parent item.
This function is supposed to return a list of a maximum of \a maxCount organizer item instances
which are occurrences of the given \a parentItem recurring item, which occur between the given
\a startDateTime and the given \a endDateTime date, inclusive. Any error which occurs should be
saved in \a error.
A default-constructed (invalid) \a startDateTime specifies an open start date time (matches anything
which occurs up until the \a endDateTime), and a default-constructed (invalid) \a endDateTime
specifies an open end date time (matches anything which occurs after the \a startDateTime). If
both the \a startDateTime and \a endDateTime are invalid, this function will return the IDs of
all items.
It's up to the backend to decide how many occurrences are returned if the given \a maxCount is
negative.
It's up to the backend to decide if fetch hint is supported. If supported, only the details
defined by \a fetchHint will be fetched.
*/
QList<QOrganizerItem> QOrganizerManagerEngine::itemOccurrences(const QOrganizerItem &parentItem,
const QDateTime &startDateTime,
const QDateTime &endDateTime, int maxCount,
const QOrganizerItemFetchHint &fetchHint,
QOrganizerManager::Error *error)
{
Q_UNUSED(parentItem);
Q_UNUSED(startDateTime);
Q_UNUSED(endDateTime);
Q_UNUSED(maxCount);
Q_UNUSED(fetchHint);
*error = QOrganizerManager::NotSupportedError;
return QList<QOrganizerItem>();
}
/*!
This function should be reimplemented to support synchronous calls to fetch organizer item IDs.
This function is supposed to return a list of item IDs of persisted organizer items that match
the given \a filter, sorted according to the given list of \a sortOrders, for any item which
occurs (or has an occurrence which occurs) in the range specified by the given \a startDateTime
and \a endDateTime, inclusive. Any error which occurs should be saved in \a error.
A default-constructed (invalid) \a startDateTime specifies an open start date time (matches anything
which occurs up until the \a endDateTime), and a default-constructed (invalid) \a endDateTime
specifies an open end date time (matches anything which occurs after the \a startDateTime). If
both the \a startDateTime and \a endDateTime are invalid, this function will return the IDs of
all items which match the \a filter criteria.
It's up to the backend to decide how filters are supported.
*/
QList<QOrganizerItemId> QOrganizerManagerEngine::itemIds(const QOrganizerItemFilter &filter,
const QDateTime &startDateTime,
const QDateTime &endDateTime,
const QList<QOrganizerItemSortOrder> &sortOrders,
QOrganizerManager::Error *error)
{
Q_UNUSED(startDateTime);
Q_UNUSED(endDateTime);
Q_UNUSED(filter);
Q_UNUSED(sortOrders);
*error = QOrganizerManager::NotSupportedError;
return QList<QOrganizerItemId>();
}
/*!
This function should be reimplemented to support synchronous calls to fetch organizer items.
This function is supposed to return a list of a maximum of \a maxCount organizer items and
occurrences that match the given \a filter, which occur in the range specified by the given
\a startDateTime and \a endDateTime, inclusive, and sorted according to the given list of
\a sortOrders. Any operation error which occurs should be saved in \a error.
A default-constructed (invalid) \a startDateTime specifies an open start date time (matches anything
which occurs up until the \a endDateTime), and a default-constructed (invalid) \a endDateTime
specifies an open end date time (matches anything which occurs after the \a startDateTime). If
both the \a startDateTime and \a endDateTime are invalid, this function will return the IDs of
all items which match the \a filter criteria.
If no sort order is provided, the list is returned sorted by date.
It's up to the backend to decide how many items should be returned if \a maxCount is negative.
It's up to the backend to decide if filter and fetch hint are supported.
*/
QList<QOrganizerItem> QOrganizerManagerEngine::items(const QOrganizerItemFilter &filter, const QDateTime &startDateTime,
const QDateTime &endDateTime, int maxCount,
const QList<QOrganizerItemSortOrder> &sortOrders,
const QOrganizerItemFetchHint &fetchHint, QOrganizerManager::Error *error)
{
Q_UNUSED(filter);
Q_UNUSED(startDateTime);
Q_UNUSED(endDateTime);
Q_UNUSED(maxCount);
Q_UNUSED(sortOrders);
Q_UNUSED(fetchHint);
*error = QOrganizerManager::NotSupportedError;
return QList<QOrganizerItem>();
}
/*!
This function should be reimplemented to support synchronous calls to fetch organizer items for
export.
This function is supposed to return a list of organizer items that match the given \a filter,
sorted according to the given list of \a sortOrders, for any item which occurs (or has an
occurrence which occurs) in the range specified by the given \a startDateTime and \a endDateTime,
inclusive. Any operation error which occurs should be saved in \a error.
Note that event occurrences and TODO occurrences should only be returned when they represent an
exceptional occurrence (i.e. the client has specifically saved the occurrence in the backend).
A default-constructed (invalid) \a startDateTime specifies an open start date time (matches anything
which occurs up until the \a endDateTime), and a default-constructed (invalid) \a endDateTime
specifies an open end date time (matches anything which occurs after the \a startDateTime). If
both the \a startDateTime and \a endDateTime are invalid, this function will return the IDs of
all items which match the \a filter criteria.
It's up to the backend to decide if filter and fetch hint are supported. If the fetch hint is
supported, only the details defined by \a fetchHint will be fetched.
*/
QList<QOrganizerItem> QOrganizerManagerEngine::itemsForExport(const QDateTime &startDateTime,
const QDateTime &endDateTime,
const QOrganizerItemFilter &filter,
const QList<QOrganizerItemSortOrder> &sortOrders,
const QOrganizerItemFetchHint &fetchHint,
QOrganizerManager::Error *error)
{
Q_UNUSED(startDateTime);
Q_UNUSED(endDateTime);
Q_UNUSED(filter);
Q_UNUSED(sortOrders);
Q_UNUSED(fetchHint);
*error = QOrganizerManager::NotSupportedError;
return QList<QOrganizerItem>();
}
/*!
This function should be reimplemented to support synchronous calls to fetch organizer items by
their IDs \a itemIds.
The items fetched by the backend should have a one-to-one correspondence to the IDs passed into
this class. That is, the nth item in the returned list should have an ID which is equal to the
nth ID in the list of IDs. Any invalid ID should correspond to an empty QOrganizerItem.
It's up to the backend to decide if fetch hint is supported. If supported, only the details
defined by \a fetchHint will be fetched.
Any operation error which occurs should be saved in \a error. And the per-input errors should be
stored in \a errorMap.
*/
QList<QOrganizerItem> QOrganizerManagerEngine::items(const QList<QOrganizerItemId> &itemIds, const QOrganizerItemFetchHint &fetchHint,
QMap<int, QOrganizerManager::Error> *errorMap, QOrganizerManager::Error *error)
{
Q_UNUSED(itemIds);
Q_UNUSED(fetchHint);
Q_UNUSED(errorMap);
*error = QOrganizerManager::NotSupportedError;
return QList<QOrganizerItem>();
}
/*!
This function should be reimplemented to return the list of filters supported by this backend.
The default implementation returns an empty list.
*/
QList<QOrganizerItemFilter::FilterType> QOrganizerManagerEngine::supportedFilters() const
{
return QList<QOrganizerItemFilter::FilterType>();
}
/*!
This function should be reimplemented to return the list of details supported by this backend
for the given \a itemType. The default implementation returns an empty list.
*/
QList<QOrganizerItemDetail::DetailType> QOrganizerManagerEngine::supportedItemDetails(QOrganizerItemType::ItemType itemType) const
{
Q_UNUSED(itemType);
return QList<QOrganizerItemDetail::DetailType>();
}
/*!
This function should be reimplemented to return the list of item types supported by this backend.
The default implementation returns an empty list.
*/
QList<QOrganizerItemType::ItemType> QOrganizerManagerEngine::supportedItemTypes() const
{
return QList<QOrganizerItemType::ItemType>();
}
/*!
This function should be reimplemented to support synchronous calls to save organizer items.
This function is supposed to save the given list of \a items to the backend, and returns true on
success or false otherwise.
A new organizer item will be created in the backend store if the item ID of it is null. Otherwise,
an existing item with the same ID will be updated. If the given item ID does not exist in the
backend, it will result a QOrganizerManager::DoesNotExistError error.
If the collection ID of the item is null, it will be saved to the default collection. If the given
collection ID doesn't exist, the saving will fail and \a error will be set to QOrganizerManager::InvalidCollectionError.
If the \a detailMask is empty, only the details currently existing in the item will be saved.
Otherwise, only details masked by the \a detailMask will be saved or updated, others are kept
untouched. It's useful to avoid information loss if the items are retrieved with a fetch hint.
Note that upon successful saving, the backend may update the item, e.g. item ID for newly saved
items, GUID, timestamp, version, etc.
Any error which occurs should be saved in \a error, and per-input errors for the operation should
be stored in \a errorMap.
*/
bool QOrganizerManagerEngine::saveItems(QList<QOrganizerItem> *items, const QList<QOrganizerItemDetail::DetailType> &detailMask,
QMap<int, QOrganizerManager::Error> *errorMap, QOrganizerManager::Error *error)
{
Q_UNUSED(items);
Q_UNUSED(detailMask);
Q_UNUSED(errorMap);
*error = QOrganizerManager::NotSupportedError;
return false;
}
/*!
This function should be reimplemented to support synchronous calls to remove organizer items.
This function is supposed to remove all the items whose ID is contained in the given list of
\a itemIds, and all the occurrences whose parent ID is containd in the \a itemIds. If the list
contains ids which do not identify a valid item in the manager \a error will be set to \c QOrganizerManager::DoesNotExist.
Returns true if all the items and occurrences are successfully removed, or false otherwise.
Any error which occurs should be saved in \a error, and per-input errors for the operation should
be stored in \a errorMap.
*/
bool QOrganizerManagerEngine::removeItems(const QList<QOrganizerItemId> &itemIds, QMap<int, QOrganizerManager::Error> *errorMap,
QOrganizerManager::Error *error)
{
Q_UNUSED(itemIds);
Q_UNUSED(errorMap);
*error = QOrganizerManager::NotSupportedError;
return false;
}
/*!
This function should be reimplemented to support synchronous calls to remove organizer items.
This function is supposed to remove all the items in the given list of \a items, and all the
occurrences whose parent is containd in the \a items. If item in the list is a generated occurrence,
an exception date is added to the parent item. If the list contains ids which do not identify a valid
item in the manager \a error will be set to \c QOrganizerManager::DoesNotExist. Returns true if all
the items and occurrences are successfully removed, or false otherwise.
Any error which occurs should be saved in \a error, and per-input errors for the operation should
be stored in \a errorMap.
*/
bool QOrganizerManagerEngine::removeItems(const QList<QOrganizerItem> *items, QMap<int, QOrganizerManager::Error> *errorMap,
QOrganizerManager::Error *error)
{
Q_UNUSED(items);
Q_UNUSED(errorMap);
*error = QOrganizerManager::NotSupportedError;
return false;
}
/*!
This function should be reimplemented to support synchronous calls to fetch the default collection id.
*/
QOrganizerCollectionId QOrganizerManagerEngine::defaultCollectionId() const
{
return QOrganizerCollectionId();
}
/*!
This function should be reimplemented to support synchronous calls to fetch a collection based
on its ID. Any errors encountered during this operation should be stored to \a error. If the
given \a collectionId does not specify a valid collection, \a error will be set to
\c QOrganizerManager::DoesNotExistError.
*/
QOrganizerCollection QOrganizerManagerEngine::collection(const QOrganizerCollectionId& collectionId, QOrganizerManager::Error* error) const
{
Q_UNUSED(collectionId);
*error = QOrganizerManager::NotSupportedError;
return QOrganizerCollection();
}
/*!
This function should be reimplemented to support synchronous calls to fetch all the collections
managed by this backend. Any errors encountered during this operation should be stored to \a error.
*/
QList<QOrganizerCollection> QOrganizerManagerEngine::collections(QOrganizerManager::Error* error) const
{
*error = QOrganizerManager::NotSupportedError;
return QList<QOrganizerCollection>();
}
/*!
This function should be reimplemented to support synchronous calls to save a collection.
This function is supposed to save the given \a collection to the backend, and returns true on
success or false otherwise. Any errors encountered during this operation should be stored to
\a error.
A new collection will be created in the backend store if the collection ID of it is null.
Otherwise, an existing collection with the same ID will be updated. If the given collection ID
does not exist in the backend, it will result a QOrganizerManager::DoesNotExistError error.
Note that upon successful saving, the backend may update the collection, e.g. collection ID for
newly saved collections.
*/
bool QOrganizerManagerEngine::saveCollection(QOrganizerCollection* collection, QOrganizerManager::Error* error)
{
Q_UNUSED(collection);
*error = QOrganizerManager::NotSupportedError;
return false;
}
/*!
This function should be reimplemented to support synchronous calls to remove a collection.
This function is supposed to remove the collection identified by the given \a collectionId, and
all items in the collection. Returns true on success, or false otherwise. Any errors encountered
during this operation should be stored to \a error.
Note that removing the default collection should not be allowed and should result a
QOrganizerManager::PermissionsError error.
*/
bool QOrganizerManagerEngine::removeCollection(const QOrganizerCollectionId& collectionId, QOrganizerManager::Error* error)
{
Q_UNUSED(collectionId);
*error = QOrganizerManager::NotSupportedError;
return false;
}
/*!
Given an input \a filter, returns the canonical version of the filter.
Some of the following transformations may be applied:
\list
\li Any QOrganizerItemInvalidFilters contained in a union filter will be removed
\li Any default QOrganizerItemFilters contained in an intersection filter will be removed
\li Any QOrganizerItemIntersectionFilters with a QOrganizerItemInvalidFilter contained will be
replaced with a QOrganizerItemInvalidFilter
\li Any QOrganizerItemUnionFilters with a default QOrganizerItemFilter contained will be replaced
with a default QOrganizerItemFilter
\li An empty QOrganizerItemIntersectionFilter will be replaced with a QOrganizerItemDefaultFilter
\li An empty QOrganizerItemUnionFilter will be replaced with a QOrganizerItemInvalidFilter
\li An empty QOrganizerItemIdFilter will be replaced with a QOrganizerItemInvalidFilter
\li An intersection or union filter with a single entry will be replaced by that entry
\li A QOrganizerItemDetailFieldFilter or QOrganizerItemDetailRangeFilter with no definition name will be replaced with a QOrganizerItemInvalidFilter
\li A QOrganizerItemDetailRangeFilter with no range specified will be converted to a QOrganizerItemDetailFieldFilter
\endlist
*/
QOrganizerItemFilter QOrganizerManagerEngine::canonicalizedFilter(const QOrganizerItemFilter &filter)
{
switch (filter.type()) {
case QOrganizerItemFilter::IntersectionFilter:
{
QOrganizerItemIntersectionFilter f(filter);
QList<QOrganizerItemFilter> filters = f.filters();
QList<QOrganizerItemFilter>::iterator it = filters.begin();
// XXX in theory we can remove duplicates in a set filter
while (it != filters.end()) {
QOrganizerItemFilter canon = canonicalizedFilter(*it);
if (canon.type() == QOrganizerItemFilter::DefaultFilter) {
it = filters.erase(it);
} else if (canon.type() == QOrganizerItemFilter::InvalidFilter) {
return QOrganizerItemInvalidFilter();
} else {
*it = canon;
++it;
}
}
if (filters.count() == 0)
return QOrganizerItemFilter();
if (filters.count() == 1)
return filters.first();
f.setFilters(filters);
return f;
}
// unreachable
case QOrganizerItemFilter::UnionFilter:
{
QOrganizerItemUnionFilter f(filter);
QList<QOrganizerItemFilter> filters = f.filters();
QList<QOrganizerItemFilter>::iterator it = filters.begin();
// XXX in theory we can remove duplicates in a set filter
while (it != filters.end()) {
QOrganizerItemFilter canon = canonicalizedFilter(*it);
if (canon.type() == QOrganizerItemFilter::InvalidFilter) {
it = filters.erase(it);
} else if (canon.type() == QOrganizerItemFilter::DefaultFilter) {
return QOrganizerItemFilter();
} else {
*it = canon;
++it;
}
}
if (filters.count() == 0)
return QOrganizerItemInvalidFilter();
if (filters.count() == 1)
return filters.first();
f.setFilters(filters);
return f;
}
// unreachable
case QOrganizerItemFilter::IdFilter:
{
QOrganizerItemIdFilter f(filter);
if (f.ids().count() == 0)
return QOrganizerItemInvalidFilter();
}
break; // fall through to return at end
case QOrganizerItemFilter::DetailRangeFilter:
{
QOrganizerItemDetailRangeFilter f(filter);
if (f.detailType() == QOrganizerItemDetail::TypeUndefined)
return QOrganizerItemInvalidFilter();
if (f.minValue() == f.maxValue()
&& f.rangeFlags() == (QOrganizerItemDetailRangeFilter::ExcludeLower | QOrganizerItemDetailRangeFilter::ExcludeUpper))
return QOrganizerItemInvalidFilter();
if ((f.minValue().isNull() && f.maxValue().isNull()) || (f.minValue() == f.maxValue())) {
QOrganizerItemDetailFieldFilter df;
df.setDetail(f.detailType(), f.detailField());
df.setMatchFlags(f.matchFlags());
df.setValue(f.minValue());
return df;
}
}
break; // fall through to return at end
case QOrganizerItemFilter::DetailFieldFilter:
{
QOrganizerItemDetailFieldFilter f(filter);
if (f.detailType() == QOrganizerItemDetail::TypeUndefined)
return QOrganizerItemInvalidFilter();
}
break; // fall through to return at end
default:
break; // fall through to return at end
}
return filter;
}
/*!
Compares \a first against \a second. If the types are
strings (QVariant::String), the \a sensitivity argument controls
case sensitivity when comparing.
Returns:
<0 if \a first is less than \a second
0 if \a first is equal to \a second
>0 if \a first is greater than \a second.
The results are undefined if the variants are different types, or
cannot be compared.
*/
int QOrganizerManagerEngine::compareVariant(const QVariant& first, const QVariant& second, Qt::CaseSensitivity sensitivity)
{
switch(first.type()) {
case QVariant::Int:
return first.toInt() - second.toInt();
case QVariant::LongLong:
return first.toLongLong() - second.toLongLong();
case QVariant::Bool:
case QVariant::Char:
case QVariant::UInt:
return first.toUInt() - second.toUInt();
case QVariant::ULongLong:
return first.toULongLong() - second.toULongLong();
case QVariant::String:
return first.toString().compare(second.toString(), sensitivity);
case QVariant::Double:
{
const double a = first.toDouble();
const double b = second.toDouble();
return (a < b) ? -1 : ((a == b) ? 0 : 1);
}
case QVariant::DateTime:
{
const QDateTime a = first.toDateTime();
const QDateTime b = second.toDateTime();
return (a < b) ? -1 : ((a == b) ? 0 : 1);
}
case QVariant::Date:
return first.toDate().toJulianDay() - second.toDate().toJulianDay();
case QVariant::Time:
{
const QTime a = first.toTime();
const QTime b = second.toTime();
return (a < b) ? -1 : ((a == b) ? 0 : 1);
}
default:
return 0;
}
}
/*!
Returns true if the supplied item \a item matches the supplied filter \a filter.
This function will test each condition in the filter, possibly recursing.
*/
bool QOrganizerManagerEngine::testFilter(const QOrganizerItemFilter &filter, const QOrganizerItem &item)
{
switch(filter.type()) {
case QOrganizerItemFilter::InvalidFilter:
return false;
case QOrganizerItemFilter::DefaultFilter:
return true;
case QOrganizerItemFilter::IdFilter:
{
const QOrganizerItemIdFilter idf(filter);
if (idf.ids().contains(item.id()))
return true;
}
// Fall through to end
break;
case QOrganizerItemFilter::DetailFilter:
{
const QOrganizerItemDetailFilter cdf(filter);
QOrganizerItemDetail matchingDetail = cdf.detail();
if ( (matchingDetail.isEmpty()) || (matchingDetail.type() == QOrganizerItemDetail::TypeUndefined) )
return false;
/* See if this organizer item has one of these details in it */
const QList<QOrganizerItemDetail>& details = item.details(cdf.detail().type());
if (details.count() == 0)
return false; /* can't match */
/* Value equality test */
for (int j=0; j < details.count(); j++) {
if (details.at(j) == matchingDetail)
return true;
}
return false;
}
// Fall through to end
break;
case QOrganizerItemFilter::DetailFieldFilter:
{
const QOrganizerItemDetailFieldFilter cdf(filter);
if (cdf.detailType() == QOrganizerItemDetail::TypeUndefined)
return false;
/* See if this organizer item has one of these details in it */
const QList<QOrganizerItemDetail>& details = item.details(cdf.detailType());
if (details.count() == 0)
return false; /* can't match */
/* See if we need to check the values */
if (cdf.detailField() == -1)
return true; /* just testing for the presence of a detail of the specified definition */
/* Now figure out what tests we are doing */
const bool valueTest = cdf.value().isValid();
const bool presenceTest = !valueTest;
/* See if we need to test any values at all */
if (presenceTest) {
for(int j=0; j < details.count(); j++) {
const QOrganizerItemDetail& detail = details.at(j);
/* Check that the field is present and has a non-empty value */
if (detail.values().contains(cdf.detailField()) && !detail.value(cdf.detailField()).isNull())
return true;
}
return false;
}
/* Case sensitivity, for those parts that use it */
Qt::CaseSensitivity cs = (cdf.matchFlags() & QOrganizerItemFilter::MatchCaseSensitive) ? Qt::CaseSensitive : Qt::CaseInsensitive;
/* See what flags are requested, since we're looking at a value */
if (cdf.matchFlags() & (QOrganizerItemFilter::MatchEndsWith | QOrganizerItemFilter::MatchStartsWith | QOrganizerItemFilter::MatchContains | QOrganizerItemFilter::MatchFixedString)) {
/* We're strictly doing string comparisons here */
bool matchStarts = (cdf.matchFlags() & 7) == QOrganizerItemFilter::MatchStartsWith;
bool matchEnds = (cdf.matchFlags() & 7) == QOrganizerItemFilter::MatchEndsWith;
bool matchContains = (cdf.matchFlags() & 7) == QOrganizerItemFilter::MatchContains;
/* Value equality test */
for(int j=0; j < details.count(); j++) {
const QOrganizerItemDetail& detail = details.at(j);
const QString& var = detail.value(cdf.detailField()).toString();
const QString& needle = cdf.value().toString();
if (matchStarts && var.startsWith(needle, cs))
return true;
if (matchEnds && var.endsWith(needle, cs))
return true;
if (matchContains && var.contains(needle, cs))
return true;
if (QString::compare(var, needle, cs) == 0)
return true;
}
return false;
} else {
/* Nope, testing the values as a variant */
/* Value equality test */
for(int j = 0; j < details.count(); j++) {
const QOrganizerItemDetail& detail = details.at(j);
const QVariant& var = detail.value(cdf.detailField());
if (!var.isNull() && compareVariant(var, cdf.value(), cs) == 0)
return true;
}
}
}
break;
case QOrganizerItemFilter::DetailRangeFilter:
{
const QOrganizerItemDetailRangeFilter cdf(filter);
if (cdf.detailType() == QOrganizerItemDetail::TypeUndefined)
return false; /* we do not know which field to check */
/* See if this organizer item has one of these details in it */
const QList<QOrganizerItemDetail>& details = item.details(cdf.detailType());
if (details.count() == 0)
return false; /* can't match */
/* Check for a detail presence test */
if (cdf.detailField() == -1)
return true;
/* See if this is a field presence test */
if (!cdf.minValue().isValid() && !cdf.maxValue().isValid()) {
for(int j=0; j < details.count(); j++) {
const QOrganizerItemDetail& detail = details.at(j);
if (detail.values().contains(cdf.detailField()))
return true;
}
return false;
}
/* open or closed interval testing support */
const int minComp = cdf.rangeFlags() & QOrganizerItemDetailRangeFilter::ExcludeLower ? 1 : 0;
const int maxComp = cdf.rangeFlags() & QOrganizerItemDetailRangeFilter::IncludeUpper ? 1 : 0;
const bool testMin = cdf.minValue().isValid();
const bool testMax = cdf.maxValue().isValid();
/* At this point we know that at least of testMin & testMax is true */
/* Case sensitivity, for those parts that use it */
Qt::CaseSensitivity cs = (cdf.matchFlags() & QOrganizerItemFilter::MatchCaseSensitive) ? Qt::CaseSensitive : Qt::CaseInsensitive;
/* See what flags are requested, since we're looking at a value */
if (cdf.matchFlags() & (QOrganizerItemFilter::MatchEndsWith | QOrganizerItemFilter::MatchStartsWith | QOrganizerItemFilter::MatchContains | QOrganizerItemFilter::MatchFixedString)) {
/* We're strictly doing string comparisons here */
//bool matchStarts = (cdf.matchFlags() & 7) == QOrganizerItemFilter::MatchStartsWith;
bool matchEnds = (cdf.matchFlags() & 7) == QOrganizerItemFilter::MatchEndsWith;
bool matchContains = (cdf.matchFlags() & 7) == QOrganizerItemFilter::MatchContains;
/* Min/Max and contains do not make sense */
if (matchContains)
return false;
QString minVal = cdf.minValue().toString();
QString maxVal = cdf.maxValue().toString();
/* Starts with is the normal compare case, endsWith is a bit trickier */
for(int j=0; j < details.count(); j++) {
const QOrganizerItemDetail& detail = details.at(j);
const QString& var = detail.value(cdf.detailField()).toString();
if (!matchEnds) {
// MatchStarts or MatchFixedString
if (testMin && QString::compare(var, minVal, cs) < minComp)
continue;
if (testMax && QString::compare(var, maxVal, cs) >= maxComp)
continue;
return true;
} else {
/* Have to test the length of min & max */
// using refs means the parameter order is backwards, so negate the result of compare
if (testMin && -QString::compare(minVal, var.right(minVal.length()), cs) < minComp)
continue;
if (testMax && -QString::compare(maxVal, var.right(maxVal.length()), cs) >= maxComp)
continue;
return true;
}
}
// Fall through to end
} else {
/* Nope, testing the values as a variant */
for(int j=0; j < details.count(); j++) {
const QOrganizerItemDetail& detail = details.at(j);
const QVariant& var = detail.value(cdf.detailField());
if (testMin && compareVariant(var, cdf.minValue(), cs) < minComp)
continue;
if (testMax && compareVariant(var, cdf.maxValue(), cs) >= maxComp)
continue;
return true;
}
// Fall through to end
}
}
break;
case QOrganizerItemFilter::IntersectionFilter:
{
/* XXX In theory we could reorder the terms to put the native tests first */
const QOrganizerItemIntersectionFilter bf(filter);
const QList<QOrganizerItemFilter>& terms = bf.filters();
if (terms.count() > 0) {
for(int j = 0; j < terms.count(); j++) {
if (!testFilter(terms.at(j), item)) {
return false;
}
}
return true;
}
// Fall through to end
}
break;
case QOrganizerItemFilter::UnionFilter:
{
/* XXX In theory we could reorder the terms to put the native tests first */
const QOrganizerItemUnionFilter bf(filter);
const QList<QOrganizerItemFilter>& terms = bf.filters();
if (terms.count() > 0) {
for(int j = 0; j < terms.count(); j++) {
if (testFilter(terms.at(j), item)) {
return true;
}
}
return false;
}
// Fall through to end
}
break;
case QOrganizerItemFilter::CollectionFilter:
{
const QOrganizerItemCollectionFilter cf(filter);
const QSet<QOrganizerCollectionId>& ids = cf.collectionIds();
if (ids.contains(item.collectionId()))
return true;
return false;
}
}
return false;
}
/*!
Returns true if the given \a item (or an occurrence of the item) occurs within the range
specified by the \a startPeriod and the \a endPeriod, inclusive.
A default-constructed \a startPeriod signifies that the lower bound of the range is
infinitely small (i.e., will match anything up to the \a endPeriod) and a default-constructed
\a endPeriod signifies that the upper bound of the range is infinitely large
(i.e., will match anything which occurs after the \a startPeriod).
*/
bool QOrganizerManagerEngine::isItemBetweenDates(const QOrganizerItem& item, const QDateTime& startPeriod, const QDateTime& endPeriod)
{
if (startPeriod.isNull() && endPeriod.isNull())
return true;
QDateTime itemDateStart;
QDateTime itemDateEnd;
if (item.type() == QOrganizerItemType::TypeEvent || item.type() == QOrganizerItemType::TypeEventOccurrence) {
QOrganizerEventTime etr = item.detail(QOrganizerItemDetail::TypeEventTime);
itemDateStart = etr.startDateTime();
itemDateEnd = etr.endDateTime();
} else if (item.type() == QOrganizerItemType::TypeTodo || item.type() == QOrganizerItemType::TypeTodoOccurrence) {
QOrganizerTodoTime ttr = item.detail(QOrganizerItemDetail::TypeTodoTime);
itemDateStart = ttr.startDateTime();
itemDateEnd = ttr.dueDateTime();
} else if (item.type() == QOrganizerItemType::TypeJournal) {
QOrganizerJournal journal = item;
itemDateStart = itemDateEnd = journal.dateTime();
} else if (item.type() == QOrganizerItemType::TypeNote) {
//for note, there is no such start/end datetime so we always return false
return false;
}
// if period start date is not given, check that item is starting or ending before period end
if (startPeriod.isNull()) // endPeriod must be non-null because of initial test
return (!itemDateStart.isNull() && itemDateStart <= endPeriod) ||
(!itemDateEnd.isNull() && itemDateEnd <= endPeriod);
// if period end date is not given, check that item is starting or ending after the period start
if (endPeriod.isNull()) // startPeriod must be non-null because of initial test
return (!itemDateEnd.isNull() && itemDateEnd >= startPeriod) ||
(!itemDateStart.isNull() && itemDateStart >= startPeriod);
// Both startPeriod and endPeriod are not null
// check if item start date is between the period start and end date
if (!itemDateStart.isNull() && itemDateStart >= startPeriod && itemDateStart <= endPeriod)
return true;
// check if item end date is between the period start and end date
if (!itemDateEnd.isNull() && itemDateEnd >= startPeriod && itemDateEnd <= endPeriod)
return true;
// check if item interval is including the period interval
if (!itemDateStart.isNull() && !itemDateEnd.isNull() && itemDateStart <= startPeriod && itemDateEnd >= endPeriod)
return true;
return false;
}
/*!
\internal
Returns the date associated with \a item that can be used for the purpose of date-sorting the item.
*/
QDateTime getDateForSorting(const QOrganizerItem& item)
{
QDateTime retn;
{
QOrganizerEventTime detail = item.detail(QOrganizerItemDetail::TypeEventTime);
if (!detail.isEmpty()) {
retn = detail.startDateTime();
if (!retn.isValid())
retn = detail.endDateTime();
if (retn.isValid() && detail.isAllDay()) {
// set it to a millisecond before the given date to have it sorted correctly
retn.setTime(QTime(23, 59, 59, 999));
retn = retn.addDays(-1);
}
return retn;
}
}
{
QOrganizerTodoTime detail = item.detail(QOrganizerItemDetail::TypeTodoTime);
if (!detail.isEmpty()) {
retn = detail.startDateTime();
if (!retn.isValid())
retn = detail.dueDateTime();
if (retn.isValid() && detail.isAllDay()) {
// set it to a millisecond before the given date to have it sorted correctly
retn.setTime(QTime(23, 59, 59, 999));
retn = retn.addDays(-1);
}
return retn;
}
}
// If it's a note, this will just return null, as expected
return item.detail(QOrganizerItemDetail::TypeJournalTime).value(QOrganizerJournalTime::FieldEntryDateTime).toDateTime();
}
/*!
Returns true if and only if \a a is temporally less than \a b. Items with an earlier date are
temporally less than items with a later date, or items with no date. All day items are
temporally less than non-all day items on the same date. For events and todos, the
start date is used, or if null, the end date is used. This function defines a total ordering
suitable for use in a sort function.
*/
bool QOrganizerManagerEngine::itemLessThan(const QOrganizerItem& a, const QOrganizerItem& b)
{
QDateTime date1 = getDateForSorting(a);
if (!date1.isValid()) {
return false;
} else {
QDateTime date2 = getDateForSorting(b);
if (!date2.isValid())
return true;
else
return date1 < date2;
}
}
/*!
Compares two organizer items (\a a and \a b) using the given list of \a sortOrders. Returns a negative number if \a a should appear
before \a b according to the sort order, a positive number if \a a should appear after \a b according to the sort order,
and zero if the two are unable to be sorted.
*/
int QOrganizerManagerEngine::compareItem(const QOrganizerItem& a, const QOrganizerItem& b, const QList<QOrganizerItemSortOrder>& sortOrders)
{
foreach (const QOrganizerItemSortOrder &sortOrder, sortOrders) {
if (!sortOrder.isValid())
break;
const QOrganizerItemDetail::DetailType detailType = sortOrder.detailType();
const int detailField = sortOrder.detailField();
const QList<QOrganizerItemDetail> aDetails = a.details(detailType);
const QList<QOrganizerItemDetail> bDetails = b.details(detailType);
if (aDetails.isEmpty() && bDetails.isEmpty())
continue; // use next sort criteria.
// See if we need to check the values
if (detailField == -1) {
// just testing for the presence of a detail of the specified definition
if (aDetails.size() == bDetails.size())
continue; // use next sort criteria.
if (aDetails.isEmpty())
return sortOrder.blankPolicy() == QOrganizerItemSortOrder::BlanksFirst ? -1 : 1;
if (bDetails.isEmpty())
return sortOrder.blankPolicy() == QOrganizerItemSortOrder::BlanksFirst ? 1 : -1;
return 0;
}
// obtain the values which this sort order concerns
const QVariant aVal = !aDetails.isEmpty() ? aDetails.first().value(detailField) : QVariant();
const QVariant bVal = !bDetails.isEmpty() ? bDetails.first().value(detailField) : QVariant();
bool aIsNull = false;
bool bIsNull = false;
// treat empty strings as null qvariants.
if ((aVal.type() == QVariant::String && aVal.toString().isEmpty()) || aVal.isNull()) {
aIsNull = true;
}
if ((bVal.type() == QVariant::String && bVal.toString().isEmpty()) || bVal.isNull()) {
bIsNull = true;
}
// early exit error checking
if (aIsNull && bIsNull)
continue; // use next sort criteria.
if (aIsNull)
return (sortOrder.blankPolicy() == QOrganizerItemSortOrder::BlanksFirst ? -1 : 1);
if (bIsNull)
return (sortOrder.blankPolicy() == QOrganizerItemSortOrder::BlanksFirst ? 1 : -1);
// real comparison
int comparison = compareVariant(aVal, bVal, sortOrder.caseSensitivity()) * (sortOrder.direction() == Qt::AscendingOrder ? 1 : -1);
if (comparison == 0)
continue;
return comparison;
}
return 0; // or according to id? return (a.id() < b.id() ? -1 : 1);
}
/*!
A functor that returns true iff \a a is less than \a b, according to
\a sortOrders passed in to the ctor.
*/
class OrganizerItemLessThan
{
const QList<QOrganizerItemSortOrder> &m_sortOrders;
public:
inline OrganizerItemLessThan(const QList<QOrganizerItemSortOrder> &sortOrders)
: m_sortOrders(sortOrders)
{}
inline bool operator()(const QOrganizerItem &a, const QOrganizerItem &b) const
{ return QOrganizerManagerEngine::compareItem(a, b, m_sortOrders) < 0; }
};
/*!
Insert \a toAdd to the \a sorted list, according to the provided \a sortOrders. The index where \a toAdd is inserted
is returned.
The first one in the \a sortOrders list has the highest priority.
*/
int QOrganizerManagerEngine::addSorted(QList<QOrganizerItem> *sorted, const QOrganizerItem &toAdd, const QList<QOrganizerItemSortOrder> &sortOrders)
{
QList<QOrganizerItem>::iterator it;
if (sortOrders.count() > 0)
it = std::upper_bound(sorted->begin(), sorted->end(), toAdd, OrganizerItemLessThan(sortOrders));
else
it = sorted->end(); // no sort order? just add it to the end
it = sorted->insert(it, toAdd);
return it - sorted->begin();
}
/*!
Insert \a toAdd to the \a defaultSorted map. If \a toAdd does not have valid start or end date,
returns false and does not insert \a toAdd to \a defaultSorted map.
This function provides default sorting, which should be used for sorting fetch results, if no sort order
was defined for the fetch. The default sorting algorithm is to sort based on start time of an item. If start time
does not exist, end time or due time is used instead. For allday events, time 00:00 is used for sorting purposes.
Items with no start or end time are last in the sorting order.
This function sorts items using QMultiMap, where QDateTime is used as a key. To get a sorted list of items,
QMultiMap::values function should be called and items without start and end date added to the end of the list.
*/
bool QOrganizerManagerEngine::addDefaultSorted(QMultiMap<QDateTime, QOrganizerItem> *defaultSorted, const QOrganizerItem &toAdd)
{
QDateTime sortTime;
if (toAdd.type() == QOrganizerItemType::TypeEvent || toAdd.type() == QOrganizerItemType::TypeEventOccurrence) {
QOrganizerEventTime eventTime = toAdd.detail(QOrganizerItemDetail::TypeEventTime);
if (eventTime.startDateTime().isValid())
sortTime = eventTime.startDateTime();
else if (eventTime.endDateTime().isValid())
sortTime = eventTime.endDateTime();
if (eventTime.isAllDay() && sortTime.isValid())
sortTime.setTime(QTime(0, 0, 0));
} else if (toAdd.type() == QOrganizerItemType::TypeTodo || toAdd.type() == QOrganizerItemType::TypeTodoOccurrence) {
QOrganizerTodoTime todoTime = toAdd.detail(QOrganizerItemDetail::TypeTodoTime);
if (todoTime.startDateTime().isValid())
sortTime = todoTime.startDateTime();
else if (todoTime.dueDateTime().isValid())
sortTime = todoTime.dueDateTime();
if (todoTime.isAllDay() && sortTime.isValid())
sortTime.setTime(QTime(0, 0, 0));
}
if (sortTime.isValid()) {
// FIXME: sorting of events with exactly the same key
defaultSorted->insert(sortTime, toAdd);
return true;
} else {
return false;
}
}
/*!
Generates a new occurrence for \a parentItem. All \a parentItem details, except for \l QOrganizerItemType and
\l QOrganizerItemRecurrence copied to the occurrence. Occurrence start date is set to the date given in \a rdate.
End date is modified accordingly. Occurrence's \l QOrganizerItemParent detail contains the id of \a parentItem
and the original date given in \a rdate.
*/
QOrganizerItem QOrganizerManagerEngine::generateOccurrence(const QOrganizerItem &parentItem, const QDateTime &rdate)
{
QOrganizerItem instanceItem;
if (parentItem.type() == QOrganizerItemType::TypeEvent) {
instanceItem = QOrganizerEventOccurrence();
} else {
instanceItem = QOrganizerTodoOccurrence();
}
instanceItem.setCollectionId(parentItem.collectionId());
// XXX TODO: something better than this linear search...
// Grab all details from the parent item except the recurrence information, and event/todo time range
QList<QOrganizerItemDetail> allDetails = parentItem.details();
QList<QOrganizerItemDetail> occDetails;
foreach (const QOrganizerItemDetail &detail, allDetails) {
if (detail.type() != QOrganizerItemDetail::TypeRecurrence
&& detail.type() != QOrganizerItemDetail::TypeEventTime
&& detail.type() != QOrganizerItemDetail::TypeTodoTime) {
occDetails.append(detail);
}
}
const QDate localRDate(rdate.toLocalTime().date());
// add the detail which identifies exactly which instance this item is.
QOrganizerItemParent parentDetail;
parentDetail.setParentId(parentItem.id());
parentDetail.setOriginalDate(localRDate);
occDetails.append(parentDetail);
// save those details in the instance.
foreach (const QOrganizerItemDetail &detail, occDetails) {
// copy every detail except the type
if (detail.type() != QOrganizerItemDetail::TypeItemType) {
QOrganizerItemDetail modifiable = detail;
instanceItem.saveDetail(&modifiable);
}
}
// and update the time range in the instance based on the current instance date
if (parentItem.type() == QOrganizerItemType::TypeEvent) {
QOrganizerEventTime etr = parentItem.detail(QOrganizerItemDetail::TypeEventTime);
if (!etr.isEmpty()) {
int eventDayCount = 0;
if (etr.startDateTime().isValid() && etr.endDateTime().isValid())
eventDayCount = etr.startDateTime().daysTo(etr.endDateTime());
// Perform time manipulations in local time
QDateTime temp = etr.startDateTime().toLocalTime();
temp.setDate(localRDate);
etr.setStartDateTime(temp.toUTC());
temp = etr.endDateTime().toLocalTime();
QDate endDate = localRDate.addDays(eventDayCount);
temp.setDate(endDate);
etr.setEndDateTime(temp.toUTC());
instanceItem.saveDetail(&etr);
}
}
// for todo's
if (parentItem.type() == QOrganizerItemType::TypeTodo) {
QOrganizerTodoTime ttr = parentItem.detail(QOrganizerItemDetail::TypeTodoTime);
if (!ttr.isEmpty()) {
int todoDayCount = 0;
if (ttr.startDateTime().isValid() && ttr.dueDateTime().isValid())
todoDayCount = ttr.startDateTime().daysTo(ttr.dueDateTime());
QDateTime temp = ttr.startDateTime().toLocalTime();
temp.setDate(localRDate);
ttr.setStartDateTime(temp.toUTC());
temp = ttr.dueDateTime().toLocalTime();
QDate endDate = localRDate.addDays(todoDayCount);
temp.setDate(endDate);
ttr.setDueDateTime(temp.toUTC());
instanceItem.saveDetail(&ttr);
}
}
return instanceItem;
}
/*!
Generates all start times for recurrence \a rrule during the given time period. The time period is defined by
\a periodStart and \a periodEnd. \a initialDateTime is the start time of the event, which defines the first
start time for \a rrule. \a maxCount can be used to limit the amount of generated start times.
*/
QList<QDateTime> QOrganizerManagerEngine::generateDateTimes(const QDateTime &initialDateTime, QOrganizerRecurrenceRule rrule, const QDateTime &periodStart, const QDateTime &periodEnd, int maxCount)
{
QList<QDateTime> retn;
if (periodEnd.isValid() || maxCount <= 0)
maxCount = INT_MAX; // count of returned items is unlimited
// Perform calculations in local time, for meaningful comparison with date values
const QDateTime localInitialDateTime = initialDateTime.toLocalTime();
const QDateTime localPeriodStart = periodStart.toLocalTime();
const QDateTime localPeriodEnd = periodEnd.toLocalTime();
QDateTime realPeriodEnd(localPeriodEnd);
if (rrule.limitType() == QOrganizerRecurrenceRule::DateLimit
&& rrule.limitDate() < realPeriodEnd.date()) {
realPeriodEnd.setDate(rrule.limitDate());
realPeriodEnd.setTime(QTime(23,59,59,999)); // the last instant of the limit date, since it's prior to the periodEnd.
}
QDate nextDate;
if (rrule.limitType() == QOrganizerRecurrenceRule::CountLimit)
nextDate = localInitialDateTime.date();
else
nextDate = localPeriodStart.date();
inferMissingCriteria(&rrule, localInitialDateTime.date());
int countLimitDates = 0;
bool periodEndReached = false;
while (!periodEndReached && nextDate <= realPeriodEnd.date() && retn.size() < maxCount) {
if (rrule.limitType() == QOrganizerRecurrenceRule::CountLimit && countLimitDates >= rrule.limitCount())
break; // reached limit count defined in the recurrence rule
// Skip nextDate if it is not the right multiple of intervals away from initialDateTime.
if (inMultipleOfInterval(nextDate, localInitialDateTime.date(), rrule.frequency(), rrule.interval(), rrule.firstDayOfWeek())) {
// Calculate the inclusive start and inclusive end of nextDate's week/month/year
QDate subPeriodStart(firstDateInPeriod(nextDate, rrule.frequency(), rrule.firstDayOfWeek()));
QDate subPeriodEnd(firstDateInNextPeriod(nextDate, rrule.frequency(), rrule.firstDayOfWeek()).addDays(-1));
// Compute matchesInPeriod to be the set of dates in the current week/month/year that match the rrule
QList<QDate> matchesInPeriod(filterByPosition(
matchingDates(subPeriodStart, subPeriodEnd, rrule),
rrule.positions()));
// A final filter over the dates list before adding it to the returned list
foreach (const QDate &match, matchesInPeriod) {
nextDate = match;
if (match < localInitialDateTime.date())
continue;
if (match > realPeriodEnd.date() || retn.size() >= maxCount)
break;
QDateTime generatedDateTime(localInitialDateTime);
generatedDateTime.setDate(match);
countLimitDates++;
if (generatedDateTime >= localPeriodStart && generatedDateTime <= realPeriodEnd) {
// Convert back to UTC for returned value
retn.append(generatedDateTime.toUTC());
} else if (generatedDateTime > realPeriodEnd) {
// We've gone past the end of the period. Ensure we break both the foreach and
// the while loop
periodEndReached = true;
break;
}
if (rrule.limitType() == QOrganizerRecurrenceRule::CountLimit && countLimitDates >= rrule.limitCount())
break; // reached limit count defined in the recurrence rule
}
}
nextDate = firstDateInNextPeriod(nextDate, rrule.frequency(), rrule.firstDayOfWeek());
}
return retn;
}
/*!
Determines if \a rrule is underspecified and if so, fills in missing information based on \a
initialDate.
*/
void QOrganizerManagerEngine::inferMissingCriteria(QOrganizerRecurrenceRule *rrule, const QDate &initialDate)
{
switch (rrule->frequency()) {
case QOrganizerRecurrenceRule::Weekly:
if (rrule->daysOfWeek().isEmpty()) {
// derive day of week
QSet<Qt::DayOfWeek> days;
days << static_cast<Qt::DayOfWeek>(initialDate.dayOfWeek());
rrule->setDaysOfWeek(days);
}
break;
case QOrganizerRecurrenceRule::Monthly:
if (rrule->daysOfWeek().isEmpty() && rrule->daysOfMonth().isEmpty()) {
// derive day of month
QSet<int> days;
days << initialDate.day();
rrule->setDaysOfMonth(days);
}
break;
case QOrganizerRecurrenceRule::Yearly:
if (rrule->monthsOfYear().isEmpty()
&& rrule->weeksOfYear().isEmpty()
&& rrule->daysOfYear().isEmpty()
&& rrule->daysOfMonth().isEmpty()
&& rrule->daysOfWeek().isEmpty()) {
// derive day of month and month of year
QSet<int> daysOfMonth;
daysOfMonth << initialDate.day();
rrule->setDaysOfMonth(daysOfMonth);
QSet<QOrganizerRecurrenceRule::Month> months;
months << static_cast<QOrganizerRecurrenceRule::Month>(initialDate.month());
rrule->setMonthsOfYear(months);
} else if (!rrule->monthsOfYear().isEmpty()
&& rrule->weeksOfYear().isEmpty()
&& rrule->daysOfYear().isEmpty()
&& rrule->daysOfMonth().isEmpty()
&& rrule->daysOfWeek().isEmpty()) {
// derive day of month
QSet<int> daysOfMonth;
daysOfMonth << initialDate.day();
rrule->setDaysOfMonth(daysOfMonth);
} else if (!rrule->weeksOfYear().isEmpty()
&& rrule->daysOfYear().isEmpty()
&& rrule->daysOfMonth().isEmpty()
&& rrule->daysOfWeek().isEmpty()) {
// derive day of week
QSet<Qt::DayOfWeek> days;
days << static_cast<Qt::DayOfWeek>(initialDate.dayOfWeek());
rrule->setDaysOfWeek(days);
}
break;
case QOrganizerRecurrenceRule::Daily:
break;
case QOrganizerRecurrenceRule::Invalid:
Q_ASSERT(false);
}
}
/*!
Returns true if the calendar period (specified by \a frequency) of \a date is an \a
interval multiple of periods ahead of the calendar period of \a initialDate. For Weekly frequencies,
\a firstDayOfWeek is used to determine when the week boundary is. eg. If \a frequency is Monthly
and \a interval is 3, then true is returned iff \a date is in the same month as \a initialDate,
in a month 3 months ahead, 6 months ahead, etc.
*/
bool QOrganizerManagerEngine::inMultipleOfInterval(const QDate &date, const QDate &initialDate, QOrganizerRecurrenceRule::Frequency frequency, int interval, Qt::DayOfWeek firstDayOfWeek)
{
Q_ASSERT(date >= initialDate);
switch (frequency) {
case QOrganizerRecurrenceRule::Yearly: {
uint yearsDelta = date.year() - initialDate.year();
return (yearsDelta % interval == 0);
}
case QOrganizerRecurrenceRule::Monthly: {
uint monthsDelta = date.month() - initialDate.month() + (12 * (date.year() - initialDate.year()));
return (monthsDelta % interval == 0);
}
case QOrganizerRecurrenceRule::Weekly: {
// we need to adjust for the week start specified by the client if the interval is greater than 1
// ie, every time we hit the day specified, we increment the week count.
uint weekCount = 0;
QDate tempDate = initialDate;
while (tempDate < date) {
tempDate = tempDate.addDays(1);
if (static_cast<Qt::DayOfWeek>(tempDate.dayOfWeek()) == firstDayOfWeek) {
weekCount += 1;
}
}
return (weekCount % interval == 0);
}
case QOrganizerRecurrenceRule::Daily: {
uint daysDelta = initialDate.daysTo(date);
return (daysDelta % interval == 0);
}
case QOrganizerRecurrenceRule::Invalid:
Q_ASSERT(false);
}
return true;
}
/*!
Returns the date which is the first date of the calendar period that \a date resides in. eg. if
the \a frequency is Monthly, then this returns the first day of \a date's month. If the \a
frequency is Weekly, then it returns the first day of \a date's week, considering the week to
start on \a firstDayOfWeek
*/
QDate QOrganizerManagerEngine::firstDateInPeriod(const QDate &date, QOrganizerRecurrenceRule::Frequency frequency, Qt::DayOfWeek firstDayOfWeek)
{
QDate retn(date);
switch (frequency) {
case QOrganizerRecurrenceRule::Yearly:
retn.setDate(date.year(), 1, 1);
return retn;
case QOrganizerRecurrenceRule::Monthly:
retn.setDate(date.year(), date.month(), 1);
return retn;
case QOrganizerRecurrenceRule::Weekly:
while (retn.dayOfWeek() != firstDayOfWeek) {
retn = retn.addDays(-1);
}
return retn;
case QOrganizerRecurrenceRule::Daily:
return retn;
default:
Q_ASSERT(false);
return retn;
}
}
/*!
Returns the date which is the first date of the next calendar period after \a date specified by
\a frequency. eg. if \a frequency is Monthly, then this returns the first day of the next month.
If \a frequency is Weekly, then it returns the first \a firstDayOfWeek after \a date.
*/
QDate QOrganizerManagerEngine::firstDateInNextPeriod(const QDate &date, QOrganizerRecurrenceRule::Frequency frequency, Qt::DayOfWeek firstDayOfWeek)
{
QDate retn(date);
switch (frequency) {
case QOrganizerRecurrenceRule::Yearly:
retn.setDate(date.year()+1, 1, 1);
return retn;
case QOrganizerRecurrenceRule::Monthly:
{
int newMonth = date.month() + 1;
int newYear = date.year() + (newMonth==13 ? 1 : 0);
retn.setDate(newYear, newMonth==13 ? 1 : newMonth, 1);
}
return retn;
case QOrganizerRecurrenceRule::Weekly:
do {
retn = retn.addDays(1);
} while (retn.dayOfWeek() != firstDayOfWeek);
return retn;
case QOrganizerRecurrenceRule::Daily:
retn = retn.addDays(1);
return retn;
case QOrganizerRecurrenceRule::Invalid:
Q_ASSERT(false);
}
return retn;
}
/*!
Returns a list of dates between \a periodStart (inclusive) and \a periodEnd (inclusive) which
match the \a rrule. Only daysOfWeek, daysOfMonth, daysOfYear, weeksOfYear and months from the \a
rrule are matched.
*/
QList<QDate> QOrganizerManagerEngine::matchingDates(const QDate &periodStart, const QDate &periodEnd, const QOrganizerRecurrenceRule &rrule)
{
QList<QDate> retn;
QSet<Qt::DayOfWeek> daysOfWeek = rrule.daysOfWeek();
QSet<int> daysOfMonth = rrule.daysOfMonth();
QSet<int> daysOfYear = rrule.daysOfYear();
QSet<int> weeksOfYear = rrule.weeksOfYear();
QSet<QOrganizerRecurrenceRule::Month> monthsOfYear = rrule.monthsOfYear();
QDate tempDate = periodStart;
while (tempDate <= periodEnd) {
if ((monthsOfYear.isEmpty() || monthsOfYear.contains(static_cast<QOrganizerRecurrenceRule::Month>(tempDate.month())))
&& (weeksOfYear.isEmpty() || weeksOfYear.contains(tempDate.weekNumber()))
&& (daysOfYear.isEmpty() || daysOfYear.contains(tempDate.dayOfYear()))
&& (daysOfMonth.isEmpty() || daysOfMonth.contains(tempDate.day()))
&& (daysOfWeek.isEmpty() || daysOfWeek.contains(static_cast<Qt::DayOfWeek>(tempDate.dayOfWeek())))) {
retn.append(tempDate);
}
tempDate = tempDate.addDays(1);
}
return retn;
}
/*!
Returns a list of dates from \a dates which are at the indices specified by \a positions.
For positive values in \a positions, the values represent a 1-based index into \a dates.
For negative values, they represent indices counting from the end of \a dates (eg. -1 means the
last value of \a dates).
*/
QList<QDate> QOrganizerManagerEngine::filterByPosition(const QList<QDate> &dates, const QSet<int> positions)
{
if (positions.isEmpty()) {
return dates;
}
QList<QDate> retn;
foreach (int i, positions) {
if (i >= 1 && i <= dates.size()) {
// positions is 1-indexed, but the QList is 0-indexed
retn.append(dates[i-1]);
} else if (i <= -1 && i >= -dates.size()) {
// for negative values, count from the end of the list
retn.append(dates[dates.size() + i]);
}
}
return retn;
}
/*!
Returns true if the given organizer item \a oi has any recurrence.
*/
bool QOrganizerManagerEngine::itemHasReccurence(const QOrganizerItem& oi)
{
if (oi.type() == QOrganizerItemType::TypeEvent || oi.type() == QOrganizerItemType::TypeTodo) {
QOrganizerItemRecurrence recur = oi.detail(QOrganizerItemDetail::TypeRecurrence);
return !recur.recurrenceDates().isEmpty() || !recur.recurrenceRules().isEmpty();
}
return false;
}
/*!
This function is called when the given \a request has been destroyed by the client.
When this function is called, it means for the backend:
\list
\li The client doesn't care about the request any more. The engine can still complete it, but
completion is not required.
\li It can't reliably access any properties of the request pointer any more. The pointer will
be invalid once this function returns.
\endlist
Note that since the \a request may run in another thread, this function should be blocked until
the worker thread gets fully notified.
*/
void QOrganizerManagerEngine::requestDestroyed(QOrganizerAbstractRequest *request)
{
Q_UNUSED(request);
}
/*!
This function is called when the client tries to start the given asynchronous \a request. Returns
true if the request is started successfully, or false otherwise.
Note that the request is supposed to run in an asynchronous manner that this function should
return as soon as possible. Therefore, it the operation would last sometime, a worker thread
should be used to queue and process the request. In such cases, backend should be aware that
the request may be deleted by the client, and requestDestroyed() function will be called.
*/
bool QOrganizerManagerEngine::startRequest(QOrganizerAbstractRequest* request)
{
Q_UNUSED(request);
return false;
}
/*!
This function is called when the client tries to cancel the given asynchronous \a request. Returns
true if the request is calcelled successfully, or false otherwise.
*/
bool QOrganizerManagerEngine::cancelRequest(QOrganizerAbstractRequest* request)
{
Q_UNUSED(request);
return false;
}
/*!
This function is called when the client wants to be blocked until the given \a request is completed,
or until \a msecs milliseconds have passed. Returns true when the request is completed, or false
otherwise.
*/
bool QOrganizerManagerEngine::waitForRequestFinished(QOrganizerAbstractRequest* request, int msecs)
{
Q_UNUSED(request);
Q_UNUSED(msecs);
return false;
}
/*!
Updates the given asynchronous request \a req by setting the new \a state
of the request. If the new state is different, the stateChanged() signal
will be emitted by the request.
*/
void QOrganizerManagerEngine::updateRequestState(QOrganizerAbstractRequest* req, QOrganizerAbstractRequest::State state)
{
Q_ASSERT(req);
QMutexLocker ml(&req->d_ptr->m_mutex);
bool emitState = req->d_ptr->m_state != state;
req->d_ptr->m_state = state;
ml.unlock();
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
QPointer<QOrganizerAbstractRequest> guard(req);
#endif
Qt::ConnectionType connectionType = Qt::DirectConnection;
#ifdef QT_NO_THREAD
if (req->thread() != QThread::currentThread())
connectionType = Qt::BlockingQueuedConnection;
#endif
if (emitState)
QMetaObject::invokeMethod(req, "stateChanged", connectionType, Q_ARG(QOrganizerAbstractRequest::State, state));
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
}
/*!
Updates the given QOrganizerItemOccurrenceFetchRequest \a req with the latest results \a result, and operation error \a error.
In addition, the state of the request will be changed to \a newState.
It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.
If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.
*/
void QOrganizerManagerEngine::updateItemOccurrenceFetchRequest(QOrganizerItemOccurrenceFetchRequest* req, const QList<QOrganizerItem>& result, QOrganizerManager::Error error, QOrganizerAbstractRequest::State newState)
{
Q_ASSERT(req);
QOrganizerItemOccurrenceFetchRequestPrivate* rd = static_cast<QOrganizerItemOccurrenceFetchRequestPrivate*>(req->d_ptr);
QMutexLocker ml(&rd->m_mutex);
bool emitState = rd->m_state != newState;
rd->m_organizeritems = result;
rd->m_error = error;
rd->m_state = newState;
ml.unlock();
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
QPointer<QOrganizerAbstractRequest> guard(req);
#endif
Qt::ConnectionType connectionType = Qt::DirectConnection;
#ifdef QT_NO_THREAD
if (req->thread() != QThread::currentThread())
connectionType = Qt::BlockingQueuedConnection;
#endif
QMetaObject::invokeMethod(req, "resultsAvailable", connectionType);
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
if (emitState)
QMetaObject::invokeMethod(req, "stateChanged", connectionType, Q_ARG(QOrganizerAbstractRequest::State, newState));
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
}
/*!
Updates the given QOrganizerItemIdFetchRequest \a req with the latest results \a result, and operation error \a error.
In addition, the state of the request will be changed to \a newState.
It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.
If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.
*/
void QOrganizerManagerEngine::updateItemIdFetchRequest(QOrganizerItemIdFetchRequest* req, const QList<QOrganizerItemId>& result, QOrganizerManager::Error error, QOrganizerAbstractRequest::State newState)
{
Q_ASSERT(req);
QOrganizerItemIdFetchRequestPrivate* rd = static_cast<QOrganizerItemIdFetchRequestPrivate*>(req->d_ptr);
QMutexLocker ml(&rd->m_mutex);
bool emitState = rd->m_state != newState;
rd->m_ids = result;
rd->m_error = error;
rd->m_state = newState;
ml.unlock();
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
QPointer<QOrganizerAbstractRequest> guard(req);
#endif
Qt::ConnectionType connectionType = Qt::DirectConnection;
#ifdef QT_NO_THREAD
if (req->thread() != QThread::currentThread())
connectionType = Qt::BlockingQueuedConnection;
#endif
QMetaObject::invokeMethod(req, "resultsAvailable", connectionType);
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
if (emitState)
QMetaObject::invokeMethod(req, "stateChanged", connectionType, Q_ARG(QOrganizerAbstractRequest::State, newState));
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
}
/*!
Updates the given QOrganizerItemFetchByIdRequest \a req with the latest results \a result, and
operation error \a error, and map of input index to individual error \a errorMap. In addition,
the state of the request will be changed to \a newState.
It then causes the request to emit its resultsAvailable() signal to notify clients of the request
progress.
If the new request state is different from the previous state, the stateChanged() signal will
also be emitted from the request.
*/
void QOrganizerManagerEngine::updateItemFetchByIdRequest(QOrganizerItemFetchByIdRequest *req, const QList<QOrganizerItem> &result, QOrganizerManager::Error error, const QMap<int, QOrganizerManager::Error> &errorMap, QOrganizerAbstractRequest::State newState)
{
Q_ASSERT(req);
QOrganizerItemFetchByIdRequestPrivate *rd = static_cast<QOrganizerItemFetchByIdRequestPrivate *>(req->d_ptr);
QMutexLocker ml(&rd->m_mutex);
bool emitState = rd->m_state != newState;
rd->m_items = result;
rd->m_errors = errorMap;
rd->m_error = error;
rd->m_state = newState;
ml.unlock();
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
QPointer<QOrganizerAbstractRequest> guard(req);
#endif
Qt::ConnectionType connectionType = Qt::DirectConnection;
#ifdef QT_NO_THREAD
if (req->thread() != QThread::currentThread())
connectionType = Qt::BlockingQueuedConnection;
#endif
QMetaObject::invokeMethod(req, "resultsAvailable", connectionType);
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
if (emitState)
QMetaObject::invokeMethod(req, "stateChanged", connectionType, Q_ARG(QOrganizerAbstractRequest::State, newState));
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
}
/*!
Updates the given QOrganizerItemFetchRequest \a req with the latest results \a result, and operation error \a error.
In addition, the state of the request will be changed to \a newState.
It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.
If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.
*/
void QOrganizerManagerEngine::updateItemFetchRequest(QOrganizerItemFetchRequest* req, const QList<QOrganizerItem>& result, QOrganizerManager::Error error, QOrganizerAbstractRequest::State newState)
{
Q_ASSERT(req);
QOrganizerItemFetchRequestPrivate* rd = static_cast<QOrganizerItemFetchRequestPrivate*>(req->d_ptr);
QMutexLocker ml(&rd->m_mutex);
bool emitState = rd->m_state != newState;
rd->m_organizeritems = result;
rd->m_error = error;
rd->m_state = newState;
ml.unlock();
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
QPointer<QOrganizerAbstractRequest> guard(req);
#endif
Qt::ConnectionType connectionType = Qt::DirectConnection;
#ifdef QT_NO_THREAD
if (req->thread() != QThread::currentThread())
connectionType = Qt::BlockingQueuedConnection;
#endif
QMetaObject::invokeMethod(req, "resultsAvailable", connectionType);
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
if (emitState)
QMetaObject::invokeMethod(req, "stateChanged", connectionType, Q_ARG(QOrganizerAbstractRequest::State, newState));
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
}
/*!
Updates the given QOrganizerItemFetchForExportRequest \a req with the latest results \a result, and operation error \a error.
In addition, the state of the request will be changed to \a newState.
It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.
If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.
*/
void QOrganizerManagerEngine::updateItemFetchForExportRequest(QOrganizerItemFetchForExportRequest* req, const QList<QOrganizerItem>& result, QOrganizerManager::Error error, QOrganizerAbstractRequest::State newState)
{
Q_ASSERT(req);
QOrganizerItemFetchForExportRequestPrivate* rd = static_cast<QOrganizerItemFetchForExportRequestPrivate*>(req->d_ptr);
QMutexLocker ml(&rd->m_mutex);
bool emitState = rd->m_state != newState;
rd->m_organizeritems = result;
rd->m_error = error;
rd->m_state = newState;
ml.unlock();
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
QPointer<QOrganizerAbstractRequest> guard(req);
#endif
Qt::ConnectionType connectionType = Qt::DirectConnection;
#ifdef QT_NO_THREAD
if (req->thread() != QThread::currentThread())
connectionType = Qt::BlockingQueuedConnection;
#endif
QMetaObject::invokeMethod(req, "resultsAvailable", connectionType);
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
if (emitState)
QMetaObject::invokeMethod(req, "stateChanged", connectionType, Q_ARG(QOrganizerAbstractRequest::State, newState));
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
}
/*!
Updates the given QOrganizerItemRemoveRequest \a req with the operation error \a error, and map of input index to individual error \a errorMap.
In addition, the state of the request will be changed to \a newState.
It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.
If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.
*/
void QOrganizerManagerEngine::updateItemRemoveRequest(QOrganizerItemRemoveRequest* req, QOrganizerManager::Error error, const QMap<int, QOrganizerManager::Error>& errorMap, QOrganizerAbstractRequest::State newState)
{
Q_ASSERT(req);
QOrganizerItemRemoveRequestPrivate* rd = static_cast<QOrganizerItemRemoveRequestPrivate*>(req->d_ptr);
QMutexLocker ml(&rd->m_mutex);
bool emitState = rd->m_state != newState;
rd->m_errors = errorMap;
rd->m_error = error;
rd->m_state = newState;
ml.unlock();
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
QPointer<QOrganizerAbstractRequest> guard(req);
#endif
Qt::ConnectionType connectionType = Qt::DirectConnection;
#ifdef QT_NO_THREAD
if (req->thread() != QThread::currentThread())
connectionType = Qt::BlockingQueuedConnection;
#endif
QMetaObject::invokeMethod(req, "resultsAvailable", connectionType);
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
if (emitState)
QMetaObject::invokeMethod(req, "stateChanged", connectionType, Q_ARG(QOrganizerAbstractRequest::State, newState));
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
}
/*!
Updates the given QOrganizerItemRemoveByIdRequest \a req with the operation error \a error, and map of input index to individual error \a errorMap.
In addition, the state of the request will be changed to \a newState.
It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.
If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.
*/
void QOrganizerManagerEngine::updateItemRemoveByIdRequest(QOrganizerItemRemoveByIdRequest* req, QOrganizerManager::Error error, const QMap<int, QOrganizerManager::Error>& errorMap, QOrganizerAbstractRequest::State newState)
{
Q_ASSERT(req);
QOrganizerItemRemoveByIdRequestPrivate* rd = static_cast<QOrganizerItemRemoveByIdRequestPrivate*>(req->d_ptr);
QMutexLocker ml(&rd->m_mutex);
bool emitState = rd->m_state != newState;
rd->m_errors = errorMap;
rd->m_error = error;
rd->m_state = newState;
ml.unlock();
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
QPointer<QOrganizerAbstractRequest> guard(req);
#endif
Qt::ConnectionType connectionType = Qt::DirectConnection;
#ifdef QT_NO_THREAD
if (req->thread() != QThread::currentThread())
connectionType = Qt::BlockingQueuedConnection;
#endif
QMetaObject::invokeMethod(req, "resultsAvailable", connectionType);
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
if (emitState)
QMetaObject::invokeMethod(req, "stateChanged", connectionType, Q_ARG(QOrganizerAbstractRequest::State, newState));
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
}
/*!
Updates the given QOrganizerItemSaveRequest \a req with the latest results \a result, operation error \a error, and map of input index to individual error \a errorMap.
In addition, the state of the request will be changed to \a newState.
It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.
If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.
*/
void QOrganizerManagerEngine::updateItemSaveRequest(QOrganizerItemSaveRequest* req, const QList<QOrganizerItem>& result, QOrganizerManager::Error error, const QMap<int, QOrganizerManager::Error>& errorMap, QOrganizerAbstractRequest::State newState)
{
Q_ASSERT(req);
QOrganizerItemSaveRequestPrivate* rd = static_cast<QOrganizerItemSaveRequestPrivate*>(req->d_ptr);
QMutexLocker ml(&rd->m_mutex);
bool emitState = rd->m_state != newState;
rd->m_organizeritems = result;
rd->m_errors = errorMap;
rd->m_error = error;
rd->m_state = newState;
ml.unlock();
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
QPointer<QOrganizerAbstractRequest> guard(req);
#endif
Qt::ConnectionType connectionType = Qt::DirectConnection;
#ifdef QT_NO_THREAD
if (req->thread() != QThread::currentThread())
connectionType = Qt::BlockingQueuedConnection;
#endif
QMetaObject::invokeMethod(req, "resultsAvailable", connectionType);
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
if (emitState)
QMetaObject::invokeMethod(req, "stateChanged", connectionType, Q_ARG(QOrganizerAbstractRequest::State, newState));
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
}
/*!
Updates the given QOrganizerCollectionFetchRequest \a req with the latest results \a result and an operation error \a error.
In addition, the state of the request will be changed to \a newState.
It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.
If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.
*/
void QOrganizerManagerEngine::updateCollectionFetchRequest(QOrganizerCollectionFetchRequest* req, const QList<QOrganizerCollection>& result, QOrganizerManager::Error error, QOrganizerAbstractRequest::State newState)
{
Q_ASSERT(req);
QOrganizerCollectionFetchRequestPrivate* rd = static_cast<QOrganizerCollectionFetchRequestPrivate*>(req->d_ptr);
QMutexLocker ml(&rd->m_mutex);
bool emitState = rd->m_state != newState;
rd->m_collections = result;
rd->m_error = error;
rd->m_state = newState;
ml.unlock();
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
QPointer<QOrganizerAbstractRequest> guard(req);
#endif
Qt::ConnectionType connectionType = Qt::DirectConnection;
#ifdef QT_NO_THREAD
if (req->thread() != QThread::currentThread())
connectionType = Qt::BlockingQueuedConnection;
#endif
QMetaObject::invokeMethod(req, "resultsAvailable", connectionType);
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
if (emitState)
QMetaObject::invokeMethod(req, "stateChanged", connectionType, Q_ARG(QOrganizerAbstractRequest::State, newState));
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
}
/*!
Updates the given QOrganizerCollectionRemoveRequest \a req with the operation error \a error, and map of input index to individual error \a errorMap.
In addition, the state of the request will be changed to \a newState.
It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.
If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.
*/
void QOrganizerManagerEngine::updateCollectionRemoveRequest(QOrganizerCollectionRemoveRequest* req, QOrganizerManager::Error error, const QMap<int, QOrganizerManager::Error>& errorMap, QOrganizerAbstractRequest::State newState)
{
Q_ASSERT(req);
QOrganizerCollectionRemoveRequestPrivate* rd = static_cast<QOrganizerCollectionRemoveRequestPrivate*>(req->d_ptr);
QMutexLocker ml(&rd->m_mutex);
bool emitState = rd->m_state != newState;
rd->m_errors = errorMap;
rd->m_error = error;
rd->m_state = newState;
ml.unlock();
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
QPointer<QOrganizerAbstractRequest> guard(req);
#endif
Qt::ConnectionType connectionType = Qt::DirectConnection;
#ifdef QT_NO_THREAD
if (req->thread() != QThread::currentThread())
connectionType = Qt::BlockingQueuedConnection;
#endif
QMetaObject::invokeMethod(req, "resultsAvailable", connectionType);
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
if (emitState)
QMetaObject::invokeMethod(req, "stateChanged", connectionType, Q_ARG(QOrganizerAbstractRequest::State, newState));
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
}
/*!
Updates the given QOrganizerCollectionSaveRequest \a req with the latest results \a result, operation error \a error, and map of input index to individual error \a errorMap.
In addition, the state of the request will be changed to \a newState.
It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.
If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.
*/
void QOrganizerManagerEngine::updateCollectionSaveRequest(QOrganizerCollectionSaveRequest* req, const QList<QOrganizerCollection>& result, QOrganizerManager::Error error, const QMap<int, QOrganizerManager::Error>& errorMap, QOrganizerAbstractRequest::State newState)
{
Q_ASSERT(req);
QOrganizerCollectionSaveRequestPrivate* rd = static_cast<QOrganizerCollectionSaveRequestPrivate*>(req->d_ptr);
QMutexLocker ml(&rd->m_mutex);
bool emitState = rd->m_state != newState;
rd->m_collections = result;
rd->m_errors = errorMap;
rd->m_error = error;
rd->m_state = newState;
ml.unlock();
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
QPointer<QOrganizerAbstractRequest> guard(req);
#endif
Qt::ConnectionType connectionType = Qt::DirectConnection;
#ifdef QT_NO_THREAD
if (req->thread() != QThread::currentThread())
connectionType = Qt::BlockingQueuedConnection;
#endif
QMetaObject::invokeMethod(req, "resultsAvailable", connectionType);
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
if (emitState)
QMetaObject::invokeMethod(req, "stateChanged", connectionType, Q_ARG(QOrganizerAbstractRequest::State, newState));
#if !defined(QT_NO_DEBUG) || defined(QT_FORCE_ASSERTS)
Q_ASSERT(guard);
#endif
}
QT_END_NAMESPACE_ORGANIZER
#include "moc_qorganizermanagerengine.cpp"
|