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
|
// ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2018, Knut Reinert, FU Berlin
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of Knut Reinert or the FU Berlin nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL KNUT REINERT OR THE FU BERLIN BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
//
// ==========================================================================
// Author: David Weese <david.weese@fu-berlin.de>
// ==========================================================================
// Implementation of the Packed String class.
// ==========================================================================
#ifndef SEQAN_SEQUENCE_STRING_PACKED_H_
#define SEQAN_SEQUENCE_STRING_PACKED_H_
namespace seqan {
// ============================================================================
// Forwards
// ============================================================================
template <typename T>
struct HostIterator;
//struct Device_ {};
//typedef Tag<Device_> Device;
// ============================================================================
// Tags, Classes, Enums
// ============================================================================
// --------------------------------------------------------------------------
// Specialization Packed String
// --------------------------------------------------------------------------
/*!
* @class PackedString Packed String
* @extends String
* @headerfile <seqan/sequence.h>
* @brief A string that stores as many values in one machine word as possible.
*
* @signature template <typename TValue, typename THostSpec>
* class String<TValue, Packed<THostSpec> >;
*
* @tparam TValue The value type, that is the type of the items/characters
* stored in the string.Use @link Value @endlink to get the value
* type for a given class.
* @tparam THostSpec The specializing type.This is the specialization of the
* host string that is used for storing the packed values.
* Default: @link AllocString @endlink
*/
template <typename THostspec = Alloc<> >
struct Packed;
// --------------------------------------------------------------------------
// Metafunction PackedTraits_
// --------------------------------------------------------------------------
template <typename TValue, int BIT_WIDTH, int NUM>
struct FillMultiplierRecursion_
{
static const TValue VALUE = (FillMultiplierRecursion_<TValue, BIT_WIDTH, NUM - 1>::VALUE << BIT_WIDTH) | (TValue)1;
};
template <typename TValue, int BIT_WIDTH>
struct FillMultiplierRecursion_<TValue, BIT_WIDTH, 0>
{
static const TValue VALUE = 0;
};
template <typename TPackedString>
struct PackedTraits_
{
typedef typename Size<TPackedString>::Type TSize;
typedef typename Value<TPackedString>::Type TValue;
typedef typename Value<typename Host<TPackedString>::Type>::Type THostValue;
enum
{
BITS_PER_VALUE = BitsPerValue<TValue>::VALUE,
VALUES_PER_HOST_VALUE = LENGTH<THostValue>::VALUE,
WASTED_BITS = 64 - BITS_PER_VALUE * VALUES_PER_HOST_VALUE
};
static inline
typename Size<typename Host<TPackedString>::Type>::Type
toHostLength(typename Size<TPackedString>::Type len)
{
return (len + VALUES_PER_HOST_VALUE - 1) / VALUES_PER_HOST_VALUE;
}
static inline
typename Size<typename Host<TPackedString>::Type>::Type
toHostLength1(typename Size<TPackedString>::Type len)
{
return (len == 0)? 0: 1 + (len + VALUES_PER_HOST_VALUE - 1) / VALUES_PER_HOST_VALUE;
}
};
/*???TODO Optimierungsm�glichkeiten:
- _clearSpace kopiert Zeichenweise im Packed-String, und nicht im Host-String
- _clearSpace verwendet resize, um den Host zu vergr��ern, d.h. der Inhalt wird eventuell doppelt kopiert.
*/
template <typename TValue, typename THostspec>
class String<TValue, Packed<THostspec> >
{
public:
typedef typename Host<String>::Type THost;
typedef typename Size<String>::Type TSize;
typedef PackedTraits_<String> TTraits;
THost data_host;
String()
{
}
template <typename TSource>
String(TSource & source)
{
reserve(*this, capacity(source), Exact());
assign(*this, source);
}
template <typename TSource>
String(TSource const & source)
{
reserve(*this, capacity(source), Exact());
assign(*this, source);
}
template <typename TSource>
String & operator =(TSource const & source)
{
assign(*this, source);
return *this;
}
String & operator =(String const & source)
{
assign(*this, source);
return *this;
}
// ----------------------------------------------------------------------
// Subscription operators; have to be defined in class def.
// ----------------------------------------------------------------------
template <typename TPos>
inline typename Reference<String>::Type
operator[](TPos pos)
{
return value(*this, pos);
}
template <typename TPos>
inline typename Reference<String const>::Type
operator[](TPos pos) const
{
return data_host[1 + pos / TTraits::VALUES_PER_HOST_VALUE][pos % TTraits::VALUES_PER_HOST_VALUE];
}
};
// ----------------------------------------------------------------------------
// Functor FunctorTestAllZeros
// ----------------------------------------------------------------------------
template <typename T>
struct FunctorTestAllZeros
{};
template <typename THostSpec>
struct FunctorTestAllZeros<String<bool, Packed<THostSpec> > >
{
typedef String<bool, Packed<THostSpec> > TPackedString;
typedef typename Host<TPackedString>::Type TPackedHost;
typedef typename Value<TPackedHost>::Type TPackedHostValue;
typedef typename Size<TPackedHostValue>::Type TSize;
TSize _wastedBits;
template <typename TShift>
FunctorTestAllZeros(TShift const & shift) : _wastedBits(shift)
{}
template <typename TValue>
inline bool operator()(TValue const & val, False const & /*tag*/) const
{
return testAllZeros(val);
}
template <typename TValue>
inline bool operator()(TValue const & val, True const & /*tag*/) const
{
return testAllZeros(val >> _wastedBits);
}
};
// ----------------------------------------------------------------------------
// Functor FunctorTestAllOnes
// ----------------------------------------------------------------------------
template <typename T>
struct FunctorTestAllOnes
{};
template <typename THostSpec>
struct FunctorTestAllOnes<String<bool, Packed<THostSpec> > >
{
typedef String<bool, Packed<THostSpec> > TPackedString;
typedef typename Host<TPackedString>::Type TPackedHost;
typedef typename Value<TPackedHost>::Type TPackedHostValue;
typedef typename TPackedHostValue::TBitVector TBitVector;
typedef typename Size<TPackedHostValue>::Type TSize;
TSize _wastedBits;
template <typename TShift>
FunctorTestAllOnes(TShift const & shift) : _wastedBits(shift)
{}
template <typename TValue>
inline bool operator()(TValue const & val, False const & /*tag*/) const
{
return testAllOnes(val);
}
template <typename TValue>
inline bool operator()(TValue const & val, True const & /*tag*/) const
{
TBitVector maskWastedBits = (1 << _wastedBits) - 1; // We only need the mask if we are in the last value.
return testAllOnes(val | maskWastedBits);
}
};
// --------------------------------------------------------------------------
// Specialization Packed String Iter
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
class Iter<TPackedString, Packed<THostspec> >
{
public:
typedef typename Host<Iter>::Type THostIterator;
typedef typename Position<TPackedString>::Type TPosition;
typedef PackedTraits_<TPackedString> TTraits;
THostIterator data_iterator;
unsigned char localPos;
Iter()
{
}
Iter(THostIterator data_iterator_):
data_iterator(data_iterator_),
localPos(0)
{
}
Iter(THostIterator data_iterator_, TPosition localPos_):
data_iterator(data_iterator_),
localPos(localPos_)
{
}
Iter(TPackedString &container):
data_iterator(begin(host(container), Standard()) + 1),
localPos(0)
{
}
Iter(TPackedString &container, TPosition pos):
data_iterator(begin(host(container), Standard()) + 1 + pos / TTraits::VALUES_PER_HOST_VALUE),
localPos(pos % TTraits::VALUES_PER_HOST_VALUE)
{
}
// inline
// Iter const &
// operator=(Iter const & other_)
// {
// data_iterator = other_.data_iterator;
// localPos = other_.localPos;
// return *this;
// }
};
// ============================================================================
// Metafunctions
// ============================================================================
// --------------------------------------------------------------------------
// Metafunction StringSpec
// --------------------------------------------------------------------------
template <typename TValue, typename TSpec>
struct StringSpec<String<TValue, Packed<TSpec> > > : StringSpec<String<TValue, TSpec> > {};
// --------------------------------------------------------------------------
// Metafunction DefaultOverflowImplicit
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
struct DefaultOverflowImplicit<String<TValue, Packed<THostspec> > >
: DefaultOverflowImplicit<typename Host<String<TValue, Packed<THostspec> > >::Type>
{};
template <typename TValue, typename THostspec>
struct DefaultOverflowImplicit<String<TValue, Packed<THostspec> > const>
: DefaultOverflowImplicit<typename Host<String<TValue, Packed<THostspec> > const>::Type>
{};
// --------------------------------------------------------------------------
// Metafunction DefaultOverflowExplicit
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
struct DefaultOverflowExplicit<String<TValue, Packed<THostspec> > >
: DefaultOverflowExplicit<typename Host<String<TValue, Packed<THostspec> > >::Type>
{};
template <typename TValue, typename THostspec>
struct DefaultOverflowExplicit<String<TValue, Packed<THostspec> > const>
: DefaultOverflowExplicit<typename Host<String<TValue, Packed<THostspec> > const>::Type>
{};
// --------------------------------------------------------------------------
// Metafunction IsContiguous
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
struct IsContiguous<String<TValue, Packed<THostspec> > >
{
typedef False Type;
enum { VALUE = false };
};
// --------------------------------------------------------------------------
// Metafunction PackedHostValue_
// --------------------------------------------------------------------------
template <typename TString>
struct PackedHostValue_
{
typedef typename Value<TString>::Type TValue;
typedef Tuple<TValue, 64 / BitsPerValue<TValue>::VALUE, BitPacked<> > Type; // use 64bit words
};
// --------------------------------------------------------------------------
// Metafunction Host
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
struct Host<String<TValue, Packed<THostspec> > >
{
typedef typename PackedHostValue_<String<TValue, Packed<THostspec> > >::Type TInternalValue;
typedef String<TInternalValue, THostspec> Type;
};
template <typename TValue, typename THostspec>
struct Host<String<TValue, Packed<THostspec> > const>
{
typedef typename Host<String<TValue, Packed<THostspec> > >::Type const Type;
};
// --------------------------------------------------------------------------
// Metafunction GetValue
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
struct GetValue<String<TValue, Packed<THostspec> > > :
public Value<String<TValue, Packed<THostspec> > > {};
template <typename TValue, typename THostspec>
struct GetValue<String<TValue, Packed<THostspec> > const> :
public Value<String<TValue, Packed<THostspec> > const> {};
// --------------------------------------------------------------------------
// Metafunction Reference
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
struct Reference<String<TValue, Packed<THostspec> > >
{
typedef typename Iterator<String<TValue, Packed<THostspec> >, Standard>::Type TIterator;
typedef Proxy<IteratorProxy<TIterator> > Type;
};
template <typename TValue, typename THostspec>
struct Reference<String<TValue, Packed<THostspec> > const> :
public GetValue<String<TValue, Packed<THostspec> > const> {};
// --------------------------------------------------------------------------
// Metafunction Size
// --------------------------------------------------------------------------
/*
template <typename TValue, typename THostspec>
struct Size<String<TValue, Packed<THostspec> > >
{
typedef int64_t Type;
};
template <typename TValue, typename THostspec>
struct Size<String<TValue, Packed<THostspec> > const>
{
typedef int64_t Type;
};
*/
// --------------------------------------------------------------------------
// Metafunction Iterator
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
struct Iterator<String<TValue, Packed<THostspec> >, Standard>
{
typedef Iter<String<TValue, Packed<THostspec> >, Packed<THostspec> > Type;
};
template <typename TValue, typename THostspec>
struct Iterator<String<TValue, Packed<THostspec> > const, Standard>
{
typedef Iter<String<TValue, Packed<THostspec> > const, Packed<THostspec> > Type;
};
// --------------------------------------------------------------------------
// Metafunction Host
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
struct Host<Iter<TPackedString, Packed<THostspec> > > :
public Iterator<typename Host<TPackedString>::Type, Standard> {};
template <typename TPackedString, typename THostspec>
struct Host<Iter<TPackedString, Packed<THostspec> > const>
{
typedef typename Host<TPackedString>::Type THost_;
typedef typename Iterator<THost_, Standard>::Type const Type;
};
// --------------------------------------------------------------------------
// Internal Metafunction TempCopy_
// --------------------------------------------------------------------------
// Note: this works only, if the copy assignment is done without using TempCopy_.
template <typename TValue, typename THostspec>
struct TempCopy_<String<TValue, Packed<THostspec> > >
{
typedef String<TValue, Packed<THostspec> > Type;
};
// ============================================================================
// Functions
// ============================================================================
// ****************************************************************************
// Functions for Packed String
// ****************************************************************************
// ----------------------------------------------------------------------------
// Function std::swap()
// ----------------------------------------------------------------------------
template <typename TValue, typename THostspec>
inline void
swap(String<TValue, Packed<THostspec> > & a,
String<TValue, Packed<THostspec> > & b)
{
std::swap(a.data_host, b.data_host);
}
// --------------------------------------------------------------------------
// Function host
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
inline typename Host<String<TValue, Packed<THostspec> > >::Type &
host(String<TValue, Packed<THostspec> > & me)
{
return me.data_host;
}
template <typename TValue, typename THostspec>
inline typename Host<String<TValue, Packed<THostspec> > const>::Type const &
host(String<TValue, Packed<THostspec> > const & me)
{
return me.data_host;
}
// --------------------------------------------------------------------------
// Function length
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
inline typename Size<String<TValue, Packed<THostspec> > const>::Type
length(String<TValue, Packed<THostspec> > const & me)
{
if (empty(host(me)))
return 0;
else
return front(host(me)).i;
}
// --------------------------------------------------------------------------
// Function _setLength
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec, typename TSize>
inline void
_setLength(
String<TValue, Packed<THostspec> > & me,
TSize new_length)
{
typedef String<TValue, Packed<THostspec> > TString;
if (new_length == 0)
{
_setLength(host(me), 0);
return;
}
_setLength(host(me), 1 + PackedTraits_<TString>::toHostLength(new_length));
front(host(me)).i = new_length;
}
// --------------------------------------------------------------------------
// Function resize
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec, typename TSize, typename TExpand>
inline typename Size< String<TValue, Packed<THostspec> > >::Type
resize(
String<TValue, Packed<THostspec> > & me,
TSize new_length,
Tag<TExpand> tag)
{
typedef String<TValue, Packed<THostspec> > TString;
typedef PackedTraits_<TString> TTraits;
typedef typename Size<TString>::Type TStringSize;
if (new_length == 0)
{
clear(host(me));
return 0;
}
TStringSize max_length = (resize(host(me), TTraits::toHostLength(new_length) + 1, tag) - 1) * TTraits::VALUES_PER_HOST_VALUE;
if ((TStringSize)new_length > max_length)
new_length = max_length;
return front(host(me)).i = new_length;
}
template <typename TValue, typename THostspec, typename TSize, typename TExpand, typename TValue2>
inline typename Size< String<TValue, Packed<THostspec> > >::Type
resize(String<TValue, Packed<THostspec> > & me,
TSize new_length,
TValue2 const & newValue,
Tag<TExpand> tag)
{
typedef String<TValue, Packed<THostspec> > TString;
typedef PackedTraits_<TString> TTraits;
typedef typename Size<TString>::Type TStringSize;
typedef typename TTraits::THostValue THostValue;
TStringSize old_length = length(me);
TStringSize old_host_length = length(host(me));
if (static_cast<TStringSize>(new_length) < length(me))
return resize(me, new_length, tag);
// create WORD
THostValue tmp;
tmp.i = 0;
uint64_t ord = ordValue(TValue(newValue));
for (unsigned j = 0; j < TTraits::VALUES_PER_HOST_VALUE; ++j)
tmp.i |= ord << (j * TTraits::BITS_PER_VALUE);
// fill up host string word-wise
TStringSize max_length = (resize(host(me),
TTraits::toHostLength(new_length) + 1,
tmp,
tag) - 1)
* TTraits::VALUES_PER_HOST_VALUE;
// set values on formerly last word, because not affected by above
if (old_host_length > 1)
{
TStringSize alreadySet = old_length % TTraits::VALUES_PER_HOST_VALUE;
// clear non-set positions (which may be uninitialized ( != 0 )
tmp.i = (~static_cast<uint64_t>(0) << (64 - alreadySet * TTraits::BITS_PER_VALUE)) >> TTraits::WASTED_BITS;
host(me)[old_host_length-1].i &= tmp.i;
for (TStringSize i = alreadySet; i < TTraits::VALUES_PER_HOST_VALUE; ++i)
host(me)[old_host_length-1].i |= ord << ((TTraits::VALUES_PER_HOST_VALUE - i - 1) * TTraits::BITS_PER_VALUE);
}
if (static_cast<TStringSize>(new_length) > max_length)
new_length = max_length;
front(host(me)).i = new_length;
return new_length;
}
// --------------------------------------------------------------------------
// Function insert
// --------------------------------------------------------------------------
template <typename TValue, typename THostSpec, typename TPosition, typename TSeq, typename TExpand>
inline void
insert(String<TValue, Packed<THostSpec> > & me,
TPosition pos,
TSeq const & insertSeq,
Tag<TExpand>)
{
// NOTE(h-2): something is wrong (probably in ClearSpaceStringPacked_ below)
// which requires us to _clearUnusedBits on inserts()
// [this has a moderate performance penalty]
_clearUnusedBits(me);
replace(me, pos, pos, insertSeq, Tag<TExpand>());
}
// --------------------------------------------------------------------------
// Function assign()
//
// Helpers: _assignCopyPackedString()
// --------------------------------------------------------------------------
// optimized variant for copy assignment. The host sequence is copied instead of
// copying the packed string value by value.
template <typename TTarget, typename TSource, typename TTag>
inline void
_assignCopyPackedString(TTarget & target,
TSource & source,
Tag<TTag> const & tag)
{
typedef typename Size<TTarget>::Type TSize;
assign(host(target), host(source), tag);
if (empty(host(target)))
return;
TSize new_length_limit = (length(host(target)) - 1) * PackedTraits_<TTarget>::VALUES_PER_HOST_VALUE;
_setLength(target, _min((TSize)length(source), new_length_limit));
}
template <typename TTarget, typename TSource, typename TSize, typename TTag>
inline void
_assignCopyPackedString(TTarget & target,
TSource & source,
TSize limit,
Tag<TTag> const & tag)
{
typedef typename Size<TTarget>::Type TSize2;
TSize2 host_limit = PackedTraits_<TTarget>::toHostLength1(limit);
assign(host(target), host(source), host_limit, tag);
if (empty(host(target)))
return;
TSize2 new_length_limit = (length(host(target)) - 1) * PackedTraits_<TTarget>::VALUES_PER_HOST_VALUE;
_setLength(target, _min((TSize2)length(source), _min(new_length_limit, (TSize2)limit)));
}
template <typename TValue, typename THostspec, typename TTag>
inline void
assign(String<TValue, Packed<THostspec> > & target,
String<TValue, Packed<THostspec> > & source,
Tag<TTag> const & tag)
{
_assignCopyPackedString(target, source, tag);
}
template <typename TValue, typename THostspec, typename TTag>
inline void
assign(String<TValue, Packed<THostspec> > & target,
String<TValue, Packed<THostspec> > const & source,
Tag<TTag> const & tag)
{
_assignCopyPackedString(target, source, tag);
}
template <typename TValue, typename THostspec, typename TSize, typename TTag>
void assign(String<TValue, Packed<THostspec> > & target,
String<TValue, Packed<THostspec> > & source,
TSize limit,
Tag<TTag> const & tag)
{
_assignCopyPackedString(target, source, limit, tag);
}
template <typename TValue, typename THostspec, typename TSize, typename TTag>
void assign(String<TValue, Packed<THostspec> > & target,
String<TValue, Packed<THostspec> > const & source,
TSize limit,
Tag<TTag> const & tag)
{
_assignCopyPackedString(target, source, limit, tag);
}
// --------------------------------------------------------------------------
// Function getObjectId()
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
inline void const *
getObjectId(String<TValue, Packed<THostspec> > const & me)
{
return getObjectId(host(me));
}
// --------------------------------------------------------------------------
// Function iter()
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec, typename TPos>
inline typename Iterator<String<TValue, Packed<THostspec> >, Standard>::Type
iter(String<TValue, Packed<THostspec> > & me,
TPos const pos,
Standard const &)
{
typedef typename Iterator<String<TValue, Packed<THostspec> >, Standard>::Type TIterator;
return TIterator(me, pos);
}
template <typename TValue, typename THostspec, typename TPos>
inline typename Iterator<String<TValue, Packed<THostspec> > const, Standard>::Type
iter(String<TValue, Packed<THostspec> > const & me,
TPos const pos,
Standard const &)
{
typedef typename Iterator<String<TValue, Packed<THostspec> > const, Standard>::Type TIterator;
return TIterator(me, pos);
}
// --------------------------------------------------------------------------
// Function begin()
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
inline typename Iterator<String<TValue, Packed<THostspec> >, Standard>::Type
begin(String<TValue, Packed<THostspec> > & me,
Standard const &)
{
typedef typename Iterator<String<TValue, Packed<THostspec> >, Standard>::Type TIterator;
return TIterator(me);
}
template <typename TValue, typename THostspec>
inline typename Iterator<String<TValue, Packed<THostspec> > const, Standard>::Type
begin(String<TValue, Packed<THostspec> > const & me,
Standard const &)
{
typedef typename Iterator<String<TValue, Packed<THostspec> > const, Standard>::Type TIterator;
return TIterator(me);
}
// --------------------------------------------------------------------------
// Function end()
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
inline typename Iterator<String<TValue, Packed<THostspec> >, Standard>::Type
end(String<TValue, Packed<THostspec> > & me,
Standard const &)
{
return iter(me, length(me), Standard());
}
template <typename TValue, typename THostspec>
inline typename Iterator<String<TValue, Packed<THostspec> > const, Standard>::Type
end(String<TValue, Packed<THostspec> > const & me,
Standard const &)
{
return iter(me, length(me), Standard());
}
// --------------------------------------------------------------------------
// Function value()
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec, typename TPos>
inline typename Reference<String<TValue, Packed<THostspec> > >::Type
value(String<TValue, Packed<THostspec> > & me,
TPos const pos)
{
return *iter(me, pos, Standard());
}
template <typename TValue, typename THostspec, typename TPos>
inline typename Reference<String<TValue, Packed<THostspec> > const>::Type
value(String<TValue, Packed<THostspec> > const & me,
TPos const pos)
{
typedef String<TValue, Packed<THostspec> > TPackedString;
typedef PackedTraits_<TPackedString> TTraits;
return me.data_host[1 + pos / TTraits::VALUES_PER_HOST_VALUE][pos % TTraits::VALUES_PER_HOST_VALUE];
}
// --------------------------------------------------------------------------
// Function capacity()
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
inline typename Size<String<TValue, Packed<THostspec> > const>::Type
capacity(String<TValue, Packed<THostspec> > const & me)
{
typedef String<TValue, Packed<THostspec> > TPackedString;
typedef PackedTraits_<TPackedString> TTraits;
typedef typename Size<TPackedString>::Type TSize;
TSize cap = capacity(host(me));
return (cap == 0)? 0: (cap - 1) * (TSize)TTraits::VALUES_PER_HOST_VALUE;
}
// --------------------------------------------------------------------------
// Function clear()
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
inline void
clear(String<TValue, Packed<THostspec> > & me)
{
clear(host(me));
}
// --------------------------------------------------------------------------
// Function shrinkToFit()
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
inline void
shrinkToFit(String<TValue, Packed<THostspec> > & me)
{
shrinkToFit(host(me));
}
// --------------------------------------------------------------------------
// Function _clearUnusedBits()
// --------------------------------------------------------------------------
template <typename TValue, typename THostspec>
inline void
_clearUnusedBits(String<TValue, Packed<THostspec> > & me)
{
typedef String<TValue, Packed<THostspec> > TPackedString;
typedef PackedTraits_<TPackedString> TTraits;
typedef typename Host<TPackedString>::Type THost;
typedef typename Iterator<THost, Standard>::Type THostIterator;
typedef typename TTraits::THostValue THostValue;
typedef typename THostValue::TBitVector TBitVector;
typedef typename Size<TPackedString>::Type TSize;
static const TBitVector ALL_ONE = ~(TBitVector)0 >> TTraits::WASTED_BITS;
THostIterator it = begin(host(me), Standard());
THostIterator itEnd = end(host(me), Standard());
if (it == itEnd)
return;
// zero all wasted bits
if (TTraits::WASTED_BITS != 0)
for (++it; it != itEnd; ++it)
it->i &= ALL_ONE;
// zero the last half-filled tuple
TSize lastValues = length(me) % TTraits::VALUES_PER_HOST_VALUE;
if (lastValues != 0)
back(host(me)).i &= ALL_ONE & ~(ALL_ONE >> (lastValues * TTraits::BITS_PER_VALUE));
}
/*
template<typename TTarget, typename TSource1, typename TSource2>
inline void
_arrayConstructCopyDefault(TSource1 source_begin,
TSource2 source_end,
TTarget target_begin)
{
while (source_begin != source_end)
{
// NOTE(holtgrew): getValue() is used here since value() could return
// a proxy!
valueConstruct(target_begin, getValue(source_begin));
++source_begin;
++target_begin;
}
}
*/
// --------------------------------------------------------------------------
// Function arrayCopyForward()
// --------------------------------------------------------------------------
// Copy segment of a source packed strings into a target packed string
//
// ------------------------------------
// | | | aaaBB|CCCCdd|d | source
// ------------------------------------
//
// ------------------------------------
// | | aaa|BBCCCC|ddd | | target
// ------------------------------------
template < typename TPackedString, typename TSpec >
inline void
arrayCopyForward(Iter<TPackedString, Packed<TSpec> > source_begin,
Iter<TPackedString, Packed<TSpec> > source_end,
Iter<TPackedString, Packed<TSpec> > target_begin)
{
typedef PackedTraits_<TPackedString> TTraits;
typedef typename TTraits::THostValue THostValue;
typedef typename Size<TPackedString>::Type TSize;
typedef typename Host<Iter<TPackedString, Packed<TSpec> > >::Type THostIter;
TSize size = source_end - source_begin;
// will we touch more than one word in the target string?
if (size > (TSize)(TTraits::VALUES_PER_HOST_VALUE - target_begin.localPos))
{
// first, copy all values to a target word boundary (a's in figure above)
if (target_begin.localPos != 0)
{
while (target_begin.localPos != TTraits::VALUES_PER_HOST_VALUE)
{
assignValue(target_begin, getValue(source_begin));
++source_begin;
++target_begin.localPos;
}
target_begin.localPos = 0;
++hostIterator(target_begin);
}
// now copy whole words
int leftShift = source_begin.localPos;
if (leftShift != 0)
{
THostIter source_lastWord = hostIterator(source_end);
if (source_end.localPos < source_begin.localPos)
--source_lastWord;
typename THostValue::TBitVector prevWord = hostIterator(source_begin)->i;
int rightShift = TTraits::VALUES_PER_HOST_VALUE - leftShift;
leftShift *= TTraits::BITS_PER_VALUE;
rightShift *= TTraits::BITS_PER_VALUE;
for (; hostIterator(source_begin) != source_lastWord; ++hostIterator(target_begin))
{
// words must be shifted and or'ed (BB|CCCC in the figure)
++hostIterator(source_begin);
typename THostValue::TBitVector curWord = hostIterator(source_begin)->i;
hostIterator(target_begin)->i = (prevWord << leftShift) | (curWord >> rightShift);
prevWord = curWord;
}
}
else
{
// words need not to be shifted
arrayCopyForward(hostIterator(source_begin), hostIterator(source_end), hostIterator(target_begin));
hostIterator(target_begin) += hostIterator(source_end) - hostIterator(source_begin);
}
}
// copy (less than VALUES_PER_HOST_VALUE many) remaining values (d's in figure above)
while (source_begin.localPos != source_end.localPos)
{
assignValue(target_begin, getValue(source_begin));
++source_begin;
++target_begin.localPos;
}
}
// --------------------------------------------------------------------------
// Function arrayCopyBackward()
// --------------------------------------------------------------------------
// Copy segment of a source packed strings into a target packed string
//
// ------------------------------------
// | | | aaaBB|CCCCdd|d | source
// ------------------------------------
//
// ------------------------------------
// | | | aaa|BBCCCC|ddd | target
// ------------------------------------
template < typename TPackedString, typename TSpec >
inline void
arrayCopyBackward(Iter<TPackedString, Packed<TSpec> > source_begin,
Iter<TPackedString, Packed<TSpec> > source_end,
Iter<TPackedString, Packed<TSpec> > target_begin)
{
typedef PackedTraits_<TPackedString> TTraits;
typedef typename TTraits::THostValue THostValue;
typedef typename Size<TPackedString>::Type TSize;
typedef typename Host<Iter<TPackedString, Packed<TSpec> > >::Type THostIter;
// iterator to the first whole word in the target
THostIter target_firstWord = hostIterator(target_begin);
if (target_begin.localPos != 0)
++target_firstWord;
TSize size = source_end - source_begin;
target_begin += size;
// will we touch more than one word in the target string?
if (size > (TSize)target_begin.localPos)
{
// first, copy all values to a target word boundary (a's in figure above)
while (target_begin.localPos != 0)
{
--source_end;
--target_begin.localPos;
assignValue(target_begin, getValue(source_end));
}
// now copy whole words
int leftShift = source_end.localPos;
if (leftShift != 0)
{
typename THostValue::TBitVector prevWord = hostIterator(source_end)->i;
int rightShift = TTraits::VALUES_PER_HOST_VALUE - leftShift;
leftShift *= TTraits::BITS_PER_VALUE;
rightShift *= TTraits::BITS_PER_VALUE;
while (hostIterator(target_begin) != target_firstWord)
{
--hostIterator(source_end);
--hostIterator(target_begin);
// words must be shifted and or'ed (BB|CCCC in the figure)
typename THostValue::TBitVector curWord = hostIterator(source_end)->i;
hostIterator(target_begin)->i = (curWord << leftShift) | (prevWord >> rightShift);
prevWord = curWord;
}
}
else
{
// words need not to be shifted
while (hostIterator(target_begin) != target_firstWord)
{
--hostIterator(source_end);
--hostIterator(target_begin);
*hostIterator(target_begin) = getValue(hostIterator(source_end));
}
}
// now we are at the end of a word and the next --target_begin would
// decrease hostIterator(target_begin) and set localPos to TTraits::VALUES_PER_HOST_VALUE - 1
--hostIterator(target_begin);
target_begin.localPos = TTraits::VALUES_PER_HOST_VALUE;
}
// copy (less than VALUES_PER_HOST_VALUE many) remaining values (d's in figure above)
while (source_end.localPos != source_begin.localPos)
{
--source_end;
--target_begin.localPos;
assignValue(target_begin, getValue(source_end));
}
}
template<typename TPackedString, typename TSpec, typename TValue2>
inline void
arrayFill(Iter<TPackedString, Packed<TSpec> > begin_,
Iter<TPackedString, Packed<TSpec> > end_,
TValue2 const & value)
{
typedef PackedTraits_<TPackedString> TTraits;
typedef typename TTraits::THostValue THostValue;
typedef typename THostValue::TBitVector TBitVector;
typedef typename Value<TPackedString>::Type TValue;
THostValue fillValue;
fillValue.i = FillMultiplierRecursion_<
TBitVector,
TTraits::BITS_PER_VALUE,
TTraits::VALUES_PER_HOST_VALUE>::VALUE * ordValue((TValue)value);
static const TBitVector ALL_ONE = ~(TBitVector)0 >> TTraits::WASTED_BITS;
TBitVector maskB = ALL_ONE >> (begin_.localPos * TTraits::BITS_PER_VALUE); // begin mask (0..keep old value, 1..fill value)
TBitVector maskE = ~(ALL_ONE >> ( end_.localPos * TTraits::BITS_PER_VALUE)); // end mask
if (hostIterator(begin_) == hostIterator(end_))
{
maskE &= maskB; // intersect masks if beginning and end are in the same word
}
else
{
if (begin_.localPos != 0)
{
hostIterator(begin_)->i = (hostIterator(begin_)->i & ~maskB) | (fillValue.i & maskB); // blend with begin mask
++hostIterator(begin_);
}
arrayFill(hostIterator(begin_), hostIterator(end_), fillValue); // fill whole words
if (end_.localPos == 0) // don't touch last word (if we don't need to)
return;
}
hostIterator(end_)->i = (hostIterator(end_)->i & ~maskE) | (fillValue.i & maskE); // blend with end mask
}
// TODO(weese): The following wrappers are boiler-plate code and should be not necessary in the new sequence interface
// --------------------------------------------------------------------------
// Function arrayMoveForward()
// --------------------------------------------------------------------------
// TODO(weese): There should be default wrappers using arrayCopyForward (so that these overloads are not necessary)
template < typename TPackedString, typename TSpec >
inline void
arrayMoveForward(Iter<TPackedString, Packed<TSpec> > source_begin,
Iter<TPackedString, Packed<TSpec> > source_end,
Iter<TPackedString, Packed<TSpec> > target_begin)
{
arrayCopyForward(source_begin, source_end, target_begin);
}
// --------------------------------------------------------------------------
// Function arrayMoveBackward()
// --------------------------------------------------------------------------
// TODO(weese): There should be default wrappers using arrayCopyBackward (so that these overloads are not necessary)
template < typename TPackedString, typename TSpec >
inline void
arrayMoveBackward(Iter<TPackedString, Packed<TSpec> > source_begin,
Iter<TPackedString, Packed<TSpec> > source_end,
Iter<TPackedString, Packed<TSpec> > target_begin)
{
arrayCopyBackward(source_begin, source_end, target_begin);
}
// --------------------------------------------------------------------------
// Function arrayConstructCopy()
// --------------------------------------------------------------------------
// TODO(weese): it should be not necessary to overload construct/destruct functions for POD/Simple types (IsSimple == true)
template < typename TPackedString, typename TSpec >
inline void
arrayConstructCopy(Iter<TPackedString, Packed<TSpec> > source_begin,
Iter<TPackedString, Packed<TSpec> > source_end,
Iter<TPackedString, Packed<TSpec> > target_begin)
{
arrayCopyForward(source_begin, source_end, target_begin);
}
// TODO(weese): it should be not necessary to overload construct/destruct functions for POD/Simple types (IsSimple == true)
template < typename TPackedString, typename TSpec >
inline void
arrayConstruct(Iter<TPackedString, Packed<TSpec> > begin_,
Iter<TPackedString, Packed<TSpec> > end_)
{
// TODO(weese:) actually, I don't want this default zero-initialization for POD/Simple types
// If someone still needs zero-fill resize, he/she should use the function below
arrayFill(begin_, end_, typename Value<TPackedString>::Type());
}
template < typename TPackedString, typename TSpec, typename TParam >
inline void
arrayConstruct(Iter<TPackedString, Packed<TSpec> > begin_,
Iter<TPackedString, Packed<TSpec> > end_,
TParam const & param_)
{
arrayFill(begin_, end_, param_);
}
// --------------------------------------------------------------------------
// Function arrayDestructCopy()
// --------------------------------------------------------------------------
// TODO(weese): it should be not necessary to overload construct/destruct functions for POD/Simple types (IsSimple == true)
template < typename TPackedString, typename TSpec >
inline void
arrayDestruct(Iter<TPackedString, Packed<TSpec> >,
Iter<TPackedString, Packed<TSpec> >)
{
}
// --------------------------------------------------------------------------
// Function _clearSpace()
//
// Helper struct ClearSpaceStringPacked_.
// --------------------------------------------------------------------------
//implementation for all expand tags other than "limit"
template <typename TExpand>
struct ClearSpaceStringPacked_
{
template <typename T>
static inline typename Size<T>::Type
_clearSpace_(
T & seq,
typename Size<T>::Type size)
{
typedef typename Size<T>::Type TSize;
TSize wanted_host_length = PackedTraits_<T>::toHostLength1(size);
TSize new_host_length = resize(host(seq), wanted_host_length, TExpand());
if (new_host_length == 0)
return 0;
if (new_host_length < wanted_host_length)
size = (new_host_length - 1) * PackedTraits_<T>::VALUES_PER_HOST_VALUE;
_setLength(seq, size);
return size;
}
template <typename T>
static inline typename Size<T>::Type
_clearSpace_(
T & seq,
typename Size<T>::Type size,
typename Size<T>::Type limit)
{
if (size > limit)
size = limit;
return _clearSpace_(seq, limit);
}
template <typename T>
static inline typename Size<T>::Type
_clearSpace_(
T & seq,
typename Size<T>::Type size,
typename Size<T>::Type start,
typename Size<T>::Type end)
{
return _clearSpace_(seq, size, start, end, std::numeric_limits<typename Size<T>::Type >::max());
}
template <typename T>
static typename Size<T>::Type
_clearSpace_(
T & seq,
typename Size<T>::Type size,
typename Size<T>::Type start,
typename Size<T>::Type end,
typename Size<T>::Type limit)
{
//??? TODO: This function can be accelerated this way:
// - move values in host
// - avoid double moving of the rest-part if "resize" allocates a new block
typedef typename Size<T>::Type TSize;
TSize old_length = length(seq);
TSize old_size = end - start;
TSize wanted_new_length = _min(old_length + size - old_size, limit);
TSize wanted_host_length = PackedTraits_<T>::toHostLength1(wanted_new_length);
TSize new_host_length = resize(host(seq), wanted_host_length, TExpand());
TSize new_length;
if (new_host_length < wanted_host_length)
{
new_length = (new_host_length == 0)? 0: (new_host_length - 1) * PackedTraits_<T>::VALUES_PER_HOST_VALUE;
if (new_length <= start + size)
goto FINISH;
old_length = new_length - size + old_size;
}
else
{
new_length = wanted_new_length;
}
arrayCopy(iter(seq, end, Standard()), iter(seq, old_length, Standard()), iter(seq, end + size - old_size, Standard()));
FINISH:
_setLength(seq, new_length);
return size;
}
/*
template <typename T>
static inline typename Size<T>::Type
_clearSpace_(
T & seq,
typename Size<T>::Type size,
typename Iterator<T>::Type start,
typename Iterator<T>::Type end)
{
typename Iterator<T>::Type seq_begin = begin(seq);
return _clearSpace(seq, size, start - seq_begin, end - seq_begin, Insist());
}
template <typename T>
static inline typename Size<T>::Type
_clearSpace_(
T & seq,
typename Size<T>::Type size,
typename Iterator<T>::Type start,
typename Iterator<T>::Type end,
typename Size<T>::Type limit)
{
typename Iterator<T>::Type seq_begin = begin(seq);
return _clearSpace(seq, size, start - seq_begin, end - seq_begin, limit, Insist());
}
*/
};
template<typename TValue, typename THostspec, typename TSize, typename TExpand>
inline typename Size< String<TValue, Packed<THostspec> > >::Type
_clearSpace(String<TValue, Packed<THostspec> > & me,
TSize size,
Tag<TExpand>)
{
return ClearSpaceStringPacked_<Tag<TExpand> >::_clearSpace_(me, size);
}
template<typename TValue, typename THostspec, typename TSize, typename TCapacity, typename TExpand>
inline typename Size< String<TValue, Packed<THostspec> > >::Type
_clearSpace(String<TValue, Packed<THostspec> > & me,
TSize size,
TCapacity limit,
Tag<TExpand>)
{
return ClearSpaceStringPacked_<Tag<TExpand> >::_clearSpace_(me, size, limit);
}
template<typename TValue, typename THostspec, typename TSize, typename TPosition, typename TExpand>
inline typename Size< String<TValue, Packed<THostspec> > >::Type
_clearSpace(String<TValue, Packed<THostspec> > & me,
TSize size,
TPosition pos_begin,
TPosition pos_end,
Tag<TExpand>)
{
return ClearSpaceStringPacked_<Tag<TExpand> >::_clearSpace_(me, size, pos_begin, pos_end);
}
template<typename TValue, typename THostspec, typename TSize, typename TPosition, typename TCapacity, typename TExpand>
inline typename Size< String<TValue, Packed<THostspec> > >::Type
_clearSpace(String<TValue, Packed<THostspec> > & me,
TSize size,
TPosition pos_begin,
TPosition pos_end,
TCapacity limit,
Tag<TExpand>)
{
return ClearSpaceStringPacked_<Tag<TExpand> >::_clearSpace_(me, size, pos_begin, pos_end, limit);
}
// --------------------------------------------------------------------------
// Function reserve()
// --------------------------------------------------------------------------
template <typename TValue, typename TSpec, typename TSize_, typename TExpand>
inline typename Size< String<TValue, Packed<TSpec> > >::Type
reserve(
String<TValue, Packed<TSpec> > & seq,
TSize_ new_capacity,
Tag<TExpand> tag)
{
reserve(host(seq), PackedTraits_<String<TValue, Packed<TSpec> > >::toHostLength1(new_capacity), tag);
return capacity(seq);
}
// ****************************************************************************
// Functions for Packed String Iter
// ****************************************************************************
// --------------------------------------------------------------------------
// Function hostIterator()
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
inline typename Host<Iter<TPackedString, Packed<THostspec> > >::Type &
hostIterator(Iter<TPackedString, Packed<THostspec> > & me)
{
return me.data_iterator;
}
template <typename TPackedString, typename THostspec>
inline typename Host<Iter<TPackedString, Packed<THostspec> > const>::Type &
hostIterator(Iter<TPackedString, Packed<THostspec> > const & me)
{
return me.data_iterator;
}
// --------------------------------------------------------------------------
// Function value()
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
inline typename Reference<Iter<TPackedString, Packed<THostspec> > >::Type
value(Iter<TPackedString, Packed<THostspec> > & me)
{
return typename Reference<Iter<TPackedString, Packed<THostspec> > >::Type(me);
}
template <typename TPackedString, typename THostspec>
inline typename Reference<Iter<TPackedString, Packed<THostspec> > const>::Type
value(Iter<TPackedString, Packed<THostspec> > const & me)
{
return typename Reference<Iter<TPackedString, Packed<THostspec> > const>::Type(me);
}
template <typename TPackedString, typename THostspec>
inline typename Reference<Iter<TPackedString const, Packed<THostspec> > >::Type
value(Iter<TPackedString const, Packed<THostspec> > & me)
{
return getValue(hostIterator(me))[me.localPos];
}
template <typename TPackedString, typename THostspec>
inline typename Reference<Iter<TPackedString const, Packed<THostspec> > const>::Type
value(Iter<TPackedString const, Packed<THostspec> > const & me)
{
return getValue(hostIterator(me))[me.localPos];
}
// --------------------------------------------------------------------------
// Function getValue()
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
inline typename GetValue<Iter<TPackedString, Packed<THostspec> > >::Type
getValue(Iter<TPackedString, Packed<THostspec> > & me)
{
return getValue(hostIterator(me))[me.localPos];
}
template <typename TPackedString, typename THostspec>
inline typename GetValue<Iter<TPackedString, Packed<THostspec> > const>::Type
getValue(Iter<TPackedString, Packed<THostspec> > const & me)
{
return getValue(hostIterator(me))[me.localPos];
}
// --------------------------------------------------------------------------
// Function assignValue()
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec, typename TValue>
inline void
assignValue(Iter<TPackedString, Packed<THostspec> > const & me,
TValue const & _value)
{
typedef Iter<TPackedString, Packed<THostspec> > const TIterator;
assignValue(value(hostIterator(me)), me.localPos, (typename Value<TIterator>::Type)_value);
}
template <typename TPackedString, typename THostspec, typename TValue>
inline void
assignValue(Iter<TPackedString, Packed<THostspec> > & me,
TValue const & _value)
{
typedef Iter<TPackedString, Packed<THostspec> > TIterator;
assignValue(value(hostIterator(me)), me.localPos, (typename Value<TIterator>::Type)_value);
}
// --------------------------------------------------------------------------
// Function moveValue()
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec, typename TValue>
inline void
moveValue(Iter<TPackedString, Packed<THostspec> > & me,
TValue const & _value)
{
assignValue(me, _value);
}
template <typename TPackedString, typename THostspec, typename TValue>
inline void
moveValue(Iter<TPackedString, Packed<THostspec> > const & me,
TValue const & _value)
{
assignValue(me, _value);
}
// --------------------------------------------------------------------------
// Function valueConstruct()
// --------------------------------------------------------------------------
//emulate construction and destruction
template <typename TPackedString, typename THostspec>
inline void
valueConstruct(Iter<TPackedString, Packed<THostspec> > const & /*it*/)
{
// TODO(holtgrew): Why not assign default-constructed?
}
template <typename TPackedString, typename THostspec, typename TParam>
inline void
valueConstruct(Iter<TPackedString, Packed<THostspec> > const & it,
TParam && param_)
{
assignValue(it, std::forward<TParam>(param_));
}
// --------------------------------------------------------------------------
// Function valueDestruct()
// --------------------------------------------------------------------------
// Packed strings cannot contain non-POD data types.
template <typename TPackedString, typename THostspec>
inline void
valueDestruct(Iter<TPackedString, Packed<THostspec> > const & /*it*/)
{
}
// --------------------------------------------------------------------------
// Function operator==()
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
inline bool
operator==(Iter<TPackedString, Packed<THostspec> > const & left,
Iter<TPackedString, Packed<THostspec> > const & right)
{
return (hostIterator(left) == hostIterator(right)) && (left.localPos == right.localPos);
}
// --------------------------------------------------------------------------
// Function operator!=()
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
inline bool
operator!=(Iter<TPackedString, Packed<THostspec> > const & left,
Iter<TPackedString, Packed<THostspec> > const & right)
{
return (hostIterator(left) != hostIterator(right)) || (left.localPos != right.localPos);
}
// --------------------------------------------------------------------------
// Function operator>()
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
inline bool
operator>(Iter<TPackedString, Packed<THostspec> > const & left,
Iter<TPackedString, Packed<THostspec> > const & right)
{
return (hostIterator(left) > hostIterator(right)) || ((hostIterator(left) == hostIterator(right)) && (left.localPos > right.localPos));
}
// --------------------------------------------------------------------------
// Function operator>=()
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
inline bool
operator>=(Iter<TPackedString, Packed<THostspec> > const & left,
Iter<TPackedString, Packed<THostspec> > const & right)
{
return (hostIterator(left) > hostIterator(right)) || ((hostIterator(left) == hostIterator(right)) && (left.localPos >= right.localPos));
}
// --------------------------------------------------------------------------
// Function operator<()
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
inline bool
operator<(Iter<TPackedString, Packed<THostspec> > const & left,
Iter<TPackedString, Packed<THostspec> > const & right)
{
return (hostIterator(left) < hostIterator(right)) || ((hostIterator(left) == hostIterator(right)) && (left.localPos < right.localPos));
}
// --------------------------------------------------------------------------
// Function operator<=()
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
inline bool
operator <= (Iter<TPackedString, Packed<THostspec> > const & left,
Iter<TPackedString, Packed<THostspec> > const & right)
{
return (hostIterator(left) < hostIterator(right)) || ((hostIterator(left) == hostIterator(right)) && (left.localPos <= right.localPos));
}
// --------------------------------------------------------------------------
// Function operator++()
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
inline Iter<TPackedString, Packed<THostspec> > &
operator++(Iter<TPackedString, Packed<THostspec> > & me)
{
if (++me.localPos == PackedTraits_<TPackedString>::VALUES_PER_HOST_VALUE)
{
me.localPos = 0;
++hostIterator(me);
}
return me;
}
// --------------------------------------------------------------------------
// Function operator--()
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
inline Iter<TPackedString, Packed<THostspec> > &
operator--(Iter<TPackedString, Packed<THostspec> > & me)
{
if (me.localPos-- == 0)
{
me.localPos = PackedTraits_<TPackedString>::VALUES_PER_HOST_VALUE - 1;
--hostIterator(me);
}
return me;
}
// --------------------------------------------------------------------------
// Function operator+() for (iter, integral)
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec, typename TIntegral>
inline Iter<TPackedString, Packed<THostspec> >
operator+(Iter<TPackedString, Packed<THostspec> > const & iter,
TIntegral const & delta)
{
typedef PackedTraits_<TPackedString> TTraits;
if (isNegative(delta))
return iter - (-(typename MakeSigned<TIntegral>::Type)delta);
TIntegral ofs = (TIntegral)iter.localPos + delta;
return Iter<TPackedString, Packed<THostspec> >(
hostIterator(iter) + ofs / TTraits::VALUES_PER_HOST_VALUE,
ofs % TTraits::VALUES_PER_HOST_VALUE);
}
template <typename TPackedString, typename THostspec, typename TIntegral>
inline Iter<TPackedString, Packed<THostspec> >
operator+(TIntegral const & delta,
Iter<TPackedString, Packed<THostspec> > const & iter)
{
typedef PackedTraits_<TPackedString> TTraits;
if (isNegative(delta))
return iter - (-(typename MakeSigned<TIntegral>::Type)delta);
TIntegral ofs = (TIntegral)iter.localPos + delta;
return Iter<TPackedString, Packed<THostspec> >(
hostIterator(iter) + ofs / TTraits::VALUES_PER_HOST_VALUE,
ofs % TTraits::VALUES_PER_HOST_VALUE);
}
// --------------------------------------------------------------------------
// Function operator+=() for (iter, integral)
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec, typename TIntegral>
inline Iter<TPackedString, Packed<THostspec> > &
operator+=(Iter<TPackedString, Packed<THostspec> > & iter,
TIntegral const & delta)
{
typedef PackedTraits_<TPackedString> TTraits;
if (isNegative(delta))
return iter -= -(typename MakeSigned<TIntegral>::Type)delta;
TIntegral ofs = (TIntegral)iter.localPos + delta;
hostIterator(iter) += ofs / TTraits::VALUES_PER_HOST_VALUE;
iter.localPos = ofs % TTraits::VALUES_PER_HOST_VALUE;
return iter;
}
// --------------------------------------------------------------------------
// Function operator-() for (iter, integral)
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec, typename TIntegral>
inline Iter<TPackedString, Packed<THostspec> >
operator-(Iter<TPackedString, Packed<THostspec> > const & iter,
TIntegral const & delta)
{
typedef PackedTraits_<TPackedString> TTraits;
if (isNegative(delta))
return iter + (-(typename MakeSigned<TIntegral>::Type)delta);
TIntegral ofs = delta + (TIntegral)(TTraits::VALUES_PER_HOST_VALUE - 1) - (TIntegral)iter.localPos;
return Iter<TPackedString, Packed<THostspec> >(
hostIterator(iter) - ofs / TTraits::VALUES_PER_HOST_VALUE,
(TTraits::VALUES_PER_HOST_VALUE - 1) - (ofs % TTraits::VALUES_PER_HOST_VALUE));
}
// --------------------------------------------------------------------------
// Function operator-=() for (iter, integral)
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec, typename TIntegral>
inline Iter<TPackedString, Packed<THostspec> > &
operator-=(Iter<TPackedString, Packed<THostspec> > & iter,
TIntegral const & delta)
{
typedef PackedTraits_<TPackedString> TTraits;
if (isNegative(delta))
return iter += -(typename MakeSigned<TIntegral>::Type)delta;
TIntegral ofs = delta + (TIntegral)(TTraits::VALUES_PER_HOST_VALUE - 1) - (TIntegral)iter.localPos;
hostIterator(iter) -= ofs / TTraits::VALUES_PER_HOST_VALUE;
iter.localPos = (TTraits::VALUES_PER_HOST_VALUE - 1) - (ofs % TTraits::VALUES_PER_HOST_VALUE);
return iter;
}
// --------------------------------------------------------------------------
// Function operator-() for (iter, iter)
// --------------------------------------------------------------------------
template <typename TPackedString, typename THostspec>
inline typename Difference<Iter<TPackedString, Packed<THostspec> > >::Type
operator-(Iter<TPackedString, Packed<THostspec> > const & iterLeft,
Iter<TPackedString, Packed<THostspec> > const & iterRight)
{
typedef PackedTraits_<TPackedString> TTraits;
typedef typename Difference<Iter<TPackedString, Packed<THostspec> > >::Type TDiff;
return (TDiff)(hostIterator(iterLeft) - hostIterator(iterRight)) * (TDiff)TTraits::VALUES_PER_HOST_VALUE +
(TDiff)iterLeft.localPos - (TDiff)iterRight.localPos;
}
// ----------------------------------------------------------------------------
// Function bitScanReverse()
// ----------------------------------------------------------------------------
template <typename THostSpec>
inline typename Position<String<bool, Packed<THostSpec> > >::Type
bitScanReverse(String<bool, Packed<THostSpec> > const & obj)
{
typedef String<bool, Packed<THostSpec> > TPackedString;
typedef typename Position<TPackedString>::Type TPosition;
typedef typename Host<TPackedString>::Type TPackedHost;
typedef typename Iterator<TPackedHost const, Standard>::Type TConstPackedHostIterator;
typedef PackedTraits_<TPackedString> TTraits;
typedef typename TTraits::THostValue THostValue; // Is a tuple.
typedef typename THostValue::TBitVector TBitVector;
if (empty(host(obj)))
return std::numeric_limits<TPosition>::max();
TConstPackedHostIterator it = end(host(obj), Standard()) - 1;
TConstPackedHostIterator itBegin = begin(host(obj), Standard());
// We need to treat the last value differently, because it's possible not all bits are in use.
TBitVector lastVal = it->i & (~static_cast<TBitVector>(0) <<
(BitsPerValue<TBitVector>::VALUE - (length(obj) % BitsPerValue<TBitVector>::VALUE)));
if (!testAllZeros(lastVal))
return (((it - itBegin) - 1) * BitsPerValue<TBitVector>::VALUE) +
(BitsPerValue<TBitVector>::VALUE - 1) - bitScanForward(lastVal);
--it;
for(;it != itBegin && testAllZeros(*it); --it)
{}
if (it != itBegin)
return (((it - itBegin) - 1) * BitsPerValue<TBitVector>::VALUE) +
(BitsPerValue<TBitVector>::VALUE - 1) - bitScanForward(it->i);
return length(obj);
}
// ----------------------------------------------------------------------------
// Function bitScanForward()
// ----------------------------------------------------------------------------
template <typename THostSpec>
inline typename Position<String<bool, Packed<THostSpec> > >::Type
bitScanForward(String<bool, Packed<THostSpec> > const & obj)
{
typedef String<bool, Packed<THostSpec> > TPackedString;
typedef typename Position<TPackedString>::Type TPosition;
typedef typename Host<TPackedString>::Type TPackedHost;
typedef typename Iterator<TPackedHost const, Standard>::Type TConstPackedHostIterator;
typedef PackedTraits_<TPackedString> TTraits;
typedef typename TTraits::THostValue THostValue;
typedef typename THostValue::TBitVector TBitVector;
if (empty(host(obj)))
return std::numeric_limits<TPosition>::max();
TConstPackedHostIterator itBegin = begin(host(obj), Standard()) + 1;
TConstPackedHostIterator it = itBegin;
TConstPackedHostIterator itEnd = end(host(obj), Standard()) - 1;
for (; it != itEnd && testAllZeros(*it); ++it)
{}
// If last element is not 0, we return the last position. Note, that we do not check for the returned index to be
// bigger than the length of the string. The caller has to do this.
TBitVector lastVal = (it != itEnd) ? it->i :
it->i & (~static_cast<TBitVector>(0) << (BitsPerValue<TBitVector>::VALUE -
(length(obj) % BitsPerValue<TBitVector>::VALUE)));
if (testAllZeros(lastVal))
return length(obj);
return ((it - itBegin) * BitsPerValue<TBitVector>::VALUE) + (BitsPerValue<TBitVector>::VALUE - 1) - bitScanReverse(lastVal);
}
// ----------------------------------------------------------------------------
// Function transform()
// ----------------------------------------------------------------------------
template <typename THostSpec, typename TBinaryFunctor>
inline void transform(String<bool, Packed<THostSpec> > & target,
String<bool, Packed<THostSpec> > const & lhs,
String<bool, Packed<THostSpec> > const & rhs,
TBinaryFunctor const & binaryFunctor)
{
typedef String<bool, Packed<THostSpec> > TBitVector;
typedef typename Host<TBitVector>::Type THost;
typedef typename Iterator<THost const, Standard>::Type TConstIterator;
typedef typename Iterator<THost, Standard>::Type TIterator;
if (empty(host(lhs)) || empty(host(rhs)))
return;
SEQAN_ASSERT_EQ(length(lhs), length(rhs));
resize(target, length(lhs), Exact());
TConstIterator itLhsBegin = begin(host(lhs), Standard()) + 1;
TConstIterator itLhsEnd = end(host(lhs), Standard());
TConstIterator itRhsBegin = begin(host(rhs), Standard()) + 1;
TIterator itTarget = begin(host(target), Standard()) + 1;
std::transform(itLhsBegin, itLhsEnd, itRhsBegin, itTarget, binaryFunctor);
}
// ----------------------------------------------------------------------------
// Function transform()
// ----------------------------------------------------------------------------
template <typename THostSpec, typename TUnaryFunctor>
inline void transform(String<bool, Packed<THostSpec> > & target,
String<bool, Packed<THostSpec> > const & src,
TUnaryFunctor const & unaryFunctor)
{
typedef String<bool, Packed<THostSpec> > TBitVector;
typedef typename Host<TBitVector>::Type THost;
typedef typename Iterator<THost const, Standard>::Type TConstIterator;
typedef typename Iterator<THost, Standard>::Type TIterator;
if (empty(host(src)))
return;
resize(target, length(src), Exact());
TConstIterator itSrcBegin = begin(host(src), Standard()) + 1;
TConstIterator itSrcEnd = end(host(src), Standard());
TIterator itTarget = begin(host(target), Standard()) + 1;
std::transform(itSrcBegin, itSrcEnd, itTarget, unaryFunctor);
}
// ----------------------------------------------------------------------------
// Function operator|
// ----------------------------------------------------------------------------
template <typename THostSpec>
inline String<bool, Packed<THostSpec> >
operator|(String<bool, Packed<THostSpec> > const & lhs, String<bool, Packed<THostSpec> > const & rhs)
{
String<bool, Packed<THostSpec> > tmp;
transform(tmp, lhs, rhs, FunctorBitwiseOr());
return tmp;
}
// ----------------------------------------------------------------------------
// Function operator|=
// ----------------------------------------------------------------------------
template <typename THostSpec>
inline String<bool, Packed<THostSpec> > &
operator|=(String<bool, Packed<THostSpec> > & lhs, String<bool, Packed<THostSpec> > const & rhs)
{
transform(lhs, lhs, rhs, FunctorBitwiseOr());
return lhs;
}
// ----------------------------------------------------------------------------
// Function operator&
// ----------------------------------------------------------------------------
template <typename THostSpec>
inline String<bool, Packed<THostSpec> >
operator&(String<bool, Packed<THostSpec> > const & lhs, String<bool, Packed<THostSpec> > const & rhs)
{
String<bool, Packed<THostSpec> > tmp;
transform(tmp, lhs, rhs, FunctorBitwiseAnd());
return tmp;
}
// ----------------------------------------------------------------------------
// Function operator&=
// ----------------------------------------------------------------------------
template <typename THostSpec>
inline String<bool, Packed<THostSpec> > &
operator&=(String<bool, Packed<THostSpec> > & lhs, String<bool, Packed<THostSpec> > const & rhs)
{
transform(lhs, lhs, rhs, FunctorBitwiseAnd());
return lhs;
}
// ----------------------------------------------------------------------------
// Function operator~
// ----------------------------------------------------------------------------
template <typename THostSpec>
inline String<bool, Packed<THostSpec> >
operator~(String<bool, Packed<THostSpec> > const & vec)
{
String<bool, Packed<THostSpec> > tmp;
transform(tmp, vec, FunctorBitwiseNot());
return tmp;
}
// ----------------------------------------------------------------------------
// Function operator^
// ----------------------------------------------------------------------------
template <typename THostSpec>
inline String<bool, Packed<THostSpec> >
operator^(String<bool, Packed<THostSpec> > const & lhs, String<bool, Packed<THostSpec> > const & rhs)
{
String<bool, Packed<THostSpec> > tmp;
transform(tmp, lhs, rhs, FunctorBitwiseXor());
return tmp;
}
// ----------------------------------------------------------------------------
// Function operator^=
// ----------------------------------------------------------------------------
template <typename THostSpec>
inline String<bool, Packed<THostSpec> > &
operator^=(String<bool, Packed<THostSpec> > & lhs, String<bool, Packed<THostSpec> > const & rhs)
{
transform(lhs, lhs, rhs, FunctorBitwiseXor());
return lhs;
}
// ----------------------------------------------------------------------------
// Function _packedStringTestAll()
// ----------------------------------------------------------------------------
template <typename THostSpec, typename TTester>
inline bool
_packedStringTestAll(String<bool, Packed<THostSpec> > const & obj, TTester const & tester)
{
typedef String<bool, Packed<THostSpec> > TPackedString;
typedef typename Host<TPackedString>::Type TPackedHost;
typedef typename Iterator<TPackedHost const>::Type TConstIterator;
if (empty(host(obj)))
return false;
TConstIterator itFirst = begin(host(obj), Standard()) + 1;
TConstIterator itLast = end(host(obj), Standard()) - 1;
while (itFirst != itLast && tester(*itFirst, False()))
++itFirst;
if (itFirst != itLast)
return false;
return tester(*(itFirst), True()); // Test last case.
}
// ----------------------------------------------------------------------------
// Function testAllZeros()
// ----------------------------------------------------------------------------
template <typename THostSpec>
inline bool
testAllZeros(String<bool, Packed<THostSpec> > const & obj)
{
typedef String<bool, Packed<THostSpec> > TPackedString;
typedef PackedTraits_<TPackedString> TTraits;
return _packedStringTestAll(obj, FunctorTestAllZeros<TPackedString>((TTraits::VALUES_PER_HOST_VALUE -
(length(obj) % TTraits::VALUES_PER_HOST_VALUE))));
}
// ----------------------------------------------------------------------------
// Function testAllOnes()
// ----------------------------------------------------------------------------
template <typename THostSpec>
inline bool
testAllOnes(String<bool, Packed<THostSpec> > const & obj)
{
typedef String<bool, Packed<THostSpec> > TPackedString;
typedef PackedTraits_<TPackedString> TTraits;
return _packedStringTestAll(obj, FunctorTestAllOnes<TPackedString>((TTraits::VALUES_PER_HOST_VALUE -
(length(obj) % TTraits::VALUES_PER_HOST_VALUE))));
}
// ----------------------------------------------------------------------------
// Function open()
// ----------------------------------------------------------------------------
template <typename TValue, typename THostspec>
inline bool open(String<TValue, Packed<THostspec> > & me, const char *fileName, int openMode)
{
return open(host(me), fileName, openMode);
}
// ----------------------------------------------------------------------------
// Function save()
// ----------------------------------------------------------------------------
template <typename TValue, typename THostspec>
inline bool save(String<TValue, Packed<THostspec> > const & me, const char *fileName, int openMode)
{
// the visible part of the string is kept untouched and the function is thread-safe
_clearUnusedBits(const_cast<String<TValue, Packed<THostspec> > &>(me));
return save(host(me), fileName, openMode);
}
} // namespace seqan
#endif // #ifndef SEQAN_SEQUENCE_STRING_PACKED_H_
|