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 
			
		
		
		
	* configcpp refactored * logging and datatypes refactored * more dataconvert * chore(build): massive removals, auto add files to debian install file * chore(codemanagement): nodeps headers, potentioal library * chore(build): configure before autobake * chore(build): use custom cmake commands for components, mariadb-plugin-columnstore.install generated * chore(build): install deps as separate step for build-packages * more deps * check debian/mariadb-plugin-columnstore.install automatically * chore(build): add option for multibracnh compilation * Fix warning
		
			
				
	
	
		
			196 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			196 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: message.cpp 3495 2013-01-21 14:09:51Z rdempsey $
 | |
|  *
 | |
|  ******************************************************************************************/
 | |
| #include <iostream>
 | |
| #include <iomanip>
 | |
| #include <string>
 | |
| #include <iterator>
 | |
| #include <sstream>
 | |
| #include <stdexcept>
 | |
| #include <map>
 | |
| #include <fstream>
 | |
| using namespace std;
 | |
| 
 | |
| #include <boost/tokenizer.hpp>
 | |
| #include <boost/thread.hpp>
 | |
| using namespace boost;
 | |
| 
 | |
| #include "mcsconfig.h"
 | |
| #include "configcpp.h"
 | |
| using namespace config;
 | |
| #include "messageobj.h"
 | |
| 
 | |
| #include "installdir.h"
 | |
| 
 | |
| #include "format.h"
 | |
| 
 | |
| namespace
 | |
| {
 | |
| boost::mutex mx;
 | |
| bool catalogLoaded = false;
 | |
| 
 | |
| typedef map<int, string> CatMap;
 | |
| 
 | |
| CatMap catmap;
 | |
| 
 | |
| void loadCatalog()
 | |
| {
 | |
|   Config* cf = Config::makeConfig();
 | |
|   string configFile(cf->getConfig("MessageLog", "MessageLogFile"));
 | |
| 
 | |
|   if (configFile.length() == 0)
 | |
|     configFile = std::string(MCSSYSCONFDIR) + "/columnstore/MessageFile.txt";
 | |
| 
 | |
|   ifstream msgFile(configFile.c_str());
 | |
| 
 | |
|   while (msgFile.good())
 | |
|   {
 | |
|     stringbuf* sb = new stringbuf;
 | |
|     msgFile.get(*sb);
 | |
|     string m = sb->str();
 | |
|     delete sb;
 | |
| 
 | |
|     if (m.length() > 0 && m[0] != '#')
 | |
|     {
 | |
|       typedef boost::tokenizer<boost::char_separator<char> > tokenizer;
 | |
|       boost::char_separator<char> sep("\t");
 | |
|       tokenizer tokens(m, sep);
 | |
|       tokenizer::iterator tok_iter = tokens.begin();
 | |
| 
 | |
|       if (tok_iter != tokens.end())
 | |
|       {
 | |
|         int msgid = atoi(tok_iter->c_str());
 | |
|         ++tok_iter;
 | |
| 
 | |
|         if (tok_iter != tokens.end())
 | |
|         {
 | |
|           string msgtext = *tok_iter;
 | |
|           catmap[msgid] = msgtext;
 | |
|         }
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     ios_base::iostate st = msgFile.rdstate();
 | |
| 
 | |
|     if ((st & ios_base::failbit) && !(st & ios_base::eofbit))
 | |
|       msgFile.clear();
 | |
| 
 | |
|     (void)msgFile.get();
 | |
|   }
 | |
| }
 | |
| 
 | |
| }  // namespace
 | |
| 
 | |
| namespace logging
 | |
| {
 | |
| Message::Message(const MessageID msgid)
 | |
|  : fMsgID(msgid), fMsg(lookupMessage(msgid)), fConfig(Config::makeConfig())
 | |
| {
 | |
| }
 | |
| 
 | |
| Message::Message(const string msg) : fMsgID(0), fMsg(msg), fConfig(Config::makeConfig())
 | |
| {
 | |
| }
 | |
| 
 | |
| void Message::swap(Message& rhs)
 | |
| {
 | |
|   std::swap(fMsgID, rhs.fMsgID);
 | |
|   std::swap(fMsg, rhs.fMsg);
 | |
|   std::swap(fConfig, rhs.fConfig);
 | |
| }
 | |
| 
 | |
| void Message::Args::add(int i)
 | |
| {
 | |
|   fArgs.push_back(long(i));
 | |
| }
 | |
| 
 | |
| void Message::Args::add(uint64_t u64)
 | |
| {
 | |
|   fArgs.push_back(u64);
 | |
| }
 | |
| 
 | |
| void Message::Args::add(const string& s)
 | |
| {
 | |
|   fArgs.push_back(s);
 | |
| }
 | |
| 
 | |
| void Message::Args::add(double d)
 | |
| {
 | |
|   fArgs.push_back(d);
 | |
| }
 | |
| 
 | |
| void Message::Args::reset()
 | |
| {
 | |
|   fArgs.clear();
 | |
| }
 | |
| 
 | |
| void Message::format(const Args& args)
 | |
| {
 | |
|   formatMany(fMsg, args.args());
 | |
| }
 | |
| 
 | |
| /* static */
 | |
| const string Message::lookupMessage(const MessageID& msgid)
 | |
| {
 | |
|   if (!catalogLoaded)
 | |
|   {
 | |
|     boost::mutex::scoped_lock lock(mx);
 | |
| 
 | |
|     if (!catalogLoaded)
 | |
|     {
 | |
|       loadCatalog();
 | |
|       catalogLoaded = true;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   string msgstr;
 | |
|   CatMap::const_iterator iter = catmap.find(msgid);
 | |
| 
 | |
|   if (iter == catmap.end())
 | |
|   {
 | |
|     iter = catmap.find(0);
 | |
| 
 | |
|     if (iter == catmap.end())
 | |
|     {
 | |
|       msgstr = "%1% %2% %3% %4% %5%";
 | |
|     }
 | |
|     else
 | |
|     {
 | |
|       msgstr = iter->second;
 | |
|     }
 | |
|   }
 | |
|   else
 | |
|   {
 | |
|     msgstr = iter->second;
 | |
|   }
 | |
| 
 | |
|   ostringstream oss;
 | |
|   oss << "CAL" << setw(4) << setfill('0') << msgid << ": " << msgstr;
 | |
|   return oss.str();
 | |
| }
 | |
| 
 | |
| void Message::reset()
 | |
| {
 | |
|   fMsg = lookupMessage(fMsgID);
 | |
| }
 | |
| 
 | |
| }  // namespace logging
 |