Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
_SIMIX_cond_wait becomes ConditionVariable::wait
[simgrid.git] / src / kernel / activity / ActivityImpl.hpp
1 /* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_KERNEL_ACTIVITY_ACTIVITYIMPL_HPP
7 #define SIMGRID_KERNEL_ACTIVITY_ACTIVITYIMPL_HPP
8
9 #include <string>
10 #include <list>
11
12 #include <xbt/base.h>
13 #include "simgrid/forward.h"
14
15 #include <atomic>
16 #include <simgrid/kernel/resource/Action.hpp>
17 #include <simgrid/simix.hpp>
18
19 namespace simgrid {
20 namespace kernel {
21 namespace activity {
22
23 class XBT_PUBLIC ActivityImpl {
24 public:
25   ActivityImpl() = default;
26   explicit ActivityImpl(std::string name) : name_(std::move(name)) {}
27   virtual ~ActivityImpl() = default;
28   e_smx_state_t state_ = SIMIX_WAITING; /* State of the activity */
29   std::list<smx_simcall_t> simcalls_;   /* List of simcalls waiting for this activity */
30   resource::Action* surf_action_ = nullptr;
31
32   const std::string& get_name() const { return name_; }
33   const char* get_cname() const { return name_.c_str(); }
34
35   virtual void suspend();
36   virtual void resume();
37   virtual void post()    = 0; // What to do when a simcall terminates
38
39   void set_category(std::string category);
40
41   // boost::intrusive_ptr<ActivityImpl> support:
42   friend XBT_PUBLIC void intrusive_ptr_add_ref(ActivityImpl* activity);
43   friend XBT_PUBLIC void intrusive_ptr_release(ActivityImpl* activity);
44
45 private:
46   std::atomic_int_fast32_t refcount_{0};
47   std::string name_;                    /* Activity name if any */
48
49 public:
50   static simgrid::xbt::signal<void(ActivityImplPtr)> on_suspended;
51   static simgrid::xbt::signal<void(ActivityImplPtr)> on_resumed;
52 };
53 }}} // namespace simgrid::kernel::activity
54
55 #endif /* SIMGRID_KERNEL_ACTIVITY_ACTIVITYIMPL_HPP */