1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-22 13:33:52 +03:00
one/include/NebulaLog.h
Pavel Czerný 7b07def90e
B #6687: Fix monitoring initialization and restart
* Cleanup oned in case of initialization error

* Fix monitoring after onemonitord restart. The code includes a "hook" point in case a driver is re-started so custom code can be executed. InformationManager sends the list of hosts and raft status in this case.

* B #5801: Update error msg, in case of duplicated drivers
2024-09-05 16:25:03 +02:00

177 lines
4.8 KiB
C++

/* -------------------------------------------------------------------------- */
/* Copyright 2002-2024, OpenNebula Project, OpenNebula Systems */
/* */
/* Licensed under the Apache License, Version 2.0 (the "License"); you may */
/* not use this file except in compliance with the License. You may obtain */
/* a copy of the License at */
/* */
/* http://www.apache.org/licenses/LICENSE-2.0 */
/* */
/* Unless required by applicable law or agreed to in writing, software */
/* distributed under the License is distributed on an "AS IS" BASIS, */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */
/* See the License for the specific language governing permissions and */
/* limitations under the License. */
/* -------------------------------------------------------------------------- */
#ifndef _NEBULA_LOG_H_
#define _NEBULA_LOG_H_
#include "Log.h"
#include <sstream>
#include <syslog.h>
/**
* The Logger class for the OpenNebula components
*/
class NebulaLog
{
public:
enum LogType
{
FILE = 0,
FILE_TS = 1,
STD = 2,
SYSLOG = 3,
UNDEFINED = 4
};
// ---------------------------------------------------------------
// Logging
// ---------------------------------------------------------------
static void init_log_system(
LogType ltype,
Log::MessageType clevel,
const char * filename,
std::ios_base::openmode mode,
const std::string& daemon)
{
_log_type = ltype;
switch(ltype)
{
case FILE:
NebulaLog::logger = new FileLog(filename, clevel, mode);
break;
case FILE_TS:
NebulaLog::logger = new FileLogTS(filename, clevel, mode);
break;
case SYSLOG:
NebulaLog::logger = new SysLog(clevel, daemon);
break;
default:
NebulaLog::logger = new StdLog(clevel);
break;
}
};
static LogType str_to_type(std::string& type)
{
one_util::toupper(type);
if (type == "FILE")
{
return FILE_TS;
}
else if (type == "SYSLOG")
{
return SYSLOG;
}
else if (type == "STD")
{
return STD;
}
return UNDEFINED;
}
static void finalize_log_system()
{
delete logger;
}
static void log(
const char * module,
const Log::MessageType type,
const char * message)
{
logger->log(module, type, message);
};
static void log(
const char * module,
const Log::MessageType type,
const std::ostringstream& message)
{
logger->log(module, type, message.str().c_str());
};
static void log(
const char * module,
const Log::MessageType type,
const std::string& message)
{
logger->log(module, type, message.c_str());
};
static void error(const char* module, const std::string& msg)
{
logger->log(module, Log::ERROR, msg.c_str());
}
static void warn(const char* module, const std::string& msg)
{
logger->log(module, Log::WARNING, msg.c_str());
}
static void info(const char* module, const std::string& msg)
{
logger->log(module, Log::INFO, msg.c_str());
}
static void debug(const char* module, const std::string& msg)
{
logger->log(module, Log::DEBUG, msg.c_str());
}
static void ddebug(const char* module, const std::string& msg)
{
logger->log(module, Log::DDEBUG, msg.c_str());
}
static void dddebug(const char* module, const std::string& msg)
{
logger->log(module, Log::DDDEBUG, msg.c_str());
}
static Log::MessageType log_level()
{
return logger->get_log_level();
};
static LogType log_type()
{
return _log_type;
};
static bool initialized()
{
return (logger != 0);
}
private:
NebulaLog() {};
~NebulaLog() {};
static LogType _log_type;
static Log * logger;
};
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
#endif /* _NEBULA_LOG_H_ */