X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/befbbbe1fbb31663a8f91e24ce12df271cf4ae79..bcb5cde966bef9e174da1c93cdb2158c0880a613:/src/surf/StorageImpl.cpp diff --git a/src/surf/StorageImpl.cpp b/src/surf/StorageImpl.cpp index aea1e2602a..8faa657e2b 100644 --- a/src/surf/StorageImpl.cpp +++ b/src/surf/StorageImpl.cpp @@ -64,11 +64,10 @@ StorageImpl::StorageImpl(Model* model, const char* name, lmm_system_t maxminSyst , piface_(this) , size_(size) , usedSize_(0) - , typeId_(xbt_strdup(type_id)) - , writeActions_(std::vector()) + , typeId_(type_id) + , attach_(attach) { 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); @@ -79,22 +78,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); @@ -109,9 +103,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; @@ -144,7 +136,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_;