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 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.9 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: idberrorinfo.h 3626 2013-03-11 15:36:08Z xlou $
 | 
						|
 *
 | 
						|
 ******************************************************************************************/
 | 
						|
/**
 | 
						|
 * @file
 | 
						|
 */
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <string>
 | 
						|
#include <map>
 | 
						|
 | 
						|
#include "messageobj.h"
 | 
						|
#include "messagelog.h"
 | 
						|
 | 
						|
namespace logging
 | 
						|
{
 | 
						|
/** @brief an IDB error info class
 | 
						|
 *
 | 
						|
 * Contains a error message map for looking up and constructing formatted message
 | 
						|
 */
 | 
						|
 | 
						|
typedef std::map<unsigned, std::string> ErrorMap;
 | 
						|
 | 
						|
class IDBErrorInfo
 | 
						|
{
 | 
						|
 public:
 | 
						|
  static IDBErrorInfo* instance();
 | 
						|
  std::string errorMsg(const unsigned eid, const Message::Args& args);
 | 
						|
  std::string errorMsg(const unsigned eid);
 | 
						|
  std::string errorMsg(const unsigned eid, int i);
 | 
						|
  std::string errorMsg(const unsigned eid, const std::string& s);
 | 
						|
  std::string logError(const logging::LOG_TYPE logLevel, const LoggingID logid, const unsigned eid,
 | 
						|
                       const Message::Args& args);
 | 
						|
  ~IDBErrorInfo();
 | 
						|
 | 
						|
 private:
 | 
						|
  static IDBErrorInfo* fInstance;
 | 
						|
  ErrorMap fErrMap;
 | 
						|
  IDBErrorInfo();
 | 
						|
  void format(std::string& messageFormat, const Message::Args& args);
 | 
						|
  std::string lookupError(const unsigned eid);
 | 
						|
};
 | 
						|
 | 
						|
}  // namespace logging
 |