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
|
/**********************************************************************
* $Id: mitab_rawbinblock.cpp,v 1.11 2007-06-11 14:40:03 dmorissette Exp $
*
* Name: mitab_rawbinblock.cpp
* Project: MapInfo TAB Read/Write library
* Language: C++
* Purpose: Implementation of the TABRawBinBlock class used to handle
* reading/writing blocks in the .MAP files
* Author: Daniel Morissette, dmorissette@dmsolutions.ca
*
**********************************************************************
* Copyright (c) 1999, 2000, 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_rawbinblock.cpp,v $
* Revision 1.11 2007-06-11 14:40:03 dmorissette
* Fixed another issue related to attempting to read past EOF while writing
* collections (bug 1657)
*
* Revision 1.10 2007/02/22 18:35:53 dmorissette
* Fixed problem writing collections where MITAB was sometimes trying to
* read past EOF in write mode (bug 1657).
*
* Revision 1.9 2006/11/28 18:49:08 dmorissette
* Completed changes to split TABMAPObjectBlocks properly and produce an
* optimal spatial index (bug 1585)
*
* Revision 1.8 2005/10/06 19:15:31 dmorissette
* Collections: added support for reading/writing pen/brush/symbol ids and
* for writing collection objects to .TAB/.MAP (bug 1126)
*
* Revision 1.7 2004/12/01 18:25:03 dmorissette
* Fixed potential memory leaks in error conditions (bug 881)
*
* Revision 1.6 2004/06/30 20:29:04 dmorissette
* Fixed refs to old address danmo@videotron.ca
*
* Revision 1.5 2000/02/28 17:06:06 daniel
* Added m_bModified flag
*
* Revision 1.4 2000/01/15 22:30:45 daniel
* Switch to MIT/X-Consortium OpenSource license
*
* Revision 1.3 1999/09/26 14:59:37 daniel
* Implemented write support
*
* Revision 1.2 1999/09/16 02:39:17 daniel
* Completed read support for most feature types
*
* Revision 1.1 1999/07/12 04:18:25 daniel
* Initial checkin
*
**********************************************************************/
#include "mitab.h"
/*=====================================================================
* class TABRawBinBlock
*====================================================================*/
/**********************************************************************
* TABRawBinBlock::TABRawBinBlock()
*
* Constructor.
**********************************************************************/
TABRawBinBlock::TABRawBinBlock(TABAccess eAccessMode /*= TABRead*/,
GBool bHardBlockSize /*= TRUE*/)
{
m_fp = NULL;
m_pabyBuf = NULL;
m_nFirstBlockPtr = 0;
m_nBlockSize = m_nSizeUsed = m_nFileOffset = m_nCurPos = 0;
m_bHardBlockSize = bHardBlockSize;
m_bModified = FALSE;
m_eAccess = eAccessMode;
}
/**********************************************************************
* TABRawBinBlock::~TABRawBinBlock()
*
* Destructor.
**********************************************************************/
TABRawBinBlock::~TABRawBinBlock()
{
if (m_pabyBuf)
CPLFree(m_pabyBuf);
}
/**********************************************************************
* TABRawBinBlock::ReadFromFile()
*
* Load data from the specified file location and initialize the block.
*
* Returns 0 if succesful or -1 if an error happened, in which case
* CPLError() will have been called.
**********************************************************************/
int TABRawBinBlock::ReadFromFile(FILE *fpSrc, int nOffset,
int nSize /*= 512*/)
{
GByte *pabyBuf;
if (fpSrc == NULL || nSize == 0)
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"TABRawBinBlock::ReadFromFile(): Assertion Failed!");
return -1;
}
m_fp = fpSrc;
m_nFileOffset = nOffset;
m_nCurPos = 0;
m_bModified = FALSE;
/*----------------------------------------------------------------
* Alloc a buffer to contain the data
*---------------------------------------------------------------*/
pabyBuf = (GByte*)CPLMalloc(nSize*sizeof(GByte));
/*----------------------------------------------------------------
* Read from the file
*---------------------------------------------------------------*/
if (VSIFSeek(fpSrc, nOffset, SEEK_SET) != 0 ||
(m_nSizeUsed = VSIFRead(pabyBuf, sizeof(GByte), nSize, fpSrc) ) == 0 ||
(m_bHardBlockSize && m_nSizeUsed != nSize ) )
{
CPLError(CE_Failure, CPLE_FileIO,
"ReadFromFile() failed reading %d bytes at offset %d.",
nSize, nOffset);
CPLFree(pabyBuf);
return -1;
}
/*----------------------------------------------------------------
* Init block with the data we just read
*---------------------------------------------------------------*/
return InitBlockFromData(pabyBuf, nSize, m_nSizeUsed,
FALSE, fpSrc, nOffset);
}
/**********************************************************************
* TABRawBinBlock::CommitToFile()
*
* Commit the current state of the binary block to the file to which
* it has been previously attached.
*
* Derived classes may want to (optionally) reimplement this method if
* they need to do special processing before committing the block to disk.
*
* For files created with bHardBlockSize=TRUE, a complete block of
* the specified size is always written, otherwise only the number of
* used bytes in the block will be written to disk.
*
* Returns 0 if succesful or -1 if an error happened, in which case
* CPLError() will have been called.
**********************************************************************/
int TABRawBinBlock::CommitToFile()
{
int nStatus = 0;
if (m_fp == NULL || m_nBlockSize <= 0 || m_pabyBuf == NULL ||
m_nFileOffset < 0)
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"TABRawBinBlock::CommitToFile(): Block has not been initialized yet!");
return -1;
}
/*----------------------------------------------------------------
* If block has not been modified, then just return... nothing to do.
*---------------------------------------------------------------*/
if (!m_bModified)
return 0;
/*----------------------------------------------------------------
* Move the output file pointer to the right position...
*---------------------------------------------------------------*/
if (VSIFSeek(m_fp, m_nFileOffset, SEEK_SET) != 0)
{
/*------------------------------------------------------------
* Moving pointer failed... we may need to pad with zeros if
* block destination is beyond current end of file.
*-----------------------------------------------------------*/
int nCurPos;
nCurPos = VSIFTell(m_fp);
if (nCurPos < m_nFileOffset &&
VSIFSeek(m_fp, 0L, SEEK_END) == 0 &&
(nCurPos = VSIFTell(m_fp)) < m_nFileOffset)
{
GByte cZero = 0;
while(nCurPos < m_nFileOffset && nStatus == 0)
{
if (VSIFWrite(&cZero, 1, 1, m_fp) != 1)
{
CPLError(CE_Failure, CPLE_FileIO,
"Failed writing 1 byte at offset %d.", nCurPos);
nStatus = -1;
break;
}
nCurPos++;
}
}
if (nCurPos != m_nFileOffset)
nStatus = -1; // Error message will follow below
}
/*----------------------------------------------------------------
* At this point we are ready to write to the file.
*
* If m_bHardBlockSize==FALSE, then we do not write a complete block;
* we write only the part of the block that was used.
*---------------------------------------------------------------*/
int numBytesToWrite = m_bHardBlockSize?m_nBlockSize:m_nSizeUsed;
if (nStatus != 0 ||
VSIFWrite(m_pabyBuf,sizeof(GByte),
numBytesToWrite, m_fp) != (size_t)numBytesToWrite )
{
CPLError(CE_Failure, CPLE_FileIO,
"Failed writing %d bytes at offset %d.",
numBytesToWrite, m_nFileOffset);
return -1;
}
fflush(m_fp);
m_bModified = FALSE;
return 0;
}
/**********************************************************************
* TABRawBinBlock::CommitAsDeleted()
*
* Commit current block to file using block type 4 (garbage block)
*
* Returns 0 if succesful or -1 if an error happened, in which case
* CPLError() will have been called.
**********************************************************************/
int TABRawBinBlock::CommitAsDeleted(GInt32 nNextBlockPtr)
{
int nStatus = 0;
CPLErrorReset();
if ( m_pabyBuf == NULL )
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"CommitAsDeleted(): Block has not been initialized yet!");
return -1;
}
/*-----------------------------------------------------------------
* Create deleted block header
*----------------------------------------------------------------*/
GotoByteInBlock(0x000);
WriteInt32(nNextBlockPtr);
if( CPLGetLastErrorType() == CE_Failure )
nStatus = CPLGetLastErrorNo();
/*-----------------------------------------------------------------
* OK, call the base class to write the block to disk.
*----------------------------------------------------------------*/
if (nStatus == 0)
nStatus = TABRawBinBlock::CommitToFile();
return nStatus;
}
/**********************************************************************
* TABRawBinBlock::InitBlockFromData()
*
* Set the binary data buffer and initialize the block.
*
* Calling ReadFromFile() will automatically call InitBlockFromData() to
* complete the initialization of the block after the data is read from the
* file. Derived classes should implement their own version of
* InitBlockFromData() if they need specific initialization... in this
* case the derived InitBlockFromData() should call
* TABRawBinBlock::InitBlockFromData() before doing anything else.
*
* By default, the buffer will be copied, but if bMakeCopy = FALSE then
* it won't be copied, and the object will keep a reference to the
* user's buffer... and this object will eventually free the user's buffer.
*
* Returns 0 if succesful or -1 if an error happened, in which case
* CPLError() will have been called.
**********************************************************************/
int TABRawBinBlock::InitBlockFromData(GByte *pabyBuf,
int nBlockSize, int nSizeUsed,
GBool bMakeCopy /* = TRUE */,
FILE *fpSrc /* = NULL */,
int nOffset /* = 0 */)
{
m_fp = fpSrc;
m_nFileOffset = nOffset;
m_nCurPos = 0;
m_bModified = FALSE;
/*----------------------------------------------------------------
* Alloc or realloc the buffer to contain the data if necessary
*---------------------------------------------------------------*/
if (!bMakeCopy)
{
if (m_pabyBuf != NULL)
CPLFree(m_pabyBuf);
m_pabyBuf = pabyBuf;
m_nBlockSize = nBlockSize;
m_nSizeUsed = nSizeUsed;
}
else if (m_pabyBuf == NULL || nBlockSize != m_nBlockSize)
{
m_pabyBuf = (GByte*)CPLRealloc(m_pabyBuf, nBlockSize*sizeof(GByte));
m_nBlockSize = nBlockSize;
m_nSizeUsed = nSizeUsed;
memcpy(m_pabyBuf, pabyBuf, m_nSizeUsed);
}
/*----------------------------------------------------------------
* Extract block type... header block (first block in a file) has
* no block type, so we assign one by default.
*---------------------------------------------------------------*/
if (m_nFileOffset == 0)
m_nBlockType = TABMAP_HEADER_BLOCK;
else
{
// Block type will be validated only if GetBlockType() is called
m_nBlockType = (int)m_pabyBuf[0];
}
return 0;
}
/**********************************************************************
* TABRawBinBlock::InitNewBlock()
*
* Initialize the block so that it knows to which file is is attached,
* its block size, etc.
*
* This is an alternative to calling ReadFromFile() or InitBlockFromData()
* that puts the block in a stable state without loading any initial
* data in it.
*
* Returns 0 if succesful or -1 if an error happened, in which case
* CPLError() will have been called.
**********************************************************************/
int TABRawBinBlock::InitNewBlock(FILE *fpSrc, int nBlockSize,
int nFileOffset /* = 0*/)
{
m_fp = fpSrc;
m_nBlockSize = nBlockSize;
m_nSizeUsed = 0;
m_nCurPos = 0;
m_bModified = FALSE;
if (nFileOffset > 0)
m_nFileOffset = nFileOffset;
else
m_nFileOffset = 0;
m_nBlockType = -1;
m_pabyBuf = (GByte*)CPLRealloc(m_pabyBuf, m_nBlockSize*sizeof(GByte));
memset(m_pabyBuf, 0, m_nBlockSize);
return 0;
}
/**********************************************************************
* TABRawBinBlock::GetBlockType()
*
* Return the block type for the current object.
*
* Returns a block type >= 0 if succesful or -1 if an error happened, in
* which case CPLError() will have been called.
**********************************************************************/
int TABRawBinBlock::GetBlockType()
{
if (m_pabyBuf == NULL)
{
CPLError(CE_Failure, CPLE_AppDefined,
"GetBlockType(): Block has not been initialized.");
return -1;
}
if (m_nBlockType > TABMAP_LAST_VALID_BLOCK_TYPE)
{
CPLError(CE_Failure, CPLE_NotSupported,
"GetBlockType(): Unsupported block type %d.",
m_nBlockType);
return -1;
}
return m_nBlockType;
}
/**********************************************************************
* TABRawBinBlock::GotoByteInBlock()
*
* Move the block pointer to the specified position relative to the
* beginning of the block.
*
* Returns 0 if succesful or -1 if an error happened, in which case
* CPLError() will have been called.
**********************************************************************/
int TABRawBinBlock::GotoByteInBlock(int nOffset)
{
if ( (m_eAccess == TABRead && nOffset > m_nSizeUsed) ||
(m_eAccess != TABRead && nOffset > m_nBlockSize) )
{
CPLError(CE_Failure, CPLE_AppDefined,
"GotoByteInBlock(): Attempt to go past end of data block.");
return -1;
}
if (nOffset < 0)
{
CPLError(CE_Failure, CPLE_AppDefined,
"GotoByteInBlock(): Attempt to go before start of data block.");
return -1;
}
m_nCurPos = nOffset;
m_nSizeUsed = MAX(m_nSizeUsed, m_nCurPos);
return 0;
}
/**********************************************************************
* TABRawBinBlock::GotoByteRel()
*
* Move the block pointer by the specified number of bytes relative
* to its current position.
*
* Returns 0 if succesful or -1 if an error happened, in which case
* CPLError() will have been called.
**********************************************************************/
int TABRawBinBlock::GotoByteRel(int nOffset)
{
return GotoByteInBlock(m_nCurPos + nOffset);
}
/**********************************************************************
* TABRawBinBlock::GotoByteInFile()
*
* Move the block pointer to the specified position relative to the
* beginning of the file.
*
* In read access, the current block may be reloaded to contain a right
* block of binary data if necessary.
*
* In write mode, the current block may automagically be committed to
* disk and a new block initialized if necessary.
*
* bForceReadFromFile is used in write mode to read the new block data from
* file instead of creating an empty block. (Useful for TABCollection
* or other cases that need to do random access in the file in write mode.)
*
* bOffsetIsEndOfData is set to TRUE to indicate that the nOffset
* to which we are attempting to go is the end of the used data in this
* block (we are positioninig ourselves to append data), so if the nOffset
* corresponds to the beginning of a 512 bytes block then we should really
* be positioning ourselves at the end of the block that ends at this
* address instead of at the beginning of the blocks that starts at this
* address. This case can happen when going back and forth to write collection
* objects to a Coordblock and is documented in bug 1657.
*
* Returns 0 if succesful or -1 if an error happened, in which case
* CPLError() will have been called.
**********************************************************************/
int TABRawBinBlock::GotoByteInFile(int nOffset,
GBool bForceReadFromFile /*=FALSE*/,
GBool bOffsetIsEndOfData /*=FALSE*/)
{
int nNewBlockPtr;
if (nOffset < 0)
{
CPLError(CE_Failure, CPLE_AppDefined,
"GotoByteInFile(): Attempt to go before start of file.");
return -1;
}
nNewBlockPtr = ( (nOffset-m_nFirstBlockPtr)/m_nBlockSize)*m_nBlockSize +
m_nFirstBlockPtr;
if (m_eAccess == TABRead)
{
if ( (nOffset<m_nFileOffset || nOffset>=m_nFileOffset+m_nSizeUsed) &&
ReadFromFile(m_fp, nNewBlockPtr, m_nBlockSize) != 0)
{
// Failed reading new block... error has already been reported.
return -1;
}
}
else if (m_eAccess == TABWrite)
{
if ( (nOffset<m_nFileOffset || nOffset>=m_nFileOffset+m_nBlockSize) &&
(CommitToFile() != 0 ||
InitNewBlock(m_fp, m_nBlockSize, nNewBlockPtr) != 0 ) )
{
// Failed reading new block... error has already been reported.
return -1;
}
}
else if (m_eAccess == TABReadWrite)
{
// TODO: THIS IS NOT REAL read/write access (it's more extended write)
// Currently we try to read from file only if explicitly requested.
// If we ever want true read/write mode we should implement
// more smarts to detect whether the caller wants an existing block to
// be read, or a new one to be created from scratch.
// CommitToFile() should only be called only if something changed.
//
if (bOffsetIsEndOfData && nOffset%m_nBlockSize == 0)
{
/* We're trying to go byte 512 of a block that's full of data.
* In this case it's okay to place the m_nCurPos at byte 512
* which is past the end of the block.
*/
/* Make sure we request the block that ends with requested
* address and not the following block that doesn't exist
* yet on disk */
nNewBlockPtr -= m_nBlockSize;
if ( (nOffset < m_nFileOffset ||
nOffset > m_nFileOffset+m_nBlockSize) &&
(CommitToFile() != 0 ||
(!bForceReadFromFile &&
InitNewBlock(m_fp, m_nBlockSize, nNewBlockPtr) != 0) ||
(bForceReadFromFile &&
ReadFromFile(m_fp, nNewBlockPtr, m_nBlockSize) != 0) ) )
{
// Failed reading new block... error has already been reported.
return -1;
}
}
else
{
if ( (nOffset < m_nFileOffset ||
nOffset >= m_nFileOffset+m_nBlockSize) &&
(CommitToFile() != 0 ||
(!bForceReadFromFile &&
InitNewBlock(m_fp, m_nBlockSize, nNewBlockPtr) != 0) ||
(bForceReadFromFile &&
ReadFromFile(m_fp, nNewBlockPtr, m_nBlockSize) != 0) ) )
{
// Failed reading new block... error has already been reported.
return -1;
}
}
}
else
{
CPLError(CE_Failure, CPLE_NotSupported,
"Access mode not supported yet!");
return -1;
}
m_nCurPos = nOffset-m_nFileOffset;
m_nSizeUsed = MAX(m_nSizeUsed, m_nCurPos);
return 0;
}
/**********************************************************************
* TABRawBinBlock::SetFirstBlockPtr()
*
* Set the position in the file at which the first block starts.
* This value will usually be the header size and needs to be specified
* only if the header size is different from the other blocks size.
*
* This value will be used by GotoByteInFile() to properly align the data
* blocks that it loads automatically when a requested position is outside
* of the block currently in memory.
**********************************************************************/
void TABRawBinBlock::SetFirstBlockPtr(int nOffset)
{
m_nFirstBlockPtr = nOffset;
}
/**********************************************************************
* TABRawBinBlock::GetNumUnusedBytes()
*
* Return the number of unused bytes in this block.
**********************************************************************/
int TABRawBinBlock::GetNumUnusedBytes()
{
return (m_nBlockSize - m_nSizeUsed);
}
/**********************************************************************
* TABRawBinBlock::GetFirstUnusedByteOffset()
*
* Return the position of the first unused byte in this block relative
* to the beginning of the file, or -1 if the block is full.
**********************************************************************/
int TABRawBinBlock::GetFirstUnusedByteOffset()
{
if (m_nSizeUsed < m_nBlockSize)
return m_nFileOffset + m_nSizeUsed;
else
return -1;
}
/**********************************************************************
* TABRawBinBlock::GetCurAddress()
*
* Return the current pointer position, relative to beginning of file.
**********************************************************************/
int TABRawBinBlock::GetCurAddress()
{
return (m_nFileOffset + m_nCurPos);
}
/**********************************************************************
* TABRawBinBlock::ReadBytes()
*
* Copy the number of bytes from the data block's internal buffer to
* the user's buffer pointed by pabyDstBuf.
*
* Passing pabyDstBuf = NULL will only move the read pointer by the
* specified number of bytes as if the copy had happened... but it
* won't crash.
*
* Returns 0 if succesful or -1 if an error happened, in which case
* CPLError() will have been called.
**********************************************************************/
int TABRawBinBlock::ReadBytes(int numBytes, GByte *pabyDstBuf)
{
/*----------------------------------------------------------------
* Make sure block is initialized with Read access and that the
* operation won't go beyond the buffer's size.
*---------------------------------------------------------------*/
if (m_pabyBuf == NULL)
{
CPLError(CE_Failure, CPLE_AppDefined,
"ReadBytes(): Block has not been initialized.");
return -1;
}
if (m_eAccess != TABRead && m_eAccess != TABReadWrite )
{
CPLError(CE_Failure, CPLE_AppDefined,
"ReadBytes(): Block does not support read operations.");
return -1;
}
if (m_nCurPos + numBytes > m_nSizeUsed)
{
CPLError(CE_Failure, CPLE_AppDefined,
"ReadBytes(): Attempt to read past end of data block.");
return -1;
}
if (pabyDstBuf)
{
memcpy(pabyDstBuf, m_pabyBuf + m_nCurPos, numBytes);
}
m_nCurPos += numBytes;
return 0;
}
/**********************************************************************
* TABRawBinBlock::Read<datatype>()
*
* MapInfo files are binary files with LSB first (Intel) byte
* ordering. The following functions will read from the input file
* and return a value with the bytes ordered properly for the current
* platform.
**********************************************************************/
GByte TABRawBinBlock::ReadByte()
{
GByte byValue;
ReadBytes(1, (GByte*)(&byValue));
return byValue;
}
GInt16 TABRawBinBlock::ReadInt16()
{
GInt16 n16Value;
ReadBytes(2, (GByte*)(&n16Value));
#ifdef CPL_MSB
return (GInt16)CPL_SWAP16(n16Value);
#else
return n16Value;
#endif
}
GInt32 TABRawBinBlock::ReadInt32()
{
GInt32 n32Value;
ReadBytes(4, (GByte*)(&n32Value));
#ifdef CPL_MSB
return (GInt32)CPL_SWAP32(n32Value);
#else
return n32Value;
#endif
}
float TABRawBinBlock::ReadFloat()
{
float fValue;
ReadBytes(4, (GByte*)(&fValue));
#ifdef CPL_MSB
*(GUInt32*)(&fValue) = CPL_SWAP32(*(GUInt32*)(&fValue));
#endif
return fValue;
}
double TABRawBinBlock::ReadDouble()
{
double dValue;
ReadBytes(8, (GByte*)(&dValue));
#ifdef CPL_MSB
CPL_SWAPDOUBLE(&dValue);
#endif
return dValue;
}
/**********************************************************************
* TABRawBinBlock::WriteBytes()
*
* Copy the number of bytes from the user's buffer pointed by pabySrcBuf
* to the data block's internal buffer.
* Note that this call only writes to the memory buffer... nothing is
* written to the file until WriteToFile() is called.
*
* Passing pabySrcBuf = NULL will only move the write pointer by the
* specified number of bytes as if the copy had happened... but it
* won't crash.
*
* Returns 0 if succesful or -1 if an error happened, in which case
* CPLError() will have been called.
**********************************************************************/
int TABRawBinBlock::WriteBytes(int nBytesToWrite, GByte *pabySrcBuf)
{
/*----------------------------------------------------------------
* Make sure block is initialized with Write access and that the
* operation won't go beyond the buffer's size.
*---------------------------------------------------------------*/
if (m_pabyBuf == NULL)
{
CPLError(CE_Failure, CPLE_AppDefined,
"WriteBytes(): Block has not been initialized.");
return -1;
}
if (m_eAccess != TABWrite && m_eAccess != TABReadWrite )
{
CPLError(CE_Failure, CPLE_AppDefined,
"WriteBytes(): Block does not support write operations.");
return -1;
}
if (m_nCurPos + nBytesToWrite > m_nBlockSize)
{
CPLError(CE_Failure, CPLE_AppDefined,
"WriteBytes(): Attempt to write past end of data block.");
return -1;
}
/*----------------------------------------------------------------
* Everything is OK... copy the data
*---------------------------------------------------------------*/
if (pabySrcBuf)
{
memcpy(m_pabyBuf + m_nCurPos, pabySrcBuf, nBytesToWrite);
}
m_nCurPos += nBytesToWrite;
m_nSizeUsed = MAX(m_nSizeUsed, m_nCurPos);
m_bModified = TRUE;
return 0;
}
/**********************************************************************
* TABRawBinBlock::Write<datatype>()
*
* Arc/Info files are binary files with MSB first (Motorola) byte
* ordering. The following functions will reorder the byte for the
* value properly and write that to the output file.
*
* If a problem happens, then CPLError() will be called and
* CPLGetLastErrNo() can be used to test if a write operation was
* succesful.
**********************************************************************/
int TABRawBinBlock::WriteByte(GByte byValue)
{
return WriteBytes(1, (GByte*)&byValue);
}
int TABRawBinBlock::WriteInt16(GInt16 n16Value)
{
#ifdef CPL_MSB
n16Value = (GInt16)CPL_SWAP16(n16Value);
#endif
return WriteBytes(2, (GByte*)&n16Value);
}
int TABRawBinBlock::WriteInt32(GInt32 n32Value)
{
#ifdef CPL_MSB
n32Value = (GInt32)CPL_SWAP32(n32Value);
#endif
return WriteBytes(4, (GByte*)&n32Value);
}
int TABRawBinBlock::WriteFloat(float fValue)
{
#ifdef CPL_MSB
*(GUInt32*)(&fValue) = CPL_SWAP32(*(GUInt32*)(&fValue));
#endif
return WriteBytes(4, (GByte*)&fValue);
}
int TABRawBinBlock::WriteDouble(double dValue)
{
#ifdef CPL_MSB
CPL_SWAPDOUBLE(&dValue);
#endif
return WriteBytes(8, (GByte*)&dValue);
}
/**********************************************************************
* TABRawBinBlock::WriteZeros()
*
* Write a number of zeros (sepcified in bytes) at the current position
* in the file.
*
* If a problem happens, then CPLError() will be called and
* CPLGetLastErrNo() can be used to test if a write operation was
* succesful.
**********************************************************************/
int TABRawBinBlock::WriteZeros(int nBytesToWrite)
{
char acZeros[8] = {0, 0, 0, 0, 0, 0, 0, 0};
int i;
int nStatus = 0;
/* Write by 8 bytes chunks. The last chunk may be less than 8 bytes
*/
for(i=0; nStatus == 0 && i< nBytesToWrite; i+=8)
{
nStatus = WriteBytes(MIN(8,(nBytesToWrite-i)), (GByte*)acZeros);
}
return nStatus;
}
/**********************************************************************
* TABRawBinBlock::WritePaddedString()
*
* Write a string and pad the end of the field (up to nFieldSize) with
* spaces number of spaces at the current position in the file.
*
* If a problem happens, then CPLError() will be called and
* CPLGetLastErrNo() can be used to test if a write operation was
* succesful.
**********************************************************************/
int TABRawBinBlock::WritePaddedString(int nFieldSize, const char *pszString)
{
char acSpaces[8] = {' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '};
int i, nLen, numSpaces;
int nStatus = 0;
nLen = strlen(pszString);
nLen = MIN(nLen, nFieldSize);
numSpaces = nFieldSize - nLen;
if (nLen > 0)
nStatus = WriteBytes(nLen, (GByte*)pszString);
/* Write spaces by 8 bytes chunks. The last chunk may be less than 8 bytes
*/
for(i=0; nStatus == 0 && i< numSpaces; i+=8)
{
nStatus = WriteBytes(MIN(8,(numSpaces-i)), (GByte*)acSpaces);
}
return nStatus;
}
/**********************************************************************
* TABRawBinBlock::Dump()
*
* Dump block contents... available only in DEBUG mode.
**********************************************************************/
#ifdef DEBUG
void TABRawBinBlock::Dump(FILE *fpOut /*=NULL*/)
{
if (fpOut == NULL)
fpOut = stdout;
fprintf(fpOut, "----- TABRawBinBlock::Dump() -----\n");
if (m_pabyBuf == NULL)
{
fprintf(fpOut, "Block has not been initialized yet.");
}
else
{
fprintf(fpOut, "Block (type %d) size=%d bytes at offset %d in file.\n",
m_nBlockType, m_nBlockSize, m_nFileOffset);
fprintf(fpOut, "Current pointer at byte %d\n", m_nCurPos);
}
fflush(fpOut);
}
#endif // DEBUG
/**********************************************************************
* DumpBytes()
*
* Read and dump the contents of an Binary file.
**********************************************************************/
void TABRawBinBlock::DumpBytes(GInt32 nValue, int nOffset /*=0*/,
FILE *fpOut /*=NULL*/)
{
GInt32 anVal[2];
GInt16 *pn16Val1, *pn16Val2;
float *pfValue;
char *pcValue;
double *pdValue;
pfValue = (float*)(&nValue);
pcValue = (char*)(&nValue);
pdValue = (double*)anVal;
pn16Val1 = (GInt16*)(pcValue+2);
pn16Val2 = (GInt16*)(pcValue);
anVal[0] = anVal[1] = 0;
/* For double precision values, we only use the first half
* of the height bytes... and leave the other 4 bytes as zeros!
* It's a bit of a hack, but it seems to be enough for the
* precision of the values we print!
*/
#ifdef CPL_MSB
anVal[0] = nValue;
#else
anVal[1] = nValue;
#endif
if (fpOut == NULL)
fpOut = stdout;
fprintf(fpOut, "%d\t0x%8.8x %-5d\t%-6d %-6d %5.3e d=%5.3e",
nOffset, nValue, nValue,
*pn16Val1, *pn16Val2, *pfValue, *pdValue);
printf("\t[%c%c%c%c]\n", isprint(pcValue[0])?pcValue[0]:'.',
isprint(pcValue[1])?pcValue[1]:'.',
isprint(pcValue[2])?pcValue[2]:'.',
isprint(pcValue[3])?pcValue[3]:'.');
}
/**********************************************************************
* TABCreateMAPBlockFromFile()
*
* Load data from the specified file location and create and initialize
* a TABMAP*Block of the right type to handle it.
*
* Returns the new object if succesful or NULL if an error happened, in
* which case CPLError() will have been called.
**********************************************************************/
TABRawBinBlock *TABCreateMAPBlockFromFile(FILE *fpSrc, int nOffset,
int nSize /*= 512*/,
GBool bHardBlockSize /*= TRUE */,
TABAccess eAccessMode /*= TABRead*/)
{
TABRawBinBlock *poBlock = NULL;
GByte *pabyBuf;
if (fpSrc == NULL || nSize == 0)
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"TABCreateMAPBlockFromFile(): Assertion Failed!");
return NULL;
}
/*----------------------------------------------------------------
* Alloc a buffer to contain the data
*---------------------------------------------------------------*/
pabyBuf = (GByte*)CPLMalloc(nSize*sizeof(GByte));
/*----------------------------------------------------------------
* Read from the file
*---------------------------------------------------------------*/
if (VSIFSeek(fpSrc, nOffset, SEEK_SET) != 0 ||
VSIFRead(pabyBuf, sizeof(GByte), nSize, fpSrc)!=(unsigned int)nSize )
{
CPLError(CE_Failure, CPLE_FileIO,
"TABCreateMAPBlockFromFile() failed reading %d bytes at offset %d.",
nSize, nOffset);
CPLFree(pabyBuf);
return NULL;
}
/*----------------------------------------------------------------
* Create an object of the right type
* Header block is different: it does not start with the object
* type byte but it is always the first block in a file
*---------------------------------------------------------------*/
if (nOffset == 0)
{
poBlock = new TABMAPHeaderBlock;
}
else
{
switch(pabyBuf[0])
{
case TABMAP_INDEX_BLOCK:
poBlock = new TABMAPIndexBlock(eAccessMode);
break;
case TABMAP_OBJECT_BLOCK:
poBlock = new TABMAPObjectBlock(eAccessMode);
break;
case TABMAP_COORD_BLOCK:
poBlock = new TABMAPCoordBlock(eAccessMode);
break;
case TABMAP_TOOL_BLOCK:
poBlock = new TABMAPToolBlock(eAccessMode);
break;
case TABMAP_GARB_BLOCK:
default:
poBlock = new TABRawBinBlock(eAccessMode, bHardBlockSize);
break;
}
}
/*----------------------------------------------------------------
* Init new object with the data we just read
*---------------------------------------------------------------*/
if (poBlock->InitBlockFromData(pabyBuf, nSize, nSize,
FALSE, fpSrc, nOffset) != 0)
{
// Some error happened... and CPLError() has been called
delete poBlock;
poBlock = NULL;
}
return poBlock;
}
/*=====================================================================
* class TABBinBlockManager
*====================================================================*/
/**********************************************************************
* TABBinBlockManager::TABBinBlockManager()
*
* Constructor.
**********************************************************************/
TABBinBlockManager::TABBinBlockManager(int nBlockSize /*=512*/)
{
m_nBlockSize=nBlockSize;
m_nLastAllocatedBlock = -1;
m_psGarbageBlocks = NULL;
}
/**********************************************************************
* TABBinBlockManager::~TABBinBlockManager()
*
* Destructor.
**********************************************************************/
TABBinBlockManager::~TABBinBlockManager()
{
Reset();
}
/**********************************************************************
* TABBinBlockManager::AllocNewBlock()
*
* Returns and reserves the address of the next available block, either a
* brand new block at end of file, or recycle a garbage block if one is
* available.
**********************************************************************/
GInt32 TABBinBlockManager::AllocNewBlock()
{
// Try to reuse garbage blocks first
if (GetFirstGarbageBlock() > 0)
return PopGarbageBlock();
// ... or alloc a new block at EOF
if (m_nLastAllocatedBlock==-1)
m_nLastAllocatedBlock = 0;
else
m_nLastAllocatedBlock+=m_nBlockSize;
return m_nLastAllocatedBlock;
}
/**********************************************************************
* TABBinBlockManager::Reset()
*
**********************************************************************/
void TABBinBlockManager::Reset()
{
m_nLastAllocatedBlock = -1;
// Flush list of garbage blocks
while (m_psGarbageBlocks != NULL)
{
TABBlockRef *psNext = m_psGarbageBlocks->psNext;
CPLFree(m_psGarbageBlocks);
m_psGarbageBlocks = psNext;
}
}
/**********************************************************************
* TABBinBlockManager::PushGarbageBlock()
*
* Insert a garbage block at the head of the list of garbage blocks.
**********************************************************************/
void TABBinBlockManager::PushGarbageBlock(GInt32 nBlockPtr)
{
TABBlockRef *psNewBlockRef = (TABBlockRef *)CPLMalloc(sizeof(TABBlockRef));
if (psNewBlockRef)
{
psNewBlockRef->nBlockPtr = nBlockPtr;
psNewBlockRef->psNext = m_psGarbageBlocks;
m_psGarbageBlocks = psNewBlockRef;
}
}
/**********************************************************************
* TABBinBlockManager::GetFirstGarbageBlock()
*
* Return address of the block at the head of the list of garbage blocks
* or 0 if the list is empty.
**********************************************************************/
GInt32 TABBinBlockManager::GetFirstGarbageBlock()
{
if (m_psGarbageBlocks)
return m_psGarbageBlocks->nBlockPtr;
return 0;
}
/**********************************************************************
* TABBinBlockManager::PopGarbageBlock()
*
* Return address of the block at the head of the list of garbage blocks
* and remove that block from the list.
* Retuns 0 if the list is empty.
**********************************************************************/
GInt32 TABBinBlockManager::PopGarbageBlock()
{
GInt32 nBlockPtr = 0;
if (m_psGarbageBlocks)
{
nBlockPtr = m_psGarbageBlocks->nBlockPtr;
TABBlockRef *psNext = m_psGarbageBlocks->psNext;
CPLFree(m_psGarbageBlocks);
m_psGarbageBlocks = psNext;
}
return nBlockPtr;
}
|