截获函数调用以在if之前添加参数



我制作了一个console.log函数来模拟javascript console.log功能。我遇到的问题是在所有参数之后换行,因为我无法检测何时是单个参数调用,或者是由于函数重载而调用的最后一个参数。

我想要的解决方案是在头文件中的函数上添加一个新的参数。

所以当我在main.cpp中写作时:

console.log("hello");
console.log("bye");

我想让你帮我在处理头文件之前添加一个新的参数:

console.log("hello", "");
console.log("bye", "");

完整的代码在这里。https://github.com/StringManolo/cppjs/blob/main/console/log.h#L17

以下是您要求的最小可复制示例:main.cpp

#include "./log.h"
int main() {
/* Each console.log call should add a line break */
console.log("Line1");
console.log("Line2");
console.log("Line3");
/* Like Here */
console.log("Line1", "");
console.log("Line2", "");
console.log("Line3", "");
/* Then i can do: */
console.log("Welcome.");
console.log("7 * 8 = ", 7 * 8);
console.log("Bye!");
std::vector<std::string> example = {"a", "b", "c", "d", "e"};
console.log(example);
std::any numberOrString = 1337;
console.log(numberOrString);
numberOrString = (std::string) "String";
console.log(numberOrString);
/* stdout :
$ ./test
Line1Line2Line3Line1
Line2
Line3
Welcome.7 * 8 = 56
Bye!a, b, c, d, e
1337
String
*/
/* Desired output:
Line1
Line2
Line3
Line1
Line2
Line3
Welcome.
7 * 8 = 56
Bye!
a, b, c, d, e
1337
String
*/
return 0;
}

log.h

#pragma once
#include <iostream>
#include <utility>
#include <any>
#include <vector>
#include <string>
struct {
std::any aux;
template<typename T, typename...Args>
static void log(T&& t, Args&&... args) {
log(t);
log(std::forward<Args>(args)...);
if(sizeof...(args) > 1) {
} else {
std::cout << "n";
}
}
static void log(int arg) {
std::cout << arg;
}
static void log(const char* arg) {
std::cout << arg;
}
static void log(std::vector<std::string> arg) {
for(int i = 0; i < arg.size(); ++i) {
if (i + 1 == arg.size()) {
std::cout << arg[i] << std::endl;
} else {
std::cout << arg[i] << ", ";
}
}
}
template<typename T>
static void log(T&& t) {
if (typeid(t).name() == typeid(aux).name()) {
try {
std::any_cast<std::string>(t);
std::cout /* ANY */<< std::any_cast<std::string>(t) << std::endl;
} catch (const std::bad_any_cast& a) {
//std::cout << a.what() << 'n';
try {
std::any_cast<int>(t);
std::cout /* ANY */<< std::any_cast<int>(t) << std::endl;
} catch (const std::bad_any_cast& b) {
std::cout << a.what() << "n";
}
}
} else {
std::cout << "THE TYPE (" << typeid(t).name() << ") NOT OVERLOADED" << std::endl;
}
}
} console;

在console.log((调用中,我需要一个以上的参数来触发换行。

如何在对if求值之前拦截推送参数的调用?

要编译的命令:

g++ -o test main.cpp -std=c++17

Comand编译完整代码:

g++ -o program main.cpp -lcurl -std=c++17

您可能应该使用不同的名称:

template <typename ...Ts>
static void log(Ts&&... ts)
{
(do_log(ts), ...);
std::cout << "n";
}
// private:
template <typename T>
static void do_log(const T& arg) {
std::cout << arg;
}
template <typename T>
static void do_log(const std::vector<T>& v)
{
std::cout << '{';
const char* sep = "";
for (const auto& e : v) {
std::cout << sep;
do_log(e);
sep = ", ";
}
std::cout << '}';
}
template <typename T>
static bool try_log_any(const std::any& arg) {
if (auto* p = std::any_cast<T>(&arg)) {
do_log(*p);
return true;
}
return false;
}
template <typename... Ts>
static bool try_log_any_from(const std::any& arg) {
if ((try_log_any<Ts>(arg) || ...)) {
return true;
}
std::cout << "unsupported any type" << std::endl;
return false;
}
static void do_log(const std::any& arg) {
try_log_any_from<std::string, int, unsigned, char, float, double /*..*/>(arg);
}

演示

相关内容

  • 没有找到相关文章

最新更新