Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cleanups
[simgrid.git] / src / kernel / activity / ActivityImpl.hpp
1 /* Copyright (c) 2007-2016. 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 <simgrid/simix.hpp>
16
17 namespace simgrid {
18 namespace kernel {
19 namespace activity {
20
21   XBT_PUBLIC_CLASS ActivityImpl {
22   public:
23     ActivityImpl();
24     virtual ~ActivityImpl();
25     e_smx_state_t state = SIMIX_WAITING; /* State of the activity */
26     std::string name;                    /* Activity name if any */
27     std::list<smx_simcall_t> simcalls;   /* List of simcalls waiting for this activity */
28
29     virtual void suspend()=0;
30     virtual void resume()=0;
31     virtual void post() =0; // What to do when a simcall terminates
32
33     void ref();
34     void unref();
35   private:
36     int refcount = 1;
37   };
38 }}} // namespace simgrid::kernel::activity
39
40 #endif /* SIMGRID_KERNEL_ACTIVITY_ACTIVITYIMPL_HPP */