mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 13:08:20 +00:00
41 lines
894 B
C++
41 lines
894 B
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#include "zeek/file_analysis/Component.h"
|
|
|
|
#include "zeek/Desc.h"
|
|
#include "zeek/util.h"
|
|
#include "zeek/file_analysis/Manager.h"
|
|
|
|
namespace zeek::file_analysis {
|
|
|
|
Component::Component(const std::string& name, factory_function arg_factory, Tag::subtype_t subtype, bool arg_enabled)
|
|
: plugin::Component(plugin::component::FILE_ANALYZER, name),
|
|
plugin::TaggedComponent<file_analysis::Tag>(subtype)
|
|
{
|
|
factory_func = arg_factory;
|
|
enabled = arg_enabled;
|
|
}
|
|
|
|
void Component::Initialize()
|
|
{
|
|
InitializeTag();
|
|
file_mgr->RegisterComponent(this, "ANALYZER_");
|
|
}
|
|
|
|
Component::~Component()
|
|
{
|
|
}
|
|
|
|
void Component::DoDescribe(ODesc* d) const
|
|
{
|
|
if ( factory_func )
|
|
{
|
|
d->Add("ANALYZER_");
|
|
d->Add(CanonicalName());
|
|
d->Add(", ");
|
|
}
|
|
|
|
d->Add(enabled ? "enabled" : "disabled");
|
|
}
|
|
|
|
} // namespace zeek::file_analysis
|