mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-18 21:44:02 +03:00
The most important fix here is the fix of possible buffer overrun in DATEFORMAT() function. A "%W" format, repeated enough times, would overflow the 256-bytes buffer for result. Now we use ostringstream to construct result and we are safe. Changes in date/time projection functions made me fix difference between us and server behavior. The new, better behavior is reflected in changes in tests' results. Also, there was incorrect logic in TRUNCATE() and ROUND() functions in computing the decimal "shift."
220 lines
4.4 KiB
C++
220 lines
4.4 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(int128_t i128)
|
|
{
|
|
uint128_t x = i128 < 0 ? -i128 : i128;
|
|
std::vector<char> digits;
|
|
std::ostringstream oss;
|
|
while (x > 0) {
|
|
char c = (x % 10) + '0';
|
|
digits.push_back(c);
|
|
x /= 10;
|
|
}
|
|
if (digits.size() < 1) {
|
|
digits.push_back('0');
|
|
}
|
|
if (i128 < 0)
|
|
{
|
|
oss << '-';
|
|
}
|
|
for(int32_t i=int(digits.size() - 1); i >= 0; i--)
|
|
{
|
|
oss << digits[i];
|
|
}
|
|
fArgs.push_back(oss.str());
|
|
}
|
|
|
|
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
|