⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mitab_mapobjectblock.cpp

📁 用于读取TAB、MIF、SHP文件的类
💻 CPP
📖 第 1 页 / 共 4 页
字号:
/********************************************************************** * $Id: mitab_mapobjectblock.cpp,v 1.15 2005/10/06 19:15:31 dmorissette Exp $ * * Name:     mitab_mapobjectblock.cpp * Project:  MapInfo TAB Read/Write library * Language: C++ * Purpose:  Implementation of the TABMAPObjectBlock class used to handle *           reading/writing of the .MAP files' object data blocks * Author:   Daniel Morissette, dmorissette@dmsolutions.ca * ********************************************************************** * Copyright (c) 1999-2001, 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_mapobjectblock.cpp,v $ * Revision 1.15  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.14  2005/10/04 15:44:31  dmorissette * First round of support for Collection objects. Currently supports reading * from .TAB/.MAP and writing to .MIF. Still lacks symbol support and write * support. (Based in part on patch and docs from Jim Hope, bug 1126) * * Revision 1.13  2004/06/30 20:29:04  dmorissette * Fixed refs to old address danmo@videotron.ca * * Revision 1.12  2002/03/26 01:48:40  daniel * Added Multipoint object type (V650) * * Revision 1.11  2001/12/05 22:40:27  daniel * Init MBR to 0 in TABMAPObjHdr and modif. SetMBR() to validate min/max * * Revision 1.10  2001/11/19 15:07:06  daniel * Handle the case of TAB_GEOM_NONE with the new TABMAPObjHdr classes. * * Revision 1.9  2001/11/17 21:54:06  daniel * Made several changes in order to support writing objects in 16 bits  * coordinate format. New TABMAPObjHdr-derived classes are used to hold  * object info in mem until block is full. * * Revision 1.8  2001/09/19 19:19:11  warmerda * modified AdvanceToNextObject() to skip deleted objects * * Revision 1.7  2001/09/14 03:23:55  warmerda * Substantial upgrade to support spatial queries using spatial indexes * * Revision 1.6  2000/01/15 22:30:44  daniel * Switch to MIT/X-Consortium OpenSource license * * Revision 1.5  1999/10/19 06:07:29  daniel * Removed obsolete comment. * * Revision 1.4  1999/10/18 15:41:00  daniel * Added WriteIntMBRCoord() * * Revision 1.3  1999/09/29 04:23:06  daniel * Fixed typo in GetMBR() * * Revision 1.2  1999/09/26 14:59:37  daniel * Implemented write support * * Revision 1.1  1999/07/12 04:18:25  daniel * Initial checkin * **********************************************************************/#include "mitab.h"/*===================================================================== *                      class TABMAPObjectBlock *====================================================================*/#define MAP_OBJECT_HEADER_SIZE   20/********************************************************************** *                   TABMAPObjectBlock::TABMAPObjectBlock() * * Constructor. **********************************************************************/TABMAPObjectBlock::TABMAPObjectBlock(TABAccess eAccessMode /*= TABRead*/):    TABRawBinBlock(eAccessMode, TRUE){    m_papoObjHdr = NULL;    m_numObjects = 0;}/********************************************************************** *                   TABMAPObjectBlock::~TABMAPObjectBlock() * * Destructor. **********************************************************************/TABMAPObjectBlock::~TABMAPObjectBlock(){    m_nMinX = 1000000000;    m_nMinY = 1000000000;    m_nMaxX = -1000000000;    m_nMaxY = -1000000000;    FreeObjectArray();}/********************************************************************** *                   TABMAPObjectBlock::FreeObjectArray() **********************************************************************/void TABMAPObjectBlock::FreeObjectArray(){    if (m_numObjects > 0 && m_papoObjHdr)    {        for(int i=0; i<m_numObjects; i++)            delete m_papoObjHdr[i];        CPLFree(m_papoObjHdr);    }    m_papoObjHdr = NULL;    m_numObjects = 0;}/********************************************************************** *                   TABMAPObjectBlock::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     TABMAPObjectBlock::InitBlockFromData(GByte *pabyBuf, int nSize,                                          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, nSize, bMakeCopy,                                            fpSrc, nOffset);    if (nStatus != 0)           return nStatus;    /*-----------------------------------------------------------------     * Validate block type     *----------------------------------------------------------------*/    if (m_nBlockType != TABMAP_OBJECT_BLOCK)    {        CPLError(CE_Failure, CPLE_FileIO,                 "InitBlockFromData(): Invalid Block Type: got %d expected %d",                 m_nBlockType, TABMAP_OBJECT_BLOCK);        CPLFree(m_pabyBuf);        m_pabyBuf = NULL;        return -1;    }    /*-----------------------------------------------------------------     * Init member variables     *----------------------------------------------------------------*/    FreeObjectArray();    GotoByteInBlock(0x002);    m_numDataBytes = ReadInt16();       /* Excluding 4 bytes header */    m_nCenterX = ReadInt32();    m_nCenterY = ReadInt32();    m_nFirstCoordBlock = ReadInt32();    m_nLastCoordBlock = ReadInt32();    m_nCurObjectOffset = -1;    m_nCurObjectId = -1;    return 0;}/************************************************************************//*                        AdvanceToNextObject()                         *//************************************************************************/int TABMAPObjectBlock::AdvanceToNextObject( TABMAPHeaderBlock *poHeader ){    if( m_nCurObjectId == -1 )     {        m_nCurObjectOffset = 20;    }    else    {        m_nCurObjectOffset += poHeader->GetMapObjectSize( m_nCurObjectType );    }            if( m_nCurObjectOffset + 5 < m_numDataBytes + 20 )    {        GotoByteInBlock( m_nCurObjectOffset );        m_nCurObjectType = ReadByte();    }    else    {        m_nCurObjectType = -1;    }    if( m_nCurObjectType <= 0 || m_nCurObjectType >= 0x80 )    {        m_nCurObjectType = -1;        m_nCurObjectId = -1;        m_nCurObjectOffset = -1;    }    else    {        m_nCurObjectId = ReadInt32();        // Is this object marked as deleted?  If so, skip it.        // I check both the top bits but I have only seen this occur        // with the second highest bit set (ie. in usa/states.tab). NFW.        if( (((GUInt32)m_nCurObjectId) & (GUInt32) 0xC0000000) != 0 )        {            m_nCurObjectId = AdvanceToNextObject( poHeader );        }    }    return m_nCurObjectId;}/********************************************************************** *                   TABMAPObjectBlock::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     TABMAPObjectBlock::CommitToFile(){    int nStatus = 0;    if ( m_pabyBuf == NULL )    {        CPLError(CE_Failure, CPLE_AssertionFailed,      "TABMAPObjectBlock::CommitToFile(): Block has not been initialized yet!");        return -1;    }    /*-----------------------------------------------------------------     * Make sure 20 bytes block header is up to date.     *----------------------------------------------------------------*/    GotoByteInBlock(0x000);    WriteInt16(TABMAP_OBJECT_BLOCK);    // Block type code    WriteInt16(m_nSizeUsed - MAP_OBJECT_HEADER_SIZE); // num. bytes used        WriteInt32(m_nCenterX);    WriteInt32(m_nCenterY);    WriteInt32(m_nFirstCoordBlock);    WriteInt32(m_nLastCoordBlock);    nStatus = CPLGetLastErrorNo();    /*-----------------------------------------------------------------     * Write all the individual objects     *----------------------------------------------------------------*/    for(int i=0; i<m_numObjects; i++)    {        m_papoObjHdr[i]->WriteObj(this);    }    /*-----------------------------------------------------------------     * OK, call the base class to write the block to disk.     *----------------------------------------------------------------*/    if (nStatus == 0)        nStatus = TABRawBinBlock::CommitToFile();    return nStatus;}/********************************************************************** *                   TABMAPObjectBlock::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     TABMAPObjectBlock::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.     *----------------------------------------------------------------*/    // Set block MBR to extreme values to force an update on the first    // UpdateMBR() call.    m_nMinX = 1000000000;    m_nMaxX = -1000000000;    m_nMinY = 1000000000;    m_nMaxY = -1000000000;    // Make sure there is no object header left from last time.    FreeObjectArray();    m_numDataBytes = 0;       /* Data size excluding header */    m_nCenterX = m_nCenterY = 0;    m_nFirstCoordBlock = 0;    m_nLastCoordBlock = 0;    if (m_eAccess != TABRead)    {        GotoByteInBlock(0x000);        WriteInt16(TABMAP_OBJECT_BLOCK);// Block type code        WriteInt16(0);                  // num. bytes used, excluding header            // MBR center here... will be written in CommitToFile()        WriteInt32(0);        WriteInt32(0);        // First/last coord block ref... will be written in CommitToFile()        WriteInt32(0);        WriteInt32(0);    }    if (CPLGetLastErrorNo() != 0)        return -1;    return 0;}/********************************************************************** *                   TABMAPObjectBlock::ReadCoord() * * Read the next pair of integer coordinates value from the block, and * apply the translation relative to to the center of the data block * if bCompressed=TRUE. * * This means that the returned coordinates are always absolute integer * coordinates, even when the source coords are in compressed form. * * Returns 0 if succesful or -1 if an error happened, in which case  * CPLError() will have been called. **********************************************************************/int     TABMAPObjectBlock::ReadIntCoord(GBool bCompressed,                                         GInt32 &nX, GInt32 &nY){    if (bCompressed)    {           nX = m_nCenterX + ReadInt16();        nY = m_nCenterY + ReadInt16();    }    else    {        nX = ReadInt32();        nY = ReadInt32();    }    if (CPLGetLastErrorNo() != 0)        return -1;    return 0;}/********************************************************************** *                   TABMAPObjectBlock::WriteIntCoord() * * Write a pair of integer coordinates values to the current position in the * the block.  If bCompr=TRUE then the coordinates are written relative to * the object block center... otherwise they're written as 32 bits int. * * This function does not maintain the block's MBR and center... it is  * assumed to have been set before the first call to WriteIntCoord() * * Returns 0 if succesful or -1 if an error happened, in which case  * CPLError() will have been called. **********************************************************************/int     TABMAPObjectBlock::WriteIntCoord(GInt32 nX, GInt32 nY,                                         GBool bCompressed /*=FALSE*/){    /*-----------------------------------------------------------------     * Write coords to the file.     *----------------------------------------------------------------*/    if ((!bCompressed && (WriteInt32(nX) != 0 || WriteInt32(nY) != 0 ) ) ||        (bCompressed && (WriteInt16(nX - m_nCenterX) != 0 ||

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -