Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[DVFS] Update HostDvfs class documentation
[simgrid.git] / src / surf / HostImpl.hpp
1 /* Copyright (c) 2004-2018. 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 #include "surf_interface.hpp"
7 #include "cpu_interface.hpp"
8 #include "network_interface.hpp"
9 #include "src/surf/PropertyHolder.hpp"
10
11 #include "StorageImpl.hpp"
12 #include <xbt/base.h>
13
14 #ifndef SURF_HOST_INTERFACE_HPP_
15 #define SURF_HOST_INTERFACE_HPP_
16
17 /*********
18  * Tools *
19  *********/
20
21 XBT_PUBLIC_DATA(simgrid::surf::HostModel*) surf_host_model;
22
23 /*********
24  * Model *
25  *********/
26
27 namespace simgrid {
28 namespace surf {
29
30 /** @ingroup SURF_host_interface
31  * @brief SURF Host model interface class
32  * @details A model is an object which handle the interactions between its Resources and its Actions
33  */
34 class XBT_PRIVATE HostModel : public Model {
35 public:
36   HostModel() : Model() {}
37
38   virtual void ignoreEmptyVmInPmLMM();
39   virtual Action* executeParallelTask(int host_nb, sg_host_t* host_list, double* flops_amount, double* bytes_amount,
40                                       double rate);
41 };
42
43 /************
44  * Resource *
45  ************/
46 /** @ingroup SURF_host_interface
47  * @brief SURF Host interface class
48  * @details An host represents a machine with a aggregation of a Cpu, a RoutingEdge and a Storage
49  */
50 class XBT_PRIVATE HostImpl : public simgrid::surf::PropertyHolder {
51
52 public:
53   explicit HostImpl(s4u::Host* host);
54   virtual ~HostImpl() = default;
55
56   /** @brief Get the vector of storages (by names) attached to the Host */
57   virtual void getAttachedStorageList(std::vector<const char*>* storages);
58
59   std::map<std::string, simgrid::surf::StorageImpl*> storage_;
60   simgrid::s4u::Host* piface_ = nullptr;
61
62   simgrid::s4u::Host* getHost() { return piface_; }
63 };
64 }
65 }
66
67 #endif /* SURF_Host_INTERFACE_HPP_ */