📄 timedsource.cc
字号:
/* * timedsink.{cc,hh} -- element creates packets, pushes them periodically * Eddie Kohler * * Copyright (c) 1999-2000 Massachusetts Institute of Technology * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, subject to the conditions * listed in the Click LICENSE file. These conditions include: you must * preserve this copyright notice, and you cannot mention the copyright * holders in advertising related to the Software without their permission. * The Software is provided WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED. This * notice is a summary of the Click LICENSE file; the license in that file is * legally binding. */#include <click/config.h>#include "timedsource.hh"#include <click/confparse.hh>#include <click/error.hh>#include <click/glue.hh>#include <click/router.hh>CLICK_DECLSTimedSource::TimedSource() : _packet(0), _interval(0, Timestamp::subsec_per_sec / 2), _limit(-1), _count(0), _active(true), _stop(false), _timer(this), _headroom(Packet::default_headroom){}TimedSource::~TimedSource(){}intTimedSource::configure(Vector<String> &conf, ErrorHandler *errh){ String data = "Random bullshit in a packet, at least 64 bytes long. Well, now it is."; if (cp_va_kparse(conf, this, errh, "INTERVAL", cpkP, cpTimestamp, &_interval, "DATA", cpkP, cpString, &data, "LIMIT", 0, cpInteger, &_limit, "ACTIVE", 0, cpBool, &_active, "STOP", 0, cpBool, &_stop, "HEADROOM", 0, cpUnsigned, &_headroom, cpEnd) < 0) return -1; _data = data; if (_packet) _packet->kill(); _packet = Packet::make(_headroom, _data.data(), _data.length(), 0); return 0;}intTimedSource::initialize(ErrorHandler *){ _timer.initialize(this); if (_active) _timer.schedule_after(_interval); return 0;}voidTimedSource::cleanup(CleanupStage){ if (_packet) _packet->kill(); _packet = 0;}voidTimedSource::run_timer(Timer *){ if (!_active) return; if (_limit < 0 || _count < _limit) { Packet *p = _packet->clone(); p->timestamp_anno().set_now(); output(0).push(p); _count++; _timer.reschedule_after(_interval); } else if (_stop) router()->please_stop_driver();}StringTimedSource::read_param(Element *e, void *vparam){ TimedSource *ts = (TimedSource *)e; switch ((intptr_t)vparam) { case h_interval: return ts->_interval.unparse_interval(); default: return ""; }}intTimedSource::change_param(const String &s, Element *e, void *vparam, ErrorHandler *errh){ TimedSource *ts = (TimedSource *)e; switch ((intptr_t)vparam) { case h_data: ts->_data = s; goto remake_packet; case h_headroom: if (!cp_integer(s, &ts->_headroom)) return errh->error("bad headroom"); goto remake_packet; remake_packet: { Packet *p = Packet::make(ts->_headroom, ts->_data.data(), ts->_data.length(), 0); if (!p) return errh->error("out of memory"), -ENOMEM; if (ts->_packet) ts->_packet->kill(); ts->_packet = p; break; } case h_interval: { Timestamp interval; if (!cp_time(s, &interval) || !interval) return errh->error("bad interval"); ts->_interval = interval; break; } case h_active: { if (!cp_bool(s, &ts->_active)) return errh->error("bad active"); if (!ts->_timer.scheduled() && ts->_active) ts->_timer.schedule_now(); break; } case h_reset: { ts->_count = 0; if (!ts->_timer.scheduled() && ts->_active) ts->_timer.schedule_now(); break; } } return 0;}voidTimedSource::add_handlers(){ add_data_handlers("data", Handler::OP_READ | Handler::CALM, &_data); add_write_handler("data", change_param, h_data, Handler::RAW); add_data_handlers("limit", Handler::OP_READ | Handler::OP_WRITE | Handler::CALM, &_limit); add_read_handler("interval", read_param, h_interval, Handler::CALM); add_write_handler("interval", change_param, h_interval); add_data_handlers("active", Handler::OP_READ | Handler::CALM | Handler::CHECKBOX, &_active); add_write_handler("active", change_param, h_active); add_data_handlers("count", Handler::OP_READ, &_count); add_data_handlers("headroom", Handler::OP_READ | Handler::CALM, &_headroom); add_write_handler("headroom", change_param, h_headroom); add_write_handler("reset", change_param, h_reset, Handler::BUTTON);}CLICK_ENDDECLSEXPORT_ELEMENT(TimedSource)ELEMENT_MT_SAFE(TimedSource)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -