Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
116d3d58dec7cee3b7af556f67faf03a32f5ac23
[simgrid.git] / src / smpi / include / smpi_f2c.hpp
1 /* Handle Fortran - C conversion for MPI Types*/
2
3 /* Copyright (c) 2010-2020. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef SMPI_F2C_HPP_INCLUDED
10 #define SMPI_F2C_HPP_INCLUDED
11
12 #include <unordered_map>
13
14 namespace simgrid{
15 namespace smpi{
16
17 class F2C {
18 private:
19   // We use a single lookup table for every type.
20   // Beware of collisions if id in mpif.h is not unique
21   static std::unordered_map<int, F2C*>* f2c_lookup_;
22   static int f2c_id_;
23   int my_f2c_id_ = -1;
24
25 protected:
26   static void set_f2c_lookup(std::unordered_map<int, F2C*>* map) { f2c_lookup_ = map; }
27   static int f2c_id() { return f2c_id_; }
28   static void f2c_id_increment() { f2c_id_++; }
29
30 public:
31   static void delete_lookup() { delete f2c_lookup_; }
32   static std::unordered_map<int, F2C*>* lookup() { return f2c_lookup_; }
33   F2C();
34   virtual ~F2C() = default;
35
36   // Override these to handle specific values.
37   virtual int add_f();
38   static void free_f(int id) { f2c_lookup_->erase(id); }
39   virtual int c2f();
40   static void print_f2c_lookup();
41   // This method should be overridden in all subclasses to avoid casting the result when calling it.
42   // For the default one, the MPI_*_NULL returned is assumed to be NULL.
43   static F2C* f2c(int id);
44 };
45
46 }
47 }
48
49 #endif