Scheduler: Implement SignalDispatcher
[senf.git] / Scheduler / Scheduler.cci
index 1c1e7ef..f436274 100644 (file)
@@ -1,9 +1,9 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
-// Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
-//     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
+//     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
 #define prefix_ inline
 ///////////////////////////////cci.p///////////////////////////////////////
 
+prefix_ senf::Scheduler::Scheduler & senf::Scheduler::instance()
+{
+    static Scheduler instance;
+    return instance;
+}
+
+prefix_ unsigned senf::Scheduler::timeout(ClockService::clock_type timeout,
+                                          SimpleCallback const & cb)
+{
+    ++ timerIdCounter_;
+    TimerMap::iterator i (
+        timerMap_.insert(std::make_pair(timerIdCounter_, 
+                                        TimerSpec(timeout,cb,timerIdCounter_))).first);
+    timerQueue_.push(i);
+    return timerIdCounter_;
+}
+
+prefix_ void senf::Scheduler::cancelTimeout(unsigned id)
+{
+    TimerMap::iterator i (timerMap_.find(id));
+    if (i != timerMap_.end())
+        i->second.canceled = true;
+}
+
+prefix_ senf::ClockService::clock_type senf::Scheduler::timeoutEarly()
+    const
+{
+    return eventEarly_;
+}
+
+prefix_ void senf::Scheduler::timeoutEarly(ClockService::clock_type v)
+{
+    eventEarly_ = v;
+}
+
+prefix_ senf::ClockService::clock_type senf::Scheduler::timeoutAdjust()
+    const
+{
+    return eventAdjust_;
+}
+
+prefix_ void senf::Scheduler::timeoutAdjust(ClockService::clock_type v)
+{
+    eventAdjust_ = v;
+}
+
 prefix_ void senf::Scheduler::terminate()
 {
     terminate_ = true;
 }
 
-prefix_ senf::Scheduler::sched_time senf::Scheduler::now()
+prefix_ senf::ClockService::clock_type senf::Scheduler::eventTime()
     const
 {
-    boost::posix_time::time_duration delta (
-        boost::posix_time::microsec_clock::universal_time() - epoch_);
-    return sched_time( delta.ticks() )
-        * sched_time( 1000000000UL / boost::posix_time::time_duration::ticks_per_second() );
+    return eventTime_;
 }
 
 prefix_ int senf::retrieve_filehandle(int fd)
@@ -50,6 +93,12 @@ prefix_ int senf::retrieve_filehandle(int fd)
     return fd;
 }
 
+prefix_ senf::Scheduler::TimerSpecCompare::result_type
+senf::Scheduler::TimerSpecCompare::operator()(first_argument_type a, second_argument_type b)
+{
+    return a->second < b->second;
+}
+
 ///////////////////////////////cci.e///////////////////////////////////////
 #undef prefix_