Prusa Slicer 2.6.0
Loading...
Searching...
No Matches
Slic3r::UdpSocket Class Referenceabstract

#include <src/slic3r/Utils/Bonjour.hpp>

+ Inheritance diagram for Slic3r::UdpSocket:
+ Collaboration diagram for Slic3r::UdpSocket:

Public Member Functions

 UdpSocket (Bonjour::ReplyFn replyfn, const boost::asio::ip::address &multicast_address, const boost::asio::ip::address &interface_address, std::shared_ptr< boost::asio::io_service > io_service)
 
 UdpSocket (Bonjour::ReplyFn replyfn, const boost::asio::ip::address &multicast_address, std::shared_ptr< boost::asio::io_service > io_service)
 
void send ()
 
void async_receive ()
 
void cancel ()
 

Protected Member Functions

void receive_handler (SharedSession session, const boost::system::error_code &error, size_t bytes)
 
virtual SharedSession create_session () const =0
 

Protected Attributes

Bonjour::ReplyFn replyfn
 
boost::asio::ip::address multicast_address
 
boost::asio::ip::udp::socket socket
 
boost::asio::ip::udp::endpoint mcast_endpoint
 
std::shared_ptr< boost::asio::io_service > io_service
 
std::vector< BonjourRequestrequests
 

Detailed Description

Constructor & Destructor Documentation

◆ UdpSocket() [1/2]

Slic3r::UdpSocket::UdpSocket ( Bonjour::ReplyFn  replyfn,
const boost::asio::ip::address &  multicast_address,
const boost::asio::ip::address &  interface_address,
std::shared_ptr< boost::asio::io_service >  io_service 
)

◆ UdpSocket() [2/2]

Slic3r::UdpSocket::UdpSocket ( Bonjour::ReplyFn  replyfn,
const boost::asio::ip::address &  multicast_address,
std::shared_ptr< boost::asio::io_service >  io_service 
)

Member Function Documentation

◆ async_receive()

void Slic3r::UdpSocket::async_receive ( )
695{
696 try {
697 // our session to hold the buffer + endpoint
698 auto session = create_session();
699 socket.async_receive_from(asio::buffer(session->buffer, session->buffer.size())
700 , session->remote_endpoint
701 , boost::bind(&UdpSocket::receive_handler, this, session, asio::placeholders::error, asio::placeholders::bytes_transferred));
702 }
703 catch (std::exception& e) {
704 BOOST_LOG_TRIVIAL(error) << e.what();
705 }
706}
void receive_handler(SharedSession session, const boost::system::error_code &error, size_t bytes)
Definition Bonjour.cpp:708
boost::asio::ip::udp::socket socket
Definition Bonjour.hpp:169
virtual SharedSession create_session() const =0
static char error[256]
Definition tga.cpp:50

References create_session(), error, receive_handler(), and socket.

Referenced by receive_handler(), and send().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ cancel()

void Slic3r::UdpSocket::cancel ( )
inline
162{ socket.cancel(); }

References socket.

◆ create_session()

virtual SharedSession Slic3r::UdpSocket::create_session ( ) const
protectedpure virtual

Implemented in Slic3r::LookupSocket, and Slic3r::ResolveSocket.

Referenced by async_receive().

+ Here is the caller graph for this function:

◆ receive_handler()

void Slic3r::UdpSocket::receive_handler ( SharedSession  session,
const boost::system::error_code &  error,
size_t  bytes 
)
protected
709{
710 // let io_service to handle the datagram on session
711 // from boost documentation io_service::post:
712 // The io_service guarantees that the handler will only be called in a thread in which the run(), run_one(), poll() or poll_one() member functions is currently being invoked.
713 io_service->post(boost::bind(&UdpSession::handle_receive, session, error, bytes));
714 // immediately accept new datagrams
716}
virtual void handle_receive(const boost::system::error_code &error, size_t bytes)=0
void async_receive()
Definition Bonjour.cpp:694
std::shared_ptr< boost::asio::io_service > io_service
Definition Bonjour.hpp:171

References async_receive(), error, Slic3r::UdpSession::handle_receive(), and io_service.

Referenced by async_receive().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ send()

void Slic3r::UdpSocket::send ( )
681{
682 try {
683 for (const auto& request : requests)
684 socket.send_to(asio::buffer(request.m_data), mcast_endpoint);
685
686 // Should we care if this is called while already receiving? (async_receive call from receive_handler)
688 }
689 catch (std::exception& e) {
690 BOOST_LOG_TRIVIAL(error) << e.what();
691 }
692}
boost::asio::ip::udp::endpoint mcast_endpoint
Definition Bonjour.hpp:170
std::vector< BonjourRequest > requests
Definition Bonjour.hpp:172

References async_receive(), error, mcast_endpoint, requests, and socket.

+ Here is the call graph for this function:

Member Data Documentation

◆ io_service

std::shared_ptr< boost::asio::io_service > Slic3r::UdpSocket::io_service
protected

Referenced by receive_handler().

◆ mcast_endpoint

boost::asio::ip::udp::endpoint Slic3r::UdpSocket::mcast_endpoint
protected

Referenced by send().

◆ multicast_address

boost::asio::ip::address Slic3r::UdpSocket::multicast_address
protected

◆ replyfn

◆ requests

std::vector<BonjourRequest> Slic3r::UdpSocket::requests
protected

◆ socket

boost::asio::ip::udp::socket Slic3r::UdpSocket::socket
protected

Referenced by async_receive(), cancel(), and send().


The documentation for this class was generated from the following files: