Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not load a private header from s/k/resource/ headers
authorMartin Quinson <martin.quinson@loria.fr>
Tue, 20 Mar 2018 12:34:31 +0000 (13:34 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Tue, 20 Mar 2018 13:47:54 +0000 (14:47 +0100)
include/simgrid/kernel/resource/Action.hpp
include/simgrid/kernel/resource/Model.hpp
src/kernel/resource/Action.cpp
src/surf/network_constant.cpp
src/surf/network_constant.hpp
src/surf/network_ns3.cpp
src/surf/network_ns3.hpp
src/surf/storage_n11.cpp
src/surf/storage_n11.hpp
src/surf/surf_interface.hpp
src/surf/surf_private.hpp

index 6154a67..d3b7a04 100644 (file)
@@ -6,7 +6,14 @@
 #ifndef SIMGRID_KERNEL_RESOURCE_ACTION_HPP
 #define SIMGRID_KERNEL_RESOURCE_ACTION_HPP
 
-#include "src/surf/surf_interface.hpp"
+#include <simgrid/forward.h>
+#include <xbt/signal.hpp>
+#include <xbt/utility.hpp>
+
+#include <boost/heap/pairing_heap.hpp>
+#include <boost/optional.hpp>
+
+const int NO_MAX_DURATION = -1.0;
 
 namespace simgrid {
 namespace kernel {
@@ -107,11 +114,11 @@ public:
 
   /** @brief Update the maximum duration of the current action
    *  @param delta Amount to remove from the MaxDuration */
-  void updateMaxDuration(double delta) { double_update(&maxDuration_, delta, sg_surf_precision); }
+  void updateMaxDuration(double delta);
 
   /** @brief Update the remaining time of the current action
    *  @param delta Amount to remove from the remaining time */
-  void updateRemains(double delta) { double_update(&remains_, delta, sg_maxmin_precision * sg_surf_precision); }
+  void updateRemains(double delta);
 
   /** @brief Set the remaining time of the current action */
   void setRemains(double value) { remains_ = value; }
@@ -188,7 +195,7 @@ private:
   boost::optional<heap_type::handle_type> heapHandle_ = boost::none;
 
 public:
-  virtual void updateRemainingLazy(double now) { THROW_IMPOSSIBLE; };
+  virtual void updateRemainingLazy(double now) = 0;
   void heapInsert(heap_type& heap, double key, Action::Type hat);
   void heapRemove(heap_type& heap);
   void heapUpdate(heap_type& heap, double key, Action::Type hat);
@@ -196,7 +203,7 @@ public:
   kernel::lmm::Variable* getVariable() const { return variable_; }
   void setVariable(kernel::lmm::Variable* var) { variable_ = var; }
   double getLastUpdate() const { return lastUpdate_; }
-  void refreshLastUpdate() { lastUpdate_ = surf_get_clock(); }
+  void refreshLastUpdate();
   double getLastValue() const { return lastValue_; }
   void setLastValue(double val) { lastValue_ = val; }
   Action::Type getType() const { return type_; }
index 5855dda..98bc158 100644 (file)
@@ -8,6 +8,19 @@
 
 #include <simgrid/kernel/resource/Action.hpp>
 
+extern "C" {
+
+/** @brief Possible update mechanisms */
+enum e_UM_t {
+  UM_FULL,     /**< Full update mechanism: the remaining time of every action is recomputed at each step */
+  UM_LAZY,     /**< Lazy update mechanism: only the modified actions get recomputed.
+                    It may be slower than full if your system is tightly coupled to the point where every action
+                    gets recomputed anyway. In that case, you'd better not try to be cleaver with lazy and go for
+                    a simple full update.  */
+  UM_UNDEFINED /**< Mechanism not defined */
+};
+}
+
 namespace simgrid {
 namespace kernel {
 namespace resource {
index 0484060..8559cca 100644 (file)
@@ -6,6 +6,7 @@
 #include "simgrid/kernel/resource/Action.hpp"
 #include "simgrid/kernel/resource/Model.hpp"
 #include "src/kernel/lmm/maxmin.hpp"
+#include "src/surf/surf_interface.hpp"
 
 XBT_LOG_NEW_CATEGORY(kernel, "Logging specific to the internals of SimGrid");
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(resource, kernel, "Logging specific to the resources");
@@ -227,6 +228,20 @@ double Action::getRemains()
   return remains_;
 }
 
+void Action::updateMaxDuration(double delta)
+{
+  double_update(&maxDuration_, delta, sg_surf_precision);
+}
+void Action::updateRemains(double delta)
+{
+  double_update(&remains_, delta, sg_maxmin_precision * sg_surf_precision);
+}
+
+void Action::refreshLastUpdate()
+{
+  lastUpdate_ = surf_get_clock();
+}
+
 } // namespace surf
 } // namespace simgrid
 } // namespace simgrid
index a2d9074..71c87a1 100644 (file)
@@ -85,5 +85,10 @@ NetworkConstantAction::NetworkConstantAction(NetworkConstantModel* model_, doubl
 };
 
 NetworkConstantAction::~NetworkConstantAction() = default;
+
+void NetworkConstantAction::updateRemainingLazy(double /*now*/)
+{
+  THROW_IMPOSSIBLE;
+}
 }
 }
index f12715b..198dd8a 100644 (file)
@@ -42,6 +42,7 @@ namespace simgrid {
       NetworkConstantAction(NetworkConstantModel *model_, double size, double latency);
       ~NetworkConstantAction();
       double initialLatency_;
+      void updateRemainingLazy(double now) override;
     };
 
   }
index ab86421..0402324 100644 (file)
@@ -339,6 +339,10 @@ std::list<LinkImpl*> NetworkNS3Action::links()
 {
   THROW_UNIMPLEMENTED;
 }
+void NetworkNS3Action::updateRemainingLazy(double /*now*/)
+{
+  THROW_IMPOSSIBLE;
+}
 
 /* Test whether a flow is suspended */
 bool NetworkNS3Action::isSuspended()
index 7ed353a..f8e3e3c 100644 (file)
@@ -52,6 +52,7 @@ public:
   void suspend() override;
   void resume() override;
   std::list<LinkImpl*> links() override;
+  void updateRemainingLazy(double now) override;
 
   // private:
   double lastSent_ = 0;
index cc8b5e1..73e9415 100644 (file)
@@ -188,6 +188,9 @@ void StorageN11Action::setSharingWeight(double /*priority*/)
 {
   THROW_UNIMPLEMENTED;
 }
-
+void StorageN11Action::updateRemainingLazy(double /*now*/)
+{
+  THROW_IMPOSSIBLE;
+}
 }
 }
index 9414ac6..c38ec74 100644 (file)
@@ -54,13 +54,14 @@ class StorageN11Action : public StorageAction {
 public:
   StorageN11Action(kernel::resource::Model* model, double cost, bool failed, StorageImpl* storage,
                    e_surf_action_storage_type_t type);
-  void suspend();
-  int unref();
-  void cancel();
-  void resume();
-  bool isSuspended();
-  void setMaxDuration(double duration);
-  void setSharingWeight(double priority);
+  void suspend() override;
+  int unref() override;
+  void cancel() override;
+  void resume() override;
+  bool isSuspended() override;
+  void setMaxDuration(double duration) override;
+  void setSharingWeight(double priority) override;
+  void updateRemainingLazy(double now) override;
 };
 
 }
index 24aa95f..09547f7 100644 (file)
@@ -21,8 +21,6 @@
 #include <string>
 #include <unordered_map>
 
-#define NO_MAX_DURATION -1.0
-
 /*********
  * Utils *
  *********/
index b1f9e7c..aa48911 100644 (file)
@@ -9,22 +9,8 @@
 #include "src/surf/trace_mgr.hpp"
 #include "surf/surf.hpp"
 
-#define NO_MAX_DURATION -1.0
-
 extern "C" {
 
-/** @ingroup SURF_interface
- * @brief Possible update mechanisms
- */
-enum e_UM_t {
-  UM_FULL,     /**< Full update mechanism: the remaining time of every action is recomputed at each step */
-  UM_LAZY,     /**< Lazy update mechanism: only the modified actions get recomputed.
-                    It may be slower than full if your system is tightly coupled to the point where every action
-                    gets recomputed anyway. In that case, you'd better not try to be cleaver with lazy and go for
-                    a simple full update.  */
-  UM_UNDEFINED /**< Mechanism not defined */
-};
-
 /* Generic functions common to all models */
 
 XBT_PRIVATE FILE* surf_fopen(const char* name, const char* mode);