You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-11-03 17:13:17 +03:00 
			
		
		
		
	* MSan added with fixes for libc++ * libc++ sepatare build * add libc++ to ci * libstdc++ in CI * libcpp and msan to external projects * std::sqrt * awful_hack(ci): install whole llvm instead of libc++ in terrible way for test containers * Adding ddeb packages for teststages and repos * libc++ more for test container * save some money on debug * colored coredumps * revert ci * chore(ci): collect asan ubsan and libc++ build with mtr and regression status ignored
		
			
				
	
	
		
			159 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			159 lines
		
	
	
		
			6.3 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_extentstripealloc.h 4450 2013-01-21 14:13:24Z rdempsey $
 | 
						|
 *
 | 
						|
 ******************************************************************************/
 | 
						|
 | 
						|
/** @file
 | 
						|
 * Contains class to allocate a "stripe" of extents for all columns across a tbl
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <string>
 | 
						|
#include <vector>
 | 
						|
 | 
						|
#include <unordered.h>
 | 
						|
 | 
						|
#include <boost/thread/mutex.hpp>
 | 
						|
 | 
						|
#include "we_type.h"
 | 
						|
#include "brmtypes.h"
 | 
						|
 | 
						|
namespace WriteEngine
 | 
						|
{
 | 
						|
class Log;
 | 
						|
 | 
						|
//------------------------------------------------------------------------------
 | 
						|
/** @brief Represents an extent allocation entry that is part of a "stripe".
 | 
						|
 */
 | 
						|
//------------------------------------------------------------------------------
 | 
						|
class AllocExtEntry
 | 
						|
{
 | 
						|
 public:
 | 
						|
  // Used to create entry for an existing extent we are going to add data to.
 | 
						|
  AllocExtEntry(OID& oid, int colWidth, uint16_t dbRoot, uint32_t partNum, uint16_t segNum,
 | 
						|
                BRM::LBID_t startLbid, int allocSize, HWM hwm, int status, const std::string& statusMsg,
 | 
						|
                unsigned int stripeKey)
 | 
						|
   : fOid(oid)
 | 
						|
   , fColWidth(colWidth)
 | 
						|
   , fDbRoot(dbRoot)
 | 
						|
   , fPartNum(partNum)
 | 
						|
   , fSegNum(segNum)
 | 
						|
   , fStartLbid(startLbid)
 | 
						|
   , fAllocSize(allocSize)
 | 
						|
   , fHwm(hwm)
 | 
						|
   , fStatus(status)
 | 
						|
   , fStatusMsg(new std::string(statusMsg))
 | 
						|
   , fStripeKey(stripeKey)
 | 
						|
  {
 | 
						|
  }
 | 
						|
 | 
						|
  OID fOid = 0;                                                // column OID
 | 
						|
  int fColWidth = 0;                                           // colum width (in bytes)
 | 
						|
  uint16_t fDbRoot = 0;                                        // DBRoot of allocated extent
 | 
						|
  uint32_t fPartNum = 0;                                       // Partition number of allocated extent
 | 
						|
  uint16_t fSegNum = 0;                                        // Segment number of allocated extent
 | 
						|
  BRM::LBID_t fStartLbid = 0;                                  // Starting LBID of allocated extent
 | 
						|
  int fAllocSize = 0;                                          // Number of allocated LBIDS
 | 
						|
  HWM fHwm = 0;                                                // Starting fbo or hwm of allocated extent
 | 
						|
  int fStatus = NO_ERROR;                                      // Status of extent allocation
 | 
						|
  std::shared_ptr<std::string> fStatusMsg{new std::string()};  // Status msg of extent allocation
 | 
						|
  unsigned int fStripeKey = 0;                                 // "Stripe" identifier for this extent
 | 
						|
};
 | 
						|
 | 
						|
//------------------------------------------------------------------------------
 | 
						|
/** @brief Hash function used to store AllocExtEntry objects into a map; using
 | 
						|
 *  the corresponding column OID as the key.
 | 
						|
 */
 | 
						|
//------------------------------------------------------------------------------
 | 
						|
