// See the file "COPYING" in the main distribution directory for copyright. #pragma once #include "zeek/zeek-config.h" #include #include "zeek/Tag.h" #include "zeek/plugin/Component.h" #include "zeek/util.h" namespace zeek::packet_analysis { class Analyzer; using AnalyzerPtr = std::shared_ptr; class Component : public plugin::Component { public: using factory_callback = std::function; Component(const std::string& name, factory_callback factory, zeek::Tag::subtype_t subtype = 0); ~Component() override = default; /** * Initialization function. This function has to be called before any * plugin component functionality is used; it is used to add the * plugin component to the list of components and to initialize tags */ void Initialize() override; /** * Returns the analyzer's factory function. */ factory_callback Factory() const { return factory; } /** * Returns true if the analyzer is currently enabled and hence * available for use. */ bool Enabled() const { return enabled; } /** * Enables or disables this analyzer. * * @param arg_enabled True to enabled, false to disable. * */ void SetEnabled(bool arg_enabled); protected: /** * Overridden from plugin::Component. */ void DoDescribe(ODesc* d) const override; private: factory_callback factory; // The analyzer's factory callback. bool enabled = true; // True if the analyzer is enabled. }; } // namespace zeek::packet_analysis