Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove features marked with DEPRECATED_v323.
[simgrid.git] / include / simgrid / forward.h
1 /* Copyright (c) 2004-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_TYPES_H
7 #define SIMGRID_TYPES_H
8
9 #include <xbt/base.h>
10
11 #ifdef __cplusplus
12
13 #include <boost/intrusive_ptr.hpp>
14
15 namespace simgrid {
16
17 namespace s4u {
18 class Activity;
19
20 class Actor;
21 /** Smart pointer to a simgrid::s4u::Actor */
22 typedef boost::intrusive_ptr<Actor> ActorPtr;
23 XBT_PUBLIC void intrusive_ptr_release(Actor* actor);
24 XBT_PUBLIC void intrusive_ptr_add_ref(Actor* actor);
25
26 class Barrier;
27 /** Smart pointer to a simgrid::s4u::Barrier */
28 typedef boost::intrusive_ptr<Barrier> BarrierPtr;
29 XBT_PUBLIC void intrusive_ptr_release(Barrier* m);
30 XBT_PUBLIC void intrusive_ptr_add_ref(Barrier* m);
31
32 class Comm;
33 /** Smart pointer to a simgrid::s4u::Comm */
34 typedef boost::intrusive_ptr<Comm> CommPtr;
35 XBT_PUBLIC void intrusive_ptr_release(Comm* c);
36 XBT_PUBLIC void intrusive_ptr_add_ref(Comm* c);
37
38 class ConditionVariable;
39 /** Smart pointer to a simgrid::s4u::ConditionVariable */
40 typedef boost::intrusive_ptr<ConditionVariable> ConditionVariablePtr;
41 XBT_PUBLIC void intrusive_ptr_release(ConditionVariable* c);
42 XBT_PUBLIC void intrusive_ptr_add_ref(ConditionVariable* c);
43
44 class Engine;
45
46 class Exec;
47 /** Smart pointer to a simgrid::s4u::Exec */
48 typedef boost::intrusive_ptr<Exec> ExecPtr;
49 XBT_PUBLIC void intrusive_ptr_release(Exec* e);
50 XBT_PUBLIC void intrusive_ptr_add_ref(Exec* e);
51 class ExecSeq;
52 typedef boost::intrusive_ptr<ExecSeq> ExecSeqPtr;
53 class ExecPar;
54 typedef boost::intrusive_ptr<ExecPar> ExecParPtr;
55
56 class Host;
57
58 class Io;
59 /** Smart pointer to a simgrid::s4u::Io */
60 typedef boost::intrusive_ptr<Io> IoPtr;
61 XBT_PUBLIC void intrusive_ptr_release(Io* i);
62 XBT_PUBLIC void intrusive_ptr_add_ref(Io* i);
63
64 class Link;
65
66 class Mailbox;
67
68 class Mutex;
69 XBT_PUBLIC void intrusive_ptr_release(Mutex* m);
70 XBT_PUBLIC void intrusive_ptr_add_ref(Mutex* m);
71 /** Smart pointer to a simgrid::s4u::Mutex */
72 typedef boost::intrusive_ptr<Mutex> MutexPtr;
73
74 class NetZone;
75 class VirtualMachine;
76 class File;
77
78 class Semaphore;
79 /** Smart pointer to a simgrid::s4u::Semaphore */
80 typedef boost::intrusive_ptr<Semaphore> SemaphorePtr;
81 XBT_PUBLIC void intrusive_ptr_release(Semaphore* m);
82 XBT_PUBLIC void intrusive_ptr_add_ref(Semaphore* m);
83
84 class Storage;
85 } // namespace s4u
86
87 namespace config {
88 template <class T> class Flag;
89 }
90
91 namespace kernel {
92 class EngineImpl;
93 namespace actor {
94 class ActorImpl;
95 typedef boost::intrusive_ptr<ActorImpl> ActorImplPtr;
96 } // namespace actor
97
98 namespace activity {
99   class ActivityImpl;
100   typedef boost::intrusive_ptr<ActivityImpl> ActivityImplPtr;
101   XBT_PUBLIC void intrusive_ptr_add_ref(ActivityImpl* activity);
102   XBT_PUBLIC void intrusive_ptr_release(ActivityImpl* activity);
103
104   class ConditionVariableImpl;
105
106   class CommImpl;
107   typedef boost::intrusive_ptr<CommImpl> CommImplPtr;
108   class ExecImpl;
109   typedef boost::intrusive_ptr<ExecImpl> ExecImplPtr;
110   class IoImpl;
111   typedef boost::intrusive_ptr<IoImpl> IoImplPtr;
112   class MutexImpl;
113   typedef boost::intrusive_ptr<MutexImpl> MutexImplPtr;
114   class RawImpl;
115   typedef boost::intrusive_ptr<RawImpl> RawImplPtr;
116   class SemaphoreImpl;
117   typedef boost::intrusive_ptr<SemaphoreImpl> SemaphoreImplPtr;
118   class SleepImpl;
119   typedef boost::intrusive_ptr<SleepImpl> SleepImplPtr;
120
121   class MailboxImpl;
122 }
123 namespace context {
124 class Context;
125 class ContextFactory;
126 } // namespace context
127 namespace lmm {
128 class Element;
129 class Variable;
130 class Constraint;
131 class ConstraintLight;
132 class System;
133 }
134 namespace resource {
135 class Action;
136 class Model;
137 class Resource;
138 class NetworkModel;
139 class LinkImpl;
140 class NetworkAction;
141 class StorageImpl;
142 class StorageType;
143 class StorageModel;
144 }
145 namespace routing {
146 class ClusterCreationArgs;
147 class LinkCreationArgs;
148 class NetPoint;
149 class NetZoneImpl;
150 class RouteCreationArgs;
151 }
152 namespace profile {
153 class Event;
154 class FutureEvtSet;
155 class Profile;
156 } // namespace profile
157 } // namespace kernel
158 namespace simix {
159   class Host;
160   class Timer;
161 }
162 namespace surf {
163   class Cpu;
164   class CpuModel;
165   class HostImpl;
166   class HostModel;
167 }
168 namespace mc {
169 class CommunicationDeterminismChecker;
170 }
171 namespace vm {
172 class VMModel;
173 class VirtualMachineImpl;
174 } // namespace vm
175 } // namespace simgrid
176
177 typedef simgrid::s4u::Actor s4u_Actor;
178 typedef simgrid::s4u::Barrier s4u_Barrier;
179 typedef simgrid::s4u::Host s4u_Host;
180 typedef simgrid::s4u::Link s4u_Link;
181 typedef simgrid::s4u::File s4u_File;
182 typedef simgrid::s4u::Semaphore s4u_Semaphore;
183 typedef simgrid::s4u::Storage s4u_Storage;
184 typedef simgrid::s4u::NetZone s4u_NetZone;
185 typedef simgrid::s4u::VirtualMachine s4u_VM;
186 typedef boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> smx_activity_t;
187
188 typedef simgrid::simix::Timer* smx_timer_t;
189 typedef simgrid::kernel::actor::ActorImpl* smx_actor_t;
190 typedef simgrid::kernel::activity::ConditionVariableImpl* smx_cond_t;
191 typedef simgrid::kernel::activity::MailboxImpl* smx_mailbox_t;
192 typedef simgrid::kernel::activity::MutexImpl* smx_mutex_t;
193 typedef simgrid::kernel::activity::SemaphoreImpl* smx_sem_t;
194
195 #else
196
197 typedef struct s4u_Actor s4u_Actor;
198 typedef struct s4u_Barrier s4u_Barrier;
199 typedef struct s4u_Host s4u_Host;
200 typedef struct s4u_Link s4u_Link;
201 typedef struct s4u_File s4u_File;
202 typedef struct s4u_Semaphore s4u_Semaphore;
203 typedef struct s4u_Storage s4u_Storage;
204 typedef struct s4u_NetZone s4u_NetZone;
205 typedef struct s4u_VM s4u_VM;
206 typedef struct kernel_Activity* smx_activity_t;
207
208 typedef struct s_smx_timer* smx_timer_t;
209 typedef struct s_smx_actor* smx_actor_t;
210 typedef struct s_smx_cond_t* smx_cond_t;
211 typedef struct s_smx_mailbox* smx_mailbox_t;
212 typedef struct s_smx_mutex* smx_mutex_t;
213 typedef struct s_smx_sem* smx_sem_t;
214
215 #endif
216
217 typedef s4u_Barrier* sg_bar_t;
218 typedef s4u_Semaphore* sg_sem_t;
219 typedef s4u_NetZone* sg_netzone_t;
220 typedef s4u_Host* sg_host_t;
221 typedef s4u_Link* sg_link_t;
222 typedef s4u_Storage* sg_storage_t;
223 typedef s4u_File* sg_file_t;
224 typedef s4u_VM* sg_vm_t;
225 typedef s4u_Actor* sg_actor_t;
226
227 typedef struct s_smx_simcall* smx_simcall_t;
228
229 /** @ingroup m_datatypes_management_details
230  * @brief Type for any simgrid size
231  */
232 typedef unsigned long long sg_size_t;
233
234 /** @ingroup m_datatypes_management_details
235  * @brief Type for any simgrid offset
236  */
237 typedef long long sg_offset_t;
238
239 /** Actor's ID, just like the classical processes' have PID in UNIX */
240 typedef long aid_t;
241
242 #endif /* SIMGRID_TYPES_H */