#include "BatchModule.h" #include #include namespace grove { BatchModule::BatchModule() { std::cout << "[BatchModule] Constructor" << std::endl; } BatchModule::~BatchModule() { std::cout << "[BatchModule] Destructor" << std::endl; } void BatchModule::process(const IDataNode& input) { if (!io) return; // Pull batched messages (should be low-frequency) while (io->hasMessages() > 0) { try { auto msg = io->pullMessage(); batchCount++; bool verbose = input.getBool("verbose", false); if (verbose) { std::cout << "[BatchModule] Received batch #" << batchCount << " on topic: " << msg.topic << std::endl; } } catch (const std::exception& e) { std::cerr << "[BatchModule] Error pulling message: " << e.what() << std::endl; } } } void BatchModule::setConfiguration(const IDataNode& configNode, IIO* ioPtr, ITaskScheduler* schedulerPtr) { std::cout << "[BatchModule] setConfiguration called" << std::endl; this->io = ioPtr; this->scheduler = schedulerPtr; config = std::make_unique("config", nlohmann::json::object()); } const IDataNode& BatchModule::getConfiguration() { if (!config) { config = std::make_unique("config", nlohmann::json::object()); } return *config; } std::unique_ptr BatchModule::getHealthStatus() { nlohmann::json health = { {"status", "healthy"}, {"batchCount", batchCount} }; return std::make_unique("health", health); } void BatchModule::shutdown() { std::cout << "[BatchModule] Shutdown - Received " << batchCount << " batches" << std::endl; } std::unique_ptr BatchModule::getState() { nlohmann::json state = { {"batchCount", batchCount} }; return std::make_unique("state", state); } void BatchModule::setState(const IDataNode& state) { batchCount = state.getInt("batchCount", 0); std::cout << "[BatchModule] State restored - Batch count: " << batchCount << std::endl; } } // namespace grove // Export C API extern "C" { grove::IModule* createModule() { return new grove::BatchModule(); } }