Files
MP-SPDZ/Networking/Receiver.cpp
2020-12-11 16:24:28 +11:00

78 lines
1.2 KiB
C++

/*
* Receiver.cpp
*
*/
#include "Receiver.h"
#include "ssl_sockets.h"
#include <iostream>
using namespace std;
template<class T>
void* Receiver<T>::run_thread(void* receiver)
{
((Receiver<T>*)receiver)->run();
#if OPENSSL_VERSION_NUMBER >= 0x10100000L
OPENSSL_thread_stop();
#endif
return 0;
}
template<class T>
Receiver<T>::Receiver(T socket) : socket(socket), thread(0)
{
start();
}
template<class T>
Receiver<T>::~Receiver()
{
stop();
}
template<class T>
void Receiver<T>::start()
{
pthread_create(&thread, 0, run_thread, this);
}
template<class T>
void Receiver<T>::stop()
{
in.stop();
pthread_join(thread, 0);
}
template<class T>
void Receiver<T>::run()
{
octetStream* os = 0;
while (in.pop(os))
{
os->reset_write_head();
timer.start();
os->Receive(socket);
timer.stop();
out.push(os);
}
}
template<class T>
void Receiver<T>::request(octetStream& os)
{
in.push(&os);
}
template<class T>
void Receiver<T>::wait(octetStream& os)
{
octetStream* queued = 0;
out.pop(queued);
if (queued != &os)
throw not_implemented();
}
template class Receiver<int>;
template class Receiver<ssl_socket*>;