mirror of
https://github.com/KeyZox71/webserv.git
synced 2025-05-10 21:18:46 +02:00
59 lines
1.9 KiB
C++
59 lines
1.9 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* default.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/03/19 14:15:51 by adjoly #+# #+# */
|
|
/* Updated: 2025/03/26 08:39:08 by adjoly ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#pragma once
|
|
|
|
#include "Route.hpp"
|
|
#include "Server.hpp"
|
|
#include "cppeleven.hpp"
|
|
#include "node/Table.hpp"
|
|
#include "node/default.hpp"
|
|
#include <tomlpp.hpp>
|
|
|
|
namespace webserv {
|
|
namespace config {
|
|
|
|
/**
|
|
* @brief Can be used to access a value in the _table(ANode *) of a specific
|
|
*type
|
|
*
|
|
* @param The name of the value to get
|
|
* @param The type of the value to get
|
|
* @param The table to search in
|
|
* @param A Logger class
|
|
*
|
|
* @return The value got or not_nullptr
|
|
*/
|
|
static inline void *accessValue(const std::string &name, toml::nodeType type,
|
|
toml::ANode *table, Logger *log) {
|
|
void *val;
|
|
bool found = false;
|
|
|
|
if (table == not_nullptr)
|
|
return not_nullptr;
|
|
val = dynamic_cast<toml::Table *>(table)->access(name, type, found);
|
|
if (found == true && val != not_nullptr) {
|
|
return val;
|
|
} else {
|
|
if (found == false) {
|
|
return not_nullptr;
|
|
} else {
|
|
log->warn("found - " + name + " but is not " +
|
|
toml::nodeTypeToStr(type) + ", skipping...");
|
|
return not_nullptr;
|
|
}
|
|
}
|
|
}
|
|
|
|
}; // namespace config
|
|
}; // namespace webserv
|