Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
dc7dd35160d3c4b960003a3571d77f9093d7a832
[simgrid.git] / src / smpi / include / smpi_keyvals.hpp
1 /* Copyright (c) 2010-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 SMPI_KEYVALS_HPP_INCLUDED
7 #define SMPI_KEYVALS_HPP_INCLUDED
8
9 #include "smpi/smpi.h"
10
11 #include <unordered_map>
12
13 struct smpi_delete_fn {
14   MPI_Comm_delete_attr_function          *comm_delete_fn;
15   MPI_Type_delete_attr_function          *type_delete_fn;
16   MPI_Win_delete_attr_function           *win_delete_fn;
17   MPI_Comm_delete_attr_function_fort     *comm_delete_fn_fort;
18   MPI_Type_delete_attr_function_fort     *type_delete_fn_fort;
19   MPI_Win_delete_attr_function_fort      *win_delete_fn_fort;
20 };
21
22 struct smpi_copy_fn {
23   MPI_Comm_copy_attr_function          *comm_copy_fn;
24   MPI_Type_copy_attr_function          *type_copy_fn;
25   MPI_Win_copy_attr_function           *win_copy_fn;
26   MPI_Comm_copy_attr_function_fort     *comm_copy_fn_fort;
27   MPI_Type_copy_attr_function_fort     *type_copy_fn_fort;
28   MPI_Win_copy_attr_function_fort      *win_copy_fn_fort;
29 };
30
31 struct s_smpi_key_elem_t {
32   smpi_copy_fn copy_fn;
33   smpi_delete_fn delete_fn;
34   void* extra_state;
35   int refcount;
36 };
37
38 typedef s_smpi_key_elem_t* smpi_key_elem;
39
40 namespace simgrid{
41 namespace smpi{
42
43 class Keyval{
44   private:
45     std::unordered_map<int, void*> attributes_;
46   protected:
47     std::unordered_map<int, void*>* attributes();
48   public:
49 // Each subclass should have two members, as we want to separate the ones for Win, Comm, and Datatypes :
50 //    static std::unordered_map<int, smpi_key_elem> keyvals_;
51 //    static int keyval_id_;
52     template <typename T>
53     static int keyval_create(const smpi_copy_fn& copy_fn, const smpi_delete_fn& delete_fn, int* keyval,
54                              void* extra_state);
55     template <typename T> static int keyval_free(int* keyval);
56     template <typename T> int attr_delete(int keyval);
57     template <typename T> int attr_get(int keyval, void* attr_value, int* flag);
58     template <typename T> int attr_put(int keyval, void* attr_value);
59     template <typename T> static int call_deleter(T* obj, smpi_key_elem elem, int keyval, void * value, int* flag);
60     template <typename T> void cleanup_attr();
61 };
62
63 template <typename T>
64 int Keyval::keyval_create(const smpi_copy_fn& copy_fn, const smpi_delete_fn& delete_fn, int* keyval, void* extra_state)
65 {
66   smpi_key_elem value = new s_smpi_key_elem_t;
67
68   value->copy_fn=copy_fn;
69   value->delete_fn=delete_fn;
70   value->extra_state=extra_state;
71   value->refcount=1;
72
73   *keyval = T::keyval_id_;
74   T::keyvals_.insert({*keyval, value});
75   T::keyval_id_++;
76   return MPI_SUCCESS;
77 }
78
79 template <typename T> int Keyval::keyval_free(int* keyval){
80 /* See MPI-1, 5.7.1.  Freeing the keyval does not remove it if it
81          * is in use in an attribute */
82   smpi_key_elem elem = T::keyvals_.at(*keyval);
83   if(elem==0){
84     return MPI_ERR_ARG;
85   }
86   if(elem->refcount==1){
87     T::keyvals_.erase(*keyval);
88     delete elem;
89   }else{
90     elem->refcount--;
91   }
92   return MPI_SUCCESS;
93 }
94
95 template <typename T> int Keyval::attr_delete(int keyval){
96   smpi_key_elem elem = T::keyvals_.at(keyval);
97   if(elem==nullptr)
98     return MPI_ERR_ARG;
99   elem->refcount--;
100   void * value = nullptr;
101   int flag=0;
102   if(this->attr_get<T>(keyval, &value, &flag)==MPI_SUCCESS){
103     int ret = call_deleter<T>((T*)this, elem, keyval,value,&flag);
104     if(ret!=MPI_SUCCESS)
105         return ret;
106   }
107   if(attributes()->empty())
108     return MPI_ERR_ARG;
109   attributes()->erase(keyval);
110   return MPI_SUCCESS;
111 }
112
113
114 template <typename T> int Keyval::attr_get(int keyval, void* attr_value, int* flag){
115   smpi_key_elem elem = T::keyvals_.at(keyval);
116   if(elem==nullptr)
117     return MPI_ERR_ARG;
118   if(attributes()->empty()){
119     *flag=0;
120     return MPI_SUCCESS;
121   }
122   const auto& attribs = attributes();
123   auto attr           = attribs->find(keyval);
124   if (attr != attribs->end()) {
125     *static_cast<void**>(attr_value) = attr->second;
126     *flag=1;
127   } else {
128     *flag=0;
129   }
130   return MPI_SUCCESS;
131 }
132
133 template <typename T> int Keyval::attr_put(int keyval, void* attr_value){
134   smpi_key_elem elem = T::keyvals_.at(keyval);
135   if(elem==nullptr)
136     return MPI_ERR_ARG;
137   elem->refcount++;
138   int flag=0;
139   auto p = attributes()->insert({keyval, attr_value});
140   if (!p.second) {
141     int ret = call_deleter<T>((T*)this, elem, keyval,p.first->second,&flag);
142     // overwrite previous value
143     p.first->second = attr_value;
144     if(ret!=MPI_SUCCESS)
145       return ret;
146   }
147   return MPI_SUCCESS;
148 }
149
150 template <typename T> void Keyval::cleanup_attr(){
151   if (not attributes()->empty()) {
152     int flag=0;
153     for (auto const& it : attributes_) {
154       auto elm = T::keyvals_.find(it.first);
155       if (elm != T::keyvals_.end()) {
156         smpi_key_elem elem = elm->second;
157         if(elem != nullptr){
158           call_deleter<T>((T*)this, elem, it.first,it.second,&flag);
159         }
160       } else {
161         //already deleted, not a problem;
162         flag=0;
163       }
164     }
165   }
166 }
167
168 }
169 }
170
171 #endif