You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-10-30 07:25:34 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			163 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			163 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* Copyright (C) 2014 InfiniDB, Inc.
 | |
| 
 | |
|    This program is free software; you can redistribute it and/or
 | |
|    modify it under the terms of the GNU General Public License
 | |
|    as published by the Free Software Foundation; version 2 of
 | |
|    the License.
 | |
| 
 | |
|    This program is distributed in the hope that it will be useful,
 | |
|    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|    GNU General Public License for more details.
 | |
| 
 | |
|    You should have received a copy of the GNU General Public License
 | |
|    along with this program; if not, write to the Free Software
 | |
|    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 | |
|    MA 02110-1301, USA. */
 | |
| 
 | |
| //  $Id: we_dctnrycompress.h 4726 2013-08-07 03:38:36Z bwilkinson $
 | |
| 
 | |
| /** @file */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <cstdlib>
 | |
| 
 | |
| #include "../dictionary/we_dctnry.h"
 | |
| #include "we_chunkmanager.h"
 | |
| #define EXPORT
 | |
| 
 | |
| /** Namespace WriteEngine */
 | |
| namespace WriteEngine
 | |
| {
 | |
| /** Class DctnryCompress */
 | |
| class DctnryCompress0 : public Dctnry
 | |
| {
 | |
|  public:
 | |
|   /**
 | |
|    * @brief Constructor
 | |
|    */
 | |
|   EXPORT DctnryCompress0();
 | |
|   EXPORT DctnryCompress0(Log* logger);
 | |
| 
 | |
|   /**
 | |
|    * @brief Default Destructor
 | |
|    */
 | |
|   EXPORT ~DctnryCompress0() override;
 | |
| };
 | |
| 
 | |
| /** Class DctnryCompress1 */
 | |
| class DctnryCompress1 : public Dctnry
 | |
| {
 | |
|  public:
 | |
|   /**
 | |
|    * @brief Constructor
 | |
|    */
 | |
|   EXPORT DctnryCompress1(uint32_t compressionType, Log* logger = nullptr);
 | |
| 
 | |
|   /**
 | |
|    * @brief Default Destructor
 | |
|    */
 | |
|   EXPORT ~DctnryCompress1() override;
 | |
| 
 | |
|   /**
 | |
|    * @brief virtual method in FileOp
 | |
|    */
 | |
|   EXPORT int flushFile(int rc, std::map<FID, FID>& columnOids) override;
 | |
| 
 | |
|   /**
 | |
|    * @brief virtual method in DBFileOp
 | |
|    */
 | |
|   EXPORT int readDBFile(IDBDataFile* pFile, unsigned char* readBuf, const uint64_t lbid,
 | |
|                         const bool isFbo = false) override;
 | |
| 
 | |
|   /**
 | |
|    * @brief virtual method in DBFileOp
 | |
|    */
 | |
|   EXPORT int writeDBFile(IDBDataFile* pFile, const unsigned char* writeBuf, const uint64_t lbid,
 | |
|                          const int numOfBlock = 1) override;
 | |
| 
 | |
|   /**
 | |
|    * @brief virtual method in DBFileOp
 | |
|    */
 | |
|   EXPORT int writeDBFileNoVBCache(IDBDataFile* pFile, const unsigned char* writeBuf, const int fbo,
 | |
|                                   const int numOfBlock = 1) override;
 | |
| 
 | |
|   /**
 | |
|    * @brief virtual method in Dctnry
 | |
|    */
 | |
|   IDBDataFile* createDctnryFile(const char* name, int width, const char* mode, int ioBuffSize,
 | |
|                                 int64_t lbid) override;
 | |
| 
 | |
|   /**
 | |
|    * @brief virtual method in Dctnry
 | |
|    */
 | |
|   IDBDataFile* openDctnryFile(bool useTmpSuffix) override;
 | |
| 
 | |
|   /**
 | |
|    * @brief virtual method in Dctnry
 | |
|    */
 | |
|   void closeDctnryFile(bool doFlush, std::map<FID, FID>& columnOids) override;
 | |
| 
 | |
|   /**
 | |
|    * @brief virtual method in Dctnry
 | |
|    */
 | |
|   int numOfBlocksInFile() override;
 | |
| 
 | |
|   /**
 | |
|    * @brief For bulkload to use
 | |
|    */
 | |
|   void setMaxActiveChunkNum(unsigned int maxActiveChunkNum)
 | |
|   {
 | |
|     m_chunkManager->setMaxActiveChunkNum(maxActiveChunkNum);
 | |
|   };
 | |
|   void setBulkFlag(bool isBulkLoad) override
 | |
|   {
 | |
|     m_chunkManager->setBulkFlag(isBulkLoad);
 | |
|   };
 | |
|   void setFixFlag(bool isFix) override
 | |
|   {
 | |
|     m_chunkManager->setFixFlag(isFix);
 | |
|   };
 | |
|   int checkFixLastDictChunk() override
 | |
|   {
 | |
|     return m_chunkManager->checkFixLastDictChunk(m_dctnryOID, m_dbRoot, m_partition, m_segment);
 | |
|   };
 | |
|   //   void chunkManager(ChunkManager* cm);
 | |
| 
 | |
|   /**
 | |
|    * @brief virtual method in FileOp
 | |
|    */
 | |
|   void setTransId(const TxnID& transId) override
 | |
|   {
 | |
|     Dctnry::setTransId(transId);
 | |
| 
 | |
|     if (m_chunkManager)
 | |
|       m_chunkManager->setTransId(transId);
 | |
|   }
 | |
| 
 | |
|   /**
 | |
|    * @brief Set the IsInsert flag in the ChunkManager.
 | |
|    * This forces flush at end of statement. Used only for bulk insert.
 | |
|    */
 | |
|   void setIsInsert(bool isInsert)
 | |
|   {
 | |
|     m_chunkManager->setIsInsert(isInsert);
 | |
|   }
 | |
| 
 | |
|  protected:
 | |
|   /**
 | |
|    * @brief virtual method in FileOp
 | |
|    */
 | |
|   int updateDctnryExtent(IDBDataFile* pFile, int nBlocks, int64_t lbid) override;
 | |
| 
 | |
|   /**
 | |
|    * @brief convert lbid to fbo
 | |
|    */
 | |
|   int lbidToFbo(const uint64_t lbid, int& fbo);
 | |
| };
 | |
| 
 | |
| }  // namespace WriteEngine
 | |
| 
 | |
| #undef EXPORT
 |