X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e529dabba2ed93090ca2255c507a6734e05b833d..12ef73b3c1b6ef7bb9f2cf8031edf5e99e6c27a1:/src/bindings/python/simgrid_python.cpp diff --git a/src/bindings/python/simgrid_python.cpp b/src/bindings/python/simgrid_python.cpp index 4458bd79d8..f71d652224 100644 --- a/src/bindings/python/simgrid_python.cpp +++ b/src/bindings/python/simgrid_python.cpp @@ -11,7 +11,6 @@ #include "simgrid/kernel/ProfileBuilder.hpp" #include "simgrid/kernel/routing/NetPoint.hpp" #include -#include #include #include #include @@ -25,6 +24,7 @@ #include #include #include +#include #include #include @@ -33,14 +33,14 @@ #include namespace py = pybind11; -using simgrid::plugins::CommOp; -using simgrid::plugins::CommOpPtr; -using simgrid::plugins::ExecOp; -using simgrid::plugins::ExecOpPtr; -using simgrid::plugins::IoOp; -using simgrid::plugins::IoOpPtr; -using simgrid::plugins::Operation; -using simgrid::plugins::OperationPtr; +using simgrid::s4u::CommTask; +using simgrid::s4u::CommTaskPtr; +using simgrid::s4u::ExecTask; +using simgrid::s4u::ExecTaskPtr; +using simgrid::s4u::IoTask; +using simgrid::s4u::IoTaskPtr; +using simgrid::s4u::Task; +using simgrid::s4u::TaskPtr; using simgrid::s4u::Actor; using simgrid::s4u::ActorPtr; using simgrid::s4u::Barrier; @@ -324,7 +324,7 @@ PYBIND11_MODULE(simgrid, m) .def_property_readonly("name", &simgrid::s4u::NetZone::get_name, "The name of this network zone (read-only property).") .def( - "__repr__", [](const simgrid::s4u::NetZone net) { return ""; }, + "__repr__", [](const simgrid::s4u::NetZone net) { return "NetZone(" + net.get_name() + ")"; }, "Textual representation of the NetZone"); /* Class ClusterCallbacks */ @@ -475,7 +475,7 @@ PYBIND11_MODULE(simgrid, m) }, "") .def( - "__repr__", [](const Host* h) { return "get_name() + ">"; }, + "__repr__", [](const Host* h) { return "Host(" + h->get_name() + ")"; }, "Textual representation of the Host"); py::enum_(host, "SharingPolicy") @@ -500,7 +500,7 @@ PYBIND11_MODULE(simgrid, m) .def("seal", &simgrid::s4u::Disk::seal, py::call_guard(), "Seal this disk") .def_property_readonly("name", &simgrid::s4u::Disk::get_name, "The name of this disk (read-only property).") .def( - "__repr__", [](const Disk* d) { return "get_name() + ">"; }, + "__repr__", [](const Disk* d) { return "Disk(" + d->get_name() + ")"; }, "Textual representation of the Disk"); py::enum_(disk, "SharingPolicy") .value("NONLINEAR", simgrid::s4u::Disk::SharingPolicy::NONLINEAR) @@ -599,7 +599,7 @@ PYBIND11_MODULE(simgrid, m) "The bandwidth (in bytes per second) (read-only property).") .def_property_readonly("latency", &Link::get_latency, "The latency (in seconds) (read-only property).") .def( - "__repr__", [](const Link* l) { return "get_name() + ">"; }, + "__repr__", [](const Link* l) { return "Link(" + l->get_name() + ")"; }, "Textual representation of the Link"); py::enum_(link, "SharingPolicy") .value("NONLINEAR", Link::SharingPolicy::NONLINEAR) @@ -643,7 +643,7 @@ PYBIND11_MODULE(simgrid, m) py::class_>( m, "Mailbox", "Mailbox. See the C++ documentation for details.") .def( - "__repr__", [](const Mailbox* self) { return "get_name() + ">"; }, + "__repr__", [](const Mailbox* self) { return "Mailbox(" + self->get_name() + ")"; }, "Textual representation of the Mailbox") .def_static("by_name", &Mailbox::by_name, py::call_guard(), py::arg("name"), "Retrieve a Mailbox from its name") @@ -911,7 +911,7 @@ PYBIND11_MODULE(simgrid, m) .def_static("kill_all", &Actor::kill_all, py::call_guard(), "Kill all actors but the caller.") .def( - "__repr__", [](const ActorPtr a) { return "get_name() + ">"; }, + "__repr__", [](const ActorPtr a) { return "Actor(" + a->get_name() + ")"; }, "Textual representation of the Actor"); /* Enum Class IoOpType */ @@ -919,92 +919,89 @@ PYBIND11_MODULE(simgrid, m) .value("READ", simgrid::s4u::Io::OpType::READ) .value("WRITE", simgrid::s4u::Io::OpType::WRITE); - /* Class Operation */ - py::class_(m, "Operation", "Operation. See the C++ documentation for details.") - .def_static("init", &Operation::init) + /* Class Task */ + py::class_(m, "Task", "Task. See the C++ documentation for details.") .def_static( "on_start_cb", [](py::object cb) { cb.inc_ref(); // keep alive after return const py::gil_scoped_release gil_release; - Operation::on_start_cb([cb](Operation* op) { + Task::on_start_cb([cb_p = cb.ptr()](Task* op) { const py::gil_scoped_acquire py_context; // need a new context for callback - py::reinterpret_borrow(cb.ptr())(op); + py::reinterpret_borrow(cb_p)(op); }); }, - "Add a callback called when each operation starts.") + "Add a callback called when each task starts.") .def_static( - "on_end_cb", + "on_completion_cb", [](py::object cb) { cb.inc_ref(); // keep alive after return const py::gil_scoped_release gil_release; - Operation::on_end_cb([cb](Operation* op) { + Task::on_completion_cb([cb_p = cb.ptr()](Task* op) { const py::gil_scoped_acquire py_context; // need a new context for callback - py::reinterpret_borrow(cb.ptr())(op); + py::reinterpret_borrow(cb_p)(op); }); }, - "Add a callback called when each operation ends.") - .def_property_readonly("name", &Operation::get_name, "The name of this operation (read-only).") - .def_property_readonly("count", &Operation::get_count, "The execution count of this operation (read-only).") - .def_property_readonly("successors", &Operation::get_successors, "The successors of this operation (read-only).") - .def_property("amount", &Operation::get_amount, &Operation::set_amount, - "The amount of work to do for this operation.") - .def("enqueue_execs", py::overload_cast(&Operation::enqueue_execs), py::call_guard(), - py::arg("n"), "Enqueue executions for this operation.") - .def("add_successor", py::overload_cast(&Operation::add_successor), - py::call_guard(), py::arg("op"), "Add a successor to this operation.") - .def("remove_successor", py::overload_cast(&Operation::remove_successor), - py::call_guard(), py::arg("op"), "Remove a successor of this operation.") - .def("remove_all_successors", &Operation::remove_all_successors, py::call_guard(), - "Remove all successors of this operation.") - .def("on_this_start", py::overload_cast&>(&Operation::on_this_start), - py::arg("func"), "Add a callback called when this operation starts.") - .def("on_this_end", py::overload_cast&>(&Operation::on_this_end), - py::arg("func"), "Add a callback called when this operation ends.") + "Add a callback called when each task ends.") + .def_property_readonly("name", &Task::get_name, "The name of this task (read-only).") + .def_property_readonly("count", &Task::get_count, "The execution count of this task (read-only).") + .def_property_readonly("successors", &Task::get_successors, "The successors of this task (read-only).") + .def_property("amount", &Task::get_amount, &Task::set_amount, "The amount of work to do for this task.") + .def("enqueue_firings", py::overload_cast(&Task::enqueue_firings), py::call_guard(), + py::arg("n"), "Enqueue firings for this task.") + .def("add_successor", py::overload_cast(&Task::add_successor), py::call_guard(), + py::arg("op"), "Add a successor to this task.") + .def("remove_successor", py::overload_cast(&Task::remove_successor), + py::call_guard(), py::arg("op"), "Remove a successor of this task.") + .def("remove_all_successors", &Task::remove_all_successors, py::call_guard(), + "Remove all successors of this task.") + .def("on_this_start_cb", py::overload_cast&>(&Task::on_this_start_cb), + py::arg("func"), "Add a callback called when this task starts.") + .def("on_this_completion_cb", py::overload_cast&>(&Task::on_this_completion_cb), + py::arg("func"), "Add a callback called when this task ends.") .def( - "__repr__", [](const OperationPtr op) { return "get_name() + ">"; }, - "Textual representation of the Operation"); - - /* Class CommOp */ - py::class_(m, "CommOp", - "Communication Operation. See the C++ documentation for details.") - .def_static("init", py::overload_cast(&CommOp::init), - py::call_guard(), py::arg("name"), "CommOp constructor") - .def_static("init", py::overload_cast(&CommOp::init), + "__repr__", [](const TaskPtr op) { return "Task(" + op->get_name() + ")"; }, + "Textual representation of the Task"); + + /* Class CommTask */ + py::class_(m, "CommTask", "Communication Task. See the C++ documentation for details.") + .def_static("init", py::overload_cast(&CommTask::init), + py::call_guard(), py::arg("name"), "CommTask constructor") + .def_static("init", py::overload_cast(&CommTask::init), py::call_guard(), py::arg("name"), py::arg("bytes"), py::arg("source"), - py::arg("destination"), "CommOp constructor") - .def_property("source", &CommOp::get_source, &CommOp::set_source, "The source of the communication.") - .def_property("destination", &CommOp::get_destination, &CommOp::set_destination, + py::arg("destination"), "CommTask constructor") + .def_property("source", &CommTask::get_source, &CommTask::set_source, "The source of the communication.") + .def_property("destination", &CommTask::get_destination, &CommTask::set_destination, "The destination of the communication.") - .def_property("bytes", &CommOp::get_bytes, &CommOp::set_bytes, "The amount of bytes to send.") + .def_property("bytes", &CommTask::get_bytes, &CommTask::set_bytes, "The amount of bytes to send.") .def( - "__repr__", [](const CommOpPtr c) { return "get_name() + ">"; }, - "Textual representation of the CommOp"); - - /* Class ExecOp */ - py::class_(m, "ExecOp", "Execution Operation. See the C++ documentation for details.") - .def_static("init", py::overload_cast(&ExecOp::init), - py::call_guard(), py::arg("name"), "ExecOp constructor") - .def_static("init", py::overload_cast(&ExecOp::init), + "__repr__", [](const CommTaskPtr c) { return "CommTask(" + c->get_name() + ")"; }, + "Textual representation of the CommTask"); + + /* Class ExecTask */ + py::class_(m, "ExecTask", "Execution Task. See the C++ documentation for details.") + .def_static("init", py::overload_cast(&ExecTask::init), + py::call_guard(), py::arg("name"), "ExecTask constructor") + .def_static("init", py::overload_cast(&ExecTask::init), py::call_guard(), py::arg("name"), py::arg("flops"), py::arg("host"), - "CommOp constructor.") - .def_property("host", &ExecOp::get_host, &ExecOp::set_host, "The host of the execution.") - .def_property("flops", &ExecOp::get_flops, &ExecOp::set_flops, "The amount of flops to execute.") + "CommTask constructor.") + .def_property("host", &ExecTask::get_host, &ExecTask::set_host, "The host of the execution.") + .def_property("flops", &ExecTask::get_flops, &ExecTask::set_flops, "The amount of flops to execute.") .def( - "__repr__", [](const ExecOpPtr e) { return "get_name() + ">"; }, - "Textual representation of the ExecOp"); - - /* Class IoOp */ - py::class_(m, "IoOp", "IO Operation. See the C++ documentation for details.") - .def_static("init", py::overload_cast(&IoOp::init), py::call_guard(), - py::arg("name"), "IoOp constructor") - .def_static("init", py::overload_cast(&IoOp::init), + "__repr__", [](const ExecTaskPtr e) { return "ExecTask(" + e->get_name() + ")"; }, + "Textual representation of the ExecTask"); + + /* Class IoTask */ + py::class_(m, "IoTask", "IO Task. See the C++ documentation for details.") + .def_static("init", py::overload_cast(&IoTask::init), + py::call_guard(), py::arg("name"), "IoTask constructor") + .def_static("init", py::overload_cast(&IoTask::init), py::call_guard(), py::arg("name"), py::arg("bytes"), py::arg("disk"), - py::arg("type"), "IoOp constructor.") - .def_property("disk", &IoOp::get_disk, &IoOp::set_disk, "The disk of the IO.") - .def_property("bytes", &IoOp::get_bytes, &IoOp::set_bytes, "The amount of bytes to process.") - .def_property("type", &IoOp::get_bytes, &IoOp::set_bytes, "The type of IO.") + py::arg("type"), "IoTask constructor.") + .def_property("disk", &IoTask::get_disk, &IoTask::set_disk, "The disk of the IO.") + .def_property("bytes", &IoTask::get_bytes, &IoTask::set_bytes, "The amount of bytes to process.") + .def_property("type", &IoTask::get_bytes, &IoTask::set_bytes, "The type of IO.") .def( - "__repr__", [](const IoOpPtr io) { return "get_name() + ">"; }, - "Textual representation of the IoOp"); + "__repr__", [](const IoTaskPtr io) { return "IoTask(" + io->get_name() + ")"; }, + "Textual representation of the IoTask"); }