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
|
/**********************************************************************
* $Id: mitab_tabfile.cpp,v 1.78 2010-10-08 18:40:12 aboudreault Exp $
*
* Name: mitab_tabfile.cpp
* Project: MapInfo TAB Read/Write library
* Language: C++
* Purpose: Implementation of the TABFile class, the main class of the lib.
* To be used by external programs to handle reading/writing of
* features from/to TAB datasets.
* Author: Daniel Morissette, dmorissette@dmsolutions.ca
*
**********************************************************************
* Copyright (c) 1999-2003, Daniel Morissette
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
**********************************************************************
*
* $Log: mitab_tabfile.cpp,v $
* Revision 1.78 2010-10-08 18:40:12 aboudreault
* Fixed missing initializations that cause crashes
*
* Revision 1.77 2010-10-08 18:38:13 aboudreault
* Added attribute index support for the sql queries in mapinfo tab format (GDAL bug #3687)
*
* Revision 1.76 2010-07-07 19:00:15 aboudreault
* Cleanup Win32 Compile Warnings (GDAL bug #2930)
*
* Revision 1.75 2010-07-05 14:58:33 aboudreault
* Fixed bad feature count after we deleted a feature in MapInfo (bug 2227)
*
* Revision 1.74 2010-01-07 20:39:12 aboudreault
* Added support to handle duplicate field names, Added validation to check if a field name start with a number (bug 2141)
*
* Revision 1.73 2008-11-27 20:50:23 aboudreault
* Improved support for OGR date/time types. New Read/Write methods (bug 1948)
* Added support of OGR date/time types for MIF features.
*
* Revision 1.72 2008/11/17 22:06:21 aboudreault
* Added support to use OFTDateTime/OFTDate/OFTTime type when compiled with
* OGR and fixed reading/writing support for these types.
*
* Revision 1.71 2008/09/26 14:40:24 aboudreault
* Fixed bug: MITAB doesn't support writing DateTime type (bug 1948)
*
* Revision 1.70 2008/06/13 18:39:21 aboudreault
* Fixed problem with corrupt pointer if file not found (bug 1899) and
* fixed tabdump build problem if DEBUG option not provided (bug 1898)
*
* Revision 1.69 2008/03/05 20:59:10 dmorissette
* Purged CVS logs in header
*
* Revision 1.68 2008/03/05 20:35:39 dmorissette
* Replace MITAB 1.x SetFeature() with a CreateFeature() for V2.x (bug 1859)
*
* Revision 1.67 2008/01/29 21:56:39 dmorissette
* Update dataset version properly for Date/Time/DateTime field types (#1754)
*
* Revision 1.66 2008/01/29 20:46:32 dmorissette
* Added support for v9 Time and DateTime fields (byg 1754)
*
* Revision 1.65 2007/09/12 20:22:31 dmorissette
* Added TABFeature::CreateFromMapInfoType()
*
* Revision 1.64 2007/06/21 14:00:23 dmorissette
* Added missing cast in isspace() calls to avoid failed assertion on Windows
* (MITAB bug 1737, GDAL ticket 1678))
*
* Revision 1.63 2007/06/12 13:52:38 dmorissette
* Added IMapInfoFile::SetCharset() method (bug 1734)
*
* Revision 1.62 2007/06/12 12:50:40 dmorissette
* Use Quick Spatial Index by default until bug 1732 is fixed (broken files
* produced by current coord block splitting technique).
*
* Revision 1.61 2007/03/21 21:15:56 dmorissette
* Added SetQuickSpatialIndexMode() which generates a non-optimal spatial
* index but results in faster write time (bug 1669)
*
* ...
*
* Revision 1.1 1999/07/12 04:18:25 daniel
* Initial checkin
*
**********************************************************************/
#include "mitab.h"
#include "mitab_utils.h"
#include "cpl_minixml.h"
#include <ctype.h> /* isspace() */
/*=====================================================================
* class TABFile
*====================================================================*/
/**********************************************************************
* TABFile::TABFile()
*
* Constructor.
**********************************************************************/
TABFile::TABFile()
{
m_eAccessMode = TABRead;
m_pszFname = NULL;
m_papszTABFile = NULL;
m_nVersion = 300;
m_eTableType = TABTableNative;
m_poMAPFile = NULL;
m_poDATFile = NULL;
m_poINDFile = NULL;
m_poDefn = NULL;
m_poSpatialRef = NULL;
m_poCurFeature = NULL;
m_nCurFeatureId = 0;
m_nLastFeatureId = 0;
m_panIndexNo = NULL;
bUseSpatialTraversal = FALSE;
m_panMatchingFIDs = NULL;
m_iMatchingFID = 0;
}
/**********************************************************************
* TABFile::~TABFile()
*
* Destructor.
**********************************************************************/
TABFile::~TABFile()
{
Close();
}
/************************************************************************/
/* GetFeatureCount() */
/************************************************************************/
int TABFile::GetFeatureCount (int bForce)
{
if( m_poFilterGeom != NULL || m_poAttrQuery != NULL || bForce)
return OGRLayer::GetFeatureCount( bForce );
else
return m_nLastFeatureId;
}
/************************************************************************/
/* ResetReading() */
/************************************************************************/
void TABFile::ResetReading()
{
CPLFree(m_panMatchingFIDs);
m_panMatchingFIDs = NULL;
m_iMatchingFID = 0;
m_nCurFeatureId = 0;
if( m_poMAPFile != NULL )
m_poMAPFile->ResetReading();
/* -------------------------------------------------------------------- */
/* Decide whether to operate in spatial traversal mode or not, */
/* and ensure the current spatial filter is applied to the map */
/* file object. */
/* -------------------------------------------------------------------- */
if( m_poMAPFile )
{
bUseSpatialTraversal = FALSE;
m_poMAPFile->ResetCoordFilter();
if( m_poFilterGeom != NULL )
{
OGREnvelope sEnvelope;
TABVertex sMin, sMax;
TABMAPHeaderBlock *poHeader;
poHeader = m_poMAPFile->GetHeaderBlock();
m_poFilterGeom->getEnvelope( &sEnvelope );
m_poMAPFile->GetCoordFilter( sMin, sMax );
if( sEnvelope.MinX > sMin.x
|| sEnvelope.MinY > sMin.y
|| sEnvelope.MaxX < sMax.x
|| sEnvelope.MaxY < sMax.y )
{
bUseSpatialTraversal = TRUE;
sMin.x = sEnvelope.MinX;
sMin.y = sEnvelope.MinY;
sMax.x = sEnvelope.MaxX;
sMax.y = sEnvelope.MaxY;
m_poMAPFile->SetCoordFilter( sMin, sMax );
}
}
}
}
/**********************************************************************
* TABFile::Open()
*
* Open a .TAB dataset and the associated files, and initialize the
* structures to be ready to read features from (or write to) it.
*
* Supported access modes are "r" (read-only) and "w" (create new dataset).
*
* Set bTestOpenNoError=TRUE to silently return -1 with no error message
* if the file cannot be opened. This is intended to be used in the
* context of a TestOpen() function. The default value is FALSE which
* means that an error is reported if the file cannot be opened.
*
* Note that dataset extents will have to be set using SetBounds() before
* any feature can be written to a newly created dataset.
*
* In read mode, a valid dataset must have at least a .TAB and a .DAT file.
* The .MAP and .ID files are optional and if they do not exist then
* all features will be returned with NONE geometry.
*
* Returns 0 on success, -1 on error.
**********************************************************************/
int TABFile::Open(const char *pszFname, const char *pszAccess,
GBool bTestOpenNoError /*=FALSE*/ )
{
char *pszTmpFname = NULL;
int nFnameLen = 0;
CPLErrorReset();
if (m_poMAPFile)
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"Open() failed: object already contains an open file");
return -1;
}
/*-----------------------------------------------------------------
* Validate access mode
*----------------------------------------------------------------*/
if (EQUALN(pszAccess, "r", 1))
{
m_eAccessMode = TABRead;
pszAccess = "rb";
}
else if (EQUALN(pszAccess, "w", 1))
{
m_eAccessMode = TABWrite;
pszAccess = "wb";
}
else
{
if (!bTestOpenNoError)
CPLError(CE_Failure, CPLE_FileIO,
"Open() failed: access mode \"%s\" not supported", pszAccess);
else
CPLErrorReset();
return -1;
}
/*-----------------------------------------------------------------
* Make sure filename has a .TAB extension...
*----------------------------------------------------------------*/
m_pszFname = CPLStrdup(pszFname);
nFnameLen = strlen(m_pszFname);
if (nFnameLen > 4 && (strcmp(m_pszFname+nFnameLen-4, ".TAB")==0 ||
strcmp(m_pszFname+nFnameLen-4, ".MAP")==0 ||
strcmp(m_pszFname+nFnameLen-4, ".DAT")==0 ) )
strcpy(m_pszFname+nFnameLen-4, ".TAB");
else if (nFnameLen > 4 && (EQUAL(m_pszFname+nFnameLen-4, ".tab") ||
EQUAL(m_pszFname+nFnameLen-4, ".map") ||
EQUAL(m_pszFname+nFnameLen-4, ".dat") ) )
strcpy(m_pszFname+nFnameLen-4, ".tab");
else
{
if (!bTestOpenNoError)
CPLError(CE_Failure, CPLE_FileIO,
"Open() failed for %s: invalid filename extension",
m_pszFname);
else
CPLErrorReset();
CPLFree(m_pszFname);
m_pszFname = NULL;
return -1;
}
pszTmpFname = CPLStrdup(m_pszFname);
#ifndef _WIN32
/*-----------------------------------------------------------------
* On Unix, make sure extension uses the right cases
* We do it even for write access because if a file with the same
* extension already exists we want to overwrite it.
*----------------------------------------------------------------*/
TABAdjustFilenameExtension(m_pszFname);
#endif
/*-----------------------------------------------------------------
* Handle .TAB file... depends on access mode.
*----------------------------------------------------------------*/
if (m_eAccessMode == TABRead)
{
/*-------------------------------------------------------------
* Open .TAB file... since it's a small text file, we will just load
* it as a stringlist in memory.
*------------------------------------------------------------*/
m_papszTABFile = TAB_CSLLoad(m_pszFname);
if (m_papszTABFile == NULL)
{
if (!bTestOpenNoError)
{
CPLError(CE_Failure, CPLE_FileIO,
"Failed opening %s.", m_pszFname);
}
CPLFree(m_pszFname);
m_pszFname = NULL;
CSLDestroy(m_papszTABFile);
m_papszTABFile = NULL;
CPLFree( pszTmpFname );
return -1;
}
/*-------------------------------------------------------------
* Do a first pass on the TAB header to establish the type of
* dataset we have (NATIVE, DBF, etc.)... and also to know if
* it is a supported type.
*------------------------------------------------------------*/
if ( ParseTABFileFirstPass(bTestOpenNoError) != 0 )
{
// No need to produce an error... it's already been done if
// necessary... just cleanup and exit.
CPLFree(m_pszFname);
m_pszFname = NULL;
CSLDestroy(m_papszTABFile);
m_papszTABFile = NULL;
CPLFree( pszTmpFname );
return -1;
}
}
else
{
/*-------------------------------------------------------------
* In Write access mode, the .TAB file will be written during the
* Close() call... we will just set some defaults here.
*------------------------------------------------------------*/
m_nVersion = 300;
CPLFree(m_pszCharset);
m_pszCharset = CPLStrdup("Neutral");
m_eTableType = TABTableNative;
/*-------------------------------------------------------------
* Do initial setup of feature definition.
*------------------------------------------------------------*/
char *pszFeatureClassName = TABGetBasename(m_pszFname);
m_poDefn = new OGRFeatureDefn(pszFeatureClassName);
m_poDefn->Reference();
CPLFree(pszFeatureClassName);
}
/*-----------------------------------------------------------------
* Open .DAT file (or .DBF)
*----------------------------------------------------------------*/
if (nFnameLen > 4 && strcmp(pszTmpFname+nFnameLen-4, ".TAB")==0)
{
if (m_eTableType == TABTableDBF)
strcpy(pszTmpFname+nFnameLen-4, ".DBF");
else // Default is NATIVE
strcpy(pszTmpFname+nFnameLen-4, ".DAT");
}
else
{
if (m_eTableType == TABTableDBF)
strcpy(pszTmpFname+nFnameLen-4, ".dbf");
else // Default is NATIVE
strcpy(pszTmpFname+nFnameLen-4, ".dat");
}
#ifndef _WIN32
TABAdjustFilenameExtension(pszTmpFname);
#endif
m_poDATFile = new TABDATFile;
if ( m_poDATFile->Open(pszTmpFname, pszAccess, m_eTableType) != 0)
{
// Open Failed... an error has already been reported, just return.
CPLFree(pszTmpFname);
Close();
if (bTestOpenNoError)
CPLErrorReset();
return -1;
}
m_nLastFeatureId = m_poDATFile->GetNumRecords();
/*-----------------------------------------------------------------
* Parse .TAB file field defs and build FeatureDefn (only in read access)
*----------------------------------------------------------------*/
if (m_eAccessMode == TABRead && ParseTABFileFields() != 0)
{
// Failed... an error has already been reported, just return.
CPLFree(pszTmpFname);
Close();
if (bTestOpenNoError)
CPLErrorReset();
return -1;
}
/*-----------------------------------------------------------------
* Open .MAP (and .ID) file
* Note that the .MAP and .ID files are optional. Failure to open them
* is not an error... it simply means that all features will be returned
* with NONE geometry.
*----------------------------------------------------------------*/
if (nFnameLen > 4 && strcmp(pszTmpFname+nFnameLen-4, ".DAT")==0)
strcpy(pszTmpFname+nFnameLen-4, ".MAP");
else
strcpy(pszTmpFname+nFnameLen-4, ".map");
#ifndef _WIN32
TABAdjustFilenameExtension(pszTmpFname);
#endif
m_poMAPFile = new TABMAPFile;
if (m_eAccessMode == TABRead)
{
/*-------------------------------------------------------------
* Read access: .MAP/.ID are optional... try to open but return
* no error if files do not exist.
*------------------------------------------------------------*/
if (m_poMAPFile->Open(pszTmpFname, pszAccess, TRUE) < 0)
{
// File exists, but Open Failed...
// we have to produce an error message
if (!bTestOpenNoError)
CPLError(CE_Failure, CPLE_FileIO,
"Open() failed for %s", pszTmpFname);
else
CPLErrorReset();
CPLFree(pszTmpFname);
Close();
return -1;
}
/*-------------------------------------------------------------
* Set geometry type if the geometry objects are uniform.
*------------------------------------------------------------*/
int numPoints=0, numRegions=0, numTexts=0, numLines=0;
GetFeatureCountByType( numPoints, numLines, numRegions, numTexts);
numPoints += numTexts;
if( numPoints > 0 && numLines == 0 && numRegions == 0 )
m_poDefn->SetGeomType( wkbPoint );
else if( numPoints == 0 && numLines > 0 && numRegions == 0 )
m_poDefn->SetGeomType( wkbLineString );
else
/* we leave it unknown indicating a mixture */;
}
else if (m_poMAPFile->Open(pszTmpFname, pszAccess) != 0)
{
// Open Failed for write...
// an error has already been reported, just return.
CPLFree(pszTmpFname);
Close();
if (bTestOpenNoError)
CPLErrorReset();
return -1;
}
/*-----------------------------------------------------------------
* Initializing the attribute index (.IND) support
*----------------------------------------------------------------*/
CPLXMLNode *psRoot = CPLCreateXMLNode( NULL, CXT_Element, "OGRMILayerAttrIndex" );
CPLCreateXMLElementAndValue( psRoot, "MIIDFilename", CPLResetExtension( pszFname, "IND" ) );
OGRFeatureDefn *poLayerDefn = GetLayerDefn();
int iField, iIndexIndex, bHasIndex = 0;
for( iField = 0; iField < poLayerDefn->GetFieldCount(); iField++ )
{
iIndexIndex = GetFieldIndexNumber(iField);
if (iIndexIndex > 0)
{
CPLXMLNode *psIndex = CPLCreateXMLNode( psRoot, CXT_Element, "OGRMIAttrIndex" );
CPLCreateXMLElementAndValue( psIndex, "FieldIndex", CPLSPrintf( "%d", iField ) );
CPLCreateXMLElementAndValue( psIndex, "FieldName",
poLayerDefn->GetFieldDefn(iField)->GetNameRef() );
CPLCreateXMLElementAndValue( psIndex, "IndexIndex", CPLSPrintf( "%d", iIndexIndex ) );
bHasIndex = 1;
}
}
if (bHasIndex)
{
char *pszRawXML = CPLSerializeXMLTree( psRoot );
InitializeIndexSupport( pszRawXML );
CPLFree( pszRawXML );
}
CPLDestroyXMLNode( psRoot );
CPLFree(pszTmpFname);
pszTmpFname = NULL;
/*-----------------------------------------------------------------
* __TODO__ we could probably call GetSpatialRef() here to force
* parsing the projection information... this would allow us to
* assignSpatialReference() on the geometries that we return.
*----------------------------------------------------------------*/
return 0;
}
/**********************************************************************
* TABFile::ParseTABFileFirstPass()
*
* Do a first pass in the TAB header file to establish the table type, etc.
* and store any useful information into class members.
*
* This private method should be used only during the Open() call.
*
* Returns 0 on success, -1 on error.
**********************************************************************/
int TABFile::ParseTABFileFirstPass(GBool bTestOpenNoError)
{
int iLine, numLines, numFields = 0;
char **papszTok=NULL;
GBool bInsideTableDef = FALSE, bFoundTableFields=FALSE;
if (m_eAccessMode != TABRead)
{
CPLError(CE_Failure, CPLE_NotSupported,
"ParseTABFile() can be used only with Read access.");
return -1;
}
numLines = CSLCount(m_papszTABFile);
for(iLine=0; iLine<numLines; iLine++)
{
/*-------------------------------------------------------------
* Tokenize the next .TAB line, and check first keyword
*------------------------------------------------------------*/
CSLDestroy(papszTok);
papszTok = CSLTokenizeStringComplex(m_papszTABFile[iLine], " \t(),;",
TRUE, FALSE);
if (CSLCount(papszTok) < 2)
continue; // All interesting lines have at least 2 tokens
if (EQUAL(papszTok[0], "!version"))
{
m_nVersion = atoi(papszTok[1]);
if (m_nVersion == 100)
{
/* Version 100 files contain only the fields definition,
* so we set default values for the other params.
*/
bInsideTableDef = TRUE;
CPLFree(m_pszCharset);
m_pszCharset = CPLStrdup("Neutral");
m_eTableType = TABTableNative;
}
}
else if (EQUAL(papszTok[0], "!edit_version"))
{
/* Sometimes, V450 files have version 300 + edit_version 450
* for us version and edit_version are the same
*/
m_nVersion = atoi(papszTok[1]);
}
else if (EQUAL(papszTok[0], "!charset"))
{
CPLFree(m_pszCharset);
m_pszCharset = CPLStrdup(papszTok[1]);
}
else if (EQUAL(papszTok[0], "Definition") &&
EQUAL(papszTok[1], "Table") )
{
bInsideTableDef = TRUE;
}
else if (bInsideTableDef && !bFoundTableFields &&
(EQUAL(papszTok[0], "Type") || EQUAL(papszTok[0],"FORMAT:")) )
{
if (EQUAL(papszTok[1], "NATIVE") || EQUAL(papszTok[1], "LINKED"))
m_eTableType = TABTableNative;
else if (EQUAL(papszTok[1], "DBF"))
m_eTableType = TABTableDBF;
else
{
// Type=ACCESS, or other unsupported type... cannot open!
if (!bTestOpenNoError)
CPLError(CE_Failure, CPLE_NotSupported,
"Unsupported table type '%s' in file %s. "
"This type of .TAB file cannot be read by this library.",
papszTok[1], m_pszFname);
CSLDestroy(papszTok);
return -1;
}
}
else if (bInsideTableDef && !bFoundTableFields &&
(EQUAL(papszTok[0],"Fields") || EQUAL(papszTok[0],"FIELDS:")))
{
/*---------------------------------------------------------
* We found the list of table fields
* Just remember number of fields... the field types will be
* parsed inside ParseTABFileFields() later...
*--------------------------------------------------------*/
bFoundTableFields = TRUE;
numFields = atoi(papszTok[1]);
if (numFields < 1 || numFields>2048 || iLine+numFields >= numLines)
{
if (!bTestOpenNoError)
CPLError(CE_Failure, CPLE_FileIO,
"Invalid number of fields (%s) at line %d in file %s",
papszTok[1], iLine+1, m_pszFname);
CSLDestroy(papszTok);
return -1;
}
bInsideTableDef = FALSE;
}/* end of fields section*/
else
{
// Simply Ignore unrecognized lines
}
}
CSLDestroy(papszTok);
if (m_pszCharset == NULL)
m_pszCharset = CPLStrdup("Neutral");
if (numFields == 0)
{
if (!bTestOpenNoError)
CPLError(CE_Failure, CPLE_NotSupported,
"%s contains no table field definition. "
"This type of .TAB file cannot be read by this library.",
m_pszFname);
return -1;
}
return 0;
}
/**********************************************************************
* TABFile::ParseTABFileFields()
*
* Extract the field definition from the TAB header file, validate
* with what we have in the previously opened .DAT or .DBF file, and
* finally build the m_poDefn OGRFeatureDefn for this dataset.
*
* This private method should be used only during the Open() call and after
* ParseTABFileFirstPass() has been called.
*
* Returns 0 on success, -1 on error.
**********************************************************************/
int TABFile::ParseTABFileFields()
{
int iLine, numLines=0, numTok, nStatus;
char **papszTok=NULL;
OGRFieldDefn *poFieldDefn;
if (m_eAccessMode != TABRead)
{
CPLError(CE_Failure, CPLE_NotSupported,
"ParseTABFile() can be used only with Read access.");
return -1;
}
char *pszFeatureClassName = TABGetBasename(m_pszFname);
m_poDefn = new OGRFeatureDefn(pszFeatureClassName);
CPLFree(pszFeatureClassName);
// Ref count defaults to 0... set it to 1
m_poDefn->Reference();
/*-------------------------------------------------------------
* Scan for fields.
*------------------------------------------------------------*/
numLines = CSLCount(m_papszTABFile);
for(iLine=0; iLine<numLines; iLine++)
{
/*-------------------------------------------------------------
* Tokenize the next .TAB line, and check first keyword
*------------------------------------------------------------*/
const char *pszStr = m_papszTABFile[iLine];
while(*pszStr != '\0' && isspace((unsigned char)*pszStr))
pszStr++;
if (EQUALN(pszStr, "Fields", 6))
{
/*---------------------------------------------------------
* We found the list of table fields
*--------------------------------------------------------*/
int iField, numFields;
numFields = atoi(pszStr+7);
if (numFields < 1 || numFields > 2048 ||
iLine+numFields >= numLines)
{
CPLError(CE_Failure, CPLE_FileIO,
"Invalid number of fields (%s) at line %d in file %s",
pszStr+7, iLine+1, m_pszFname);
CSLDestroy(papszTok);
return -1;
}
// Alloc the array to keep track of indexed fields
m_panIndexNo = (int *)CPLCalloc(numFields, sizeof(int));
iLine++;
poFieldDefn = NULL;
for(iField=0; iField<numFields; iField++, iLine++)
{
/*-----------------------------------------------------
* For each field definition found in the .TAB:
* Pass the info to the DAT file object. It will validate
* the info with what is found in the .DAT header, and will
* also use this info later to interpret field values.
*
* We also create the OGRFieldDefn at the same time to
* initialize the OGRFeatureDefn
*----------------------------------------------------*/
CSLDestroy(papszTok);
papszTok = CSLTokenizeStringComplex(m_papszTABFile[iLine],
" \t(),;",
TRUE, FALSE);
numTok = CSLCount(papszTok);
nStatus = -1;
CPLAssert(m_poDefn);
if (numTok >= 3 && EQUAL(papszTok[1], "char"))
{
/*-------------------------------------------------
* CHAR type
*------------------------------------------------*/
nStatus = m_poDATFile->ValidateFieldInfoFromTAB(iField,
papszTok[0],
TABFChar,
atoi(papszTok[2]),
0);
poFieldDefn = new OGRFieldDefn(papszTok[0], OFTString);
poFieldDefn->SetWidth(atoi(papszTok[2]));
}
else if (numTok >= 2 && EQUAL(papszTok[1], "integer"))
{
/*-------------------------------------------------
* INTEGER type
*------------------------------------------------*/
nStatus = m_poDATFile->ValidateFieldInfoFromTAB(iField,
papszTok[0],
TABFInteger,
0,
0);
poFieldDefn = new OGRFieldDefn(papszTok[0], OFTInteger);
if( numTok > 2 && atoi(papszTok[2]) > 0 )
poFieldDefn->SetWidth( atoi(papszTok[2]) );
}
else if (numTok >= 2 && EQUAL(papszTok[1], "smallint"))
{
/*-------------------------------------------------
* SMALLINT type
*------------------------------------------------*/
nStatus = m_poDATFile->ValidateFieldInfoFromTAB(iField,
papszTok[0],
TABFSmallInt,
0,
0);
poFieldDefn = new OGRFieldDefn(papszTok[0], OFTInteger);
if( numTok > 2 && atoi(papszTok[2]) > 0 )
poFieldDefn->SetWidth( atoi(papszTok[2]) );
}
else if (numTok >= 4 && EQUAL(papszTok[1], "decimal"))
{
/*-------------------------------------------------
* DECIMAL type
*------------------------------------------------*/
nStatus = m_poDATFile->ValidateFieldInfoFromTAB(iField,
papszTok[0],
TABFDecimal,
atoi(papszTok[2]),
atoi(papszTok[3]));
poFieldDefn = new OGRFieldDefn(papszTok[0], OFTReal);
poFieldDefn->SetWidth(atoi(papszTok[2]));
poFieldDefn->SetPrecision(atoi(papszTok[3]));
}
else if (numTok >= 2 && EQUAL(papszTok[1], "float"))
{
/*-------------------------------------------------
* FLOAT type
*------------------------------------------------*/
nStatus = m_poDATFile->ValidateFieldInfoFromTAB(iField,
papszTok[0],
TABFFloat,
0, 0);
poFieldDefn = new OGRFieldDefn(papszTok[0], OFTReal);
}
else if (numTok >= 2 && EQUAL(papszTok[1], "date"))
{
/*-------------------------------------------------
* DATE type (returned as a string: "DD/MM/YYYY")
*------------------------------------------------*/
nStatus = m_poDATFile->ValidateFieldInfoFromTAB(iField,
papszTok[0],
TABFDate,
0,
0);
poFieldDefn = new OGRFieldDefn(papszTok[0],
#ifdef MITAB_USE_OFTDATETIME
OFTDate);
#else
OFTString);
#endif
poFieldDefn->SetWidth(10);
}
else if (numTok >= 2 && EQUAL(papszTok[1], "time"))
{
/*-------------------------------------------------
* TIME type (returned as a string: "HH:MM:SS")
*------------------------------------------------*/
nStatus = m_poDATFile->ValidateFieldInfoFromTAB(iField,
papszTok[0],
TABFTime,
0,
0);
poFieldDefn = new OGRFieldDefn(papszTok[0],
#ifdef MITAB_USE_OFTDATETIME
OFTTime);
#else
OFTString);
#endif
poFieldDefn->SetWidth(9);
}
else if (numTok >= 2 && EQUAL(papszTok[1], "datetime"))
{
/*-------------------------------------------------
* DATETIME type (returned as a string: "DD/MM/YYYY HH:MM:SS")
*------------------------------------------------*/
nStatus = m_poDATFile->ValidateFieldInfoFromTAB(iField,
papszTok[0],
TABFDateTime,
0,
0);
poFieldDefn = new OGRFieldDefn(papszTok[0],
#ifdef MITAB_USE_OFTDATETIME
OFTDateTime);
#else
OFTString);
#endif
poFieldDefn->SetWidth(19);
}
else if (numTok >= 2 && EQUAL(papszTok[1], "logical"))
{
/*-------------------------------------------------
* LOGICAL type (value "T" or "F")
*------------------------------------------------*/
nStatus = m_poDATFile->ValidateFieldInfoFromTAB(iField,
papszTok[0],
TABFLogical,
0,
0);
poFieldDefn = new OGRFieldDefn(papszTok[0], OFTString);
poFieldDefn->SetWidth(1);
}
else
nStatus = -1; // Unrecognized field type or line corrupt
if (nStatus != 0)
{
CPLError(CE_Failure, CPLE_FileIO,
"Failed to parse field definition at line %d in file %s",
iLine+1, m_pszFname);
CSLDestroy(papszTok);
return -1;
}
/*-----------------------------------------------------
* Keep track of index number if present
*----------------------------------------------------*/
if (numTok >= 4 && EQUAL(papszTok[numTok-2], "index"))
{
m_panIndexNo[iField] = atoi(papszTok[numTok-1]);
}
else
{
m_panIndexNo[iField] = 0;
}
/*-----------------------------------------------------
* Add the FieldDefn to the FeatureDefn and continue with
* the next one.
*----------------------------------------------------*/
m_poDefn->AddFieldDefn(poFieldDefn);
// AddFieldDenf() takes a copy, so we delete the original
if (poFieldDefn) delete poFieldDefn;
poFieldDefn = NULL;
}
/*---------------------------------------------------------
* OK, we're done... end the loop now.
*--------------------------------------------------------*/
break;
}/* end of fields section*/
else
{
// Simply Ignore unrecognized lines
}
}
CSLDestroy(papszTok);
if (m_poDefn->GetFieldCount() == 0)
{
CPLError(CE_Failure, CPLE_NotSupported,
"%s contains no table field definition. "
"This type of .TAB file cannot be read by this library.",
m_pszFname);
return -1;
}
return 0;
}
/**********************************************************************
* TABFile::WriteTABFile()
*
* Generate the .TAB file using mainly the attribute fields definition.
*
* This private method should be used only during the Close() call with
* write access mode.
*
* Returns 0 on success, -1 on error.
**********************************************************************/
int TABFile::WriteTABFile()
{
FILE *fp;
if (m_eAccessMode != TABWrite)
{
CPLError(CE_Failure, CPLE_NotSupported,
"WriteTABFile() can be used only with Write access.");
return -1;
}
if ( (fp = VSIFOpen(m_pszFname, "wt")) != NULL)
{
fprintf(fp, "!table\n");
fprintf(fp, "!version %d\n", m_nVersion);
fprintf(fp, "!charset %s\n", m_pszCharset);
fprintf(fp, "\n");
if (m_poDefn && m_poDefn->GetFieldCount() > 0)
{
int iField;
OGRFieldDefn *poFieldDefn;
const char *pszFieldType;
fprintf(fp, "Definition Table\n");
fprintf(fp, " Type NATIVE Charset \"%s\"\n", m_pszCharset);
fprintf(fp, " Fields %d\n", m_poDefn->GetFieldCount());
for(iField=0; iField<m_poDefn->GetFieldCount(); iField++)
{
poFieldDefn = m_poDefn->GetFieldDefn(iField);
switch(GetNativeFieldType(iField))
{
case TABFChar:
pszFieldType = CPLSPrintf("Char (%d)",
poFieldDefn->GetWidth());
break;
case TABFDecimal:
pszFieldType = CPLSPrintf("Decimal (%d,%d)",
poFieldDefn->GetWidth(),
poFieldDefn->GetPrecision());
break;
case TABFInteger:
if( poFieldDefn->GetWidth() == 0 )
pszFieldType = "Integer";
else
pszFieldType = CPLSPrintf("Integer (%d)",
poFieldDefn->GetWidth());
break;
case TABFSmallInt:
if( poFieldDefn->GetWidth() == 0 )
pszFieldType = "SmallInt";
else
pszFieldType = CPLSPrintf("SmallInt (%d)",
poFieldDefn->GetWidth());
break;
case TABFFloat:
pszFieldType = "Float";
break;
case TABFLogical:
pszFieldType = "Logical";
break;
case TABFDate:
pszFieldType = "Date";
break;
case TABFTime:
pszFieldType = "Time";
break;
case TABFDateTime:
pszFieldType = "DateTime";
break;
default:
// Unsupported field type!!! This should never happen.
CPLError(CE_Failure, CPLE_AssertionFailed,
"WriteTABFile(): Unsupported field type");
VSIFClose(fp);
return -1;
}
if (GetFieldIndexNumber(iField) == 0)
{
fprintf(fp, " %s %s ;\n", poFieldDefn->GetNameRef(),
pszFieldType );
}
else
{
fprintf(fp, " %s %s Index %d ;\n",
poFieldDefn->GetNameRef(), pszFieldType,
GetFieldIndexNumber(iField) );
}
}
}
else
{
fprintf(fp, "Definition Table\n");
fprintf(fp, " Type NATIVE Charset \"%s\"\n", m_pszCharset);
fprintf(fp, " Fields 1\n");
fprintf(fp, " FID Integer ;\n" );
}
VSIFClose(fp);
}
else
{
CPLError(CE_Failure, CPLE_FileIO,
"Failed to create file `%s'", m_pszFname);
return -1;
}
return 0;
}
/**********************************************************************
* TABFile::Close()
*
* Close current file, and release all memory used.
*
* Returns 0 on success, -1 on error.
**********************************************************************/
int TABFile::Close()
{
// Commit the latest changes to the file...
// In Write access, it's time to write the .TAB file.
if (m_eAccessMode == TABWrite && m_poMAPFile)
{
// First update file version number...
int nMapObjVersion = m_poMAPFile->GetMinTABFileVersion();
m_nVersion = MAX(m_nVersion, nMapObjVersion);
WriteTABFile();
}
if (m_poMAPFile)
{
m_poMAPFile->Close();
delete m_poMAPFile;
m_poMAPFile = NULL;
}
if (m_poDATFile)
{
m_poDATFile->Close();
delete m_poDATFile;
m_poDATFile = NULL;
}
if (m_poINDFile)
{
m_poINDFile->Close();
delete m_poINDFile;
m_poINDFile = NULL;
}
if (m_poCurFeature)
{
delete m_poCurFeature;
m_poCurFeature = NULL;
}
/*-----------------------------------------------------------------
* Note: we have to check the reference count before deleting
* m_poSpatialRef and m_poDefn
*----------------------------------------------------------------*/
if (m_poDefn )
{
int nRefCount = m_poDefn->Dereference();
CPLAssert( nRefCount >= 0 );
if( nRefCount == 0 )
delete m_poDefn;
m_poDefn = NULL;
}
if (m_poSpatialRef && m_poSpatialRef->Dereference() == 0)
delete m_poSpatialRef;
m_poSpatialRef = NULL;
CSLDestroy(m_papszTABFile);
m_papszTABFile = NULL;
CPLFree(m_pszFname);
m_pszFname = NULL;
CPLFree(m_pszCharset);
m_pszCharset = NULL;
CPLFree(m_panIndexNo);
m_panIndexNo = NULL;
CPLFree(m_panMatchingFIDs);
m_panMatchingFIDs = NULL;
return 0;
}
/**********************************************************************
* TABFile::SetQuickSpatialIndexMode()
*
* Select "quick spatial index mode".
*
* The default behavior of MITAB is to generate an optimized spatial index,
* but this results in slower write speed.
*
* Applications that want faster write speed and do not care
* about the performance of spatial queries on the resulting file can
* use SetQuickSpatialIndexMode() to require the creation of a non-optimal
* spatial index (actually emulating the type of spatial index produced
* by MITAB before version 1.6.0). In this mode writing files can be
* about 5 times faster, but spatial queries can be up to 30 times slower.
*
* Returns 0 on success, -1 on error.
**********************************************************************/
int TABFile::SetQuickSpatialIndexMode(GBool bQuickSpatialIndexMode/*=TRUE*/)
{
if (m_eAccessMode != TABWrite || m_poMAPFile == NULL)
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"SetQuickSpatialIndexMode() failed: file not opened for write access.");
return -1;
}
return m_poMAPFile->SetQuickSpatialIndexMode(bQuickSpatialIndexMode);
}
/**********************************************************************
* TABFile::GetNextFeatureId()
*
* Returns feature id that follows nPrevId, or -1 if it is the
* last feature id. Pass nPrevId=-1 to fetch the first valid feature id.
**********************************************************************/
int TABFile::GetNextFeatureId(int nPrevId)
{
if (m_eAccessMode != TABRead)
{
CPLError(CE_Failure, CPLE_NotSupported,
"GetNextFeatureId() can be used only with Read access.");
return -1;
}
/*-----------------------------------------------------------------
* Are we using spatial rather than .ID based traversal?
*----------------------------------------------------------------*/
if( bUseSpatialTraversal )
return m_poMAPFile->GetNextFeatureId( nPrevId );
/*-----------------------------------------------------------------
* Should we use an attribute index traversal?
*----------------------------------------------------------------*/
if( m_poAttrQuery != NULL)
{
if( m_panMatchingFIDs == NULL )
{
m_iMatchingFID = 0;
m_panMatchingFIDs = m_poAttrQuery->EvaluateAgainstIndices( this,
NULL );
}
if( m_panMatchingFIDs != NULL )
{
if( m_panMatchingFIDs[m_iMatchingFID] == OGRNullFID )
return OGRNullFID;
return m_panMatchingFIDs[m_iMatchingFID++] + 1;
}
}
/*-----------------------------------------------------------------
* Establish what the next logical feature ID should be
*----------------------------------------------------------------*/
int nFeatureId = -1;
if (nPrevId <= 0 && m_nLastFeatureId > 0)
nFeatureId = 1; // Feature Ids start at 1
else if (nPrevId > 0 && nPrevId < m_nLastFeatureId)
nFeatureId = nPrevId + 1;
else
{
// This was the last feature
return OGRNullFID;
}
/*-----------------------------------------------------------------
* Skip any feature with NONE geometry and a deleted attribute record
*----------------------------------------------------------------*/
while(nFeatureId <= m_nLastFeatureId)
{
if ( m_poMAPFile->MoveToObjId(nFeatureId) != 0 ||
m_poDATFile->GetRecordBlock(nFeatureId) == NULL )
{
CPLError(CE_Failure, CPLE_IllegalArg,
"GetNextFeatureId() failed: unable to set read pointer "
"to feature id %d", nFeatureId);
return -1;
}
// __TODO__ Add a test here to check if object is deleted,
// i.e. 0x40 set on object_id in object block
if (m_poMAPFile->GetCurObjType() != TAB_GEOM_NONE ||
m_poDATFile->IsCurrentRecordDeleted() == FALSE)
{
// This feature contains at least a geometry or some attributes...
// return its id.
return nFeatureId;
}
nFeatureId++;
}
// If we reached this point, then we kept skipping deleted features
// and stopped when EOF was reached.
return -1;
}
/**********************************************************************
* TABFile::GetNextFeatureId_Spatial()
*
* Returns feature id that follows nPrevId, or -1 if it is the
* last feature id, but by traversing the spatial tree instead of the
* direct object index. Generally speaking the feature id's will be
* returned in an unordered fashion.
**********************************************************************/
int TABFile::GetNextFeatureId_Spatial(int nPrevId)
{
if (m_eAccessMode != TABRead)
{
CPLError(CE_Failure, CPLE_NotSupported,
"GetNextFeatureId_Spatial() can be used only with Read access.");
return -1;
}
if( m_poMAPFile == NULL )
{
CPLError(CE_Failure, CPLE_NotSupported,
"GetNextFeatureId_Spatial() requires availability of .MAP file." );
return -1;
}
return m_poMAPFile->GetNextFeatureId( nPrevId );
}
/**********************************************************************
* TABFile::GetFeatureRef()
*
* Fill and return a TABFeature object for the specified feature id.
*
* The retruned pointer is a reference to an object owned and maintained
* by this TABFile object. It should not be altered or freed by the
* caller and its contents is guaranteed to be valid only until the next
* call to GetFeatureRef() or Close().
*
* Returns NULL if the specified feature id does not exist of if an
* error happened. In any case, CPLError() will have been called to
* report the reason of the failure.
*
* If an unsupported object type is encountered (likely from a newer version
* of MapInfo) then a valid feature will be returned with a NONE geometry,
* and a warning will be produced with code TAB_WarningFeatureTypeNotSupported
* CPLGetLastErrorNo() should be used to detect that case.
**********************************************************************/
TABFeature *TABFile::GetFeatureRef(int nFeatureId)
{
CPLErrorReset();
if (m_eAccessMode != TABRead)
{
CPLError(CE_Failure, CPLE_NotSupported,
"GetFeatureRef() can be used only with Read access.");
return NULL;
}
/*-----------------------------------------------------------------
* Make sure file is opened and Validate feature id by positioning
* the read pointers for the .MAP and .DAT files to this feature id.
*----------------------------------------------------------------*/
if (m_poMAPFile == NULL)
{
CPLError(CE_Failure, CPLE_IllegalArg,
"GetFeatureRef() failed: file is not opened!");
return NULL;
}
if (nFeatureId <= 0 || nFeatureId > m_nLastFeatureId ||
m_poMAPFile->MoveToObjId(nFeatureId) != 0 ||
m_poDATFile->GetRecordBlock(nFeatureId) == NULL )
{
// CPLError(CE_Failure, CPLE_IllegalArg,
// "GetFeatureRef() failed: invalid feature id %d",
// nFeatureId);
return NULL;
}
/*-----------------------------------------------------------------
* Flush current feature object
* __TODO__ try to reuse if it is already of the right type
*----------------------------------------------------------------*/
if (m_poCurFeature)
{
delete m_poCurFeature;
m_poCurFeature = NULL;
}
/*-----------------------------------------------------------------
* Create new feature object of the right type
* Unsupported object types are returned as raw TABFeature (i.e. NONE
* geometry)
*----------------------------------------------------------------*/
m_poCurFeature = TABFeature::CreateFromMapInfoType(m_poMAPFile->GetCurObjType(),
m_poDefn);
/*-----------------------------------------------------------------
* Read fields from the .DAT file
* GetRecordBlock() has already been called above...
*----------------------------------------------------------------*/
if (m_poCurFeature->ReadRecordFromDATFile(m_poDATFile) != 0)
{
delete m_poCurFeature;
m_poCurFeature = NULL;
return NULL;
}
/*-----------------------------------------------------------------
* Read geometry from the .MAP file
* MoveToObjId() has already been called above...
*----------------------------------------------------------------*/
TABMAPObjHdr *poObjHdr =
TABMAPObjHdr::NewObj((GByte)m_poMAPFile->GetCurObjType(),
m_poMAPFile->GetCurObjId());
// Note that poObjHdr==NULL is a valid case if geometry type is NONE
if ((poObjHdr && poObjHdr->ReadObj(m_poMAPFile->GetCurObjBlock()) != 0) ||
m_poCurFeature->ReadGeometryFromMAPFile(m_poMAPFile, poObjHdr) != 0)
{
delete m_poCurFeature;
m_poCurFeature = NULL;
if (poObjHdr)
delete poObjHdr;
return NULL;
}
if (poObjHdr) // May be NULL if feature geometry type is NONE
delete poObjHdr;
m_nCurFeatureId = nFeatureId;
m_poCurFeature->SetFID(m_nCurFeatureId);
m_poCurFeature->SetRecordDeleted(m_poDATFile->IsCurrentRecordDeleted());
return m_poCurFeature;
}
/**********************************************************************
* TABFile::WriteFeature()
*
* Write a feature to this dataset.
*
* For now only sequential writes are supported (i.e. with nFeatureId=-1)
* but eventually we should be able to do random access by specifying
* a value through nFeatureId.
*
* Returns the new featureId (> 0) on success, or -1 if an
* error happened in which case, CPLError() will have been called to
* report the reason of the failure.
**********************************************************************/
int TABFile::WriteFeature(TABFeature *poFeature, int nFeatureId /*=-1*/)
{
if (m_eAccessMode != TABWrite)
{
CPLError(CE_Failure, CPLE_NotSupported,
"WriteFeature() can be used only with Write access.");
return -1;
}
if (nFeatureId != -1)
{
CPLError(CE_Failure, CPLE_NotSupported,
"WriteFeature(): random access not implemented yet.");
return -1;
}
/*-----------------------------------------------------------------
* Make sure file is opened and establish new feature id.
*----------------------------------------------------------------*/
if (m_poMAPFile == NULL)
{
CPLError(CE_Failure, CPLE_IllegalArg,
"WriteFeature() failed: file is not opened!");
return -1;
}
if (m_nLastFeatureId < 1)
{
/*-------------------------------------------------------------
* OK, this is the first feature in the dataset... make sure the
* .DAT schema has been initialized.
*------------------------------------------------------------*/
if (m_poDefn == NULL)
SetFeatureDefn(poFeature->GetDefnRef(), NULL);
/*-------------------------------------------------------------
* Special hack to write out at least one field if none are in
* OGRFeatureDefn.
*------------------------------------------------------------*/
if( m_poDATFile->GetNumFields() == 0 )
{
CPLError(CE_Warning, CPLE_IllegalArg,
"MapInfo tables must contain at least 1 column, adding dummy FID column.");
m_poDATFile->AddField("FID", TABFInteger, 10, 0 );
}
nFeatureId = m_nLastFeatureId = 1;
}
else
{
nFeatureId = ++ m_nLastFeatureId;
}
/*-----------------------------------------------------------------
* Write fields to the .DAT file and update .IND if necessary
*----------------------------------------------------------------*/
if (m_poDATFile == NULL ||
m_poDATFile->GetRecordBlock(nFeatureId) == NULL ||
poFeature->WriteRecordToDATFile(m_poDATFile, m_poINDFile,
m_panIndexNo) != 0 )
{
CPLError(CE_Failure, CPLE_FileIO,
"Failed writing attributes for feature id %d in %s",
nFeatureId, m_pszFname);
return -1;
}
/*-----------------------------------------------------------------
* Write geometry to the .MAP file
* The call to PrepareNewObj() takes care of the .ID file.
*----------------------------------------------------------------*/
TABMAPObjHdr *poObjHdr =
TABMAPObjHdr::NewObj((GByte)poFeature->ValidateMapInfoType(m_poMAPFile),
nFeatureId);
/*-----------------------------------------------------------------
* ValidateMapInfoType() may have returned TAB_GEOM_NONE if feature
* contained an invalid geometry for its class. Need to catch that
* case and return the error.
*----------------------------------------------------------------*/
if (poObjHdr->m_nType == TAB_GEOM_NONE &&
poFeature->GetFeatureClass() != TABFCNoGeomFeature )
{
CPLError(CE_Failure, CPLE_FileIO,
"Invalid geometry for feature id %d in %s",
nFeatureId, m_pszFname);
return -1;
}
/*-----------------------------------------------------------------
* The ValidateMapInfoType() call above has forced calculation of the
* feature's IntMBR. Store that value in the ObjHdr for use by
* PrepareNewObj() to search the best node to insert the feature.
*----------------------------------------------------------------*/
if ( poObjHdr && poObjHdr->m_nType != TAB_GEOM_NONE)
{
poFeature->GetIntMBR(poObjHdr->m_nMinX, poObjHdr->m_nMinY,
poObjHdr->m_nMaxX, poObjHdr->m_nMaxY);
}
if ( poObjHdr == NULL || m_poMAPFile == NULL ||
m_poMAPFile->PrepareNewObj(poObjHdr) != 0 ||
poFeature->WriteGeometryToMAPFile(m_poMAPFile, poObjHdr) != 0 ||
m_poMAPFile->CommitNewObj(poObjHdr) != 0 )
{
CPLError(CE_Failure, CPLE_FileIO,
"Failed writing geometry for feature id %d in %s",
nFeatureId, m_pszFname);
if (poObjHdr)
delete poObjHdr;
return -1;
}
delete poObjHdr;
return nFeatureId;
}
/**********************************************************************
* TABFile::CreateFeature()
*
* Write a new feature to this dataset. The passed in feature is updated
* with the new feature id.
*
* Returns OGRERR_NONE on success, or an appropriate OGRERR_ code if an
* error happened in which case, CPLError() will have been called to
* report the reason of the failure.
**********************************************************************/
OGRErr TABFile::CreateFeature(TABFeature *poFeature)
{
int nFeatureId = -1;
nFeatureId = WriteFeature(poFeature, -1);
if (nFeatureId == -1)
return OGRERR_FAILURE;
poFeature->SetFID(nFeatureId);
return OGRERR_NONE;
}
/**********************************************************************
* TABFile::SetFeature()
*
* Implementation of OGRLayer's SetFeature(), enabled only for
* random write access
**********************************************************************/
OGRErr TABFile::SetFeature( OGRFeature *poFeature )
{
//TODO: See CreateFeature()
// Need to convert OGRFeature to TABFeature, extract FID and then forward
// forward call to SetFeature(TABFeature, fid)
return OGRERR_UNSUPPORTED_OPERATION;
}
/**********************************************************************
* TABFile::GetLayerDefn()
*
* Returns a reference to the OGRFeatureDefn that will be used to create
* features in this dataset.
*
* Returns a reference to an object that is maintained by this TABFile
* object (and thus should not be modified or freed by the caller) or
* NULL if the OGRFeatureDefn has not been initialized yet (i.e. no file
* opened yet)
**********************************************************************/
OGRFeatureDefn *TABFile::GetLayerDefn()
{
return m_poDefn;
}
/**********************************************************************
* TABFile::SetFeatureDefn()
*
* Pass a reference to the OGRFeatureDefn that will be used to create
* features in this dataset. This function should be called after
* creating a new dataset, but before writing the first feature.
* All features that will be written to this dataset must share this same
* OGRFeatureDefn.
*
* A reference to the OGRFeatureDefn will be kept and will be used to
* build the .DAT file, etc.
*
* Returns 0 on success, -1 on error.
**********************************************************************/
int TABFile::SetFeatureDefn(OGRFeatureDefn *poFeatureDefn,
TABFieldType *paeMapInfoNativeFieldTypes /* =NULL */)
{
int iField, numFields;
OGRFieldDefn *poFieldDefn;
TABFieldType eMapInfoType = TABFUnknown;
int nStatus = 0;
if (m_eAccessMode != TABWrite)
{
CPLError(CE_Failure, CPLE_NotSupported,
"SetFeatureDefn() can be used only with Write access.");
return -1;
}
/*-----------------------------------------------------------------
* Keep a reference to the OGRFeatureDefn... we'll have to take the
* reference count into account when we are done with it.
*----------------------------------------------------------------*/
if (m_poDefn && m_poDefn->Dereference() == 0)
delete m_poDefn;
m_poDefn = poFeatureDefn;
m_poDefn->Reference();
/*-----------------------------------------------------------------
* Pass field information to the .DAT file, after making sure that
* it has been created and that it does not contain any field
* definition yet.
*----------------------------------------------------------------*/
if (m_poDATFile== NULL || m_poDATFile->GetNumFields() > 0 )
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"SetFeatureDefn() can be called only once in a newly "
"created dataset.");
return -1;
}
numFields = poFeatureDefn->GetFieldCount();
for(iField=0; nStatus==0 && iField < numFields; iField++)
{
poFieldDefn = m_poDefn->GetFieldDefn(iField);
/*-------------------------------------------------------------
* Make sure field name is valid... check for special chars, etc.
*------------------------------------------------------------*/
char *pszCleanName = TABCleanFieldName(poFieldDefn->GetNameRef());
if (!EQUAL(pszCleanName, poFieldDefn->GetNameRef()))
poFieldDefn->SetName(pszCleanName);
CPLFree(pszCleanName);
pszCleanName = NULL;
if (paeMapInfoNativeFieldTypes)
{
eMapInfoType = paeMapInfoNativeFieldTypes[iField];
}
else
{
/*---------------------------------------------------------
* Map OGRFieldTypes to MapInfo native types
*--------------------------------------------------------*/
switch(poFieldDefn->GetType())
{
case OFTInteger:
eMapInfoType = TABFInteger;
break;
case OFTReal:
if( poFieldDefn->GetWidth()>0 || poFieldDefn->GetPrecision()>0 )
eMapInfoType = TABFDecimal;
else
eMapInfoType = TABFFloat;
break;
case OFTDateTime:
eMapInfoType = TABFDateTime;
break;
case OFTDate:
eMapInfoType = TABFDate;
break;
case OFTTime:
eMapInfoType = TABFTime;
break;
case OFTString:
default:
eMapInfoType = TABFChar;
}
}
nStatus = m_poDATFile->AddField(poFieldDefn->GetNameRef(),
eMapInfoType,
poFieldDefn->GetWidth(),
poFieldDefn->GetPrecision());
}
/*-----------------------------------------------------------------
* Alloc the array to keep track of indexed fields (default=NOT indexed)
*----------------------------------------------------------------*/
m_panIndexNo = (int *)CPLCalloc(numFields, sizeof(int));
return nStatus;
}
/**********************************************************************
* TABFile::AddFieldNative()
*
* Create a new field using a native mapinfo data type... this is an
* alternative to defining fields through the OGR interface.
* This function should be called after creating a new dataset, but before
* writing the first feature.
*
* This function will build/update the OGRFeatureDefn that will have to be
* used when writing features to this dataset.
*
* A reference to the OGRFeatureDefn can be obtained using GetLayerDefn().
*
* Note: The bUnique flag has no effect on TABFiles. See the TABView class.
*
* Returns 0 on success, -1 on error.
**********************************************************************/
int TABFile::AddFieldNative(const char *pszName, TABFieldType eMapInfoType,
int nWidth /*=0*/, int nPrecision /*=0*/,
GBool bIndexed /*=FALSE*/, GBool /*bUnique=FALSE*/, int bApproxOK)
{
OGRFieldDefn *poFieldDefn;
int nStatus = 0;
char *pszCleanName = NULL;
char szNewFieldName[31+1]; /* 31 is the max characters for a field name*/
int nRenameNum = 1;
if (m_eAccessMode != TABWrite)
{
CPLError(CE_Failure, CPLE_NotSupported,
"AddFieldNative() can be used only with Write access.");
return -1;
}
/*-----------------------------------------------------------------
* Check that call happens at the right time in dataset's life.
*----------------------------------------------------------------*/
if (m_eAccessMode != TABWrite ||
m_nLastFeatureId > 0 || m_poDATFile == NULL)
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"AddFieldNative() must be called after opening a new "
"dataset, but before writing the first feature to it.");
return -1;
}
/*-----------------------------------------------------------------
* Create new OGRFeatureDefn if not done yet...
*----------------------------------------------------------------*/
if (m_poDefn== NULL)
{
char *pszFeatureClassName = TABGetBasename(m_pszFname);
m_poDefn = new OGRFeatureDefn(pszFeatureClassName);
CPLFree(pszFeatureClassName);
// Ref count defaults to 0... set it to 1
m_poDefn->Reference();
}
/*-----------------------------------------------------------------
* Validate field width... must be <= 254
*----------------------------------------------------------------*/
if (nWidth > 254)
{
CPLError(CE_Warning, CPLE_IllegalArg,
"Invalid size (%d) for field '%s'. "
"Size must be 254 or less.", nWidth, pszName);
nWidth=254;
}
/*-----------------------------------------------------------------
* Map fields with width=0 (variable length in OGR) to a valid default
*----------------------------------------------------------------*/
if (eMapInfoType == TABFDecimal && nWidth == 0)
nWidth=20;
else if (nWidth == 0)
nWidth=254; /* char fields */
/*-----------------------------------------------------------------
* Make sure field name is valid... check for special chars, etc.
* (pszCleanName will have to be freed.)
*----------------------------------------------------------------*/
pszCleanName = TABCleanFieldName(pszName);
if( !bApproxOK &&
( m_poDefn->GetFieldIndex(pszCleanName) >= 0 ||
!EQUAL(pszName, pszCleanName) ) )
{
CPLError( CE_Failure, CPLE_NotSupported,
"Failed to add field named '%s'",
pszName );
}
strncpy(szNewFieldName, pszCleanName, 31);
szNewFieldName[31] = '\0';
while (m_poDefn->GetFieldIndex(szNewFieldName) >= 0 && nRenameNum < 10)
sprintf( szNewFieldName, "%.29s_%.1d", pszCleanName, nRenameNum++ );
while (m_poDefn->GetFieldIndex(szNewFieldName) >= 0 && nRenameNum < 100)
sprintf( szNewFieldName, "%.29s%.2d", pszCleanName, nRenameNum++ );
if (m_poDefn->GetFieldIndex(szNewFieldName) >= 0)
{
CPLError( CE_Failure, CPLE_NotSupported,
"Too many field names like '%s' when truncated to 31 letters "
"for MapInfo format.", pszCleanName );
}
if( !EQUAL(pszCleanName,szNewFieldName) )
{
CPLError( CE_Warning, CPLE_NotSupported,
"Normalized/laundered field name: '%s' to '%s'",
pszCleanName,
szNewFieldName );
}
/*-----------------------------------------------------------------
* Map MapInfo native types to OGR types
*----------------------------------------------------------------*/
poFieldDefn = NULL;
switch(eMapInfoType)
{
case TABFChar:
/*-------------------------------------------------
* CHAR type
*------------------------------------------------*/
poFieldDefn = new OGRFieldDefn(szNewFieldName, OFTString);
poFieldDefn->SetWidth(nWidth);
break;
case TABFInteger:
/*-------------------------------------------------
* INTEGER type
*------------------------------------------------*/
poFieldDefn = new OGRFieldDefn(szNewFieldName, OFTInteger);
if (nWidth <= 10)
poFieldDefn->SetWidth(nWidth);
break;
case TABFSmallInt:
/*-------------------------------------------------
* SMALLINT type
*------------------------------------------------*/
poFieldDefn = new OGRFieldDefn(szNewFieldName, OFTInteger);
if (nWidth <= 5)
poFieldDefn->SetWidth(nWidth);
break;
case TABFDecimal:
/*-------------------------------------------------
* DECIMAL type
*------------------------------------------------*/
poFieldDefn = new OGRFieldDefn(szNewFieldName, OFTReal);
poFieldDefn->SetWidth(nWidth);
poFieldDefn->SetPrecision(nPrecision);
break;
case TABFFloat:
/*-------------------------------------------------
* FLOAT type
*------------------------------------------------*/
poFieldDefn = new OGRFieldDefn(szNewFieldName, OFTReal);
break;
case TABFDate:
/*-------------------------------------------------
* DATE type (V450, returned as a string: "DD/MM/YYYY")
*------------------------------------------------*/
poFieldDefn = new OGRFieldDefn(szNewFieldName,
#ifdef MITAB_USE_OFTDATETIME
OFTDate);
#else
OFTString);
#endif
poFieldDefn->SetWidth(10);
m_nVersion = MAX(m_nVersion, 450);
break;
case TABFTime:
/*-------------------------------------------------
* TIME type (V900, returned as a string: "HH:MM:SS")
*------------------------------------------------*/
poFieldDefn = new OGRFieldDefn(szNewFieldName,
#ifdef MITAB_USE_OFTDATETIME
OFTTime);
#else
OFTString);
#endif
poFieldDefn->SetWidth(8);
m_nVersion = MAX(m_nVersion, 900);
break;
case TABFDateTime:
/*-------------------------------------------------
* DATETIME type (V900, returned as a string: "DD/MM/YYYY HH:MM:SS")
*------------------------------------------------*/
poFieldDefn = new OGRFieldDefn(szNewFieldName,
#ifdef MITAB_USE_OFTDATETIME
OFTDateTime);
#else
OFTString);
#endif
poFieldDefn->SetWidth(19);
m_nVersion = MAX(m_nVersion, 900);
break;
case TABFLogical:
/*-------------------------------------------------
* LOGICAL type (value "T" or "F")
*------------------------------------------------*/
poFieldDefn = new OGRFieldDefn(szNewFieldName, OFTString);
poFieldDefn->SetWidth(1);
break;
default:
CPLError(CE_Failure, CPLE_NotSupported,
"Unsupported type for field %s", szNewFieldName);
CPLFree(pszCleanName);
return -1;
}
/*-----------------------------------------------------
* Add the FieldDefn to the FeatureDefn
*----------------------------------------------------*/
m_poDefn->AddFieldDefn(poFieldDefn);
delete poFieldDefn;
/*-----------------------------------------------------
* ... and pass field info to the .DAT file.
*----------------------------------------------------*/
nStatus = m_poDATFile->AddField(szNewFieldName, eMapInfoType,
nWidth, nPrecision);
/*-----------------------------------------------------------------
* Extend the array to keep track of indexed fields (default=NOT indexed)
*----------------------------------------------------------------*/
m_panIndexNo = (int *)CPLRealloc(m_panIndexNo,
m_poDefn->GetFieldCount()*sizeof(int));
m_panIndexNo[m_poDefn->GetFieldCount()-1] = 0;
/*-----------------------------------------------------------------
* Index the field if requested
*----------------------------------------------------------------*/
if (nStatus == 0 && bIndexed)
nStatus = SetFieldIndexed(m_poDefn->GetFieldCount()-1);
CPLFree(pszCleanName);
return nStatus;
}
/**********************************************************************
* TABFile::GetNativeFieldType()
*
* Returns the native MapInfo field type for the specified field.
*
* Returns TABFUnknown if file is not opened, or if specified field index is
* invalid.
*
* Note that field ids are positive and start at 0.
**********************************************************************/
TABFieldType TABFile::GetNativeFieldType(int nFieldId)
{
if (m_poDATFile)
{
return m_poDATFile->GetFieldType(nFieldId);
}
return TABFUnknown;
}
/**********************************************************************
* TABFile::GetFieldIndexNumber()
*
* Returns the field's index number that was specified in the .TAB header
* or 0 if the specified field is not indexed.
*
* Note that field ids are positive and start at 0
* and valid index ids are positive and start at 1.
**********************************************************************/
int TABFile::GetFieldIndexNumber(int nFieldId)
{
if (m_panIndexNo == NULL || nFieldId < 0 ||
m_poDATFile== NULL || nFieldId >= m_poDATFile->GetNumFields())
return 0; // no index
return m_panIndexNo[nFieldId];
}
/************************************************************************
* TABFile::SetFieldIndexed()
*
* Request that a field be indexed. This will create the .IND file if
* necessary, etc.
*
* Note that field ids are positive and start at 0.
*
* Returns 0 on success, -1 on error.
************************************************************************/
int TABFile::SetFieldIndexed( int nFieldId )
{
/*-----------------------------------------------------------------
* Make sure things are OK
*----------------------------------------------------------------*/
if (m_pszFname == NULL || m_eAccessMode != TABWrite || m_poDefn == NULL)
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"SetFieldIndexed() must be called after opening a new "
"dataset, but before writing the first feature to it.");
return -1;
}
if (m_panIndexNo == NULL || nFieldId < 0 ||
m_poDATFile== NULL || nFieldId >= m_poDATFile->GetNumFields())
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"Invalid field number in SetFieldIndexed().");
return -1;
}
/*-----------------------------------------------------------------
* If field is already indexed then just return
*----------------------------------------------------------------*/
if (m_panIndexNo[nFieldId] != 0)
return 0; // Nothing to do
/*-----------------------------------------------------------------
* Create .IND file if it's not done yet.
*
* Note: We can pass the .TAB's filename directly and the
* TABINDFile class will automagically adjust the extension.
*----------------------------------------------------------------*/
if (m_poINDFile == NULL)
{
m_poINDFile = new TABINDFile;
if ( m_poINDFile->Open(m_pszFname, "w", TRUE) != 0)
{
// File could not be opened...
delete m_poINDFile;
m_poINDFile = NULL;
return -1;
}
}
/*-----------------------------------------------------------------
* Init new index.
*----------------------------------------------------------------*/
int nNewIndexNo;
OGRFieldDefn *poFieldDefn = m_poDefn->GetFieldDefn(nFieldId);
if (poFieldDefn == NULL ||
(nNewIndexNo = m_poINDFile->CreateIndex(GetNativeFieldType(nFieldId),
poFieldDefn->GetWidth()) ) < 1)
{
// Failed... an error has already been reported.
return -1;
}
m_panIndexNo[nFieldId] = nNewIndexNo;
return 0;
}
/************************************************************************
* TABFile::IsFieldIndexed()
*
* Returns TRUE if field is indexed, or FALSE otherwise.
************************************************************************/
GBool TABFile::IsFieldIndexed( int nFieldId )
{
return (GetFieldIndexNumber(nFieldId) > 0 ? TRUE:FALSE);
}
/**********************************************************************
* TABFile::GetINDFileRef()
*
* Opens the .IND file for this dataset and returns a reference to
* the handle.
* If the .IND file has already been opened then the same handle is
* returned directly.
* If the .IND file does not exist then the function silently returns NULL.
*
* Note that the returned TABINDFile handle is only a reference to an
* object that is owned by this class. Callers can use it but cannot
* destroy the object. The object will remain valid for as long as
* the TABFile will remain open.
**********************************************************************/
TABINDFile *TABFile::GetINDFileRef()
{
if (m_pszFname == NULL)
return NULL;
if (m_eAccessMode == TABRead && m_poINDFile == NULL)
{
/*-------------------------------------------------------------
* File is not opened yet... do it now.
*
* Note: We can pass the .TAB's filename directly and the
* TABINDFile class will automagically adjust the extension.
*------------------------------------------------------------*/
m_poINDFile = new TABINDFile;
if ( m_poINDFile->Open(m_pszFname, "r", TRUE) != 0)
{
// File could not be opened... probably does not exist
delete m_poINDFile;
m_poINDFile = NULL;
}
else if (m_panIndexNo && m_poDATFile)
{
/*---------------------------------------------------------
* Pass type information for each indexed field.
*--------------------------------------------------------*/
for(int i=0; i<m_poDATFile->GetNumFields(); i++)
{
if (m_panIndexNo[i] > 0)
{
m_poINDFile->SetIndexFieldType(m_panIndexNo[i],
GetNativeFieldType(i));
}
}
}
}
return m_poINDFile;
}
/**********************************************************************
* TABFile::SetBounds()
*
* Set projection coordinates bounds of the newly created dataset.
*
* This function must be called after creating a new dataset and before any
* feature can be written to it.
*
* Returns 0 on success, -1 on error.
**********************************************************************/
int TABFile::SetBounds(double dXMin, double dYMin,
double dXMax, double dYMax)
{
if (m_eAccessMode != TABWrite)
{
CPLError(CE_Failure, CPLE_NotSupported,
"SetBounds() can be used only with Write access.");
return -1;
}
/*-----------------------------------------------------------------
* Check that dataset has been created but no feature set yet.
*----------------------------------------------------------------*/
if (m_poMAPFile && m_nLastFeatureId < 1)
{
m_poMAPFile->SetCoordsysBounds(dXMin, dYMin, dXMax, dYMax);
m_bBoundsSet = TRUE;
}
else
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"SetBounds() can be called only after dataset has been "
"created and before any feature is set.");
return -1;
}
return 0;
}
/**********************************************************************
* TABFile::GetBounds()
*
* Fetch projection coordinates bounds of a dataset.
*
* The bForce flag has no effect on TAB files since the bounds are
* always in the header.
*
* Returns 0 on success, -1 on error.
**********************************************************************/
int TABFile::GetBounds(double &dXMin, double &dYMin,
double &dXMax, double &dYMax,
GBool /*bForce = TRUE*/)
{
TABMAPHeaderBlock *poHeader;
if (m_poMAPFile && (poHeader=m_poMAPFile->GetHeaderBlock()) != NULL)
{
/*-------------------------------------------------------------
* Projection bounds correspond to the +/- 1e9 integer coord. limits
*------------------------------------------------------------*/
double dX0, dX1, dY0, dY1;
m_poMAPFile->Int2Coordsys(-1000000000, -1000000000,
dX0, dY0);
m_poMAPFile->Int2Coordsys(1000000000, 1000000000,
dX1, dY1);
/*-------------------------------------------------------------
* ... and make sure that Min < Max
*------------------------------------------------------------*/
dXMin = MIN(dX0, dX1);
dXMax = MAX(dX0, dX1);
dYMin = MIN(dY0, dY1);
dYMax = MAX(dY0, dY1);
}
else
{
CPLError(CE_Failure, CPLE_AppDefined,
"GetBounds() can be called only after dataset has been opened.");
return -1;
}
return 0;
}
/**********************************************************************
* TABFile::GetExtent()
*
* Fetch extent of the data currently stored in the dataset.
*
* The bForce flag has no effect on TAB files since that value is
* always in the header.
*
* Returns OGRERR_NONE/OGRRERR_FAILURE.
**********************************************************************/
OGRErr TABFile::GetExtent (OGREnvelope *psExtent, int bForce)
{
TABMAPHeaderBlock *poHeader;
if (m_poMAPFile && (poHeader=m_poMAPFile->GetHeaderBlock()) != NULL)
{
double dX0, dX1, dY0, dY1;
/*-------------------------------------------------------------
* Fetch extent of the data from the .map header block
* this value is different from the projection bounds.
*------------------------------------------------------------*/
m_poMAPFile->Int2Coordsys(poHeader->m_nXMin, poHeader->m_nYMin,
dX0, dY0);
m_poMAPFile->Int2Coordsys(poHeader->m_nXMax, poHeader->m_nYMax,
dX1, dY1);
/*-------------------------------------------------------------
* ... and make sure that Min < Max
*------------------------------------------------------------*/
psExtent->MinX = MIN(dX0, dX1);
psExtent->MaxX = MAX(dX0, dX1);
psExtent->MinY = MIN(dY0, dY1);
psExtent->MaxY = MAX(dY0, dY1);
return OGRERR_NONE;
}
return OGRERR_FAILURE;
}
/**********************************************************************
* TABFile::GetFeatureCountByType()
*
* Return number of features of each type.
*
* Note that the sum of the 4 returned values may be different from
* the total number of features since features with NONE geometry
* are not taken into account here.
*
* Note: the bForce flag has nmo effect on .TAB files since the info
* is always in the header.
*
* Returns 0 on success, or silently returns -1 (with no error) if this
* information is not available.
**********************************************************************/
int TABFile::GetFeatureCountByType(int &numPoints, int &numLines,
int &numRegions, int &numTexts,
GBool /* bForce = TRUE*/ )
{
TABMAPHeaderBlock *poHeader;
if (m_poMAPFile && (poHeader=m_poMAPFile->GetHeaderBlock()) != NULL)
{
numPoints = poHeader->m_numPointObjects;
numLines = poHeader->m_numLineObjects;
numRegions = poHeader->m_numRegionObjects;
numTexts = poHeader->m_numTextObjects;
}
else
{
numPoints = numLines = numRegions = numTexts = 0;
return -1;
}
return 0;
}
/**********************************************************************
* TABFile::SetMIFCoordSys()
*
* Set projection for a new file using a MIF coordsys string.
*
* This function must be called after creating a new dataset and before any
* feature can be written to it.
*
* Returns 0 on success, -1 on error.
**********************************************************************/
int TABFile::SetMIFCoordSys(const char *pszMIFCoordSys)
{
if (m_eAccessMode != TABWrite)
{
CPLError(CE_Failure, CPLE_NotSupported,
"SetMIFCoordSys() can be used only with Write access.");
return -1;
}
/*-----------------------------------------------------------------
* Check that dataset has been created but no feature set yet.
*----------------------------------------------------------------*/
if (m_poMAPFile && m_nLastFeatureId < 1)
{
OGRSpatialReference *poSpatialRef;
poSpatialRef = MITABCoordSys2SpatialRef( pszMIFCoordSys );
if (poSpatialRef)
{
double dXMin, dYMin, dXMax, dYMax;
if (SetSpatialRef(poSpatialRef) == 0)
{
if (MITABExtractCoordSysBounds(pszMIFCoordSys,
dXMin, dYMin,
dXMax, dYMax) == TRUE)
{
// If the coordsys string contains bounds, then use them
if (SetBounds(dXMin, dYMin, dXMax, dYMax) != 0)
{
// Failed Setting Bounds... an error should have
// been already reported.
return -1;
}
}
}
else
{
// Failed setting poSpatialRef... and error should have
// been reported.
return -1;
}
// Release our handle on poSpatialRef
if( poSpatialRef->Dereference() == 0 )
delete poSpatialRef;
}
}
else
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"SetMIFCoordSys() can be called only after dataset has been "
"created and before any feature is set.");
return -1;
}
return 0;
}
/**********************************************************************
* TABFile::SetProjInfo()
*
* Set projection for a new file using a TABProjInfo structure.
*
* This function must be called after creating a new dataset and before any
* feature can be written to it.
*
* This call will also trigger a lookup of default bounds for the specified
* projection (except nonearth), and reset the m_bBoundsValid flag.
*
* Returns 0 on success, -1 on error.
**********************************************************************/
int TABFile::SetProjInfo(TABProjInfo *poPI)
{
if (m_eAccessMode != TABWrite)
{
CPLError(CE_Failure, CPLE_NotSupported,
"SetProjInfo() can be used only with Write access.");
return -1;
}
/*-----------------------------------------------------------------
* Check that dataset has been created but no feature set yet.
*----------------------------------------------------------------*/
if (m_poMAPFile && m_nLastFeatureId < 1)
{
if (m_poMAPFile->GetHeaderBlock()->SetProjInfo( poPI ) != 0)
return -1;
}
else
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"SetProjInfo() can be called only after dataset has been "
"created and before any feature is set.");
return -1;
}
/*-----------------------------------------------------------------
* Lookup default bounds and reset m_bBoundsSet flag
*----------------------------------------------------------------*/
double dXMin, dYMin, dXMax, dYMax;
m_bBoundsSet = FALSE;
if (MITABLookupCoordSysBounds(poPI, dXMin, dYMin, dXMax, dYMax) == TRUE)
{
SetBounds(dXMin, dYMin, dXMax, dYMax);
}
return 0;
}
/************************************************************************/
/* TestCapability() */
/************************************************************************/
int TABFile::TestCapability( const char * pszCap )
{
if( EQUAL(pszCap,OLCRandomRead) )
return TRUE;
else if( EQUAL(pszCap,OLCSequentialWrite) )
return m_eAccessMode == TABWrite;
else if( EQUAL(pszCap,OLCRandomWrite) )
return FALSE;
else if( EQUAL(pszCap,OLCFastFeatureCount) )
return m_poFilterGeom == NULL
&& m_poAttrQuery == NULL;
else if( EQUAL(pszCap,OLCFastSpatialFilter) )
return TRUE;
else if( EQUAL(pszCap,OLCFastGetExtent) )
return TRUE;
else if( EQUAL(pszCap,OLCCreateField) )
return TRUE;
else
return FALSE;
}
/**********************************************************************
* TABFile::Dump()
*
* Dump block contents... available only in DEBUG mode.
**********************************************************************/
#ifdef DEBUG
void TABFile::Dump(FILE *fpOut /*=NULL*/)
{
if (fpOut == NULL)
fpOut = stdout;
fprintf(fpOut, "----- TABFile::Dump() -----\n");
if (m_poMAPFile == NULL)
{
fprintf(fpOut, "File is not opened.\n");
}
else
{
fprintf(fpOut, "File is opened: %s\n", m_pszFname);
fprintf(fpOut, "Associated TABLE file ...\n\n");
m_poDATFile->Dump(fpOut);
fprintf(fpOut, "... end of TABLE file dump.\n\n");
if( GetSpatialRef() != NULL )
{
char *pszWKT;
GetSpatialRef()->exportToWkt( &pszWKT );
fprintf( fpOut, "SRS = %s\n", pszWKT );
OGRFree( pszWKT );
}
fprintf(fpOut, "Associated .MAP file ...\n\n");
m_poMAPFile->Dump(fpOut);
fprintf(fpOut, "... end of .MAP file dump.\n\n");
}
fflush(fpOut);
}
#endif // DEBUG
|