I have the following class:

typedef std::pair<boost::asio::ip::tcp::socket, boost::asio::ip::tcp::socket>  socket_pair;

class ConnectionPair {
private:
    socket_pair _sockPair;
public:
    ConnectionPair(boost::asio::io_service &ios);
}

How do I init the sockets in the pair in the constructor ? the following won't compile:

ConnectionPair::ConnectionPair(asio::io_service &ios):
    _ios(ios),  
    _sockPair(asio::ip::tcp::socket(ios), asio::ip::tcp::socket(ios)){
}

EDIT: Here is the compiler error. Enjoy:

/boost_1_47_0/boost/asio/basic_io_object.hpp: In copy constructor ‘boost::asio::basic_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> >::basic_socket(const boost::asio::basic_socket<boost::asio::ip::tcp, boost::asio::stream_socket_service<boost::asio::ip::tcp> >&)’:

/boost_1_47_0/boost/asio/basic_socket.hpp:43:1:   instantiated from ‘std::pair<_T1, _T2>::pair(const _T1&, const _T2&) [with _T1 = boost::asio::basic_stream_socket<boost::asio::ip::tcp>, _T2 = boost::asio::basic_stream_socket<boost::asio::ip::tcp>]’
/devel/msm1/connection.cpp:8:67:   instantiated from here
/boost_1_47_0/boost/asio/basic_io_object.hpp:163:3: error: ‘boost::asio::basic_io_object<IoObjectService>::basic_io_object(const boost::asio::basic_io_object<IoObjectService>&) [with IoObjectService = boost::asio::stream_socket_service<boost::asio::ip::tcp>, boost::asio::basic_io_object<IoObjectService> = boost::asio::basic_io_object<boost::asio::stream_socket_service<boost::asio::ip::tcp> >]’ is private
/boost_1_47_0/boost/asio/basic_socket.hpp:43:1: error: within this context
In file included from /boost_1_47_0/boost/asio.hpp:30:0,
link|improve this question

3  
What is the error message? – Armen Tsirunyan Sep 23 '11 at 14:43
2  
Would you care to tell us the error? – Kerrek SB Sep 23 '11 at 14:43
error message? please – Alessandro Teruzzi Sep 23 '11 at 14:44
I added it. to the post – GabiMe Sep 23 '11 at 14:49
why your constructor is taking a reference and not a const reference? Is it on purpose? – Alessandro Teruzzi Sep 23 '11 at 14:53
show 1 more comment
feedback

3 Answers

up vote 4 down vote accepted

If the type is copy-constructible, your code would have worked. I guess (and only guess, because you didn't specify the compiler error) that a socket is not copy-constructible. Since std::pair does not allow in-place factories, you'll have to make your pair a pair of boost::optional's and use in-place factories. See the boost documentation for more details.

link|improve this answer
1  
+1. He updated his question with the error message, which makes it quite clear you are right. This has nothing to do with std::pair; the problem is that the socket object is not copyable. – Nemo Sep 23 '11 at 14:54
How do I not copy the sockets ? I tried defining the pair as a pair of socket references, but got : no matching function for call to ‘std::pair<boost::asio::basic_stream_socket<boost::asio::ip::tcp>&, boost::asio::basic_stream_socket<boost::asio::ip::tcp>&>::pair(boost::asio::ip::‌​tcp::socket, boost::asio::ip::tcp::socket)’ – GabiMe Sep 23 '11 at 14:58
As I said, declare the pair as std::pair< boost::optional<socket>, boost::optional<socket> > instead, or use a boost::ptr_array< socket >. – thiton Sep 23 '11 at 15:00
feedback

Does boost::asio::ip::tcp::socket support copy? I wouldn't expect it. And types in an std::pair must be copyable.

link|improve this answer
feedback

You can initialize the pair like you are trying to do, but you have a couple of other errors in your code.

  • No semi colon on the end of your class declaration.
  • _ios member variable does not exist.

Unfortunately I don't have boost installed, but this compiles for me using G++ 4.1.2

#include <utility>

typedef std::pair<int, int> socket_pair;

class ConnectionPair
{
private:
        socket_pair _sockPair;

public:
        ConnectionPair(const int x);
};

ConnectionPair::ConnectionPair(const int x):
        _sockPair(x, x)
{
}

int main(int argc, const char *argv[])
{
        ConnectionPair c(10);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.