X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fd7651841882fc2795ff07da448a240dbdc90220..d6a677eea07bbb917ebf8aef3d281f37049c5254:/src/surf/StorageImpl.cpp diff --git a/src/surf/StorageImpl.cpp b/src/surf/StorageImpl.cpp index e4b801e6cf..95c0ffe301 100644 --- a/src/surf/StorageImpl.cpp +++ b/src/surf/StorageImpl.cpp @@ -14,8 +14,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_storage, surf, "Logging specific to the SURF storage module"); -xbt_lib_t storage_lib; -int SURF_STORAGE_LEVEL = -1; simgrid::surf::StorageModel* surf_storage_model = nullptr; namespace simgrid { @@ -66,11 +64,11 @@ StorageImpl::StorageImpl(Model* model, const char* name, lmm_system_t maxminSyst , piface_(this) , size_(size) , usedSize_(0) - , typeId_(xbt_strdup(type_id)) + , typeId_(type_id) + , attach_(attach) , writeActions_(std::vector()) { content_ = parseContent(content_name); - attach_ = xbt_strdup(attach); turnOn(); XBT_DEBUG("Create resource with Bread '%f' Bwrite '%f' and Size '%llu'", bread, bwrite, size); constraintRead_ = lmm_constraint_new(maxminSystem, this, bread); @@ -81,22 +79,17 @@ StorageImpl::StorageImpl(Model* model, const char* name, lmm_system_t maxminSyst StorageImpl::~StorageImpl() { storageDestructedCallbacks(this); - if (content_ != nullptr) { - for (auto entry : *content_) - delete entry.second; + if (content_ != nullptr) delete content_; - } - free(typeId_); - free(attach_); } -std::map* StorageImpl::parseContent(const char* filename) +std::map* StorageImpl::parseContent(const char* filename) { usedSize_ = 0; if ((not filename) || (strcmp(filename, "") == 0)) return nullptr; - std::map* parse_content = new std::map(); + std::map* parse_content = new std::map(); std::ifstream* fs = surf_ifsopen(filename); @@ -111,9 +104,7 @@ std::map* StorageImpl::parseContent(const char* filenam sg_size_t size = std::stoull(tokens.at(1)); usedSize_ += size; - sg_size_t* psize = new sg_size_t; - *psize = size; - parse_content->insert({tokens.front(), psize}); + parse_content->insert({tokens.front(), size}); } } while (not fs->eof()); delete fs; @@ -146,7 +137,7 @@ void StorageImpl::turnOff() } } -std::map* StorageImpl::getContent() +std::map* StorageImpl::getContent() { /* For the moment this action has no cost, but in the future we could take in account access latency of the disk */ return content_;