Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SMPI] Privatization changes, step 1
[simgrid.git] / src / smpi / include / smpi_process.hpp
1 /* Copyright (c) 2009-2010, 2012-2017. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SMPI_PROCESS_HPP
8 #define SMPI_PROCESS_HPP
9
10 #include "private.hpp"
11 #include "simgrid/s4u/Mailbox.hpp"
12 #include "src/instr/instr_smpi.hpp"
13 #include "xbt/synchro.h"
14
15 namespace simgrid{
16 namespace smpi{
17
18 class Process {
19   private:
20     double simulated_ = 0 /* Used to time with simulated_start/elapsed */;
21     int* argc_        = nullptr;
22     char*** argv_     = nullptr;
23     simgrid::s4u::MailboxPtr mailbox_;
24     simgrid::s4u::MailboxPtr mailbox_small_;
25     xbt_mutex_t mailboxes_mutex_;
26     xbt_os_timer_t timer_;
27     MPI_Comm comm_self_   = MPI_COMM_NULL;
28     MPI_Comm comm_intra_  = MPI_COMM_NULL;
29     MPI_Comm* comm_world_ = nullptr;
30     void* data_           = nullptr; /* user data */
31     int index_            = MPI_UNDEFINED;
32     char state_;
33     int sampling_                   = 0; /* inside an SMPI_SAMPLE_ block? */
34     char* instance_id_              = nullptr;
35     bool replaying_                 = false; /* is the process replaying a trace */
36     msg_bar_t finalization_barrier_;
37     int return_value_ = 0;
38     smpi_trace_call_location_t trace_call_loc_;
39     smx_actor_t process_ = nullptr;
40 #if HAVE_PAPI
41   /** Contains hardware data as read by PAPI **/
42     int papi_event_set_;
43     papi_counter_t papi_counter_data_;
44 #endif
45   public:
46     explicit Process(int index, msg_bar_t barrier);
47     void set_data(int index, int* argc, char*** argv);
48     void finalize();
49     int finalized();
50     int initialized();
51     void mark_as_initialized();
52     void set_replaying(bool value);
53     bool replaying();
54     void set_user_data(void *data);
55     void *get_user_data();
56     smpi_trace_call_location_t* call_location();
57     int index();
58     MPI_Comm comm_world();
59     smx_mailbox_t mailbox();
60     smx_mailbox_t mailbox_small();
61     xbt_mutex_t mailboxes_mutex();
62 #if HAVE_PAPI
63     int papi_event_set();
64     papi_counter_t& papi_counters();
65 #endif
66     xbt_os_timer_t timer();
67     void simulated_start();
68     double simulated_elapsed();
69     MPI_Comm comm_self();
70     MPI_Comm comm_intra();
71     void set_comm_intra(MPI_Comm comm);
72     void set_sampling(int s);
73     int sampling();
74     msg_bar_t finalization_barrier();
75     int return_value();
76     void set_return_value(int val);
77     static void init(int *argc, char ***argv);
78     smx_actor_t process();
79 };
80
81
82 }
83 }
84
85 #endif