Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid
[simgrid.git] / src / smpi / mpi / smpi_info.cpp
1 /* Copyright (c) 2007-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 #include "smpi_info.hpp"
7 #include "simgrid/Exception.hpp"
8
9 namespace simgrid {
10 namespace smpi {
11
12 void Info::ref()
13 {
14   refcount_++;
15 }
16
17 void Info::unref(Info* info){
18   info->refcount_--;
19   if(info->refcount_==0){
20     delete info;
21   }
22 }
23
24 int Info::get(const char *key, int valuelen, char *value, int *flag){
25   *flag=false;
26   auto val = map_.find(key);
27   if (val != map_.end()) {
28     std::string tmpvalue = val->second;
29
30     memset(value, 0, valuelen);
31     memcpy(value, tmpvalue.c_str(),
32            (tmpvalue.length() + 1 < static_cast<size_t>(valuelen)) ? tmpvalue.length() + 1 : valuelen);
33     *flag=true;
34     return MPI_SUCCESS;
35   } else {
36     return MPI_ERR_INFO_KEY;
37   }
38 }
39
40 int Info::remove(const char *key){
41   if (map_.erase(key) == 0)
42     return MPI_ERR_INFO_NOKEY;
43   else
44     return MPI_SUCCESS;
45 }
46
47 int Info::get_nkeys(int *nkeys){
48   *nkeys = map_.size();
49   return MPI_SUCCESS;
50 }
51
52 int Info::get_nthkey(int n, char *key){
53   int num=0;
54   for (auto const& elm : map_) {
55     if (num == n) {
56       strncpy(key, elm.first.c_str(), elm.first.length() + 1);
57       return MPI_SUCCESS;
58     }
59     num++;
60   }
61   return MPI_ERR_ARG;
62 }
63
64 int Info::get_valuelen(const char *key, int *valuelen, int *flag){
65   *flag=false;
66   auto val = map_.find(key);
67   if (val != map_.end()) {
68     *valuelen = val->second.length();
69     *flag=true;
70     return MPI_SUCCESS;
71   } else {
72     return MPI_ERR_INFO_KEY;
73   }
74 }
75
76 Info* Info::f2c(int id){
77   return static_cast<Info*>(F2C::f2c(id));
78 }
79
80 }
81 }