Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Modernize FindSimGrid
[simgrid.git] / include / simgrid / forward.h
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 #ifndef SIMGRID_TYPES_H
7 #define SIMGRID_TYPES_H
8
9 #ifdef __cplusplus
10
11 #include "s4u/forward.hpp"
12 #include "xbt/base.h"
13 #include <boost/intrusive_ptr.hpp>
14
15 namespace simgrid {
16 namespace kernel {
17 class EngineImpl;
18 namespace context {
19 class Context;
20 class ContextFactory;
21 }
22 namespace activity {
23   class ActivityImpl;
24   using ActivityImplPtr = boost::intrusive_ptr<ActivityImpl>;
25   XBT_PUBLIC(void) intrusive_ptr_add_ref(ActivityImpl* activity);
26   XBT_PUBLIC(void) intrusive_ptr_release(ActivityImpl* activity);
27
28   class CommImpl;
29   using CommImplPtr = boost::intrusive_ptr<CommImpl>;
30   class ExecImpl;
31   using ExecImplPtr = boost::intrusive_ptr<ExecImpl>;
32   class IoImpl;
33   using IoImplPtr = boost::intrusive_ptr<IoImpl>;
34   class MutexImpl;
35   using MutexImplPtr = boost::intrusive_ptr<MutexImpl>;
36   class RawImpl;
37   using RawImplPtr = boost::intrusive_ptr<RawImpl>;
38   class SleepImpl;
39   using SleepImplPtr = boost::intrusive_ptr<SleepImpl>;
40
41   class MailboxImpl;
42 }
43 namespace lmm {
44 class Element;
45 class Variable;
46 class Constraint;
47 class ConstraintLight;
48 class System;
49 }
50 namespace resource {
51 class Action;
52 class Model;
53 class Resource;
54 }
55 namespace routing {
56   class NetPoint;
57   class NetZoneImpl;
58 }
59 }
60 namespace simix {
61   class ActorImpl;
62   using ActorImplPtr = boost::intrusive_ptr<ActorImpl>;
63   class Host;
64 }
65
66 namespace surf {
67   class Cpu;
68   class LinkImpl;
69   class HostImpl;
70   class StorageImpl;
71   class StorageType;
72 }
73 namespace trace_mgr {
74   class trace;
75   class future_evt_set;
76 }
77 }
78
79 typedef simgrid::s4u::Actor s4u_Actor;
80 typedef simgrid::s4u::Host s4u_Host;
81 typedef simgrid::s4u::Link s4u_Link;
82 typedef simgrid::s4u::File s4u_File;
83 typedef simgrid::s4u::Storage s4u_Storage;
84 typedef simgrid::s4u::NetZone s4u_NetZone;
85 typedef simgrid::s4u::VirtualMachine s4u_VM;
86 typedef boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> smx_activity_t;
87 typedef simgrid::kernel::routing::NetPoint routing_NetPoint;
88 typedef simgrid::kernel::resource::Resource surf_Resource;
89 typedef simgrid::trace_mgr::trace tmgr_Trace;
90
91 typedef simgrid::kernel::context::Context* smx_context_t;
92 typedef simgrid::simix::ActorImpl* smx_actor_t;
93 typedef simgrid::kernel::activity::MutexImpl* smx_mutex_t;
94 typedef simgrid::kernel::activity::MailboxImpl* smx_mailbox_t;
95 typedef simgrid::surf::StorageImpl* surf_storage_t;
96
97 typedef simgrid::kernel::lmm::Element* lmm_element_t;
98 typedef const simgrid::kernel::lmm::Element* const_lmm_element_t;
99 typedef simgrid::kernel::lmm::ConstraintLight* lmm_constraint_light_t;
100 typedef simgrid::kernel::lmm::System* lmm_system_t;
101
102 #else
103
104 typedef struct s4u_Actor s4u_Actor;
105 typedef struct s4u_Host s4u_Host;
106 typedef struct s4u_Link s4u_Link;
107 typedef struct s4u_File s4u_File;
108 typedef struct s4u_Storage s4u_Storage;
109 typedef struct s4u_NetZone s4u_NetZone;
110 typedef struct s4u_VM s4u_VM;
111 typedef struct kernel_Activity* smx_activity_t;
112 typedef struct routing_NetPoint routing_NetPoint;
113 typedef struct surf_Resource surf_Resource;
114 typedef struct Trace tmgr_Trace;
115
116 typedef struct s_smx_context* smx_context_t;
117 typedef struct s_smx_actor* smx_actor_t;
118 typedef struct s_smx_mutex* smx_mutex_t;
119 typedef struct s_smx_mailbox* smx_mailbox_t;
120 typedef struct s_surf_storage* surf_storage_t;
121
122 #endif
123
124 typedef s4u_NetZone* sg_netzone_t;
125 typedef s4u_Host* sg_host_t;
126 typedef s4u_Link* sg_link_t;
127 typedef s4u_Storage* sg_storage_t;
128 typedef s4u_File* sg_file_t;
129 typedef s4u_VM* sg_vm_t;
130
131 typedef routing_NetPoint* sg_netpoint_t;
132 typedef surf_Resource *sg_resource_t;
133
134 typedef tmgr_Trace *tmgr_trace_t; /**< Opaque structure defining an availability trace */
135
136 typedef struct s_smx_simcall s_smx_simcall_t;
137 typedef struct s_smx_simcall* smx_simcall_t;
138
139 typedef enum { // FIXME: move this to s4u::Link; make it an enum class
140   SURF_LINK_SPLITDUPLEX = 2,
141   SURF_LINK_SHARED      = 1,
142   SURF_LINK_FATPIPE     = 0
143 } e_surf_link_sharing_policy_t;
144
145 /** @ingroup m_datatypes_management_details
146  * @brief Type for any simgrid size
147  */
148 typedef unsigned long long sg_size_t;
149
150 /** @ingroup m_datatypes_management_details
151  * @brief Type for any simgrid offset
152  */
153 typedef long long sg_offset_t;
154
155 typedef unsigned long aid_t;
156
157 #endif /* SIMGRID_TYPES_H */