struct AllocExtHasher
 | 
						|
{
 | 
						|
  std::size_t operator()(OID val) const
 | 
						|
  {
 | 
						|
    return static_cast<std::size_t>(val);
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
//------------------------------------------------------------------------------
 | 
						|
/** @brief Manages allocation of a "stripe" of column extents across a table.
 | 
						|
 *  Allocates and stores the allocated extent information till each extent is
 | 
						|
 *  requested by one of the parsing threads.
 | 
						|
 */
 | 
						|
//------------------------------------------------------------------------------
 | 
						|
class ExtentStripeAlloc
 | 
						|
{
 | 
						|
 public:
 | 
						|
  /** @brief Constructor
 | 
						|
   *  @param tableOID OID of table for which extents will be allocated.
 | 
						|
   *  @param logger Log object used for debug logging.
 | 
						|
   */
 | 
						|
  ExtentStripeAlloc(OID tableOID, Log* logger);
 | 
						|
 | 
						|
  /** @brief Destructor
 | 
						|
   */
 | 
						|
  ~ExtentStripeAlloc();
 | 
						|
 | 
						|
  /** @brief Add the specified column to our "stripe" of extents to allocate.
 | 
						|
   *  @param colOID   Column OID to be added to extent allocation list.
 | 
						|
   *  @param colWidth Width of column associated with colOID.
 | 
						|
   */
 | 
						|
  void addColumn(OID colOID, int colWidth, datatypes::SystemCatalog::ColDataType colDataType);
 | 
						|
 | 
						|
  /** @brief Request an extent allocation for the specified OID and DBRoot.
 | 
						|
   *  A "stripe" of extents for the corresponding table will be allocated
 | 
						|
   *  if no extent exists to satisfy the request; else the previously
 | 
						|
   *  allocated extent will be returned.
 | 
						|
   *  @param oid       Column OID extent to be allocated
 | 
						|
   *  @param dbRoot    Requested DBRoot for the new extent
 | 
						|
   *  @param partNum   (in/out) Partition number of the allocated extent,
 | 
						|
   *                         Input if empty DBRoot, else only used as output.
 | 
						|
   *  @param segNum    (out) Segment number of the allocated extent
 | 
						|
   *  @param startLbid (out) Starting LBID of the allocated extent
 | 
						|
   *  @param allocSize (out) Number of blocks in the allocated extent
 | 
						|
   *  @param hwm       (out) Starting FBO or hwm for the allocated extent
 | 
						|
   *  @param errMsg    (out) Error msg associated with the extent allocation
 | 
						|
   *  @return NO_ERROR returned upon success
 | 
						|
   */
 | 
						|
  int allocateExtent(OID oid, uint16_t dbRoot, uint32_t& partNum, uint16_t& segNum, BRM::LBID_t& startLbid,
 | 
						|
                     int& allocSize, HWM& hwm, std::string& errMsg);
 | 
						|
 | 
						|
  /** @brief Debug print function.
 | 
						|
   */
 | 
						|
  void print();
 | 
						|
 | 
						|
 private:
 | 
						|
  OID fTableOID;                // Table extents to be allocated
 | 
						|
  Log* fLog;                    // Log used for debug logging
 | 
						|
  unsigned int fStripeCount;    // Extent "stripe" counter
 | 
						|
  boost::mutex fMapMutex;       // protects unordered map access
 | 
						|
  std::vector<OID> fColOIDs;    // Vector of column OIDs
 | 
						|
  std::vector<int> fColWidths;  // Widths associated with fColOIDs
 | 
						|
  std::vector<datatypes::SystemCatalog::ColDataType> fColDataTypes;
 | 
						|
 | 
						|
  // unordered map where we collect the allocated extents
 | 
						|
  std::tr1::unordered_multimap<OID, AllocExtEntry, AllocExtHasher> fMap;
 | 
						|
 | 
						|
  // disable copy constructor and assignment operator
 | 
						|
  ExtentStripeAlloc(const ExtentStripeAlloc&);
 | 
						|
  ExtentStripeAlloc& operator=(const ExtentStripeAlloc&);
 | 
						|
};
 | 
						|
 | 
						|
}  // namespace WriteEngine
 |