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
|
/**********************************************************************
* $Id: mitab_maptoolblock.cpp,v 1.8 2010-07-07 19:00:15 aboudreault Exp $
*
* Name: mitab_maptoollock.cpp
* Project: MapInfo TAB Read/Write library
* Language: C++
* Purpose: Implementation of the TABMAPToolBlock class used to handle
* reading/writing of the .MAP files' drawing tool blocks
* 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_maptoolblock.cpp,v $
* Revision 1.8 2010-07-07 19:00:15 aboudreault
* Cleanup Win32 Compile Warnings (GDAL bug #2930)
*
* Revision 1.7 2006-11-28 18:49:08 dmorissette
* Completed changes to split TABMAPObjectBlocks properly and produce an
* optimal spatial index (bug 1585)
*
* Revision 1.6 2004/06/30 20:29:04 dmorissette
* Fixed refs to old address danmo@videotron.ca
*
* Revision 1.5 2000/11/15 04:13:50 daniel
* Fixed writing of TABMAPToolBlock to allocate a new block when full
*
* Revision 1.4 2000/02/28 17:03:30 daniel
* Changed TABMAPBlockManager to TABBinBlockManager
*
* Revision 1.3 2000/01/15 22:30:44 daniel
* Switch to MIT/X-Consortium OpenSource license
*
* Revision 1.2 1999/09/26 14:59:37 daniel
* Implemented write support
*
* Revision 1.1 1999/09/16 02:39:17 daniel
* Completed read support for most feature types
*
**********************************************************************/
#include "mitab.h"
/*=====================================================================
* class TABMAPToolBlock
*====================================================================*/
#define MAP_TOOL_HEADER_SIZE 8
/**********************************************************************
* TABMAPToolBlock::TABMAPToolBlock()
*
* Constructor.
**********************************************************************/
TABMAPToolBlock::TABMAPToolBlock(TABAccess eAccessMode /*= TABRead*/):
TABRawBinBlock(eAccessMode, TRUE)
{
m_nNextToolBlock = m_numDataBytes = 0;
m_numBlocksInChain = 1; // Current block counts as 1
m_poBlockManagerRef = NULL;
}
/**********************************************************************
* TABMAPToolBlock::~TABMAPToolBlock()
*
* Destructor.
**********************************************************************/
TABMAPToolBlock::~TABMAPToolBlock()
{
}
/**********************************************************************
* TABMAPToolBlock::EndOfChain()
*
* Return TRUE if we reached the end of the last block in the chain
* TABMAPToolBlocks, or FALSE if there is still data to be read from
* this chain.
**********************************************************************/
GBool TABMAPToolBlock::EndOfChain()
{
if (m_pabyBuf &&
(m_nCurPos < (m_numDataBytes+MAP_TOOL_HEADER_SIZE) ||
m_nNextToolBlock > 0 ) )
{
return FALSE; // There is still data to be read.
}
return TRUE;
}
/**********************************************************************
* TABMAPToolBlock::InitBlockFromData()
*
* Perform some initialization on the block after its binary data has
* been set or changed (or loaded from a file).
*
* Returns 0 if succesful or -1 if an error happened, in which case
* CPLError() will have been called.
**********************************************************************/
int TABMAPToolBlock::InitBlockFromData(GByte *pabyBuf,
int nBlockSize, int nSizeUsed,
GBool bMakeCopy /* = TRUE */,
FILE *fpSrc /* = NULL */,
int nOffset /* = 0 */)
{
int nStatus;
/*-----------------------------------------------------------------
* First of all, we must call the base class' InitBlockFromData()
*----------------------------------------------------------------*/
nStatus = TABRawBinBlock::InitBlockFromData(pabyBuf, nBlockSize, nSizeUsed,
bMakeCopy, fpSrc, nOffset);
if (nStatus != 0)
return nStatus;
/*-----------------------------------------------------------------
* Validate block type
*----------------------------------------------------------------*/
if (m_nBlockType != TABMAP_TOOL_BLOCK)
{
CPLError(CE_Failure, CPLE_FileIO,
"InitBlockFromData(): Invalid Block Type: got %d expected %d",
m_nBlockType, TABMAP_TOOL_BLOCK);
CPLFree(m_pabyBuf);
m_pabyBuf = NULL;
return -1;
}
/*-----------------------------------------------------------------
* Init member variables
*----------------------------------------------------------------*/
GotoByteInBlock(0x002);
m_numDataBytes = ReadInt16(); /* Excluding 8 bytes header */
m_nNextToolBlock = ReadInt32();
/*-----------------------------------------------------------------
* The read ptr is now located at the beginning of the data part.
*----------------------------------------------------------------*/
GotoByteInBlock(MAP_TOOL_HEADER_SIZE);
return 0;
}
/**********************************************************************
* TABMAPToolBlock::CommitToFile()
*
* Commit the current state of the binary block to the file to which
* it has been previously attached.
*
* This method makes sure all values are properly set in the map object
* block header and then calls TABRawBinBlock::CommitToFile() to do
* the actual writing to disk.
*
* Returns 0 if succesful or -1 if an error happened, in which case
* CPLError() will have been called.
**********************************************************************/
int TABMAPToolBlock::CommitToFile()
{
int nStatus = 0;
if ( m_pabyBuf == NULL )
{
CPLError(CE_Failure, CPLE_AssertionFailed,
"CommitToFile(): Block has not been initialized yet!");
return -1;
}
/*-----------------------------------------------------------------
* Make sure 8 bytes block header is up to date.
*----------------------------------------------------------------*/
GotoByteInBlock(0x000);
WriteInt16(TABMAP_TOOL_BLOCK); // Block type code
WriteInt16((GInt16)(m_nSizeUsed - MAP_TOOL_HEADER_SIZE)); // num. bytes used
WriteInt32(m_nNextToolBlock);
nStatus = CPLGetLastErrorNo();
/*-----------------------------------------------------------------
* OK, call the base class to write the block to disk.
*----------------------------------------------------------------*/
if (nStatus == 0)
nStatus = TABRawBinBlock::CommitToFile();
return nStatus;
}
/**********************************************************************
* TABMAPToolBlock::InitNewBlock()
*
* Initialize a newly created block so that it knows to which file it
* is attached, its block size, etc . and then perform any specific
* initialization for this block type, including writing a default
* block header, etc. and leave the block ready to receive data.
*
* 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 TABMAPToolBlock::InitNewBlock(FILE *fpSrc, int nBlockSize,
int nFileOffset /* = 0*/)
{
/*-----------------------------------------------------------------
* Start with the default initialisation
*----------------------------------------------------------------*/
if ( TABRawBinBlock::InitNewBlock(fpSrc, nBlockSize, nFileOffset) != 0)
return -1;
/*-----------------------------------------------------------------
* And then set default values for the block header.
*----------------------------------------------------------------*/
m_nNextToolBlock = 0;
m_numDataBytes = 0;
GotoByteInBlock(0x000);
if (m_eAccess != TABRead)
{
WriteInt16(TABMAP_TOOL_BLOCK); // Block type code
WriteInt16(0); // num. bytes used, excluding header
WriteInt32(0); // Pointer to next tool block
}
if (CPLGetLastErrorNo() != 0)
return -1;
return 0;
}
/**********************************************************************
* TABMAPToolBlock::SetNextToolBlock()
*
* Set the address (offset from beginning of file) of the drawing tool block
* that follows the current one.
**********************************************************************/
void TABMAPToolBlock::SetNextToolBlock(GInt32 nNextToolBlockAddress)
{
m_nNextToolBlock = nNextToolBlockAddress;
}
/**********************************************************************
* TABMAPToolBlock::SetMAPBlockManagerRef()
*
* Pass a reference to the block manager object for the file this
* block belongs to. The block manager will be used by this object
* when it needs to automatically allocate a new block.
**********************************************************************/
void TABMAPToolBlock::SetMAPBlockManagerRef(TABBinBlockManager *poBlockMgr)
{
m_poBlockManagerRef = poBlockMgr;
};
/**********************************************************************
* TABMAPToolBlock::ReadBytes()
*
* Cover function for TABRawBinBlock::ReadBytes() that will automagically
* load the next coordinate block in the chain before reading the
* requested bytes if we are at the end of the current block and if
* m_nNextToolBlock is a valid block.
*
* Then the control is passed to TABRawBinBlock::ReadBytes() to finish the
* work:
* 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 TABMAPToolBlock::ReadBytes(int numBytes, GByte *pabyDstBuf)
{
int nStatus;
if (m_pabyBuf &&
m_nCurPos >= (m_numDataBytes+MAP_TOOL_HEADER_SIZE) &&
m_nNextToolBlock > 0)
{
if ( (nStatus=GotoByteInFile(m_nNextToolBlock)) != 0)
{
// Failed.... an error has already been reported.
return nStatus;
}
GotoByteInBlock(MAP_TOOL_HEADER_SIZE); // Move pointer past header
m_numBlocksInChain++;
}
return TABRawBinBlock::ReadBytes(numBytes, pabyDstBuf);
}
/**********************************************************************
* TABMAPToolBlock::WriteBytes()
*
* Cover function for TABRawBinBlock::WriteBytes() that will automagically
* CommitToFile() the current block and create a new one if we are at
* the end of the current block.
*
* Then the control is passed to TABRawBinBlock::WriteBytes() to finish the
* work.
*
* 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 TABMAPToolBlock::WriteBytes(int nBytesToWrite, GByte *pabySrcBuf)
{
if (m_eAccess == TABWrite && m_poBlockManagerRef &&
(m_nBlockSize - m_nCurPos) < nBytesToWrite)
{
int nNewBlockOffset = m_poBlockManagerRef->AllocNewBlock();
SetNextToolBlock(nNewBlockOffset);
if (CommitToFile() != 0 ||
InitNewBlock(m_fp, 512, nNewBlockOffset) != 0)
{
// An error message should have already been reported.
return -1;
}
m_numBlocksInChain ++;
}
return TABRawBinBlock::WriteBytes(nBytesToWrite, pabySrcBuf);
}
/**********************************************************************
* TABMAPToolBlock::CheckAvailableSpace()
*
* Check if an object of the specified type can fit in
* current block. If it can't fit then force committing current block
* and allocating a new one.
*
* Returns 0 if succesful or -1 if an error happened, in which case
* CPLError() will have been called.
**********************************************************************/
int TABMAPToolBlock::CheckAvailableSpace(int nToolType)
{
int nBytesToWrite = 0;
switch(nToolType)
{
case TABMAP_TOOL_PEN:
nBytesToWrite = 11;
break;
case TABMAP_TOOL_BRUSH:
nBytesToWrite = 13;
break;
case TABMAP_TOOL_FONT:
nBytesToWrite = 37;
break;
case TABMAP_TOOL_SYMBOL:
nBytesToWrite = 13;
break;
default:
CPLAssert(FALSE);
}
if (GetNumUnusedBytes() < nBytesToWrite)
{
int nNewBlockOffset = m_poBlockManagerRef->AllocNewBlock();
SetNextToolBlock(nNewBlockOffset);
if (CommitToFile() != 0 ||
InitNewBlock(m_fp, 512, nNewBlockOffset) != 0)
{
// An error message should have already been reported.
return -1;
}
m_numBlocksInChain ++;
}
return 0;
}
/**********************************************************************
* TABMAPToolBlock::Dump()
*
* Dump block contents... available only in DEBUG mode.
**********************************************************************/
#ifdef DEBUG
void TABMAPToolBlock::Dump(FILE *fpOut /*=NULL*/)
{
if (fpOut == NULL)
fpOut = stdout;
fprintf(fpOut, "----- TABMAPToolBlock::Dump() -----\n");
if (m_pabyBuf == NULL)
{
fprintf(fpOut, "Block has not been initialized yet.");
}
else
{
fprintf(fpOut,"Coordinate Block (type %d) at offset %d.\n",
m_nBlockType, m_nFileOffset);
fprintf(fpOut," m_numDataBytes = %d\n", m_numDataBytes);
fprintf(fpOut," m_nNextToolBlock = %d\n", m_nNextToolBlock);
}
fflush(fpOut);
}
#endif // DEBUG
|