X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1ed0e64dc405fbb627ff8a7d7b70ac4ff81cd489..e04e3ae8fec7cb28eef7705e4aebf2370e6fdd6a:/src/s4u/s4u_Mailbox.cpp diff --git a/src/s4u/s4u_Mailbox.cpp b/src/s4u/s4u_Mailbox.cpp index b2b60de515..0ab6de72a2 100644 --- a/src/s4u/s4u_Mailbox.cpp +++ b/src/s4u/s4u_Mailbox.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2006-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -6,6 +6,7 @@ #include "simgrid/s4u/Comm.hpp" #include "simgrid/s4u/Mailbox.hpp" #include "src/kernel/activity/MailboxImpl.hpp" + #include XBT_LOG_EXTERNAL_CATEGORY(s4u); @@ -14,7 +15,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_channel, s4u, "S4U Communication Mailboxes") namespace simgrid { namespace s4u { -const simgrid::xbt::string& Mailbox::get_name() const +const xbt::string& Mailbox::get_name() const { return pimpl_->get_name(); } @@ -24,13 +25,13 @@ const char* Mailbox::get_cname() const return pimpl_->get_cname(); } -MailboxPtr Mailbox::by_name(std::string name) +Mailbox* Mailbox::by_name(const std::string& name) { kernel::activity::MailboxImpl* mbox = kernel::activity::MailboxImpl::by_name_or_null(name); if (mbox == nullptr) { - mbox = simix::simcall([name] { return kernel::activity::MailboxImpl::by_name_or_create(name); }); + mbox = kernel::actor::simcall([&name] { return kernel::activity::MailboxImpl::by_name_or_create(name); }); } - return MailboxPtr(&mbox->piface_, true); + return &mbox->piface_; } bool Mailbox::empty() @@ -47,22 +48,22 @@ bool Mailbox::ready() { bool comm_ready = false; if (not pimpl_->comm_queue_.empty()) { - comm_ready = pimpl_->comm_queue_.front()->state_ == SIMIX_DONE; - } - if (!comm_ready && pimpl_->permanent_receiver_ && not pimpl_->done_comm_queue_.empty()) { - comm_ready = pimpl_->done_comm_queue_.front()->state_ == SIMIX_DONE; + comm_ready = pimpl_->comm_queue_.front()->state_ == kernel::activity::State::DONE; + + } else if (pimpl_->permanent_receiver_ && not pimpl_->done_comm_queue_.empty()) { + comm_ready = pimpl_->done_comm_queue_.front()->state_ == kernel::activity::State::DONE; } return comm_ready; } -smx_activity_t Mailbox::front() +kernel::activity::CommImplPtr Mailbox::front() { return pimpl_->comm_queue_.empty() ? nullptr : pimpl_->comm_queue_.front(); } void Mailbox::set_receiver(ActorPtr actor) { - simix::simcall([this, actor]() { this->pimpl_->set_receiver(actor); }); + kernel::actor::simcall([this, actor]() { this->pimpl_->set_receiver(actor); }); } /** @brief get the receiver (process associated to the mailbox) */ @@ -76,7 +77,7 @@ ActorPtr Mailbox::get_receiver() CommPtr Mailbox::put_init() { CommPtr res = CommPtr(new s4u::Comm()); - res->sender_ = SIMIX_process_self(); + res->sender_ = kernel::actor::ActorImpl::self(); res->mailbox_ = this; return res; } @@ -114,13 +115,13 @@ void Mailbox::put(void* payload, uint64_t simulated_size_in_bytes, double timeou c->set_remaining(simulated_size_in_bytes); c->set_src_data(payload); // c->start() is optional. - c->wait(timeout); + c->wait_for(timeout); } s4u::CommPtr Mailbox::get_init() { CommPtr res = CommPtr(new s4u::Comm()); - res->receiver_ = SIMIX_process_self(); + res->receiver_ = kernel::actor::ActorImpl::self(); res->mailbox_ = this; return res; } @@ -145,9 +146,14 @@ void* Mailbox::get(double timeout) void* res = nullptr; CommPtr c = get_init(); c->set_dst_data(&res, sizeof(res)); - c->wait(timeout); + c->wait_for(timeout); return res; } + +smx_activity_t Mailbox::iprobe(int type, bool (*match_fun)(void*, void*, kernel::activity::CommImpl*), void* data) +{ + return kernel::actor::simcall([this, type, match_fun, data] { return pimpl_->iprobe(type, match_fun, data); }); +} } // namespace s4u } // namespace simgrid