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 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "xetable.hxx"
#include <map>
#include <com/sun/star/i18n/ScriptType.hpp>
#include "scitems.hxx"
#include <svl/intitem.hxx>
#include "document.hxx"
#include "dociter.hxx"
#include "olinetab.hxx"
#include "formulacell.hxx"
#include "patattr.hxx"
#include "attrib.hxx"
#include "xehelper.hxx"
#include "xecontent.hxx"
#include "xeescher.hxx"
#include "xeextlst.hxx"
#include "tokenarray.hxx"
#include <thread>
#include <comphelper/threadpool.hxx>
#if defined(ANDROID)
namespace std
{
template<typename T>
T trunc(T x)
{
return ::trunc(x);
}
}
#endif
using namespace ::oox;
namespace ApiScriptType = ::com::sun::star::i18n::ScriptType;
// Helper records for cell records
XclExpStringRec::XclExpStringRec( const XclExpRoot& rRoot, const OUString& rResult ) :
XclExpRecord( EXC_ID3_STRING ),
mxResult( XclExpStringHelper::CreateString( rRoot, rResult ) )
{
OSL_ENSURE( (rRoot.GetBiff() <= EXC_BIFF5) || (mxResult->Len() > 0),
"XclExpStringRec::XclExpStringRec - empty result not allowed in BIFF8+" );
SetRecSize( mxResult->GetSize() );
}
void XclExpStringRec::WriteBody( XclExpStream& rStrm )
{
rStrm << *mxResult;
}
// Additional records for special formula ranges ==============================
XclExpRangeFmlaBase::XclExpRangeFmlaBase(
sal_uInt16 nRecId, sal_uInt32 nRecSize, const ScAddress& rScPos ) :
XclExpRecord( nRecId, nRecSize ),
maXclRange( ScAddress::UNINITIALIZED ),
maBaseXclPos( ScAddress::UNINITIALIZED )
{
maBaseXclPos.Set( static_cast< sal_uInt16 >( rScPos.Col() ), static_cast< sal_uInt16 >( rScPos.Row() ) );
maXclRange.maFirst = maXclRange.maLast = maBaseXclPos;
}
XclExpRangeFmlaBase::XclExpRangeFmlaBase(
sal_uInt16 nRecId, sal_uInt32 nRecSize, const ScRange& rScRange ) :
XclExpRecord( nRecId, nRecSize ),
maXclRange( ScAddress::UNINITIALIZED ),
maBaseXclPos( ScAddress::UNINITIALIZED )
{
maXclRange.Set(
static_cast< sal_uInt16 >( rScRange.aStart.Col() ),
static_cast< sal_uInt16 >( rScRange.aStart.Row() ),
static_cast< sal_uInt16 >( rScRange.aEnd.Col() ),
static_cast< sal_uInt16 >( rScRange.aEnd.Row() ) );
maBaseXclPos = maXclRange.maFirst;
}
bool XclExpRangeFmlaBase::IsBasePos( sal_uInt16 nXclCol, sal_uInt32 nXclRow ) const
{
return (maBaseXclPos.mnCol == nXclCol) && (maBaseXclPos.mnRow == nXclRow);
}
void XclExpRangeFmlaBase::Extend( const ScAddress& rScPos )
{
sal_uInt16 nXclCol = static_cast< sal_uInt16 >( rScPos.Col() );
sal_uInt32 nXclRow = static_cast< sal_uInt32 >( rScPos.Row() );
maXclRange.maFirst.mnCol = ::std::min( maXclRange.maFirst.mnCol, nXclCol );
maXclRange.maFirst.mnRow = ::std::min( maXclRange.maFirst.mnRow, nXclRow );
maXclRange.maLast.mnCol = ::std::max( maXclRange.maLast.mnCol, nXclCol );
maXclRange.maLast.mnRow = ::std::max( maXclRange.maLast.mnRow, nXclRow );
}
void XclExpRangeFmlaBase::WriteRangeAddress( XclExpStream& rStrm ) const
{
maXclRange.Write( rStrm, false );
}
// Array formulas =============================================================
XclExpArray::XclExpArray( XclTokenArrayRef xTokArr, const ScRange& rScRange ) :
XclExpRangeFmlaBase( EXC_ID3_ARRAY, 14 + xTokArr->GetSize(), rScRange ),
mxTokArr( xTokArr )
{
}
XclTokenArrayRef XclExpArray::CreateCellTokenArray( const XclExpRoot& rRoot ) const
{
return rRoot.GetFormulaCompiler().CreateSpecialRefFormula( EXC_TOKID_EXP, maBaseXclPos );
}
bool XclExpArray::IsVolatile() const
{
return mxTokArr->IsVolatile();
}
void XclExpArray::WriteBody( XclExpStream& rStrm )
{
WriteRangeAddress( rStrm );
sal_uInt16 nFlags = EXC_ARRAY_DEFAULTFLAGS;
::set_flag( nFlags, EXC_ARRAY_RECALC_ALWAYS, IsVolatile() );
rStrm << nFlags << sal_uInt32( 0 ) << *mxTokArr;
}
XclExpArrayBuffer::XclExpArrayBuffer( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot )
{
}
XclExpArrayRef XclExpArrayBuffer::CreateArray( const ScTokenArray& rScTokArr, const ScRange& rScRange )
{
const ScAddress& rScPos = rScRange.aStart;
XclTokenArrayRef xTokArr = GetFormulaCompiler().CreateFormula( EXC_FMLATYPE_MATRIX, rScTokArr, &rScPos );
OSL_ENSURE( maRecMap.find( rScPos ) == maRecMap.end(), "XclExpArrayBuffer::CreateArray - array exists already" );
XclExpArrayRef& rxRec = maRecMap[ rScPos ];
rxRec.reset( new XclExpArray( xTokArr, rScRange ) );
return rxRec;
}
XclExpArrayRef XclExpArrayBuffer::FindArray( const ScTokenArray& rScTokArr, const ScAddress& rBasePos ) const
{
XclExpArrayRef xRec;
// try to extract a matrix reference token
if (rScTokArr.GetLen() != 1)
// Must consist of a single reference token.
return xRec;
const formula::FormulaToken* pToken = rScTokArr.GetArray()[0];
if (!pToken || pToken->GetOpCode() != ocMatRef)
// not a matrix reference token.
return xRec;
const ScSingleRefData& rRef = *pToken->GetSingleRef();
ScAddress aAbsPos = rRef.toAbs(rBasePos);
XclExpArrayMap::const_iterator it = maRecMap.find(aAbsPos);
return (it == maRecMap.end()) ? xRec : xRec = it->second;
}
// Shared formulas ============================================================
XclExpShrfmla::XclExpShrfmla( XclTokenArrayRef xTokArr, const ScAddress& rScPos ) :
XclExpRangeFmlaBase( EXC_ID_SHRFMLA, 10 + xTokArr->GetSize(), rScPos ),
mxTokArr( xTokArr ),
mnUsedCount( 1 )
{
}
void XclExpShrfmla::ExtendRange( const ScAddress& rScPos )
{
Extend( rScPos );
++mnUsedCount;
}
XclTokenArrayRef XclExpShrfmla::CreateCellTokenArray( const XclExpRoot& rRoot ) const
{
return rRoot.GetFormulaCompiler().CreateSpecialRefFormula( EXC_TOKID_EXP, maBaseXclPos );
}
bool XclExpShrfmla::IsVolatile() const
{
return mxTokArr->IsVolatile();
}
void XclExpShrfmla::WriteBody( XclExpStream& rStrm )
{
WriteRangeAddress( rStrm );
rStrm << sal_uInt8( 0 ) << mnUsedCount << *mxTokArr;
}
XclExpShrfmlaBuffer::XclExpShrfmlaBuffer( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot )
{
}
bool XclExpShrfmlaBuffer::IsValidTokenArray( const ScTokenArray& rArray ) const
{
using namespace formula;
FormulaToken** pTokens = rArray.GetArray();
sal_uInt16 nLen = rArray.GetLen();
for (sal_uInt16 i = 0; i < nLen; ++i)
{
const FormulaToken* p = pTokens[i];
switch (p->GetType())
{
case svSingleRef:
{
const ScSingleRefData& rRefData = *p->GetSingleRef();
if (!GetFormulaCompiler().IsRef2D(rRefData))
// Excel's shared formula cannot include 3D reference.
return false;
}
break;
case svDoubleRef:
{
const ScComplexRefData& rRefData = *p->GetDoubleRef();
if (!GetFormulaCompiler().IsRef2D(rRefData))
// Excel's shared formula cannot include 3D reference.
return false;
}
break;
case svExternalSingleRef:
case svExternalDoubleRef:
case svExternalName:
// External references aren't allowed.
return false;
default:
;
}
}
return true;
}
XclExpShrfmlaRef XclExpShrfmlaBuffer::CreateOrExtendShrfmla(
const ScFormulaCell& rScCell, const ScAddress& rScPos )
{
XclExpShrfmlaRef xRec;
const ScTokenArray* pShrdScTokArr = rScCell.GetSharedCode();
if (!pShrdScTokArr)
// This formula cell is not shared formula cell.
return xRec;
// Check to see if this shared formula contains any tokens that Excel's shared formula cannot handle.
if (maBadTokens.count(pShrdScTokArr) > 0)
// Already on the black list. Skip it.
return xRec;
if (!IsValidTokenArray(*pShrdScTokArr))
{
// We can't export this as shared formula.
maBadTokens.insert(pShrdScTokArr);
return xRec;
}
TokensType::iterator aIt = maRecMap.find(pShrdScTokArr);
if( aIt == maRecMap.end() )
{
// create a new record
XclTokenArrayRef xTokArr = GetFormulaCompiler().CreateFormula( EXC_FMLATYPE_SHARED, *pShrdScTokArr, &rScPos );
xRec.reset( new XclExpShrfmla( xTokArr, rScPos ) );
maRecMap[ pShrdScTokArr ] = xRec;
}
else
{
// extend existing record
OSL_ENSURE( aIt->second, "XclExpShrfmlaBuffer::CreateOrExtendShrfmla - missing record" );
xRec = aIt->second;
xRec->ExtendRange( rScPos );
}
return xRec;
}
// Multiple operations ========================================================
XclExpTableop::XclExpTableop( const ScAddress& rScPos,
const XclMultipleOpRefs& rRefs, sal_uInt8 nScMode ) :
XclExpRangeFmlaBase( EXC_ID3_TABLEOP, 16, rScPos ),
mnLastAppXclCol( static_cast< sal_uInt16 >( rScPos.Col() ) ),
mnColInpXclCol( static_cast< sal_uInt16 >( rRefs.maColFirstScPos.Col() ) ),
mnColInpXclRow( static_cast< sal_uInt16 >( rRefs.maColFirstScPos.Row() ) ),
mnRowInpXclCol( static_cast< sal_uInt16 >( rRefs.maRowFirstScPos.Col() ) ),
mnRowInpXclRow( static_cast< sal_uInt16 >( rRefs.maRowFirstScPos.Row() ) ),
mnScMode( nScMode ),
mbValid( false )
{
}
bool XclExpTableop::TryExtend( const ScAddress& rScPos, const XclMultipleOpRefs& rRefs )
{
sal_uInt16 nXclCol = static_cast< sal_uInt16 >( rScPos.Col() );
sal_uInt16 nXclRow = static_cast< sal_uInt16 >( rScPos.Row() );
bool bOk = IsAppendable( nXclCol, nXclRow );
if( bOk )
{
SCCOL nFirstScCol = static_cast< SCCOL >( maXclRange.maFirst.mnCol );
SCROW nFirstScRow = static_cast< SCROW >( maXclRange.maFirst.mnRow );
SCCOL nColInpScCol = static_cast< SCCOL >( mnColInpXclCol );
SCROW nColInpScRow = static_cast< SCROW >( mnColInpXclRow );
SCCOL nRowInpScCol = static_cast< SCCOL >( mnRowInpXclCol );
SCROW nRowInpScRow = static_cast< SCROW >( mnRowInpXclRow );
bOk = ((mnScMode == 2) == rRefs.mbDblRefMode) &&
(rScPos.Tab() == rRefs.maFmlaScPos.Tab()) &&
(nColInpScCol == rRefs.maColFirstScPos.Col()) &&
(nColInpScRow == rRefs.maColFirstScPos.Row()) &&
(rScPos.Tab() == rRefs.maColFirstScPos.Tab()) &&
(rScPos.Tab() == rRefs.maColRelScPos.Tab());
if( bOk ) switch( mnScMode )
{
case 0:
bOk = (rScPos.Col() == rRefs.maFmlaScPos.Col()) &&
(nFirstScRow == rRefs.maFmlaScPos.Row() + 1) &&
(nFirstScCol == rRefs.maColRelScPos.Col() + 1) &&
(rScPos.Row() == rRefs.maColRelScPos.Row());
break;
case 1:
bOk = (nFirstScCol == rRefs.maFmlaScPos.Col() + 1) &&
(rScPos.Row() == rRefs.maFmlaScPos.Row()) &&
(rScPos.Col() == rRefs.maColRelScPos.Col()) &&
(nFirstScRow == rRefs.maColRelScPos.Row() + 1);
break;
case 2:
bOk = (nFirstScCol == rRefs.maFmlaScPos.Col() + 1) &&
(nFirstScRow == rRefs.maFmlaScPos.Row() + 1) &&
(nFirstScCol == rRefs.maColRelScPos.Col() + 1) &&
(rScPos.Row() == rRefs.maColRelScPos.Row()) &&
(nRowInpScCol == rRefs.maRowFirstScPos.Col()) &&
(nRowInpScRow == rRefs.maRowFirstScPos.Row()) &&
(rScPos.Tab() == rRefs.maRowFirstScPos.Tab()) &&
(rScPos.Col() == rRefs.maRowRelScPos.Col()) &&
(nFirstScRow == rRefs.maRowRelScPos.Row() + 1) &&
(rScPos.Tab() == rRefs.maRowRelScPos.Tab());
break;
default:
bOk = false;
}
if( bOk )
{
// extend the cell range
OSL_ENSURE( IsAppendable( nXclCol, nXclRow ), "XclExpTableop::TryExtend - wrong cell address" );
Extend( rScPos );
mnLastAppXclCol = nXclCol;
}
}
return bOk;
}
void XclExpTableop::Finalize()
{
// is the range complete? (last appended cell is in last column)
mbValid = maXclRange.maLast.mnCol == mnLastAppXclCol;
// if last row is incomplete, try to shorten the used range
if( !mbValid && (maXclRange.maFirst.mnRow < maXclRange.maLast.mnRow) )
{
--maXclRange.maLast.mnRow;
mbValid = true;
}
// check if referred cells are outside of own range
if( mbValid ) switch( mnScMode )
{
case 0:
mbValid = (mnColInpXclCol + 1 < maXclRange.maFirst.mnCol) || (mnColInpXclCol > maXclRange.maLast.mnCol) ||
(mnColInpXclRow < maXclRange.maFirst.mnRow) || (mnColInpXclRow > maXclRange.maLast.mnRow);
break;
case 1:
mbValid = (mnColInpXclCol < maXclRange.maFirst.mnCol) || (mnColInpXclCol > maXclRange.maLast.mnCol) ||
(mnColInpXclRow + 1 < maXclRange.maFirst.mnRow) || (mnColInpXclRow > maXclRange.maLast.mnRow);
break;
case 2:
mbValid = ((mnColInpXclCol + 1 < maXclRange.maFirst.mnCol) || (mnColInpXclCol > maXclRange.maLast.mnCol) ||
(mnColInpXclRow + 1 < maXclRange.maFirst.mnRow) || (mnColInpXclRow > maXclRange.maLast.mnRow)) &&
((mnRowInpXclCol + 1 < maXclRange.maFirst.mnCol) || (mnRowInpXclCol > maXclRange.maLast.mnCol) ||
(mnRowInpXclRow + 1 < maXclRange.maFirst.mnRow) || (mnRowInpXclRow > maXclRange.maLast.mnRow));
break;
}
}
XclTokenArrayRef XclExpTableop::CreateCellTokenArray( const XclExpRoot& rRoot ) const
{
XclExpFormulaCompiler& rFmlaComp = rRoot.GetFormulaCompiler();
return mbValid ?
rFmlaComp.CreateSpecialRefFormula( EXC_TOKID_TBL, maBaseXclPos ) :
rFmlaComp.CreateErrorFormula( EXC_ERR_NA );
}
bool XclExpTableop::IsVolatile() const
{
return true;
}
void XclExpTableop::Save( XclExpStream& rStrm )
{
if( mbValid )
XclExpRangeFmlaBase::Save( rStrm );
}
bool XclExpTableop::IsAppendable( sal_uInt16 nXclCol, sal_uInt16 nXclRow ) const
{
return ((nXclCol == mnLastAppXclCol + 1) && (nXclRow == maXclRange.maFirst.mnRow)) ||
((nXclCol == mnLastAppXclCol + 1) && (nXclCol <= maXclRange.maLast.mnCol) && (nXclRow == maXclRange.maLast.mnRow)) ||
((mnLastAppXclCol == maXclRange.maLast.mnCol) && (nXclCol == maXclRange.maFirst.mnCol) && (nXclRow == maXclRange.maLast.mnRow + 1));
}
void XclExpTableop::WriteBody( XclExpStream& rStrm )
{
sal_uInt16 nFlags = EXC_TABLEOP_DEFAULTFLAGS;
::set_flag( nFlags, EXC_TABLEOP_RECALC_ALWAYS, IsVolatile() );
switch( mnScMode )
{
case 1: ::set_flag( nFlags, EXC_TABLEOP_ROW ); break;
case 2: ::set_flag( nFlags, EXC_TABLEOP_BOTH ); break;
}
WriteRangeAddress( rStrm );
rStrm << nFlags;
if( mnScMode == 2 )
rStrm << mnRowInpXclRow << mnRowInpXclCol << mnColInpXclRow << mnColInpXclCol;
else
rStrm << mnColInpXclRow << mnColInpXclCol << sal_uInt32( 0 );
}
XclExpTableopBuffer::XclExpTableopBuffer( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot )
{
}
XclExpTableopRef XclExpTableopBuffer::CreateOrExtendTableop(
const ScTokenArray& rScTokArr, const ScAddress& rScPos )
{
XclExpTableopRef xRec;
// try to extract cell references of a multiple operations formula
XclMultipleOpRefs aRefs;
if (XclTokenArrayHelper::GetMultipleOpRefs(aRefs, rScTokArr, rScPos))
{
// try to find an existing TABLEOP record for this cell position
for( size_t nPos = 0, nSize = maTableopList.GetSize(); !xRec && (nPos < nSize); ++nPos )
{
XclExpTableopRef xTempRec = maTableopList.GetRecord( nPos );
if( xTempRec->TryExtend( rScPos, aRefs ) )
xRec = xTempRec;
}
// no record found, or found record not extensible
if( !xRec )
xRec = TryCreate( rScPos, aRefs );
}
return xRec;
}
void XclExpTableopBuffer::Finalize()
{
for( size_t nPos = 0, nSize = maTableopList.GetSize(); nPos < nSize; ++nPos )
maTableopList.GetRecord( nPos )->Finalize();
}
XclExpTableopRef XclExpTableopBuffer::TryCreate( const ScAddress& rScPos, const XclMultipleOpRefs& rRefs )
{
sal_uInt8 nScMode = 0;
bool bOk = (rScPos.Tab() == rRefs.maFmlaScPos.Tab()) &&
(rScPos.Tab() == rRefs.maColFirstScPos.Tab()) &&
(rScPos.Tab() == rRefs.maColRelScPos.Tab());
if( bOk )
{
if( rRefs.mbDblRefMode )
{
nScMode = 2;
bOk = (rScPos.Col() == rRefs.maFmlaScPos.Col() + 1) &&
(rScPos.Row() == rRefs.maFmlaScPos.Row() + 1) &&
(rScPos.Col() == rRefs.maColRelScPos.Col() + 1) &&
(rScPos.Row() == rRefs.maColRelScPos.Row()) &&
(rScPos.Tab() == rRefs.maRowFirstScPos.Tab()) &&
(rScPos.Col() == rRefs.maRowRelScPos.Col()) &&
(rScPos.Row() == rRefs.maRowRelScPos.Row() + 1) &&
(rScPos.Tab() == rRefs.maRowRelScPos.Tab());
}
else if( (rScPos.Col() == rRefs.maFmlaScPos.Col()) &&
(rScPos.Row() == rRefs.maFmlaScPos.Row() + 1) &&
(rScPos.Col() == rRefs.maColRelScPos.Col() + 1) &&
(rScPos.Row() == rRefs.maColRelScPos.Row()) )
{
nScMode = 0;
}
else if( (rScPos.Col() == rRefs.maFmlaScPos.Col() + 1) &&
(rScPos.Row() == rRefs.maFmlaScPos.Row()) &&
(rScPos.Col() == rRefs.maColRelScPos.Col()) &&
(rScPos.Row() == rRefs.maColRelScPos.Row() + 1) )
{
nScMode = 1;
}
else
{
bOk = false;
}
}
XclExpTableopRef xRec;
if( bOk )
{
xRec.reset( new XclExpTableop( rScPos, rRefs, nScMode ) );
maTableopList.AppendRecord( xRec );
}
return xRec;
}
// Cell records
XclExpCellBase::XclExpCellBase(
sal_uInt16 nRecId, sal_Size nContSize, const XclAddress& rXclPos ) :
XclExpRecord( nRecId, nContSize + 4 ),
maXclPos( rXclPos )
{
}
bool XclExpCellBase::IsMultiLineText() const
{
return false;
}
bool XclExpCellBase::TryMerge( const XclExpCellBase& /*rCell*/ )
{
return false;
}
void XclExpCellBase::GetBlankXFIndexes( ScfUInt16Vec& /*rXFIndexes*/ ) const
{
// default: do nothing
}
void XclExpCellBase::RemoveUnusedBlankCells( const ScfUInt16Vec& /*rXFIndexes*/ )
{
// default: do nothing
}
// Single cell records ========================================================
XclExpSingleCellBase::XclExpSingleCellBase(
sal_uInt16 nRecId, sal_Size nContSize, const XclAddress& rXclPos, sal_uInt32 nXFId ) :
XclExpCellBase( nRecId, 2, rXclPos ),
maXFId( nXFId ),
mnContSize( nContSize )
{
}
XclExpSingleCellBase::XclExpSingleCellBase( const XclExpRoot& rRoot,
sal_uInt16 nRecId, sal_Size nContSize, const XclAddress& rXclPos,
const ScPatternAttr* pPattern, sal_Int16 nScript, sal_uInt32 nForcedXFId ) :
XclExpCellBase( nRecId, 2, rXclPos ),
maXFId( nForcedXFId ),
mnContSize( nContSize )
{
if( GetXFId() == EXC_XFID_NOTFOUND )
SetXFId( rRoot.GetXFBuffer().Insert( pPattern, nScript ) );
}
sal_uInt16 XclExpSingleCellBase::GetLastXclCol() const
{
return GetXclCol();
}
sal_uInt32 XclExpSingleCellBase::GetFirstXFId() const
{
return GetXFId();
}
bool XclExpSingleCellBase::IsEmpty() const
{
return false;
}
void XclExpSingleCellBase::ConvertXFIndexes( const XclExpRoot& rRoot )
{
maXFId.ConvertXFIndex( rRoot );
}
void XclExpSingleCellBase::Save( XclExpStream& rStrm )
{
OSL_ENSURE_BIFF( rStrm.GetRoot().GetBiff() >= EXC_BIFF3 );
AddRecSize( mnContSize );
XclExpCellBase::Save( rStrm );
}
void XclExpSingleCellBase::WriteBody( XclExpStream& rStrm )
{
rStrm << static_cast<sal_uInt16> (GetXclRow()) << GetXclCol() << maXFId.mnXFIndex;
WriteContents( rStrm );
}
IMPL_FIXEDMEMPOOL_NEWDEL( XclExpNumberCell )
XclExpNumberCell::XclExpNumberCell(
const XclExpRoot& rRoot, const XclAddress& rXclPos,
const ScPatternAttr* pPattern, sal_uInt32 nForcedXFId, double fValue ) :
// #i41210# always use latin script for number cells - may look wrong for special number formats...
XclExpSingleCellBase( rRoot, EXC_ID3_NUMBER, 8, rXclPos, pPattern, ApiScriptType::LATIN, nForcedXFId ),
mfValue( fValue )
{
}
static OString lcl_GetStyleId( XclExpXmlStream& rStrm, sal_uInt32 nXFIndex )
{
return OString::number( rStrm.GetRoot().GetXFBuffer()
.GetXmlCellIndex( nXFIndex ) );
}
static OString lcl_GetStyleId( XclExpXmlStream& rStrm, const XclExpCellBase& rCell )
{
sal_uInt32 nXFId = rCell.GetFirstXFId();
sal_uInt16 nXFIndex = rStrm.GetRoot().GetXFBuffer().GetXFIndex( nXFId );
return lcl_GetStyleId( rStrm, nXFIndex );
}
void XclExpNumberCell::SaveXml( XclExpXmlStream& rStrm )
{
sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream();
rWorksheet->startElement( XML_c,
XML_r, XclXmlUtils::ToOString( rStrm.GetRoot().GetStringBuf(), GetXclPos() ).getStr(),
XML_s, lcl_GetStyleId( rStrm, *this ).getStr(),
XML_t, "n",
// OOXTODO: XML_cm, XML_vm, XML_ph
FSEND );
rWorksheet->startElement( XML_v, FSEND );
rWorksheet->write( mfValue );
rWorksheet->endElement( XML_v );
rWorksheet->endElement( XML_c );
}
void XclExpNumberCell::WriteContents( XclExpStream& rStrm )
{
rStrm << mfValue;
}
IMPL_FIXEDMEMPOOL_NEWDEL( XclExpBooleanCell )
XclExpBooleanCell::XclExpBooleanCell(
const XclExpRoot& rRoot, const XclAddress& rXclPos,
const ScPatternAttr* pPattern, sal_uInt32 nForcedXFId, bool bValue ) :
// #i41210# always use latin script for boolean cells
XclExpSingleCellBase( rRoot, EXC_ID3_BOOLERR, 2, rXclPos, pPattern, ApiScriptType::LATIN, nForcedXFId ),
mbValue( bValue )
{
}
void XclExpBooleanCell::SaveXml( XclExpXmlStream& rStrm )
{
sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream();
rWorksheet->startElement( XML_c,
XML_r, XclXmlUtils::ToOString( rStrm.GetRoot().GetStringBuf(), GetXclPos() ).getStr(),
XML_s, lcl_GetStyleId( rStrm, *this ).getStr(),
XML_t, "b",
// OOXTODO: XML_cm, XML_vm, XML_ph
FSEND );
rWorksheet->startElement( XML_v, FSEND );
rWorksheet->write( mbValue ? "1" : "0" );
rWorksheet->endElement( XML_v );
rWorksheet->endElement( XML_c );
}
void XclExpBooleanCell::WriteContents( XclExpStream& rStrm )
{
rStrm << sal_uInt16( mbValue ? 1 : 0 ) << EXC_BOOLERR_BOOL;
}
IMPL_FIXEDMEMPOOL_NEWDEL( XclExpLabelCell )
XclExpLabelCell::XclExpLabelCell(
const XclExpRoot& rRoot, const XclAddress& rXclPos,
const ScPatternAttr* pPattern, sal_uInt32 nForcedXFId, const OUString& rStr ) :
XclExpSingleCellBase( EXC_ID3_LABEL, 0, rXclPos, nForcedXFId )
{
sal_uInt16 nMaxLen = (rRoot.GetBiff() == EXC_BIFF8) ? EXC_STR_MAXLEN : EXC_LABEL_MAXLEN;
XclExpStringRef xText = XclExpStringHelper::CreateCellString(
rRoot, rStr, pPattern, EXC_STR_DEFAULT, nMaxLen);
Init( rRoot, pPattern, xText );
}
XclExpLabelCell::XclExpLabelCell(
const XclExpRoot& rRoot, const XclAddress& rXclPos,
const ScPatternAttr* pPattern, sal_uInt32 nForcedXFId,
const EditTextObject* pEditText, XclExpHyperlinkHelper& rLinkHelper ) :
XclExpSingleCellBase( EXC_ID3_LABEL, 0, rXclPos, nForcedXFId )
{
sal_uInt16 nMaxLen = (rRoot.GetBiff() == EXC_BIFF8) ? EXC_STR_MAXLEN : EXC_LABEL_MAXLEN;
XclExpStringRef xText;
if (pEditText)
xText = XclExpStringHelper::CreateCellString(
rRoot, *pEditText, pPattern, rLinkHelper, EXC_STR_DEFAULT, nMaxLen);
else
xText = XclExpStringHelper::CreateCellString(
rRoot, EMPTY_OUSTRING, pPattern, EXC_STR_DEFAULT, nMaxLen);
Init( rRoot, pPattern, xText );
}
bool XclExpLabelCell::IsMultiLineText() const
{
return mbLineBreak || mxText->IsWrapped();
}
void XclExpLabelCell::Init( const XclExpRoot& rRoot,
const ScPatternAttr* pPattern, XclExpStringRef xText )
{
OSL_ENSURE( xText && xText->Len(), "XclExpLabelCell::XclExpLabelCell - empty string passed" );
mxText = xText;
mnSstIndex = 0;
const XclFormatRunVec& rFormats = mxText->GetFormats();
// remove formatting of the leading run if the entire string
// is equally formatted
sal_uInt16 nXclFont = EXC_FONT_NOTFOUND;
if( rFormats.size() == 1 )
nXclFont = mxText->RemoveLeadingFont();
else
nXclFont = mxText->GetLeadingFont();
// create cell format
if( GetXFId() == EXC_XFID_NOTFOUND )
{
OSL_ENSURE( nXclFont != EXC_FONT_NOTFOUND, "XclExpLabelCell::Init - leading font not found" );
bool bForceLineBreak = mxText->IsWrapped();
SetXFId( rRoot.GetXFBuffer().InsertWithFont( pPattern, ApiScriptType::WEAK, nXclFont, bForceLineBreak ) );
}
// get auto-wrap attribute from cell format
const XclExpXF* pXF = rRoot.GetXFBuffer().GetXFById( GetXFId() );
mbLineBreak = pXF && pXF->GetAlignmentData().mbLineBreak;
// initialize the record contents
switch( rRoot.GetBiff() )
{
case EXC_BIFF5:
// BIFF5-BIFF7: create a LABEL or RSTRING record
OSL_ENSURE( mxText->Len() <= EXC_LABEL_MAXLEN, "XclExpLabelCell::XclExpLabelCell - string too long" );
SetContSize( mxText->GetSize() );
// formatted string is exported in an RSTRING record
if( mxText->IsRich() )
{
OSL_ENSURE( mxText->GetFormatsCount() <= EXC_LABEL_MAXLEN, "XclExpLabelCell::WriteContents - too many formats" );
mxText->LimitFormatCount( EXC_LABEL_MAXLEN );
SetRecId( EXC_ID_RSTRING );
SetContSize( GetContSize() + 1 + 2 * mxText->GetFormatsCount() );
}
break;
case EXC_BIFF8:
// BIFF8+: create a LABELSST record
mnSstIndex = rRoot.GetSst().Insert( xText );
SetRecId( EXC_ID_LABELSST );
SetContSize( 4 );
break;
default: DBG_ERROR_BIFF();
}
}
void XclExpLabelCell::SaveXml( XclExpXmlStream& rStrm )
{
sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream();
rWorksheet->startElement( XML_c,
XML_r, XclXmlUtils::ToOString( rStrm.GetRoot().GetStringBuf(), GetXclPos() ).getStr(),
XML_s, lcl_GetStyleId( rStrm, *this ).getStr(),
XML_t, "s",
// OOXTODO: XML_cm, XML_vm, XML_ph
FSEND );
rWorksheet->startElement( XML_v, FSEND );
rWorksheet->write( (sal_Int32) mnSstIndex );
rWorksheet->endElement( XML_v );
rWorksheet->endElement( XML_c );
}
void XclExpLabelCell::WriteContents( XclExpStream& rStrm )
{
switch( rStrm.GetRoot().GetBiff() )
{
case EXC_BIFF5:
rStrm << *mxText;
if( mxText->IsRich() )
{
rStrm << static_cast< sal_uInt8 >( mxText->GetFormatsCount() );
mxText->WriteFormats( rStrm );
}
break;
case EXC_BIFF8:
rStrm << mnSstIndex;
break;
default: DBG_ERROR_BIFF();
}
}
IMPL_FIXEDMEMPOOL_NEWDEL( XclExpFormulaCell )
XclExpFormulaCell::XclExpFormulaCell(
const XclExpRoot& rRoot, const XclAddress& rXclPos,
const ScPatternAttr* pPattern, sal_uInt32 nForcedXFId,
const ScFormulaCell& rScFmlaCell,
XclExpArrayBuffer& rArrayBfr,
XclExpShrfmlaBuffer& rShrfmlaBfr,
XclExpTableopBuffer& rTableopBfr ) :
XclExpSingleCellBase( EXC_ID2_FORMULA, 0, rXclPos, nForcedXFId ),
mrScFmlaCell( const_cast< ScFormulaCell& >( rScFmlaCell ) )
{
// *** Find result number format overwriting cell number format *** -------
if( GetXFId() == EXC_XFID_NOTFOUND )
{
SvNumberFormatter& rFormatter = rRoot.GetFormatter();
XclExpNumFmtBuffer& rNumFmtBfr = rRoot.GetNumFmtBuffer();
// current cell number format
sal_uInt32 nScNumFmt = pPattern ?
GETITEMVALUE( pPattern->GetItemSet(), SfxUInt32Item, ATTR_VALUE_FORMAT, sal_uLong ) :
rNumFmtBfr.GetStandardFormat();
// alternative number format passed to XF buffer
sal_uInt32 nAltScNumFmt = NUMBERFORMAT_ENTRY_NOT_FOUND;
/* Xcl doesn't know Boolean number formats, we write
"TRUE";"FALSE" (language dependent). Don't do it for automatic
formula formats, because Excel gets them right. */
/* #i8640# Don't set text format, if we have string results. */
short nFormatType = mrScFmlaCell.GetFormatType();
if( ((nScNumFmt % SV_COUNTRY_LANGUAGE_OFFSET) == 0) &&
(nFormatType != css::util::NumberFormat::LOGICAL) &&
(nFormatType != css::util::NumberFormat::TEXT) )
nAltScNumFmt = nScNumFmt;
/* If cell number format is Boolean and automatic formula
format is Boolean don't write that ugly special format. */
else if( (nFormatType == css::util::NumberFormat::LOGICAL) &&
(rFormatter.GetType( nScNumFmt ) == css::util::NumberFormat::LOGICAL) )
nAltScNumFmt = rNumFmtBfr.GetStandardFormat();
// #i41420# find script type according to result type (always latin for numeric results)
sal_Int16 nScript = ApiScriptType::LATIN;
bool bForceLineBreak = false;
if( nFormatType == css::util::NumberFormat::TEXT )
{
OUString aResult = mrScFmlaCell.GetString().getString();
bForceLineBreak = mrScFmlaCell.IsMultilineResult();
nScript = XclExpStringHelper::GetLeadingScriptType( rRoot, aResult );
}
SetXFId( rRoot.GetXFBuffer().InsertWithNumFmt( pPattern, nScript, nAltScNumFmt, bForceLineBreak ) );
}
// *** Convert the formula token array *** --------------------------------
ScAddress aScPos( static_cast< SCCOL >( rXclPos.mnCol ), static_cast< SCROW >( rXclPos.mnRow ), rRoot.GetCurrScTab() );
const ScTokenArray& rScTokArr = *mrScFmlaCell.GetCode();
// first try to create multiple operations
mxAddRec = rTableopBfr.CreateOrExtendTableop( rScTokArr, aScPos );
// no multiple operation found - try to create matrix formula
if( !mxAddRec ) switch( static_cast< ScMatrixMode >( mrScFmlaCell.GetMatrixFlag() ) )
{
case MM_FORMULA:
{
// origin of the matrix - find the used matrix range
SCCOL nMatWidth;
SCROW nMatHeight;
mrScFmlaCell.GetMatColsRows( nMatWidth, nMatHeight );
OSL_ENSURE( nMatWidth && nMatHeight, "XclExpFormulaCell::XclExpFormulaCell - empty matrix" );
ScRange aMatScRange( aScPos );
ScAddress& rMatEnd = aMatScRange.aEnd;
rMatEnd.IncCol( static_cast< SCsCOL >( nMatWidth - 1 ) );
rMatEnd.IncRow( static_cast< SCsROW >( nMatHeight - 1 ) );
// reduce to valid range (range keeps valid, because start position IS valid)
rRoot.GetAddressConverter().ValidateRange( aMatScRange, true );
// create the ARRAY record
mxAddRec = rArrayBfr.CreateArray( rScTokArr, aMatScRange );
}
break;
case MM_REFERENCE:
{
// other formula cell covered by a matrix - find the ARRAY record
mxAddRec = rArrayBfr.FindArray(rScTokArr, aScPos);
// should always be found, if Calc document is not broken
OSL_ENSURE( mxAddRec, "XclExpFormulaCell::XclExpFormulaCell - no matrix found" );
}
break;
default:;
}
// no matrix found - try to create shared formula
if( !mxAddRec )
mxAddRec = rShrfmlaBfr.CreateOrExtendShrfmla(mrScFmlaCell, aScPos);
// no shared formula found - create a simple cell formula
if( !mxAddRec )
mxTokArr = rRoot.GetFormulaCompiler().CreateFormula( EXC_FMLATYPE_CELL, rScTokArr, &aScPos );
}
void XclExpFormulaCell::Save( XclExpStream& rStrm )
{
// create token array for FORMULA cells with additional record
if( mxAddRec )
mxTokArr = mxAddRec->CreateCellTokenArray( rStrm.GetRoot() );
// FORMULA record itself
OSL_ENSURE( mxTokArr, "XclExpFormulaCell::Save - missing token array" );
if( !mxTokArr )
mxTokArr = rStrm.GetRoot().GetFormulaCompiler().CreateErrorFormula( EXC_ERR_NA );
SetContSize( 16 + mxTokArr->GetSize() );
XclExpSingleCellBase::Save( rStrm );
// additional record (ARRAY, SHRFMLA, or TABLEOP), only for first FORMULA record
if( mxAddRec && mxAddRec->IsBasePos( GetXclCol(), GetXclRow() ) )
mxAddRec->Save( rStrm );
// STRING record for string result
if( mxStringRec )
mxStringRec->Save( rStrm );
}
void XclExpFormulaCell::SaveXml( XclExpXmlStream& rStrm )
{
const char* sType = nullptr;
OUString sValue;
XclXmlUtils::GetFormulaTypeAndValue( mrScFmlaCell, sType, sValue );
sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream();
rWorksheet->startElement( XML_c,
XML_r, XclXmlUtils::ToOString( rStrm.GetRoot().GetStringBuf(), GetXclPos() ).getStr(),
XML_s, lcl_GetStyleId( rStrm, *this ).getStr(),
XML_t, sType,
// OOXTODO: XML_cm, XML_vm, XML_ph
FSEND );
bool bWriteFormula = true;
bool bTagStarted = false;
ScAddress aScPos( static_cast< SCCOL >( GetXclPos().mnCol ),
static_cast< SCROW >( GetXclPos().mnRow ), rStrm.GetRoot().GetCurrScTab() );
switch (mrScFmlaCell.GetMatrixFlag())
{
case MM_NONE:
break;
case MM_REFERENCE:
bWriteFormula = false;
break;
case MM_FORMULA:
{
// origin of the matrix - find the used matrix range
SCCOL nMatWidth;
SCROW nMatHeight;
mrScFmlaCell.GetMatColsRows( nMatWidth, nMatHeight );
OSL_ENSURE( nMatWidth && nMatHeight, "XclExpFormulaCell::XclExpFormulaCell - empty matrix" );
ScRange aMatScRange( aScPos );
ScAddress& rMatEnd = aMatScRange.aEnd;
rMatEnd.IncCol( static_cast< SCsCOL >( nMatWidth - 1 ) );
rMatEnd.IncRow( static_cast< SCsROW >( nMatHeight - 1 ) );
// reduce to valid range (range keeps valid, because start position IS valid
rStrm.GetRoot().GetAddressConverter().ValidateRange( aMatScRange, true );
OStringBuffer sFmlaCellRange;
if (ValidRange(aMatScRange))
{
// calculate the cell range.
sFmlaCellRange.append( XclXmlUtils::ToOString(
rStrm.GetRoot().GetStringBuf(), aMatScRange.aStart ).getStr());
sFmlaCellRange.append(":");
sFmlaCellRange.append( XclXmlUtils::ToOString(
rStrm.GetRoot().GetStringBuf(), aMatScRange.aEnd ).getStr());
}
if ( aMatScRange.aStart.Col() == GetXclPos().mnCol &&
aMatScRange.aStart.Row() == static_cast<SCROW>(GetXclPos().mnRow))
{
rWorksheet->startElement( XML_f,
XML_aca, XclXmlUtils::ToPsz( (mxTokArr && mxTokArr->IsVolatile()) ||
(mxAddRec && mxAddRec->IsVolatile())),
XML_t, mxAddRec ? "array" : nullptr,
XML_ref, !sFmlaCellRange.isEmpty()? sFmlaCellRange.getStr() : nullptr,
// OOXTODO: XML_dt2D, bool
// OOXTODO: XML_dtr, bool
// OOXTODO: XML_del1, bool
// OOXTODO: XML_del2, bool
// OOXTODO: XML_r1, ST_CellRef
// OOXTODO: XML_r2, ST_CellRef
// OOXTODO: XML_ca, bool
// OOXTODO: XML_si, uint
// OOXTODO: XML_bx bool
FSEND );
bTagStarted = true;
}
}
break;
}
if (bWriteFormula)
{
if (!bTagStarted)
{
rWorksheet->startElement( XML_f,
XML_aca, XclXmlUtils::ToPsz( (mxTokArr && mxTokArr->IsVolatile()) ||
(mxAddRec && mxAddRec->IsVolatile()) ),
FSEND );
}
rWorksheet->writeEscaped( XclXmlUtils::ToOUString(
rStrm.GetRoot().GetCompileFormulaContext(), mrScFmlaCell.aPos, mrScFmlaCell.GetCode()));
rWorksheet->endElement( XML_f );
}
if( strcmp( sType, "inlineStr" ) == 0 )
{
rWorksheet->startElement( XML_is, FSEND );
rWorksheet->startElement( XML_t, FSEND );
rWorksheet->writeEscaped( sValue );
rWorksheet->endElement( XML_t );
rWorksheet->endElement( XML_is );
}
else
{
rWorksheet->startElement( XML_v, FSEND );
rWorksheet->writeEscaped( sValue );
rWorksheet->endElement( XML_v );
}
rWorksheet->endElement( XML_c );
}
void XclExpFormulaCell::WriteContents( XclExpStream& rStrm )
{
sal_uInt16 nScErrCode = mrScFmlaCell.GetErrCode();
if( nScErrCode )
{
rStrm << EXC_FORMULA_RES_ERROR << sal_uInt8( 0 )
<< XclTools::GetXclErrorCode( nScErrCode )
<< sal_uInt8( 0 ) << sal_uInt16( 0 )
<< sal_uInt16( 0xFFFF );
}
else
{
// result of the formula
switch( mrScFmlaCell.GetFormatType() )
{
case css::util::NumberFormat::NUMBER:
{
// either value or error code
rStrm << mrScFmlaCell.GetValue();
}
break;
case css::util::NumberFormat::TEXT:
{
OUString aResult = mrScFmlaCell.GetString().getString();
if( !aResult.isEmpty() || (rStrm.GetRoot().GetBiff() <= EXC_BIFF5) )
{
rStrm << EXC_FORMULA_RES_STRING;
mxStringRec.reset( new XclExpStringRec( rStrm.GetRoot(), aResult ) );
}
else
rStrm << EXC_FORMULA_RES_EMPTY; // BIFF8 only
rStrm << sal_uInt8( 0 ) << sal_uInt32( 0 ) << sal_uInt16( 0xFFFF );
}
break;
case css::util::NumberFormat::LOGICAL:
{
sal_uInt8 nXclValue = (mrScFmlaCell.GetValue() == 0.0) ? 0 : 1;
rStrm << EXC_FORMULA_RES_BOOL << sal_uInt8( 0 )
<< nXclValue << sal_uInt8( 0 ) << sal_uInt16( 0 )
<< sal_uInt16( 0xFFFF );
}
break;
default:
rStrm << mrScFmlaCell.GetValue();
}
}
// flags and formula token array
sal_uInt16 nFlags = EXC_FORMULA_DEFAULTFLAGS;
::set_flag( nFlags, EXC_FORMULA_RECALC_ALWAYS, mxTokArr->IsVolatile() || (mxAddRec && mxAddRec->IsVolatile()) );
::set_flag( nFlags, EXC_FORMULA_SHARED, mxAddRec && (mxAddRec->GetRecId() == EXC_ID_SHRFMLA) );
rStrm << nFlags << sal_uInt32( 0 ) << *mxTokArr;
}
// Multiple cell records ======================================================
XclExpMultiCellBase::XclExpMultiCellBase(
sal_uInt16 nRecId, sal_uInt16 nMulRecId, sal_Size nContSize, const XclAddress& rXclPos ) :
XclExpCellBase( nRecId, 0, rXclPos ),
mnMulRecId( nMulRecId ),
mnContSize( nContSize )
{
}
sal_uInt16 XclExpMultiCellBase::GetLastXclCol() const
{
return GetXclCol() + GetCellCount() - 1;
}
sal_uInt32 XclExpMultiCellBase::GetFirstXFId() const
{
return maXFIds.empty() ? XclExpXFBuffer::GetDefCellXFId() : maXFIds.front().mnXFId;
}
bool XclExpMultiCellBase::IsEmpty() const
{
return maXFIds.empty();
}
void XclExpMultiCellBase::ConvertXFIndexes( const XclExpRoot& rRoot )
{
for( XclExpMultiXFIdDeq::iterator aIt = maXFIds.begin(), aEnd = maXFIds.end(); aIt != aEnd; ++aIt )
aIt->ConvertXFIndex( rRoot );
}
void XclExpMultiCellBase::Save( XclExpStream& rStrm )
{
OSL_ENSURE_BIFF( rStrm.GetRoot().GetBiff() >= EXC_BIFF3 );
XclExpMultiXFIdDeq::const_iterator aEnd = maXFIds.end();
XclExpMultiXFIdDeq::const_iterator aRangeBeg = maXFIds.begin();
XclExpMultiXFIdDeq::const_iterator aRangeEnd = aRangeBeg;
sal_uInt16 nBegXclCol = GetXclCol();
sal_uInt16 nEndXclCol = nBegXclCol;
while( aRangeEnd != aEnd )
{
// find begin of next used XF range
aRangeBeg = aRangeEnd;
nBegXclCol = nEndXclCol;
while( (aRangeBeg != aEnd) && (aRangeBeg->mnXFIndex == EXC_XF_NOTFOUND) )
{
nBegXclCol = nBegXclCol + aRangeBeg->mnCount;
++aRangeBeg;
}
// find end of next used XF range
aRangeEnd = aRangeBeg;
nEndXclCol = nBegXclCol;
while( (aRangeEnd != aEnd) && (aRangeEnd->mnXFIndex != EXC_XF_NOTFOUND) )
{
nEndXclCol = nEndXclCol + aRangeEnd->mnCount;
++aRangeEnd;
}
// export this range as a record
if( aRangeBeg != aRangeEnd )
{
sal_uInt16 nCount = nEndXclCol - nBegXclCol;
bool bIsMulti = nCount > 1;
sal_Size nTotalSize = GetRecSize() + (2 + mnContSize) * nCount;
if( bIsMulti ) nTotalSize += 2;
rStrm.StartRecord( bIsMulti ? mnMulRecId : GetRecId(), nTotalSize );
rStrm << static_cast<sal_uInt16> (GetXclRow()) << nBegXclCol;
sal_uInt16 nRelCol = nBegXclCol - GetXclCol();
for( XclExpMultiXFIdDeq::const_iterator aIt = aRangeBeg; aIt != aRangeEnd; ++aIt )
{
for( sal_uInt16 nIdx = 0; nIdx < aIt->mnCount; ++nIdx )
{
rStrm << aIt->mnXFIndex;
WriteContents( rStrm, nRelCol );
++nRelCol;
}
}
if( bIsMulti )
rStrm << static_cast< sal_uInt16 >( nEndXclCol - 1 );
rStrm.EndRecord();
}
}
}
void XclExpMultiCellBase::SaveXml( XclExpXmlStream& rStrm )
{
XclExpMultiXFIdDeq::const_iterator aEnd = maXFIds.end();
XclExpMultiXFIdDeq::const_iterator aRangeBeg = maXFIds.begin();
XclExpMultiXFIdDeq::const_iterator aRangeEnd = aRangeBeg;
sal_uInt16 nBegXclCol = GetXclCol();
sal_uInt16 nEndXclCol = nBegXclCol;
while( aRangeEnd != aEnd )
{
// find begin of next used XF range
aRangeBeg = aRangeEnd;
nBegXclCol = nEndXclCol;
while( (aRangeBeg != aEnd) && (aRangeBeg->mnXFIndex == EXC_XF_NOTFOUND) )
{
nBegXclCol = nBegXclCol + aRangeBeg->mnCount;
++aRangeBeg;
}
// find end of next used XF range
aRangeEnd = aRangeBeg;
nEndXclCol = nBegXclCol;
while( (aRangeEnd != aEnd) && (aRangeEnd->mnXFIndex != EXC_XF_NOTFOUND) )
{
nEndXclCol = nEndXclCol + aRangeEnd->mnCount;
++aRangeEnd;
}
// export this range as a record
if( aRangeBeg != aRangeEnd )
{
sal_uInt16 nRelColIdx = nBegXclCol - GetXclCol();
sal_Int32 nRelCol = 0;
for( XclExpMultiXFIdDeq::const_iterator aIt = aRangeBeg; aIt != aRangeEnd; ++aIt )
{
for( sal_uInt16 nIdx = 0; nIdx < aIt->mnCount; ++nIdx )
{
WriteXmlContents(
rStrm,
XclAddress( static_cast<sal_uInt16>(nBegXclCol + nRelCol), GetXclRow() ),
aIt->mnXFIndex,
nRelColIdx );
++nRelCol;
++nRelColIdx;
}
}
}
}
}
sal_uInt16 XclExpMultiCellBase::GetCellCount() const
{
sal_uInt16 nCount = 0;
for( XclExpMultiXFIdDeq::const_iterator aIt = maXFIds.begin(), aEnd = maXFIds.end(); aIt != aEnd; ++aIt )
nCount = nCount + aIt->mnCount;
return nCount;
}
void XclExpMultiCellBase::AppendXFId( const XclExpMultiXFId& rXFId )
{
if( maXFIds.empty() || (maXFIds.back().mnXFId != rXFId.mnXFId) )
maXFIds.push_back( rXFId );
else
maXFIds.back().mnCount = maXFIds.back().mnCount + rXFId.mnCount;
}
void XclExpMultiCellBase::AppendXFId( const XclExpRoot& rRoot,
const ScPatternAttr* pPattern, sal_uInt16 nScript, sal_uInt32 nForcedXFId, sal_uInt16 nCount )
{
sal_uInt32 nXFId = (nForcedXFId == EXC_XFID_NOTFOUND) ?
rRoot.GetXFBuffer().Insert( pPattern, nScript ) : nForcedXFId;
AppendXFId( XclExpMultiXFId( nXFId, nCount ) );
}
bool XclExpMultiCellBase::TryMergeXFIds( const XclExpMultiCellBase& rCell )
{
if( GetLastXclCol() + 1 == rCell.GetXclCol() )
{
maXFIds.insert( maXFIds.end(), rCell.maXFIds.begin(), rCell.maXFIds.end() );
return true;
}
return false;
}
void XclExpMultiCellBase::GetXFIndexes( ScfUInt16Vec& rXFIndexes ) const
{
OSL_ENSURE( GetLastXclCol() < rXFIndexes.size(), "XclExpMultiCellBase::GetXFIndexes - vector too small" );
ScfUInt16Vec::iterator aDestIt = rXFIndexes.begin() + GetXclCol();
for( XclExpMultiXFIdDeq::const_iterator aIt = maXFIds.begin(), aEnd = maXFIds.end(); aIt != aEnd; ++aIt )
{
::std::fill( aDestIt, aDestIt + aIt->mnCount, aIt->mnXFIndex );
aDestIt += aIt->mnCount;
}
}
void XclExpMultiCellBase::RemoveUnusedXFIndexes( const ScfUInt16Vec& rXFIndexes )
{
// save last column before calling maXFIds.clear()
sal_uInt16 nLastXclCol = GetLastXclCol();
OSL_ENSURE( nLastXclCol < rXFIndexes.size(), "XclExpMultiCellBase::RemoveUnusedXFIndexes - XF index vector too small" );
// build new XF index vector, containing passed XF indexes
maXFIds.clear();
XclExpMultiXFId aXFId( 0 );
for( ScfUInt16Vec::const_iterator aIt = rXFIndexes.begin() + GetXclCol(), aEnd = rXFIndexes.begin() + nLastXclCol + 1; aIt != aEnd; ++aIt )
{
// AppendXFId() tests XclExpXFIndex::mnXFId, set it too
aXFId.mnXFId = aXFId.mnXFIndex = *aIt;
AppendXFId( aXFId );
}
// remove leading and trailing unused XF indexes
if( !maXFIds.empty() && (maXFIds.front().mnXFIndex == EXC_XF_NOTFOUND) )
{
SetXclCol( GetXclCol() + maXFIds.front().mnCount );
maXFIds.erase(maXFIds.begin(), maXFIds.begin() + 1);
}
if( !maXFIds.empty() && (maXFIds.back().mnXFIndex == EXC_XF_NOTFOUND) )
maXFIds.pop_back();
// The Save() function will skip all XF indexes equal to EXC_XF_NOTFOUND.
}
IMPL_FIXEDMEMPOOL_NEWDEL( XclExpBlankCell )
XclExpBlankCell::XclExpBlankCell( const XclAddress& rXclPos, const XclExpMultiXFId& rXFId ) :
XclExpMultiCellBase( EXC_ID3_BLANK, EXC_ID_MULBLANK, 0, rXclPos )
{
OSL_ENSURE( rXFId.mnCount > 0, "XclExpBlankCell::XclExpBlankCell - invalid count" );
AppendXFId( rXFId );
}
XclExpBlankCell::XclExpBlankCell(
const XclExpRoot& rRoot, const XclAddress& rXclPos, sal_uInt16 nLastXclCol,
const ScPatternAttr* pPattern, sal_uInt32 nForcedXFId ) :
XclExpMultiCellBase( EXC_ID3_BLANK, EXC_ID_MULBLANK, 0, rXclPos )
{
OSL_ENSURE( rXclPos.mnCol <= nLastXclCol, "XclExpBlankCell::XclExpBlankCell - invalid column range" );
// #i46627# use default script type instead of ApiScriptType::WEAK
AppendXFId( rRoot, pPattern, rRoot.GetDefApiScript(), nForcedXFId, nLastXclCol - rXclPos.mnCol + 1 );
}
bool XclExpBlankCell::TryMerge( const XclExpCellBase& rCell )
{
const XclExpBlankCell* pBlankCell = dynamic_cast< const XclExpBlankCell* >( &rCell );
return pBlankCell && TryMergeXFIds( *pBlankCell );
}
void XclExpBlankCell::GetBlankXFIndexes( ScfUInt16Vec& rXFIndexes ) const
{
GetXFIndexes( rXFIndexes );
}
void XclExpBlankCell::RemoveUnusedBlankCells( const ScfUInt16Vec& rXFIndexes )
{
RemoveUnusedXFIndexes( rXFIndexes );
}
void XclExpBlankCell::WriteContents( XclExpStream& /*rStrm*/, sal_uInt16 /*nRelCol*/ )
{
}
void XclExpBlankCell::WriteXmlContents( XclExpXmlStream& rStrm, const XclAddress& rAddress, sal_uInt32 nXFId, sal_uInt16 /* nRelCol */ )
{
sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream();
rWorksheet->singleElement( XML_c,
XML_r, XclXmlUtils::ToOString( rStrm.GetRoot().GetStringBuf(), rAddress ).getStr(),
XML_s, lcl_GetStyleId( rStrm, nXFId ).getStr(),
FSEND );
}
IMPL_FIXEDMEMPOOL_NEWDEL( XclExpRkCell )
XclExpRkCell::XclExpRkCell(
const XclExpRoot& rRoot, const XclAddress& rXclPos,
const ScPatternAttr* pPattern, sal_uInt32 nForcedXFId, sal_Int32 nRkValue ) :
XclExpMultiCellBase( EXC_ID_RK, EXC_ID_MULRK, 4, rXclPos )
{
// #i41210# always use latin script for number cells - may look wrong for special number formats...
AppendXFId( rRoot, pPattern, ApiScriptType::LATIN, nForcedXFId );
maRkValues.push_back( nRkValue );
}
bool XclExpRkCell::TryMerge( const XclExpCellBase& rCell )
{
const XclExpRkCell* pRkCell = dynamic_cast< const XclExpRkCell* >( &rCell );
if( pRkCell && TryMergeXFIds( *pRkCell ) )
{
maRkValues.insert( maRkValues.end(), pRkCell->maRkValues.begin(), pRkCell->maRkValues.end() );
return true;
}
return false;
}
void XclExpRkCell::WriteXmlContents( XclExpXmlStream& rStrm, const XclAddress& rAddress, sal_uInt32 nXFId, sal_uInt16 nRelCol )
{
sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream();
rWorksheet->startElement( XML_c,
XML_r, XclXmlUtils::ToOString( rStrm.GetRoot().GetStringBuf(), rAddress ).getStr(),
XML_s, lcl_GetStyleId( rStrm, nXFId ).getStr(),
XML_t, "n",
// OOXTODO: XML_cm, XML_vm, XML_ph
FSEND );
rWorksheet->startElement( XML_v, FSEND );
rWorksheet->write( XclTools::GetDoubleFromRK( maRkValues[ nRelCol ] ) );
rWorksheet->endElement( XML_v );
rWorksheet->endElement( XML_c );
}
void XclExpRkCell::WriteContents( XclExpStream& rStrm, sal_uInt16 nRelCol )
{
OSL_ENSURE( nRelCol < maRkValues.size(), "XclExpRkCell::WriteContents - overflow error" );
rStrm << maRkValues[ nRelCol ];
}
// Rows and Columns
XclExpOutlineBuffer::XclExpOutlineBuffer( const XclExpRoot& rRoot, bool bRows ) :
mpScOLArray( nullptr ),
maLevelInfos( SC_OL_MAXDEPTH ),
mnCurrLevel( 0 ),
mbCurrCollapse( false )
{
if( const ScOutlineTable* pOutlineTable = rRoot.GetDoc().GetOutlineTable( rRoot.GetCurrScTab() ) )
mpScOLArray = &(bRows ? pOutlineTable->GetRowArray() : pOutlineTable->GetColArray());
if( mpScOLArray )
for( size_t nLevel = 0; nLevel < SC_OL_MAXDEPTH; ++nLevel )
if( const ScOutlineEntry* pEntry = mpScOLArray->GetEntryByPos( nLevel, 0 ) )
maLevelInfos[ nLevel ].mnScEndPos = pEntry->GetEnd();
}
void XclExpOutlineBuffer::UpdateColRow( SCCOLROW nScPos )
{
if( mpScOLArray )
{
// find open level index for passed position
size_t nNewOpenScLevel = 0; // new open level (0-based Calc index)
sal_uInt8 nNewLevel = 0; // new open level (1-based Excel index)
if( mpScOLArray->FindTouchedLevel( nScPos, nScPos, nNewOpenScLevel ) )
nNewLevel = static_cast< sal_uInt8 >( nNewOpenScLevel + 1 );
// else nNewLevel keeps 0 to show that there are no groups
mbCurrCollapse = false;
if( nNewLevel >= mnCurrLevel )
{
// new level(s) opened, or no level closed - update all level infos
for( size_t nScLevel = 0; nScLevel <= nNewOpenScLevel; ++nScLevel )
{
/* In each level: check if a new group is started (there may be
neighbored groups without gap - therefore check ALL levels). */
if( maLevelInfos[ nScLevel ].mnScEndPos < nScPos )
{
if( const ScOutlineEntry* pEntry = mpScOLArray->GetEntryByPos( nScLevel, nScPos ) )
{
maLevelInfos[ nScLevel ].mnScEndPos = pEntry->GetEnd();
maLevelInfos[ nScLevel ].mbHidden = pEntry->IsHidden();
}
}
}
}
else
{
// level(s) closed - check if any of the closed levels are collapsed
// Calc uses 0-based level indexes
sal_uInt16 nOldOpenScLevel = mnCurrLevel - 1;
for( sal_uInt16 nScLevel = nNewOpenScLevel + 1; !mbCurrCollapse && (nScLevel <= nOldOpenScLevel); ++nScLevel )
mbCurrCollapse = maLevelInfos[ nScLevel ].mbHidden;
}
// cache new opened level
mnCurrLevel = nNewLevel;
}
}
XclExpGuts::XclExpGuts( const XclExpRoot& rRoot ) :
XclExpRecord( EXC_ID_GUTS, 8 ),
mnColLevels( 0 ),
mnColWidth( 0 ),
mnRowLevels( 0 ),
mnRowWidth( 0 )
{
if( const ScOutlineTable* pOutlineTable = rRoot.GetDoc().GetOutlineTable( rRoot.GetCurrScTab() ) )
{
// column outline groups
const ScOutlineArray& rColArray = pOutlineTable->GetColArray();
mnColLevels = ulimit_cast< sal_uInt16 >( rColArray.GetDepth(), EXC_OUTLINE_MAX );
if( mnColLevels )
{
++mnColLevels;
mnColWidth = 12 * mnColLevels + 5;
}
// row outline groups
const ScOutlineArray& rRowArray = pOutlineTable->GetRowArray();
mnRowLevels = ulimit_cast< sal_uInt16 >( rRowArray.GetDepth(), EXC_OUTLINE_MAX );
if( mnRowLevels )
{
++mnRowLevels;
mnRowWidth = 12 * mnRowLevels + 5;
}
}
}
void XclExpGuts::WriteBody( XclExpStream& rStrm )
{
rStrm << mnRowWidth << mnColWidth << mnRowLevels << mnColLevels;
}
XclExpDimensions::XclExpDimensions( const XclExpRoot& rRoot ) :
mnFirstUsedXclRow( 0 ),
mnFirstFreeXclRow( 0 ),
mnFirstUsedXclCol( 0 ),
mnFirstFreeXclCol( 0 )
{
switch( rRoot.GetBiff() )
{
case EXC_BIFF2: SetRecHeader( EXC_ID2_DIMENSIONS, 8 ); break;
case EXC_BIFF3:
case EXC_BIFF4:
case EXC_BIFF5: SetRecHeader( EXC_ID3_DIMENSIONS, 10 ); break;
case EXC_BIFF8: SetRecHeader( EXC_ID3_DIMENSIONS, 14 ); break;
default: DBG_ERROR_BIFF();
}
}
void XclExpDimensions::SetDimensions(
sal_uInt16 nFirstUsedXclCol, sal_uInt32 nFirstUsedXclRow,
sal_uInt16 nFirstFreeXclCol, sal_uInt32 nFirstFreeXclRow )
{
mnFirstUsedXclRow = nFirstUsedXclRow;
mnFirstFreeXclRow = nFirstFreeXclRow;
mnFirstUsedXclCol = nFirstUsedXclCol;
mnFirstFreeXclCol = nFirstFreeXclCol;
}
void XclExpDimensions::SaveXml( XclExpXmlStream& rStrm )
{
ScRange aRange;
aRange.aStart.SetRow( (SCROW) mnFirstUsedXclRow );
aRange.aStart.SetCol( (SCCOL) mnFirstUsedXclCol );
if( mnFirstFreeXclRow != mnFirstUsedXclRow && mnFirstFreeXclCol != mnFirstUsedXclCol )
{
aRange.aEnd.SetRow( (SCROW) (mnFirstFreeXclRow-1) );
aRange.aEnd.SetCol( (SCCOL) (mnFirstFreeXclCol-1) );
}
aRange.PutInOrder();
rStrm.GetCurrentStream()->singleElement( XML_dimension,
// To be compatible with MS Office 2007,
// we need full address notation format
// e.g. "A1:AMJ177" and not partial like: "1:177".
XML_ref, XclXmlUtils::ToOString( aRange, true ).getStr(),
FSEND );
}
void XclExpDimensions::WriteBody( XclExpStream& rStrm )
{
XclBiff eBiff = rStrm.GetRoot().GetBiff();
if( eBiff == EXC_BIFF8 )
rStrm << mnFirstUsedXclRow << mnFirstFreeXclRow;
else
rStrm << static_cast< sal_uInt16 >( mnFirstUsedXclRow ) << static_cast< sal_uInt16 >( mnFirstFreeXclRow );
rStrm << mnFirstUsedXclCol << mnFirstFreeXclCol;
if( eBiff >= EXC_BIFF3 )
rStrm << sal_uInt16( 0 );
}
namespace {
double lclGetCorrectedColWidth( const XclExpRoot& rRoot, sal_uInt16 nXclColWidth )
{
long nFontHt = rRoot.GetFontBuffer().GetAppFontData().mnHeight;
return nXclColWidth - XclTools::GetXclDefColWidthCorrection( nFontHt );
}
} // namespace
XclExpDefcolwidth::XclExpDefcolwidth( const XclExpRoot& rRoot ) :
XclExpUInt16Record( EXC_ID_DEFCOLWIDTH, EXC_DEFCOLWIDTH_DEF ),
XclExpRoot( rRoot )
{
}
bool XclExpDefcolwidth::IsDefWidth( sal_uInt16 nXclColWidth ) const
{
double fNewColWidth = lclGetCorrectedColWidth( GetRoot(), nXclColWidth );
// This formula is taking number of characters with GetValue()
// and it is translating it into default column width. 0.5 means half character.
// https://msdn.microsoft.com/en-us/library/documentformat.openxml.spreadsheet.column.aspx
long defaultColumnWidth = static_cast< long >( 256.0 * ( GetValue() + 0.5 ) );
// exactly matched, if difference is less than 1/16 of a character to the left or to the right
return std::abs( defaultColumnWidth - fNewColWidth ) < 16;
}
void XclExpDefcolwidth::SetDefWidth( sal_uInt16 nXclColWidth )
{
double fNewColWidth = lclGetCorrectedColWidth( GetRoot(), nXclColWidth );
// This function is taking width and translate it into number of characters
// Next this number of characters are stored. 0.5 means half character.
SetValue( limit_cast< sal_uInt16 >( fNewColWidth / 256.0 - 0.5 ) );
}
XclExpColinfo::XclExpColinfo( const XclExpRoot& rRoot,
SCCOL nScCol, SCROW nLastScRow, XclExpColOutlineBuffer& rOutlineBfr ) :
XclExpRecord( EXC_ID_COLINFO, 12 ),
XclExpRoot( rRoot ),
mbCustomWidth( false ),
mnWidth( 0 ),
mnScWidth( 0 ),
mnFlags( 0 ),
mnOutlineLevel( 0 ),
mnFirstXclCol( static_cast< sal_uInt16 >( nScCol ) ),
mnLastXclCol( static_cast< sal_uInt16 >( nScCol ) )
{
ScDocument& rDoc = GetDoc();
SCTAB nScTab = GetCurrScTab();
// column default format
maXFId.mnXFId = GetXFBuffer().Insert(
rDoc.GetMostUsedPattern( nScCol, 0, nLastScRow, nScTab ), GetDefApiScript() );
// column width. If column is hidden then we should return real value (not zero)
sal_uInt16 nScWidth = rDoc.GetColWidth( nScCol, nScTab, false );
mnWidth = XclTools::GetXclColumnWidth( nScWidth, GetCharWidth() );
mnScWidth = sc::TwipsToHMM( nScWidth );
// column flags
::set_flag( mnFlags, EXC_COLINFO_HIDDEN, rDoc.ColHidden(nScCol, nScTab) );
XclExpDefcolwidth defColWidth = XclExpDefcolwidth( rRoot );
mbCustomWidth = !defColWidth.IsDefWidth( mnWidth );
set_flag(mnFlags, EXC_COLINFO_CUSTOMWIDTH, mbCustomWidth);
// outline data
rOutlineBfr.Update( nScCol );
::set_flag( mnFlags, EXC_COLINFO_COLLAPSED, rOutlineBfr.IsCollapsed() );
::insert_value( mnFlags, rOutlineBfr.GetLevel(), 8, 3 );
mnOutlineLevel = rOutlineBfr.GetLevel();
}
void XclExpColinfo::ConvertXFIndexes()
{
maXFId.ConvertXFIndex( GetRoot() );
}
bool XclExpColinfo::IsDefault( const XclExpDefcolwidth& rDefColWidth ) const
{
return (maXFId.mnXFIndex == EXC_XF_DEFAULTCELL) &&
(mnFlags == 0) &&
(mnOutlineLevel == 0) &&
rDefColWidth.IsDefWidth( mnWidth );
}
bool XclExpColinfo::TryMerge( const XclExpColinfo& rColInfo )
{
if( (maXFId.mnXFIndex == rColInfo.maXFId.mnXFIndex) &&
(mnWidth == rColInfo.mnWidth) &&
(mnFlags == rColInfo.mnFlags) &&
(mnOutlineLevel == rColInfo.mnOutlineLevel) &&
(mnLastXclCol + 1 == rColInfo.mnFirstXclCol) )
{
mnLastXclCol = rColInfo.mnLastXclCol;
return true;
}
return false;
}
void XclExpColinfo::WriteBody( XclExpStream& rStrm )
{
// if last column is equal to last possible column, Excel adds one more
sal_uInt16 nLastXclCol = mnLastXclCol;
if( nLastXclCol == static_cast< sal_uInt16 >( rStrm.GetRoot().GetMaxPos().Col() ) )
++nLastXclCol;
rStrm << mnFirstXclCol
<< nLastXclCol
<< mnWidth
<< maXFId.mnXFIndex
<< mnFlags
<< sal_uInt16( 0 );
}
void XclExpColinfo::SaveXml( XclExpXmlStream& rStrm )
{
// if last column is equal to last possible column, Excel adds one more
sal_uInt16 nLastXclCol = mnLastXclCol;
if( nLastXclCol == static_cast< sal_uInt16 >( rStrm.GetRoot().GetMaxPos().Col() ) )
++nLastXclCol;
const double nExcelColumnWidth = mnScWidth / static_cast< double >( sc::TwipsToHMM( GetCharWidth() ) );
// tdf#101363 In MS specification the output value is set with double precision after delimiter:
// =Truncate(({width in pixels} - 5)/{Maximum Digit Width} * 100 + 0.5)/100
// Explanation of magic numbers:
// 5 number - are 4 pixels of margin padding (two on each side), plus 1 pixel padding for the gridlines.
// It is unknown if it should be applied during LibreOffice export
// 100 number - used to limit precision to 0.01 with formula =Truncate( {value}*100+0.5 ) / 100
// 0.5 number (0.005 to output value) - used to increase value before truncating,
// to avoid situation when 2.997 will be truncated to 2.99 and not to 3.00
const double nTruncatedExcelColumnWidth = std::trunc( nExcelColumnWidth * 100.0 + 0.5 ) / 100.0;
rStrm.GetCurrentStream()->singleElement( XML_col,
// OOXTODO: XML_bestFit,
XML_collapsed, XclXmlUtils::ToPsz( ::get_flag( mnFlags, EXC_COLINFO_COLLAPSED ) ),
XML_customWidth, XclXmlUtils::ToPsz( mbCustomWidth ),
XML_hidden, XclXmlUtils::ToPsz( ::get_flag( mnFlags, EXC_COLINFO_HIDDEN ) ),
XML_outlineLevel, OString::number( mnOutlineLevel ).getStr(),
XML_max, OString::number( nLastXclCol + 1 ).getStr(),
XML_min, OString::number( mnFirstXclCol + 1 ).getStr(),
// OOXTODO: XML_phonetic,
XML_style, lcl_GetStyleId( rStrm, maXFId.mnXFIndex ).getStr(),
XML_width, OString::number( nTruncatedExcelColumnWidth ).getStr(),
FSEND );
}
XclExpColinfoBuffer::XclExpColinfoBuffer( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot ),
maDefcolwidth( rRoot ),
maOutlineBfr( rRoot ),
maHighestOutlineLevel( 0 )
{
}
void XclExpColinfoBuffer::Initialize( SCROW nLastScRow )
{
for( sal_uInt16 nScCol = 0, nLastScCol = GetMaxPos().Col(); nScCol <= nLastScCol; ++nScCol )
{
maColInfos.AppendNewRecord( new XclExpColinfo( GetRoot(), nScCol, nLastScRow, maOutlineBfr ) );
if( maOutlineBfr.GetLevel() > maHighestOutlineLevel )
{
maHighestOutlineLevel = maOutlineBfr.GetLevel();
}
}
}
void XclExpColinfoBuffer::Finalize( ScfUInt16Vec& rXFIndexes )
{
rXFIndexes.clear();
rXFIndexes.reserve( maColInfos.GetSize() );
size_t nPos, nSize;
// do not cache the record list size, it may change in the loop
for( nPos = 0; nPos < maColInfos.GetSize(); ++nPos )
{
XclExpColinfoRef xRec = maColInfos.GetRecord( nPos );
xRec->ConvertXFIndexes();
// try to merge with previous record
if( nPos > 0 )
{
XclExpColinfoRef xPrevRec = maColInfos.GetRecord( nPos - 1 );
if( xPrevRec->TryMerge( *xRec ) )
// adjust nPos to get the next COLINFO record at the same position
maColInfos.RemoveRecord( nPos-- );
}
}
// put XF indexes into passed vector, collect use count of all different widths
typedef ::std::map< sal_uInt16, sal_uInt16 > XclExpWidthMap;
XclExpWidthMap aWidthMap;
sal_uInt16 nMaxColCount = 0;
sal_uInt16 nMaxUsedWidth = 0;
for( nPos = 0, nSize = maColInfos.GetSize(); nPos < nSize; ++nPos )
{
XclExpColinfoRef xRec = maColInfos.GetRecord( nPos );
sal_uInt16 nColCount = xRec->GetColCount();
// add XF index to passed vector
rXFIndexes.resize( rXFIndexes.size() + nColCount, xRec->GetXFIndex() );
// collect use count of column width
sal_uInt16 nWidth = xRec->GetColWidth();
sal_uInt16& rnMapCount = aWidthMap[ nWidth ];
rnMapCount = rnMapCount + nColCount;
if( rnMapCount > nMaxColCount )
{
nMaxColCount = rnMapCount;
nMaxUsedWidth = nWidth;
}
}
maDefcolwidth.SetDefWidth( nMaxUsedWidth );
// remove all default COLINFO records
nPos = 0;
while( nPos < maColInfos.GetSize() )
{
XclExpColinfoRef xRec = maColInfos.GetRecord( nPos );
if( xRec->IsDefault( maDefcolwidth ) )
maColInfos.RemoveRecord( nPos );
else
++nPos;
}
}
void XclExpColinfoBuffer::Save( XclExpStream& rStrm )
{
// DEFCOLWIDTH
maDefcolwidth.Save( rStrm );
// COLINFO records
maColInfos.Save( rStrm );
}
void XclExpColinfoBuffer::SaveXml( XclExpXmlStream& rStrm )
{
if( maColInfos.IsEmpty() )
return;
sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream();
rWorksheet->startElement( XML_cols,
FSEND );
maColInfos.SaveXml( rStrm );
rWorksheet->endElement( XML_cols );
}
XclExpDefaultRowData::XclExpDefaultRowData() :
mnFlags( EXC_DEFROW_DEFAULTFLAGS ),
mnHeight( EXC_DEFROW_DEFAULTHEIGHT )
{
}
XclExpDefaultRowData::XclExpDefaultRowData( const XclExpRow& rRow ) :
mnFlags( EXC_DEFROW_DEFAULTFLAGS ),
mnHeight( rRow.GetHeight() )
{
::set_flag( mnFlags, EXC_DEFROW_HIDDEN, rRow.IsHidden() );
::set_flag( mnFlags, EXC_DEFROW_UNSYNCED, rRow.IsUnsynced() );
}
bool operator<( const XclExpDefaultRowData& rLeft, const XclExpDefaultRowData& rRight )
{
return (rLeft.mnHeight < rRight.mnHeight) ||
((rLeft.mnHeight == rRight.mnHeight) && (rLeft.mnFlags < rRight.mnFlags));
}
XclExpDefrowheight::XclExpDefrowheight() :
XclExpRecord( EXC_ID3_DEFROWHEIGHT, 4 )
{
}
void XclExpDefrowheight::SetDefaultData( const XclExpDefaultRowData& rDefData )
{
maDefData = rDefData;
}
void XclExpDefrowheight::WriteBody( XclExpStream& rStrm )
{
OSL_ENSURE_BIFF( rStrm.GetRoot().GetBiff() >= EXC_BIFF3 );
rStrm << maDefData.mnFlags << maDefData.mnHeight;
}
XclExpRow::XclExpRow( const XclExpRoot& rRoot, sal_uInt32 nXclRow,
XclExpRowOutlineBuffer& rOutlineBfr, bool bAlwaysEmpty ) :
XclExpRecord( EXC_ID3_ROW, 16 ),
XclExpRoot( rRoot ),
mnXclRow( nXclRow ),
mnHeight( 0 ),
mnFlags( EXC_ROW_DEFAULTFLAGS ),
mnXFIndex( EXC_XF_DEFAULTCELL ),
mnOutlineLevel( 0 ),
mnXclRowRpt( 1 ),
mnCurrentRow( nXclRow ),
mbAlwaysEmpty( bAlwaysEmpty ),
mbEnabled( true )
{
SCTAB nScTab = GetCurrScTab();
SCROW nScRow = static_cast< SCROW >( mnXclRow );
// *** Row flags *** ------------------------------------------------------
sal_uInt8 nRowFlags = GetDoc().GetRowFlags( nScRow, nScTab );
bool bUserHeight = ::get_flag< sal_uInt8 >( nRowFlags, CR_MANUALSIZE );
bool bHidden = GetDoc().RowHidden(nScRow, nScTab);
::set_flag( mnFlags, EXC_ROW_UNSYNCED, bUserHeight );
::set_flag( mnFlags, EXC_ROW_HIDDEN, bHidden );
// *** Row height *** -----------------------------------------------------
// Always get the actual row height even if the manual size flag is not set,
// to correctly export the heights of rows with wrapped texts.
mnHeight = GetDoc().GetRowHeight(nScRow, nScTab, false);
// *** Outline data *** ---------------------------------------------------
rOutlineBfr.Update( nScRow );
::set_flag( mnFlags, EXC_ROW_COLLAPSED, rOutlineBfr.IsCollapsed() );
::insert_value( mnFlags, rOutlineBfr.GetLevel(), 0, 3 );
mnOutlineLevel = rOutlineBfr.GetLevel();
// *** Progress bar *** ---------------------------------------------------
XclExpProgressBar& rProgress = GetProgressBar();
rProgress.IncRowRecordCount();
rProgress.Progress();
}
void XclExpRow::AppendCell( XclExpCellRef xCell, bool bIsMergedBase )
{
OSL_ENSURE( !mbAlwaysEmpty, "XclExpRow::AppendCell - row is marked to be always empty" );
// try to merge with last existing cell
InsertCell( xCell, maCellList.GetSize(), bIsMergedBase );
}
void XclExpRow::Finalize( const ScfUInt16Vec& rColXFIndexes, bool bProgress )
{
size_t nPos, nSize;
// *** Convert XF identifiers *** -----------------------------------------
// additionally collect the blank XF indexes
size_t nColCount = GetMaxPos().Col() + 1;
OSL_ENSURE( rColXFIndexes.size() == nColCount, "XclExpRow::Finalize - wrong column XF index count" );
ScfUInt16Vec aXFIndexes( nColCount, EXC_XF_NOTFOUND );
for( nPos = 0, nSize = maCellList.GetSize(); nPos < nSize; ++nPos )
{
XclExpCellRef xCell = maCellList.GetRecord( nPos );
xCell->ConvertXFIndexes( GetRoot() );
xCell->GetBlankXFIndexes( aXFIndexes );
}
// *** Fill gaps with BLANK/MULBLANK cell records *** ---------------------
/* This is needed because nonexistent cells in Calc are not formatted at all,
but in Excel they would have the column default format. Blank cells that
are equal to the respective column default are removed later in this function. */
if( !mbAlwaysEmpty )
{
// XF identifier representing default cell XF
XclExpMultiXFId aXFId( XclExpXFBuffer::GetDefCellXFId() );
aXFId.ConvertXFIndex( GetRoot() );
nPos = 0;
while( nPos <= maCellList.GetSize() ) // don't cache list size, may change in the loop
{
// get column index that follows previous cell
sal_uInt16 nFirstFreeXclCol = (nPos > 0) ? (maCellList.GetRecord( nPos - 1 )->GetLastXclCol() + 1) : 0;
// get own column index
sal_uInt16 nNextUsedXclCol = (nPos < maCellList.GetSize()) ? maCellList.GetRecord( nPos )->GetXclCol() : (GetMaxPos().Col() + 1);
// is there a gap?
if( nFirstFreeXclCol < nNextUsedXclCol )
{
aXFId.mnCount = nNextUsedXclCol - nFirstFreeXclCol;
XclExpCellRef xNewCell( new XclExpBlankCell( XclAddress( nFirstFreeXclCol, mnXclRow ), aXFId ) );
// insert the cell, InsertCell() may merge it with existing BLANK records
InsertCell( xNewCell, nPos, false );
// insert default XF indexes into aXFIndexes
::std::fill( aXFIndexes.begin() + nFirstFreeXclCol,
aXFIndexes.begin() + nNextUsedXclCol, aXFId.mnXFIndex );
// don't step forward with nPos, InsertCell() may remove records
}
else
++nPos;
}
}
// *** Find default row format *** ----------------------------------------
ScfUInt16Vec::iterator aCellBeg = aXFIndexes.begin(), aCellEnd = aXFIndexes.end(), aCellIt;
ScfUInt16Vec::const_iterator aColBeg = rColXFIndexes.begin(), aColIt;
// find most used XF index in the row
typedef ::std::map< sal_uInt16, size_t > XclExpXFIndexMap;
XclExpXFIndexMap aIndexMap;
sal_uInt16 nRowXFIndex = EXC_XF_DEFAULTCELL;
size_t nMaxXFCount = 0;
for( aCellIt = aCellBeg; aCellIt != aCellEnd; ++aCellIt )
{
if( *aCellIt != EXC_XF_NOTFOUND )
{
size_t& rnCount = aIndexMap[ *aCellIt ];
++rnCount;
if( rnCount > nMaxXFCount )
{
nRowXFIndex = *aCellIt;
nMaxXFCount = rnCount;
}
}
}
// decide whether to use the row default XF index or column default XF indexes
bool bUseColDefXFs = nRowXFIndex == EXC_XF_DEFAULTCELL;
if( !bUseColDefXFs )
{
// count needed XF indexes for blank cells with and without row default XF index
size_t nXFCountWithRowDefXF = 0;
size_t nXFCountWithoutRowDefXF = 0;
for( aCellIt = aCellBeg, aColIt = aColBeg; aCellIt != aCellEnd; ++aCellIt, ++aColIt )
{
sal_uInt16 nXFIndex = *aCellIt;
if( nXFIndex != EXC_XF_NOTFOUND )
{
if( nXFIndex != nRowXFIndex )
++nXFCountWithRowDefXF; // with row default XF index
if( nXFIndex != *aColIt )
++nXFCountWithoutRowDefXF; // without row default XF index
}
}
// use column XF indexes if this would cause less or equal number of BLANK records
bUseColDefXFs = nXFCountWithoutRowDefXF <= nXFCountWithRowDefXF;
}
// *** Remove unused BLANK cell records *** -------------------------------
if( bUseColDefXFs )
{
// use column default XF indexes
// #i194#: remove cell XF indexes equal to column default XF indexes
for( aCellIt = aCellBeg, aColIt = aColBeg; aCellIt != aCellEnd; ++aCellIt, ++aColIt )
if( *aCellIt == *aColIt )
*aCellIt = EXC_XF_NOTFOUND;
}
else
{
// use row default XF index
mnXFIndex = nRowXFIndex;
::set_flag( mnFlags, EXC_ROW_USEDEFXF );
// #98133#, #i194#, #i27407#: remove cell XF indexes equal to row default XF index
for( aCellIt = aCellBeg; aCellIt != aCellEnd; ++aCellIt )
if( *aCellIt == nRowXFIndex )
*aCellIt = EXC_XF_NOTFOUND;
}
// remove unused parts of BLANK/MULBLANK cell records
nPos = 0;
while( nPos < maCellList.GetSize() ) // do not cache list size, may change in the loop
{
XclExpCellRef xCell = maCellList.GetRecord( nPos );
xCell->RemoveUnusedBlankCells( aXFIndexes );
if( xCell->IsEmpty() )
maCellList.RemoveRecord( nPos );
else
++nPos;
}
// progress bar includes disabled rows; only update it in the lead thread.
if (bProgress)
GetProgressBar().Progress();
}
sal_uInt16 XclExpRow::GetFirstUsedXclCol() const
{
return maCellList.IsEmpty() ? 0 : maCellList.GetFirstRecord()->GetXclCol();
}
sal_uInt16 XclExpRow::GetFirstFreeXclCol() const
{
return maCellList.IsEmpty() ? 0 : (maCellList.GetLastRecord()->GetLastXclCol() + 1);
}
bool XclExpRow::IsDefaultable() const
{
const sal_uInt16 nFlagsAlwaysMarkedAsDefault = EXC_ROW_DEFAULTFLAGS | EXC_ROW_HIDDEN | EXC_ROW_UNSYNCED;
return !::get_flag( mnFlags, static_cast< sal_uInt16 >( ~nFlagsAlwaysMarkedAsDefault ) ) &&
IsEmpty();
}
void XclExpRow::DisableIfDefault( const XclExpDefaultRowData& rDefRowData )
{
mbEnabled = !IsDefaultable() ||
(mnHeight != rDefRowData.mnHeight) ||
(IsHidden() != rDefRowData.IsHidden()) ||
(IsUnsynced() != rDefRowData.IsUnsynced());
}
void XclExpRow::WriteCellList( XclExpStream& rStrm )
{
OSL_ENSURE( mbEnabled || maCellList.IsEmpty(), "XclExpRow::WriteCellList - cells in disabled row" );
maCellList.Save( rStrm );
}
void XclExpRow::Save( XclExpStream& rStrm )
{
if( mbEnabled )
{
mnCurrentRow = mnXclRow;
for ( sal_uInt32 i = 0; i < mnXclRowRpt; ++i, ++mnCurrentRow )
XclExpRecord::Save( rStrm );
}
}
void XclExpRow::InsertCell( XclExpCellRef xCell, size_t nPos, bool bIsMergedBase )
{
OSL_ENSURE( xCell, "XclExpRow::InsertCell - missing cell" );
/* If we have a multi-line text in a merged cell, and the resulting
row height has not been confirmed, we need to force the EXC_ROW_UNSYNCED
flag to be true to ensure Excel works correctly. */
if( bIsMergedBase && xCell->IsMultiLineText() )
::set_flag( mnFlags, EXC_ROW_UNSYNCED );
// try to merge with previous cell, insert the new cell if not successful
XclExpCellRef xPrevCell = maCellList.GetRecord( nPos - 1 );
if( xPrevCell && xPrevCell->TryMerge( *xCell ) )
xCell = xPrevCell;
else
maCellList.InsertRecord( xCell, nPos++ );
// nPos points now to following cell
// try to merge with following cell, remove it if successful
XclExpCellRef xNextCell = maCellList.GetRecord( nPos );
if( xNextCell && xCell->TryMerge( *xNextCell ) )
maCellList.RemoveRecord( nPos );
}
void XclExpRow::WriteBody( XclExpStream& rStrm )
{
rStrm << static_cast< sal_uInt16 >(mnCurrentRow)
<< GetFirstUsedXclCol()
<< GetFirstFreeXclCol()
<< mnHeight
<< sal_uInt32( 0 )
<< mnFlags
<< mnXFIndex;
}
void XclExpRow::SaveXml( XclExpXmlStream& rStrm )
{
if( !mbEnabled )
return;
sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream();
bool haveFormat = ::get_flag( mnFlags, EXC_ROW_USEDEFXF );
mnCurrentRow = mnXclRow + 1;
for ( sal_uInt32 i=0; i<mnXclRowRpt; ++i )
{
rWorksheet->startElement( XML_row,
XML_r, OString::number( (mnCurrentRow++) ).getStr(),
// OOXTODO: XML_spans, optional
XML_s, haveFormat ? lcl_GetStyleId( rStrm, mnXFIndex ).getStr() : nullptr,
XML_customFormat, XclXmlUtils::ToPsz( haveFormat ),
XML_ht, OString::number( (double) mnHeight / 20.0 ).getStr(),
XML_hidden, XclXmlUtils::ToPsz( ::get_flag( mnFlags, EXC_ROW_HIDDEN ) ),
XML_customHeight, XclXmlUtils::ToPsz( ::get_flag( mnFlags, EXC_ROW_UNSYNCED ) ),
XML_outlineLevel, OString::number( mnOutlineLevel ).getStr(),
XML_collapsed, XclXmlUtils::ToPsz( ::get_flag( mnFlags, EXC_ROW_COLLAPSED ) ),
// OOXTODO: XML_thickTop, bool
// OOXTODO: XML_thickBot, bool
// OOXTODO: XML_ph, bool
FSEND );
// OOXTODO: XML_extLst
maCellList.SaveXml( rStrm );
rWorksheet->endElement( XML_row );
}
}
XclExpRowBuffer::XclExpRowBuffer( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot ),
maOutlineBfr( rRoot ),
maDimensions( rRoot ),
maHighestOutlineLevel( 0 )
{
}
void XclExpRowBuffer::AppendCell( XclExpCellRef xCell, bool bIsMergedBase )
{
OSL_ENSURE( xCell, "XclExpRowBuffer::AppendCell - missing cell" );
GetOrCreateRow( xCell->GetXclRow(), false ).AppendCell( xCell, bIsMergedBase );
}
void XclExpRowBuffer::CreateRows( SCROW nFirstFreeScRow )
{
if( nFirstFreeScRow > 0 )
GetOrCreateRow( ::std::max ( nFirstFreeScRow - 1, GetMaxPos().Row() ), true );
}
class RowFinalizeTask : public comphelper::ThreadTask
{
bool mbProgress;
const ScfUInt16Vec& mrColXFIndexes;
std::vector< XclExpRow * > maRows;
public:
RowFinalizeTask( const ScfUInt16Vec& rColXFIndexes,
bool bProgress ) :
mbProgress( bProgress ),
mrColXFIndexes( rColXFIndexes ) {}
virtual ~RowFinalizeTask() {}
void push_back( XclExpRow *pRow ) { maRows.push_back( pRow ); }
virtual void doWork() override
{
for (XclExpRow* p : maRows)
p->Finalize( mrColXFIndexes, mbProgress );
}
};
void XclExpRowBuffer::Finalize( XclExpDefaultRowData& rDefRowData, const ScfUInt16Vec& rColXFIndexes )
{
// *** Finalize all rows *** ----------------------------------------------
GetProgressBar().ActivateFinalRowsSegment();
#if 1
// This is staggeringly slow, and each element operates only
// on its own data.
const size_t nRows = maRowMap.size();
const size_t nThreads = nRows < 128 ? 1 : comphelper::ThreadPool::getPreferredConcurrency();
#else
const size_t nThreads = 1; // globally disable multi-threading for now.
#endif
if (nThreads == 1)
{
RowMap::iterator itr, itrBeg = maRowMap.begin(), itrEnd = maRowMap.end();
for (itr = itrBeg; itr != itrEnd; ++itr)
itr->second->Finalize( rColXFIndexes, true );
}
else
{
comphelper::ThreadPool &rPool = comphelper::ThreadPool::getSharedOptimalPool();
std::vector<RowFinalizeTask*> aTasks(nThreads, nullptr);
for ( size_t i = 0; i < nThreads; i++ )
aTasks[ i ] = new RowFinalizeTask( rColXFIndexes, i == 0 );
RowMap::iterator itr, itrBeg = maRowMap.begin(), itrEnd = maRowMap.end();
size_t nIdx = 0;
for ( itr = itrBeg; itr != itrEnd; ++itr, ++nIdx )
aTasks[ nIdx % nThreads ]->push_back( itr->second.get() );
for ( size_t i = 1; i < nThreads; i++ )
rPool.pushTask( aTasks[ i ] );
// Progress bar updates must be synchronous to avoid deadlock
aTasks[0]->doWork();
rPool.waitUntilEmpty();
}
// *** Default row format *** ---------------------------------------------
typedef ::std::map< XclExpDefaultRowData, size_t > XclExpDefRowDataMap;
XclExpDefRowDataMap aDefRowMap;
XclExpDefaultRowData aMaxDefData;
size_t nMaxDefCount = 0;
// only look for default format in existing rows, if there are more than unused
XclExpRow* pPrev = nullptr;
typedef std::vector< XclExpRow* > XclRepeatedRows;
XclRepeatedRows aRepeated;
RowMap::iterator itr, itrBeg = maRowMap.begin(), itrEnd = maRowMap.end();
for (itr = itrBeg; itr != itrEnd; ++itr)
{
const RowRef& rRow = itr->second;
if ( rRow->IsDefaultable() )
{
XclExpDefaultRowData aDefData( *rRow );
size_t& rnDefCount = aDefRowMap[ aDefData ];
++rnDefCount;
if( rnDefCount > nMaxDefCount )
{
nMaxDefCount = rnDefCount;
aMaxDefData = aDefData;
}
}
if ( pPrev )
{
if ( pPrev->IsDefaultable() )
{
// if the previous row we processed is not
// defaultable then afaict the rows in between are
// not used ( and not repeatable )
sal_uInt32 nRpt = rRow->GetXclRow() - pPrev->GetXclRow();
if ( nRpt > 1 )
aRepeated.push_back( pPrev );
pPrev->SetXclRowRpt( nRpt );
XclExpDefaultRowData aDefData( *pPrev );
size_t& rnDefCount = aDefRowMap[ aDefData ];
rnDefCount += ( pPrev->GetXclRowRpt() - 1 );
if( rnDefCount > nMaxDefCount )
{
nMaxDefCount = rnDefCount;
aMaxDefData = aDefData;
}
}
}
pPrev = rRow.get();
}
// return the default row format to caller
rDefRowData = aMaxDefData;
// now disable repeating extra (empty) rows that are equal to
// default row height
for ( XclRepeatedRows::iterator it = aRepeated.begin(), it_end = aRepeated.end(); it != it_end; ++it)
{
if ( (*it)->GetXclRowRpt() > 1 && (*it)->GetHeight() == rDefRowData.mnHeight )
(*it)->SetXclRowRpt( 1 );
}
// *** Disable unused ROW records, find used area *** ---------------------
sal_uInt16 nFirstUsedXclCol = SAL_MAX_UINT16;
sal_uInt16 nFirstFreeXclCol = 0;
sal_uInt32 nFirstUsedXclRow = SAL_MAX_UINT32;
sal_uInt32 nFirstFreeXclRow = 0;
for (itr = itrBeg; itr != itrEnd; ++itr)
{
const RowRef& rRow = itr->second;
// disable unused rows
rRow->DisableIfDefault( aMaxDefData );
// find used column range
if( !rRow->IsEmpty() ) // empty rows return (0...0) as used range
{
nFirstUsedXclCol = ::std::min( nFirstUsedXclCol, rRow->GetFirstUsedXclCol() );
nFirstFreeXclCol = ::std::max( nFirstFreeXclCol, rRow->GetFirstFreeXclCol() );
}
// find used row range
if( rRow->IsEnabled() )
{
sal_uInt16 nXclRow = rRow->GetXclRow();
nFirstUsedXclRow = ::std::min< sal_uInt32 >( nFirstUsedXclRow, nXclRow );
nFirstFreeXclRow = ::std::max< sal_uInt32 >( nFirstFreeXclRow, nXclRow + 1 );
}
}
// adjust start position, if there are no or only empty/disabled ROW records
nFirstUsedXclCol = ::std::min( nFirstUsedXclCol, nFirstFreeXclCol );
nFirstUsedXclRow = ::std::min( nFirstUsedXclRow, nFirstFreeXclRow );
// initialize the DIMENSIONS record
maDimensions.SetDimensions(
nFirstUsedXclCol, nFirstUsedXclRow, nFirstFreeXclCol, nFirstFreeXclRow );
}
void XclExpRowBuffer::Save( XclExpStream& rStrm )
{
// DIMENSIONS record
maDimensions.Save( rStrm );
// save in blocks of 32 rows, each block contains first all ROWs, then all cells
size_t nSize = maRowMap.size();
RowMap::iterator itr, itrBeg = maRowMap.begin(), itrEnd = maRowMap.end();
RowMap::iterator itrBlkStart = maRowMap.begin(), itrBlkEnd = maRowMap.begin();
sal_uInt16 nStartXclRow = (nSize == 0) ? 0 : itrBeg->second->GetXclRow();
for (itr = itrBeg; itr != itrEnd; ++itr)
{
// find end of row block
while( (itrBlkEnd != itrEnd) && (itrBlkEnd->second->GetXclRow() - nStartXclRow < EXC_ROW_ROWBLOCKSIZE) )
++itrBlkEnd;
// write the ROW records
RowMap::iterator itRow;
for( itRow = itrBlkStart; itRow != itrBlkEnd; ++itRow )
itRow->second->Save( rStrm );
// write the cell records
for( itRow = itrBlkStart; itRow != itrBlkEnd; ++itRow )
itRow->second->WriteCellList( rStrm );
itrBlkStart = (itrBlkEnd == itrEnd) ? itrBlkEnd : itrBlkEnd++;
nStartXclRow += EXC_ROW_ROWBLOCKSIZE;
}
}
void XclExpRowBuffer::SaveXml( XclExpXmlStream& rStrm )
{
sal_Int32 nNonEmpty = 0;
RowMap::iterator itr = maRowMap.begin(), itrEnd = maRowMap.end();
for (; itr != itrEnd; ++itr)
if (itr->second->IsEnabled())
++nNonEmpty;
if (nNonEmpty == 0)
{
rStrm.GetCurrentStream()->singleElement( XML_sheetData, FSEND );
return;
}
sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream();
rWorksheet->startElement( XML_sheetData, FSEND );
for (itr = maRowMap.begin(); itr != itrEnd; ++itr)
itr->second->SaveXml(rStrm);
rWorksheet->endElement( XML_sheetData );
}
XclExpRow& XclExpRowBuffer::GetOrCreateRow( sal_uInt32 nXclRow, bool bRowAlwaysEmpty )
{
RowMap::iterator itr = maRowMap.begin();
ScDocument& rDoc = GetRoot().GetDoc();
SCTAB nScTab = GetRoot().GetCurrScTab();
for ( size_t nFrom = maRowMap.size(); nFrom <= nXclRow; ++nFrom )
{
itr = maRowMap.find(nFrom);
if ( itr == maRowMap.end() )
{
// only create RowMap entries if it is first row in spreadsheet,
// if it is the desired row, for rows that height differ from previous,
// if row is collapsed, or has outline level (tdf#100347).
if ( !nFrom || ( nFrom == nXclRow ) ||
( rDoc.GetRowHeight(nFrom, nScTab, false) != rDoc.GetRowHeight(nFrom - 1, nScTab, false) ) ||
( maOutlineBfr.IsCollapsed() ) ||
( maOutlineBfr.GetLevel() != 0 ) )
{
if( maOutlineBfr.GetLevel() > maHighestOutlineLevel )
{
maHighestOutlineLevel = maOutlineBfr.GetLevel();
}
RowRef p(new XclExpRow(GetRoot(), nFrom, maOutlineBfr, bRowAlwaysEmpty));
maRowMap.insert(RowMap::value_type(nFrom, p));
}
}
}
itr = maRowMap.find(nXclRow);
return *itr->second;
}
// Cell Table
XclExpCellTable::XclExpCellTable( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot ),
maColInfoBfr( rRoot ),
maRowBfr( rRoot ),
maArrayBfr( rRoot ),
maShrfmlaBfr( rRoot ),
maTableopBfr( rRoot ),
mxDefrowheight( new XclExpDefrowheight ),
mxGuts( new XclExpGuts( rRoot ) ),
mxNoteList( new XclExpNoteList ),
mxMergedcells( new XclExpMergedcells( rRoot ) ),
mxHyperlinkList( new XclExpHyperlinkList ),
mxDval( new XclExpDval( rRoot ) ),
mxExtLst( new XclExtLst( rRoot ) )
{
ScDocument& rDoc = GetDoc();
SCTAB nScTab = GetCurrScTab();
SvNumberFormatter& rFormatter = GetFormatter();
// maximum sheet limits
SCCOL nMaxScCol = GetMaxPos().Col();
SCROW nMaxScRow = GetMaxPos().Row();
// find used area (non-empty cells)
SCCOL nLastUsedScCol;
SCROW nLastUsedScRow;
rDoc.GetTableArea( nScTab, nLastUsedScCol, nLastUsedScRow );
if(nLastUsedScCol > nMaxScCol)
nLastUsedScCol = nMaxScCol;
if(nLastUsedScRow > nMaxScRow)
nLastUsedScRow = nMaxScRow;
ScRange aUsedRange( 0, 0, nScTab, nLastUsedScCol, nLastUsedScRow, nScTab );
GetAddressConverter().ValidateRange( aUsedRange, true );
nLastUsedScRow = aUsedRange.aEnd.Row();
// first row without any set attributes (height/hidden/...)
SCROW nFirstUnflaggedScRow = rDoc.GetLastFlaggedRow( nScTab ) + 1;
// find range of outlines
SCROW nFirstUngroupedScRow = 0;
if( const ScOutlineTable* pOutlineTable = rDoc.GetOutlineTable( nScTab ) )
{
SCCOLROW nScStartPos, nScEndPos;
const ScOutlineArray& rRowArray = pOutlineTable->GetRowArray();
rRowArray.GetRange( nScStartPos, nScEndPos );
// +1 because open/close button is in next row in Excel, +1 for "end->first unused"
nFirstUngroupedScRow = static_cast< SCROW >( nScEndPos + 2 );
}
// column settings
/* #i30411# Files saved with SO7/OOo1.x with nonstandard default column
formatting cause big Excel files, because all rows from row 1 to row
32000 are exported. Now, if the used area goes exactly to row 32000,
use this row as default and ignore all rows >32000.
#i59220# Tolerance of +-128 rows for inserted/removed rows. */
if( (31871 <= nLastUsedScRow) && (nLastUsedScRow <= 32127) && (nFirstUnflaggedScRow < nLastUsedScRow) && (nFirstUngroupedScRow <= nLastUsedScRow) )
nMaxScRow = nLastUsedScRow;
maColInfoBfr.Initialize( nMaxScRow );
// range for cell iterator
SCCOL nLastIterScCol = nMaxScCol;
SCROW nLastIterScRow = ulimit_cast< SCROW >( nLastUsedScRow, nMaxScRow );
ScUsedAreaIterator aIt( &rDoc, nScTab, 0, 0, nLastIterScCol, nLastIterScRow );
// activate the correct segment and sub segment at the progress bar
GetProgressBar().ActivateCreateRowsSegment();
for( bool bIt = aIt.GetNext(); bIt; bIt = aIt.GetNext() )
{
SCCOL nScCol = aIt.GetStartCol();
SCROW nScRow = aIt.GetRow();
SCCOL nLastScCol = aIt.GetEndCol();
ScAddress aScPos( nScCol, nScRow, nScTab );
XclAddress aXclPos( static_cast< sal_uInt16 >( nScCol ), static_cast< sal_uInt32 >( nScRow ) );
sal_uInt16 nLastXclCol = static_cast< sal_uInt16 >( nLastScCol );
const ScRefCellValue& rScCell = aIt.GetCell();
XclExpCellRef xCell;
const ScPatternAttr* pPattern = aIt.GetPattern();
// handle overlapped merged cells before creating the cell record
sal_uInt32 nMergeBaseXFId = EXC_XFID_NOTFOUND;
bool bIsMergedBase = false;
if( pPattern )
{
const SfxItemSet& rItemSet = pPattern->GetItemSet();
// base cell in a merged range
const ScMergeAttr& rMergeItem = GETITEM( rItemSet, ScMergeAttr, ATTR_MERGE );
bIsMergedBase = rMergeItem.IsMerged();
/* overlapped cell in a merged range; in Excel all merged cells
must contain same XF index, for correct border */
const ScMergeFlagAttr& rMergeFlagItem = GETITEM( rItemSet, ScMergeFlagAttr, ATTR_MERGE_FLAG );
if( rMergeFlagItem.IsOverlapped() )
nMergeBaseXFId = mxMergedcells->GetBaseXFId( aScPos );
}
OUString aAddNoteText; // additional text to be appended to a note
switch (rScCell.meType)
{
case CELLTYPE_VALUE:
{
double fValue = rScCell.mfValue;
// try to create a Boolean cell
if( pPattern && ((fValue == 0.0) || (fValue == 1.0)) )
{
sal_uLong nScNumFmt = GETITEMVALUE( pPattern->GetItemSet(), SfxUInt32Item, ATTR_VALUE_FORMAT, sal_uLong );
if( rFormatter.GetType( nScNumFmt ) == css::util::NumberFormat::LOGICAL )
xCell.reset( new XclExpBooleanCell(
GetRoot(), aXclPos, pPattern, nMergeBaseXFId, fValue != 0.0 ) );
}
// try to create an RK value (compressed floating-point number)
sal_Int32 nRkValue;
if( !xCell && XclTools::GetRKFromDouble( nRkValue, fValue ) )
xCell.reset( new XclExpRkCell(
GetRoot(), aXclPos, pPattern, nMergeBaseXFId, nRkValue ) );
// else: simple floating-point number cell
if( !xCell )
xCell.reset( new XclExpNumberCell(
GetRoot(), aXclPos, pPattern, nMergeBaseXFId, fValue ) );
}
break;
case CELLTYPE_STRING:
{
xCell.reset(new XclExpLabelCell(
GetRoot(), aXclPos, pPattern, nMergeBaseXFId, rScCell.mpString->getString()));
}
break;
case CELLTYPE_EDIT:
{
XclExpHyperlinkHelper aLinkHelper( GetRoot(), aScPos );
xCell.reset(new XclExpLabelCell(
GetRoot(), aXclPos, pPattern, nMergeBaseXFId, rScCell.mpEditText, aLinkHelper));
// add a single created HLINK record to the record list
if( aLinkHelper.HasLinkRecord() )
mxHyperlinkList->AppendRecord( aLinkHelper.GetLinkRecord() );
// add list of multiple URLs to the additional cell note text
if( aLinkHelper.HasMultipleUrls() )
aAddNoteText = ScGlobal::addToken( aAddNoteText, aLinkHelper.GetUrlList(), '\n', 2 );
}
break;
case CELLTYPE_FORMULA:
{
xCell.reset(new XclExpFormulaCell(
GetRoot(), aXclPos, pPattern, nMergeBaseXFId,
*rScCell.mpFormula, maArrayBfr, maShrfmlaBfr, maTableopBfr));
}
break;
default:
OSL_FAIL( "XclExpCellTable::XclExpCellTable - unknown cell type" );
SAL_FALLTHROUGH;
case CELLTYPE_NONE:
{
xCell.reset( new XclExpBlankCell(
GetRoot(), aXclPos, nLastXclCol, pPattern, nMergeBaseXFId ) );
}
break;
}
// insert the cell into the current row
if( xCell )
maRowBfr.AppendCell( xCell, bIsMergedBase );
if ( !aAddNoteText.isEmpty() )
mxNoteList->AppendNewRecord( new XclExpNote( GetRoot(), aScPos, nullptr, aAddNoteText ) );
// other sheet contents
if( pPattern )
{
const SfxItemSet& rItemSet = pPattern->GetItemSet();
// base cell in a merged range
if( bIsMergedBase )
{
const ScMergeAttr& rMergeItem = GETITEM( rItemSet, ScMergeAttr, ATTR_MERGE );
ScRange aScRange( aScPos );
aScRange.aEnd.IncCol( rMergeItem.GetColMerge() - 1 );
aScRange.aEnd.IncRow( rMergeItem.GetRowMerge() - 1 );
sal_uInt32 nXFId = xCell ? xCell->GetFirstXFId() : EXC_XFID_NOTFOUND;
// blank cells merged vertically may occur repeatedly
OSL_ENSURE( (aScRange.aStart.Col() == aScRange.aEnd.Col()) || (nScCol == nLastScCol),
"XclExpCellTable::XclExpCellTable - invalid repeated blank merged cell" );
for( SCCOL nIndex = nScCol; nIndex <= nLastScCol; ++nIndex )
{
mxMergedcells->AppendRange( aScRange, nXFId );
aScRange.aStart.IncCol();
aScRange.aEnd.IncCol();
}
}
// data validation
if( ScfTools::CheckItem( rItemSet, ATTR_VALIDDATA, false ) )
{
sal_uLong nScHandle = GETITEMVALUE( rItemSet, SfxUInt32Item, ATTR_VALIDDATA, sal_uLong );
ScRange aScRange( aScPos );
aScRange.aEnd.SetCol( nLastScCol );
mxDval->InsertCellRange( aScRange, nScHandle );
}
}
}
// create missing row settings for rows anyhow flagged or with outlines
maRowBfr.CreateRows( ::std::max( nFirstUnflaggedScRow, nFirstUngroupedScRow ) );
}
void XclExpCellTable::Finalize()
{
// Finalize multiple operations.
maTableopBfr.Finalize();
/* Finalize column buffer. This calculates column default XF indexes from
the XF identifiers and fills a vector with these XF indexes. */
ScfUInt16Vec aColXFIndexes;
maColInfoBfr.Finalize( aColXFIndexes );
/* Finalize row buffer. This calculates all cell XF indexes from the XF
identifiers. Then the XF index vector aColXFIndexes (filled above) is
used to calculate the row default formats. With this, all unneeded blank
cell records (equal to row default or column default) will be removed.
The function returns the (most used) default row format in aDefRowData. */
XclExpDefaultRowData aDefRowData;
maRowBfr.Finalize( aDefRowData, aColXFIndexes );
// Initialize the DEFROWHEIGHT record.
mxDefrowheight->SetDefaultData( aDefRowData );
}
XclExpRecordRef XclExpCellTable::CreateRecord( sal_uInt16 nRecId ) const
{
XclExpRecordRef xRec;
switch( nRecId )
{
case EXC_ID3_DIMENSIONS: xRec.reset( new XclExpDelegatingRecord( &const_cast<XclExpRowBuffer*>(&maRowBfr)->GetDimensions() ) ); break;
case EXC_ID2_DEFROWHEIGHT: xRec = mxDefrowheight; break;
case EXC_ID_GUTS: xRec = mxGuts; break;
case EXC_ID_NOTE: xRec = mxNoteList; break;
case EXC_ID_MERGEDCELLS: xRec = mxMergedcells; break;
case EXC_ID_HLINK: xRec = mxHyperlinkList; break;
case EXC_ID_DVAL: xRec = mxDval; break;
case EXC_ID_EXTLST: xRec = mxExtLst; break;
default: OSL_FAIL( "XclExpCellTable::CreateRecord - unknown record id" );
}
return xRec;
}
void XclExpCellTable::Save( XclExpStream& rStrm )
{
// DEFCOLWIDTH and COLINFOs
maColInfoBfr.Save( rStrm );
// ROWs and cell records
maRowBfr.Save( rStrm );
}
void XclExpCellTable::SaveXml( XclExpXmlStream& rStrm )
{
// DEFAULT row height
XclExpDefaultRowData& rDefData = mxDefrowheight->GetDefaultData();
sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream();
rWorksheet->startElement( XML_sheetFormatPr,
// OOXTODO: XML_baseColWidth
// OOXTODO: XML_defaultColWidth
// OOXTODO: XML_customHeight
// OOXTODO: XML_zeroHeight
// OOXTODO: XML_thickTop
// OOXTODO: XML_thickBottom
XML_defaultRowHeight, OString::number( static_cast< double> ( rDefData.mnHeight ) / 20.0 ).getStr(),
XML_outlineLevelRow, OString::number( maRowBfr.GetHighestOutlineLevel() ).getStr(),
XML_outlineLevelCol, OString::number( maColInfoBfr.GetHighestOutlineLevel() ).getStr(),
FSEND );
rWorksheet->endElement( XML_sheetFormatPr );
maColInfoBfr.SaveXml( rStrm );
maRowBfr.SaveXml( rStrm );
mxExtLst->SaveXml( rStrm );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|