mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
#include <memory>
|
|
|
|
#include "zeek/Tag.h"
|
|
#include "zeek/plugin/Component.h"
|
|
|
|
namespace zeek::packet_analysis {
|
|
|
|
class Analyzer;
|
|
using AnalyzerPtr = std::shared_ptr<Analyzer>;
|
|
|
|
class Component : public plugin::Component {
|
|
public:
|
|
using factory_callback = std::function<AnalyzerPtr()>;
|
|
|
|
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; }
|
|
|
|
void SetEnabled(bool arg_enabled) override;
|
|
|
|
protected:
|
|
/**
|
|
* Overridden from plugin::Component.
|
|
*/
|
|
void DoDescribe(ODesc* d) const override;
|
|
|
|
private:
|
|
factory_callback factory; // The analyzer's factory callback.
|
|
};
|
|
|
|
} // namespace zeek::packet_analysis
|