Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
explicitely capture variables in lambda to please sonar
[simgrid.git] / src / s4u / s4u_storage.cpp
1 /* Copyright (c) 2006-2015. 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 #include "simgrid/s4u/storage.hpp"
8
9 #include "xbt/lib.h"
10 extern xbt_lib_t storage_lib;
11
12 namespace simgrid {
13 namespace s4u {
14
15 boost::unordered_map <std::string, Storage *> *Storage::storages_ = new boost::unordered_map<std::string, Storage*> ();
16 Storage::Storage(std::string name, smx_storage_t inferior) :
17     name_(name), pimpl_(inferior)
18 {
19   storages_->insert({name, this});
20 }
21
22 Storage::~Storage() = default;
23
24 smx_storage_t Storage::inferior() {
25   return pimpl_;
26 }
27 Storage &Storage::byName(const char*name) {
28   s4u::Storage *res = nullptr;
29   try {
30     res = storages_->at(name);
31   } catch (std::out_of_range& e) {
32     smx_storage_t inferior = xbt_lib_get_elm_or_null(storage_lib,name);
33     if (inferior == nullptr)
34       xbt_die("Storage %s does not exist. Please only use the storages that are defined in your platform.", name);
35
36     res = new Storage(name,inferior);
37   }
38   return *res;
39 }
40
41 const char*Storage::name() {
42   return name_.c_str();
43 }
44
45 sg_size_t Storage::sizeFree() {
46   return simcall_storage_get_free_size(pimpl_);
47 }
48 sg_size_t Storage::sizeUsed() {
49   return simcall_storage_get_used_size(pimpl_);
50 }
51 sg_size_t Storage::size() {
52   return SIMIX_storage_get_size(pimpl_);
53 }
54
55 } /* namespace s4u */
56 } /* namespace simgrid */