solanaceae_clamav/plugins/plugin_clamav_module.cpp

63 lines
1.4 KiB
C++
Raw Permalink Normal View History

2023-10-25 17:51:48 +02:00
#include <solanaceae/plugin/solana_plugin_v1.h>
#include <solanaceae/clamav/clamav_module.hpp>
#include <solanaceae/util/config_model.hpp>
#include <memory>
2024-10-06 12:26:13 +02:00
#include <limits>
2023-10-25 17:51:48 +02:00
#include <iostream>
static std::unique_ptr<ClamAVModule> g_cavm = nullptr;
2024-10-06 12:26:13 +02:00
constexpr const char* plugin_name = "ClamAVModule";
2023-10-25 17:51:48 +02:00
extern "C" {
SOLANA_PLUGIN_EXPORT const char* solana_plugin_get_name(void) {
2024-10-06 12:26:13 +02:00
return plugin_name;
2023-10-25 17:51:48 +02:00
}
SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_get_version(void) {
return SOLANA_PLUGIN_VERSION;
}
SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_start(struct SolanaAPI* solana_api) {
2024-10-06 12:26:13 +02:00
std::cout << "PLUGIN " << plugin_name << " START()\n";
2023-10-25 17:51:48 +02:00
if (solana_api == nullptr) {
return 1;
}
2024-10-06 12:26:13 +02:00
try {
auto* conf = PLUG_RESOLVE_INSTANCE(ConfigModelI);
2023-10-25 17:51:48 +02:00
2024-10-06 12:26:13 +02:00
// static store, could be anywhere tho
// construct with fetched dependencies
g_cavm = std::make_unique<ClamAVModule>(*conf);
2023-10-25 17:51:48 +02:00
2024-10-06 12:26:13 +02:00
// register types
PLUG_PROVIDE_INSTANCE(ClamAVModule, plugin_name, g_cavm.get());
} catch (const ResolveException& e) {
std::cerr << "PLUGIN " << plugin_name << " " << e.what << "\n";
return 2;
2023-10-25 17:51:48 +02:00
}
return 0;
}
SOLANA_PLUGIN_EXPORT void solana_plugin_stop(void) {
2024-10-06 12:26:13 +02:00
std::cout << "PLUGIN " << plugin_name << " STOP()\n";
2023-10-25 17:51:48 +02:00
g_cavm.reset();
}
2024-10-06 12:26:13 +02:00
SOLANA_PLUGIN_EXPORT float solana_plugin_tick(float delta) {
2023-10-25 17:51:48 +02:00
(void)delta;
//std::cout << "PLUGIN CAVM TICK()\n";
//g_cavm->iterate();
2024-10-06 12:26:13 +02:00
return std::numeric_limits<float>::max();
2023-10-25 17:51:48 +02:00
}
} // extern C