Prusa Slicer 2.6.0
Loading...
Searching...
No Matches
Slic3r::ResolveSocket Class Reference

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

+ Inheritance diagram for Slic3r::ResolveSocket:
+ Collaboration diagram for Slic3r::ResolveSocket:

Public Member Functions

 ResolveSocket (const std::string &hostname, 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)
 
 ResolveSocket (const std::string &hostname, Bonjour::ReplyFn replyfn, const boost::asio::ip::address &multicast_address, std::shared_ptr< boost::asio::io_service > io_service)
 
std::string get_hostname () const
 
void send ()
 
void async_receive ()
 
void cancel ()
 

Protected Member Functions

SharedSession create_session () const override
 
void create_requests ()
 
void receive_handler (SharedSession session, const boost::system::error_code &error, size_t bytes)
 

Protected Attributes

std::string hostname
 
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

◆ ResolveSocket() [1/2]

Slic3r::ResolveSocket::ResolveSocket ( const std::string &  hostname,
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 
)
inline
241 : UdpSocket(replyfn, multicast_address, interface_address, io_service)
243
244 {
245 assert(!hostname.empty() && replyfn);
247 }
std::string hostname
Definition Bonjour.hpp:282
void create_requests()
Definition Bonjour.hpp:264
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)
Bonjour::ReplyFn replyfn
Definition Bonjour.hpp:167
boost::asio::ip::address multicast_address
Definition Bonjour.hpp:168
std::shared_ptr< boost::asio::io_service > io_service
Definition Bonjour.hpp:171

References create_requests(), hostname, and Slic3r::UdpSocket::replyfn.

+ Here is the call graph for this function:

◆ ResolveSocket() [2/2]

Slic3r::ResolveSocket::ResolveSocket ( const std::string &  hostname,
Bonjour::ReplyFn  replyfn,
const boost::asio::ip::address &  multicast_address,
std::shared_ptr< boost::asio::io_service >  io_service 
)
inline
255
256 {
257 assert(!hostname.empty() && replyfn);
259 }

References create_requests(), hostname, and Slic3r::UdpSocket::replyfn.

+ Here is the call graph for this function:

Member Function Documentation

◆ async_receive()

void Slic3r::UdpSocket::async_receive ( )
inherited
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 Slic3r::UdpSocket::create_session(), error, Slic3r::UdpSocket::receive_handler(), and Slic3r::UdpSocket::socket.

Referenced by Slic3r::UdpSocket::receive_handler(), and Slic3r::UdpSocket::send().

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

◆ cancel()

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

References Slic3r::UdpSocket::socket.

◆ create_requests()

void Slic3r::ResolveSocket::create_requests ( )
inlineprotected
265 {
266 requests.clear();
267 // BonjourRequest::make_A / AAAA is now implemented to add .local correctly after the hostname.
268 // If that is unsufficient, we need to change make_A / AAAA and pass full hostname.
269 std::string trimmed_hostname = hostname;
270 if (size_t dot_pos = trimmed_hostname.find_first_of('.'); dot_pos != std::string::npos)
271 trimmed_hostname = trimmed_hostname.substr(0, dot_pos);
272 if (auto rqst = BonjourRequest::make_A(trimmed_hostname); rqst)
273 requests.push_back(std::move(rqst.get()));
274
275 trimmed_hostname = hostname;
276 if (size_t dot_pos = trimmed_hostname.find_first_of('.'); dot_pos != std::string::npos)
277 trimmed_hostname = trimmed_hostname.substr(0, dot_pos);
278 if (auto rqst = BonjourRequest::make_AAAA(trimmed_hostname); rqst)
279 requests.push_back(std::move(rqst.get()));
280 }
std::vector< BonjourRequest > requests
Definition Bonjour.hpp:172
static boost::optional< BonjourRequest > make_A(const std::string &hostname)
Definition Bonjour.cpp:532
static boost::optional< BonjourRequest > make_AAAA(const std::string &hostname)
Definition Bonjour.cpp:567

References hostname, Slic3r::BonjourRequest::make_A(), Slic3r::BonjourRequest::make_AAAA(), and Slic3r::UdpSocket::requests.

Referenced by ResolveSocket(), and ResolveSocket().

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

◆ create_session()

SharedSession Slic3r::ResolveSocket::create_session ( ) const
overrideprotectedvirtual

Implements Slic3r::UdpSocket.

769{
770 return std::shared_ptr< ResolveSession > (new ResolveSession(this, replyfn));
771}

References Slic3r::UdpSocket::replyfn.

◆ get_hostname()

std::string Slic3r::ResolveSocket::get_hostname ( ) const
inline
261{ return hostname; }

References hostname.

Referenced by Slic3r::ResolveSession::handle_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 
)
protectedinherited
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

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

Referenced by Slic3r::UdpSocket::async_receive().

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

◆ send()

void Slic3r::UdpSocket::send ( )
inherited
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

References Slic3r::UdpSocket::async_receive(), error, Slic3r::UdpSocket::mcast_endpoint, Slic3r::UdpSocket::requests, and Slic3r::UdpSocket::socket.

+ Here is the call graph for this function:

Member Data Documentation

◆ hostname

std::string Slic3r::ResolveSocket::hostname
protected

◆ io_service

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

◆ mcast_endpoint

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

Referenced by Slic3r::UdpSocket::send().

◆ multicast_address

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

◆ replyfn

◆ requests

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

◆ socket

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

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