CCA
PeriodicBeat.cpp
Go to the documentation of this file.
00001 /* ============================================================
00002  *
00003  * This file is a part of CCA project
00004  *
00005  * Copyright (C) 2011 by Arne Nordmann <anordman at cor-lab dot uni-bielefeld dot de>
00006  *
00007  * This file may be licensed under the terms of the
00008  * GNU Lesser General Public License Version 3 (the ``LGPL''),
00009  * or (at your option) any later version.
00010  *
00011  * Software distributed under the License is distributed
00012  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
00013  * express or implied. See the LGPL for the specific language
00014  * governing rights and limitations.
00015  *
00016  * You should have received a copy of the LGPL along with this
00017  * program. If not, go to http://www.gnu.org/licenses/lgpl.html
00018  * or write to the Free Software Foundation, Inc.,
00019  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
00020  *
00021  * The development of this software was supported by:
00022  *   CoR-Lab, Research Institute for Cognition and Robotics
00023  *     Bielefeld University
00024  *
00025  * ============================================================ */
00026 
00027 #include "PeriodicBeat.h"
00028 
00029 #include <string>
00030 #include <sstream>
00031 #include <iostream>
00032 #include <exception>
00033 
00034 #include <boost/bind.hpp>
00035 #include <boost/signal.hpp>
00036 #include <boost/thread.hpp>
00037 #include <boost/date_time/posix_time/posix_time.hpp>
00038 
00039 using namespace std;
00040 using namespace boost;
00041 using namespace rsc;
00042 using namespace rsc::logging;
00043 using namespace rsc::threading;
00044 
00045 namespace cca {
00046 
00047 PeriodicBeat::PeriodicBeat(unsigned int milliseconds) :
00048         Beat(milliseconds), rsc::threading::PeriodicTask(milliseconds),
00049                 beatlogger(Logger::getLogger("cca.beat")) {
00050     beatlogger->debug("[PeriodicBeat] constructed");
00051 }
00052 
00053 void PeriodicBeat::execute() {
00054     beatlogger->trace("[PeriodicBeat] >beat<");
00055 
00056     // Send tick to registered receivers
00057     for (unsigned int index = 0; index < this->_numReceivers; ++index) {
00058         this->_receiver[index]->tick();
00059     }
00060 }
00061 
00062 PeriodicBeat::~PeriodicBeat() {
00063 }
00064 
00065 unsigned int PeriodicBeat::getCycleTime() {
00066     return this->_cycletime;
00067 }
00068 
00069 void PeriodicBeat::cancel() {
00070     beatlogger->debug("[PeriodicBeat] cancel() requested");
00071     PeriodicTask::cancel();
00072 }
00073 
00074 bool PeriodicBeat::isCancelRequested() {
00075     return PeriodicTask::isCancelRequested();
00076 }
00077 
00078 void PeriodicBeat::run() {
00079     beatlogger->debug("[PeriodicBeat] run() started");
00080     PeriodicTask::run();
00081 }
00082 
00083 string PeriodicBeat::print() const {
00084     ostringstream outstream(ostringstream::out);
00085     outstream.precision(3); // Precision when printing double values
00086     outstream << "<PeriodicBeat (frequency=" << this->_cycletime << "ms, "
00087             << this->_numReceivers << " assigned receivers)>";
00088     return outstream.str();
00089 }
00090 
00091 PeriodicBeatPtr PeriodicBeat::create(unsigned int milliseconds) {
00092     return PeriodicBeatPtr(new PeriodicBeat(milliseconds));
00093 }
00094 
00095 ostream& operator<<(ostream& os, const PeriodicBeat& beat) {
00096     os.precision(3); // Precision when printing double values
00097     os << beat.print();
00098     return os;
00099 }
00100 
00101 }