#ifndef CLICK_RATEDSOURCE_HH
#define CLICK_RATEDSOURCE_HH
#include <click/element.hh>
#include <click/gaprate.hh>
#include <click/task.hh>
CLICK_DECLS
/*
=c
RatedSource([DATA, RATE, LIMIT, ACTIVE, I<KEYWORDS>])
=s basicsources
generates packets at specified rate
=d
Creates packets consisting of DATA, emitting at most LIMIT such packets out
its single output at a rate of RATE packets per second. When used as a push
element, RatedSource will send a maximum of one packet per scheduling, so very
high RATEs may not be achievable. If LIMIT is negative, sends packets forever.
Will send packets only if ACTIVE is true. Default DATA is at least 64 bytes
long. Default RATE is 10. Default LIMIT is -1 (send packets forever). Default
ACTIVE is true.
Keyword arguments are:
=over 8
=item DATA
String. Same as the DATA argument.
=item DATASIZE
Integer. If set, ensures the outgoing packet contains at least this many bytes.
=item RATE
Integer. Same as the RATE argument.
=item LIMIT
Integer. Same as the LIMIT argument.
=item ACTIVE
Boolean. Same as the ACTIVE? argument.
=item STOP
Boolean. If true, then stop the driver once LIMIT packets are sent. Default is
false.
=back
To generate a particular repeatable traffic pattern, use this element's
B<rate> and B<active> handlers in conjunction with PokeHandlers.
=e
RatedSource(\<0800>, 10, 1000) -> Queue -> ...
=h count read-only
Returns the total number of packets that have been generated.
=h reset write-only
Resets the number of generated packets to 0. The RatedSource will then
generate another LIMIT packets (if it is active).
=h data read/write
Returns or sets the DATA parameter.
=h datasize read/write
Returns or sets the DATASIZE parameter.
=h rate read/write
Returns or sets the RATE parameter.
=h limit read/write
Returns or sets the LIMIT parameter. Negative numbers mean no limit.
=h active read/write
Makes the element active or inactive.
=a
InfiniteSource, PokeHandlers */
class RatedSource : public Element { public:
RatedSource();
~RatedSource();
const char *class_name() const { return "RatedSource"; }
const char *port_count() const { return PORTS_0_1; }
const char *processing() const { return AGNOSTIC; }
void add_handlers();
int configure(Vector<String> &, ErrorHandler *);
int initialize(ErrorHandler *);
void cleanup(CleanupStage);
bool run_task();
Packet *pull(int);
protected:
void setup_packet();
static const unsigned NO_LIMIT = 0xFFFFFFFFU;
GapRate _rate;
unsigned _count;
unsigned _limit;
int _datasize;
bool _active : 1;
bool _stop : 1;
Packet *_packet;
Task _task;
String _data;
static String read_param(Element *, void *);
static int change_param(const String &, Element *, void *, ErrorHandler *);
};
CLICK_ENDDECLS
#endif
syntax highlighted by Code2HTML, v. 0.9.1