mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 09:38:19 +00:00

This unfortunately cuases a ton of flow-down changes because a lot of other code was depending on that definition existing. This has a fairly large chance to break builds of external plugins, considering how many internal ones it broke.
165 lines
3.1 KiB
C++
165 lines
3.1 KiB
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#include "Component.h"
|
|
|
|
#include "Desc.h"
|
|
#include "Reporter.h"
|
|
|
|
using namespace iosource;
|
|
|
|
Component::Component(const std::string& name)
|
|
: plugin::Component(plugin::component::IOSOURCE, name)
|
|
{
|
|
}
|
|
|
|
Component::Component(plugin::component::Type type, const std::string& name)
|
|
: plugin::Component(type, name)
|
|
{
|
|
}
|
|
|
|
Component::~Component()
|
|
{
|
|
}
|
|
|
|
PktSrcComponent::PktSrcComponent(const std::string& arg_name, const std::string& arg_prefix, InputType arg_type, factory_callback arg_factory)
|
|
: iosource::Component(plugin::component::PKTSRC, arg_name)
|
|
{
|
|
tokenize_string(arg_prefix, ":", &prefixes);
|
|
type = arg_type;
|
|
factory = arg_factory;
|
|
}
|
|
|
|
PktSrcComponent::~PktSrcComponent()
|
|
{
|
|
}
|
|
|
|
const std::vector<std::string>& PktSrcComponent::Prefixes() const
|
|
{
|
|
return prefixes;
|
|
}
|
|
|
|
bool PktSrcComponent::HandlesPrefix(const std::string& prefix) const
|
|
{
|
|
for ( std::vector<std::string>::const_iterator i = prefixes.begin();
|
|
i != prefixes.end(); i++ )
|
|
{
|
|
if ( *i == prefix )
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool PktSrcComponent::DoesLive() const
|
|
{
|
|
return type == LIVE || type == BOTH;
|
|
}
|
|
|
|
bool PktSrcComponent::DoesTrace() const
|
|
{
|
|
return type == TRACE || type == BOTH;
|
|
}
|
|
|
|
PktSrcComponent::factory_callback PktSrcComponent::Factory() const
|
|
{
|
|
return factory;
|
|
}
|
|
|
|
void PktSrcComponent::DoDescribe(ODesc* d) const
|
|
{
|
|
iosource::Component::DoDescribe(d);
|
|
|
|
std::string prefs;
|
|
|
|
for ( std::vector<std::string>::const_iterator i = prefixes.begin();
|
|
i != prefixes.end(); i++ )
|
|
{
|
|
if ( prefs.size() )
|
|
prefs += ", ";
|
|
|
|
prefs += '"' + *i + '"';
|
|
}
|
|
|
|
d->Add("interface prefix");
|
|
if ( prefixes.size() > 1 )
|
|
d->Add("es");
|
|
|
|
d->Add(" ");
|
|
d->Add(prefs);
|
|
d->Add("; supports ");
|
|
|
|
switch ( type ) {
|
|
case LIVE:
|
|
d->Add("live input");
|
|
break;
|
|
|
|
case TRACE:
|
|
d->Add("trace input");
|
|
break;
|
|
|
|
case BOTH:
|
|
d->Add("live and trace input");
|
|
break;
|
|
|
|
default:
|
|
reporter->InternalError("unknown PkrSrc type");
|
|
}
|
|
|
|
}
|
|
|
|
PktDumperComponent::PktDumperComponent(const std::string& name, const std::string& arg_prefix, factory_callback arg_factory)
|
|
: plugin::Component(plugin::component::PKTDUMPER, name)
|
|
{
|
|
tokenize_string(arg_prefix, ":", &prefixes);
|
|
factory = arg_factory;
|
|
}
|
|
|
|
PktDumperComponent::~PktDumperComponent()
|
|
{
|
|
}
|
|
|
|
PktDumperComponent::factory_callback PktDumperComponent::Factory() const
|
|
{
|
|
return factory;
|
|
}
|
|
|
|
const std::vector<std::string>& PktDumperComponent::Prefixes() const
|
|
{
|
|
return prefixes;
|
|
}
|
|
|
|
bool PktDumperComponent::HandlesPrefix(const std::string& prefix) const
|
|
{
|
|
for ( std::vector<std::string>::const_iterator i = prefixes.begin();
|
|
i != prefixes.end(); i++ )
|
|
{
|
|
if ( *i == prefix )
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void PktDumperComponent::DoDescribe(ODesc* d) const
|
|
{
|
|
plugin::Component::DoDescribe(d);
|
|
|
|
std::string prefs;
|
|
|
|
for ( std::vector<std::string>::const_iterator i = prefixes.begin();
|
|
i != prefixes.end(); i++ )
|
|
{
|
|
if ( prefs.size() )
|
|
prefs += ", ";
|
|
|
|
prefs += '"' + *i + '"';
|
|
}
|
|
|
|
d->Add("dumper prefix");
|
|
|
|
if ( prefixes.size() > 1 )
|
|
d->Add("es");
|
|
|
|
d->Add(": ");
|
|
d->Add(prefs);
|
|
}
|