mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-18 11:36:14 +02:00
servers
git-svn-id: svn://elaine/murooma/trunk@249 d8a302eb-03bc-478d-80e4-98257eca68ef
This commit is contained in:
parent
ae79214e2a
commit
7ab33c1bff
6 changed files with 362 additions and 169 deletions
|
@ -3,7 +3,7 @@ CC = /usr/bin/g++
|
||||||
CFLAGS = -std=gnu++0x -Wall -Wno-unused-function -D_REENTRANT -DVERSION=\"$(VERSION)\" -I..
|
CFLAGS = -std=gnu++0x -Wall -Wno-unused-function -D_REENTRANT -DVERSION=\"$(VERSION)\" -I..
|
||||||
LDFLAGS = -lrt -lpthread -lboost_system -lboost_program_options -lvorbis -lvorbisenc -logg
|
LDFLAGS = -lrt -lpthread -lboost_system -lboost_program_options -lvorbis -lvorbisenc -logg
|
||||||
|
|
||||||
OBJ = snapServer.o pcmEncoder.o oggEncoder.o ../common/pcmChunk.o ../common/sampleFormat.o
|
OBJ = snapServer.o streamServer.o controlServer.o pcmEncoder.o oggEncoder.o ../common/pcmChunk.o ../common/sampleFormat.o
|
||||||
BIN = snapserver
|
BIN = snapserver
|
||||||
|
|
||||||
all: server
|
all: server
|
||||||
|
|
85
server/controlServer.cpp
Normal file
85
server/controlServer.cpp
Normal file
|
@ -0,0 +1,85 @@
|
||||||
|
#include "controlServer.h"
|
||||||
|
|
||||||
|
|
||||||
|
ControlSession::ControlSession(socket_ptr sock) : active_(false), socket_(sock)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void ControlSession::sender()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
boost::asio::streambuf streambuf;
|
||||||
|
std::ostream stream(&streambuf);
|
||||||
|
for (;;)
|
||||||
|
{
|
||||||
|
shared_ptr<BaseMessage> message(messages.pop());
|
||||||
|
message->serialize(stream);
|
||||||
|
boost::asio::write(*socket_, streambuf);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (std::exception& e)
|
||||||
|
{
|
||||||
|
std::cerr << "Exception in thread: " << e.what() << "\n";
|
||||||
|
active_ = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ControlSession::start()
|
||||||
|
{
|
||||||
|
active_ = true;
|
||||||
|
senderThread = new thread(&ControlSession::sender, this);
|
||||||
|
// readerThread.join();
|
||||||
|
}
|
||||||
|
|
||||||
|
void ControlSession::send(BaseMessage* message)
|
||||||
|
{
|
||||||
|
boost::asio::streambuf streambuf;
|
||||||
|
std::ostream stream(&streambuf);
|
||||||
|
message->serialize(stream);
|
||||||
|
boost::asio::write(*socket_, streambuf);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool ControlSession::isActive() const
|
||||||
|
{
|
||||||
|
return active_;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
ControlServer::ControlServer(unsigned short port) : port_(port), headerChunk(NULL)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void ControlServer::acceptor()
|
||||||
|
{
|
||||||
|
tcp::acceptor a(io_service_, tcp::endpoint(tcp::v4(), port_));
|
||||||
|
for (;;)
|
||||||
|
{
|
||||||
|
socket_ptr sock(new tcp::socket(io_service_));
|
||||||
|
a.accept(*sock);
|
||||||
|
cout << "New connection: " << sock->remote_endpoint().address().to_string() << "\n";
|
||||||
|
ControlSession* session = new ControlSession(sock);
|
||||||
|
sessions.insert(shared_ptr<ControlSession>(session));
|
||||||
|
session->start();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void ControlServer::start()
|
||||||
|
{
|
||||||
|
acceptThread = new thread(&ControlServer::acceptor, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void ControlServer::stop()
|
||||||
|
{
|
||||||
|
// acceptThread->join();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
64
server/controlServer.h
Normal file
64
server/controlServer.h
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
#ifndef CONTROL_SERVER_H
|
||||||
|
#define CONTROL_SERVER_H
|
||||||
|
|
||||||
|
#include <boost/asio.hpp>
|
||||||
|
#include <vector>
|
||||||
|
#include <thread>
|
||||||
|
#include <memory>
|
||||||
|
#include <set>
|
||||||
|
#include <sstream>
|
||||||
|
#include "common/timeUtils.h"
|
||||||
|
#include "common/queue.h"
|
||||||
|
#include "common/message.h"
|
||||||
|
#include "common/headerMessage.h"
|
||||||
|
#include "common/sampleFormat.h"
|
||||||
|
|
||||||
|
|
||||||
|
using boost::asio::ip::tcp;
|
||||||
|
typedef std::shared_ptr<tcp::socket> socket_ptr;
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class ControlSession
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
ControlSession(socket_ptr sock);
|
||||||
|
|
||||||
|
void start();
|
||||||
|
void send(BaseMessage* message);
|
||||||
|
bool isActive() const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
void sender();
|
||||||
|
bool active_;
|
||||||
|
socket_ptr socket_;
|
||||||
|
thread* senderThread;
|
||||||
|
Queue<shared_ptr<BaseMessage>> messages;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class ControlServer
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
ControlServer(unsigned short port);
|
||||||
|
|
||||||
|
void start();
|
||||||
|
void stop();
|
||||||
|
|
||||||
|
private:
|
||||||
|
void acceptor();
|
||||||
|
set<shared_ptr<ControlSession>> sessions;
|
||||||
|
boost::asio::io_service io_service_;
|
||||||
|
unsigned short port_;
|
||||||
|
shared_ptr<HeaderMessage> headerChunk;
|
||||||
|
shared_ptr<SampleFormat> sampleFormat;
|
||||||
|
thread* acceptThread;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -1,186 +1,23 @@
|
||||||
#include <cstdlib>
|
|
||||||
#include <iostream>
|
|
||||||
#include <boost/asio.hpp>
|
|
||||||
#include <boost/program_options.hpp>
|
#include <boost/program_options.hpp>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <vector>
|
|
||||||
#include <ctime> // localtime
|
|
||||||
#include <sstream> // stringstream
|
|
||||||
#include <iomanip>
|
|
||||||
#include <thread>
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <set>
|
|
||||||
#include <sstream>
|
|
||||||
#include "common/timeUtils.h"
|
#include "common/timeUtils.h"
|
||||||
#include "common/queue.h"
|
|
||||||
#include "common/signalHandler.h"
|
#include "common/signalHandler.h"
|
||||||
#include "common/utils.h"
|
#include "common/utils.h"
|
||||||
#include "common/sampleFormat.h"
|
#include "common/sampleFormat.h"
|
||||||
#include "../server/pcmEncoder.h"
|
#include "../server/pcmEncoder.h"
|
||||||
#include "../server/oggEncoder.h"
|
#include "../server/oggEncoder.h"
|
||||||
#include "common/message.h"
|
#include "common/message.h"
|
||||||
|
#include "streamServer.h"
|
||||||
|
#include "controlServer.h"
|
||||||
using boost::asio::ip::tcp;
|
|
||||||
namespace po = boost::program_options;
|
|
||||||
|
|
||||||
|
|
||||||
typedef boost::shared_ptr<tcp::socket> socket_ptr;
|
|
||||||
using namespace std;
|
|
||||||
using namespace std::chrono;
|
|
||||||
|
|
||||||
|
|
||||||
bool g_terminated = false;
|
bool g_terminated = false;
|
||||||
|
|
||||||
|
namespace po = boost::program_options;
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
class Session
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
Session(socket_ptr sock) : active_(false), socket_(sock)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void sender()
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
boost::asio::streambuf streambuf;
|
|
||||||
std::ostream stream(&streambuf);
|
|
||||||
for (;;)
|
|
||||||
{
|
|
||||||
shared_ptr<BaseMessage> message(messages.pop());
|
|
||||||
message->serialize(stream);
|
|
||||||
boost::asio::write(*socket_, streambuf);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (std::exception& e)
|
|
||||||
{
|
|
||||||
std::cerr << "Exception in thread: " << e.what() << "\n";
|
|
||||||
active_ = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void start()
|
|
||||||
{
|
|
||||||
active_ = true;
|
|
||||||
senderThread = new thread(&Session::sender, this);
|
|
||||||
// readerThread.join();
|
|
||||||
}
|
|
||||||
|
|
||||||
void send(shared_ptr<BaseMessage> message)
|
|
||||||
{
|
|
||||||
if (!message)
|
|
||||||
return;
|
|
||||||
|
|
||||||
while (messages.size() > 100)//* chunk->getDuration() > 10000)
|
|
||||||
messages.pop();
|
|
||||||
messages.push(message);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool isActive() const
|
|
||||||
{
|
|
||||||
return active_;
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
bool active_;
|
|
||||||
socket_ptr socket_;
|
|
||||||
thread* senderThread;
|
|
||||||
Queue<shared_ptr<BaseMessage>> messages;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
class Server
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
Server(unsigned short port) : port_(port), headerChunk(NULL)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void acceptor()
|
|
||||||
{
|
|
||||||
tcp::acceptor a(io_service_, tcp::endpoint(tcp::v4(), port_));
|
|
||||||
for (;;)
|
|
||||||
{
|
|
||||||
socket_ptr sock(new tcp::socket(io_service_));
|
|
||||||
a.accept(*sock);
|
|
||||||
cout << "New connection: " << sock->remote_endpoint().address().to_string() << "\n";
|
|
||||||
Session* session = new Session(sock);
|
|
||||||
session->send(sampleFormat);
|
|
||||||
session->send(headerChunk);
|
|
||||||
session->start();
|
|
||||||
sessions.insert(shared_ptr<Session>(session));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void setHeader(shared_ptr<HeaderMessage> header)
|
|
||||||
{
|
|
||||||
if (header)
|
|
||||||
headerChunk = header;
|
|
||||||
}
|
|
||||||
|
|
||||||
void setFormat(SampleFormat& format)
|
|
||||||
{
|
|
||||||
sampleFormat = shared_ptr<SampleFormat>(new SampleFormat(format));
|
|
||||||
}
|
|
||||||
|
|
||||||
void send(shared_ptr<BaseMessage> message)
|
|
||||||
{
|
|
||||||
for (std::set<shared_ptr<Session>>::iterator it = sessions.begin(); it != sessions.end(); )
|
|
||||||
{
|
|
||||||
if (!(*it)->isActive())
|
|
||||||
{
|
|
||||||
cout << "Session inactive. Removing\n";
|
|
||||||
sessions.erase(it++);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
++it;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (auto s : sessions)
|
|
||||||
s->send(message);
|
|
||||||
}
|
|
||||||
|
|
||||||
void start()
|
|
||||||
{
|
|
||||||
acceptThread = new thread(&Server::acceptor, this);
|
|
||||||
}
|
|
||||||
|
|
||||||
void stop()
|
|
||||||
{
|
|
||||||
// acceptThread->join();
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
set<shared_ptr<Session>> sessions;
|
|
||||||
boost::asio::io_service io_service_;
|
|
||||||
unsigned short port_;
|
|
||||||
shared_ptr<HeaderMessage> headerChunk;
|
|
||||||
shared_ptr<SampleFormat> sampleFormat;
|
|
||||||
thread* acceptThread;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
class ServerException : public std::exception
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
ServerException(const std::string& what) : what_(what)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual ~ServerException() throw()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual const char* what() const throw()
|
|
||||||
{
|
|
||||||
return what_.c_str();
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
std::string what_;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
int main(int argc, char* argv[])
|
int main(int argc, char* argv[])
|
||||||
|
@ -224,7 +61,7 @@ int main(int argc, char* argv[])
|
||||||
openlog ("firstdaemon", LOG_PID, LOG_DAEMON);
|
openlog ("firstdaemon", LOG_PID, LOG_DAEMON);
|
||||||
|
|
||||||
using namespace std; // For atoi.
|
using namespace std; // For atoi.
|
||||||
Server* server = new Server(port);
|
StreamServer* server = new StreamServer(port);
|
||||||
server->start();
|
server->start();
|
||||||
|
|
||||||
timeval tvChunk;
|
timeval tvChunk;
|
||||||
|
|
119
server/streamServer.cpp
Normal file
119
server/streamServer.cpp
Normal file
|
@ -0,0 +1,119 @@
|
||||||
|
#include "streamServer.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
StreamSession::StreamSession(socket_ptr sock) : active_(false), socket_(sock)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void StreamSession::sender()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
boost::asio::streambuf streambuf;
|
||||||
|
std::ostream stream(&streambuf);
|
||||||
|
for (;;)
|
||||||
|
{
|
||||||
|
shared_ptr<BaseMessage> message(messages.pop());
|
||||||
|
message->serialize(stream);
|
||||||
|
boost::asio::write(*socket_, streambuf);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (std::exception& e)
|
||||||
|
{
|
||||||
|
std::cerr << "Exception in thread: " << e.what() << "\n";
|
||||||
|
active_ = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void StreamSession::start()
|
||||||
|
{
|
||||||
|
active_ = true;
|
||||||
|
senderThread = new thread(&StreamSession::sender, this);
|
||||||
|
// readerThread.join();
|
||||||
|
}
|
||||||
|
|
||||||
|
void StreamSession::send(shared_ptr<BaseMessage> message)
|
||||||
|
{
|
||||||
|
if (!message)
|
||||||
|
return;
|
||||||
|
|
||||||
|
while (messages.size() > 100)//* chunk->getDuration() > 10000)
|
||||||
|
messages.pop();
|
||||||
|
messages.push(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool StreamSession::isActive() const
|
||||||
|
{
|
||||||
|
return active_;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
StreamServer::StreamServer(unsigned short port) : port_(port), headerChunk(NULL)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void StreamServer::acceptor()
|
||||||
|
{
|
||||||
|
tcp::acceptor a(io_service_, tcp::endpoint(tcp::v4(), port_));
|
||||||
|
for (;;)
|
||||||
|
{
|
||||||
|
socket_ptr sock(new tcp::socket(io_service_));
|
||||||
|
a.accept(*sock);
|
||||||
|
cout << "New connection: " << sock->remote_endpoint().address().to_string() << "\n";
|
||||||
|
StreamSession* session = new StreamSession(sock);
|
||||||
|
session->send(sampleFormat);
|
||||||
|
session->send(headerChunk);
|
||||||
|
session->start();
|
||||||
|
sessions.insert(shared_ptr<StreamSession>(session));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void StreamServer::setHeader(shared_ptr<HeaderMessage> header)
|
||||||
|
{
|
||||||
|
if (header)
|
||||||
|
headerChunk = header;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void StreamServer::setFormat(SampleFormat& format)
|
||||||
|
{
|
||||||
|
sampleFormat = shared_ptr<SampleFormat>(new SampleFormat(format));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void StreamServer::send(shared_ptr<BaseMessage> message)
|
||||||
|
{
|
||||||
|
for (std::set<shared_ptr<StreamSession>>::iterator it = sessions.begin(); it != sessions.end(); )
|
||||||
|
{
|
||||||
|
if (!(*it)->isActive())
|
||||||
|
{
|
||||||
|
cout << "Session inactive. Removing\n";
|
||||||
|
sessions.erase(it++);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
++it;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (auto s : sessions)
|
||||||
|
s->send(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void StreamServer::start()
|
||||||
|
{
|
||||||
|
acceptThread = new thread(&StreamServer::acceptor, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void StreamServer::stop()
|
||||||
|
{
|
||||||
|
// acceptThread->join();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
88
server/streamServer.h
Normal file
88
server/streamServer.h
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
#ifndef STREAM_SERVER_H
|
||||||
|
#define STREAM_SERVER_H
|
||||||
|
|
||||||
|
#include <boost/asio.hpp>
|
||||||
|
#include <vector>
|
||||||
|
#include <thread>
|
||||||
|
#include <memory>
|
||||||
|
#include <set>
|
||||||
|
#include <sstream>
|
||||||
|
#include "common/timeUtils.h"
|
||||||
|
#include "common/queue.h"
|
||||||
|
#include "common/message.h"
|
||||||
|
#include "common/headerMessage.h"
|
||||||
|
#include "common/sampleFormat.h"
|
||||||
|
|
||||||
|
|
||||||
|
using boost::asio::ip::tcp;
|
||||||
|
typedef std::shared_ptr<tcp::socket> socket_ptr;
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class StreamSession
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
StreamSession(socket_ptr sock);
|
||||||
|
|
||||||
|
void start();
|
||||||
|
void send(shared_ptr<BaseMessage> message);
|
||||||
|
bool isActive() const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
void sender();
|
||||||
|
bool active_;
|
||||||
|
socket_ptr socket_;
|
||||||
|
thread* senderThread;
|
||||||
|
Queue<shared_ptr<BaseMessage>> messages;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class StreamServer
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
StreamServer(unsigned short port);
|
||||||
|
|
||||||
|
void setHeader(shared_ptr<HeaderMessage> header);
|
||||||
|
void setFormat(SampleFormat& format);
|
||||||
|
void send(shared_ptr<BaseMessage> message);
|
||||||
|
|
||||||
|
void start();
|
||||||
|
void stop();
|
||||||
|
|
||||||
|
private:
|
||||||
|
void acceptor();
|
||||||
|
set<shared_ptr<StreamSession>> sessions;
|
||||||
|
boost::asio::io_service io_service_;
|
||||||
|
unsigned short port_;
|
||||||
|
shared_ptr<HeaderMessage> headerChunk;
|
||||||
|
shared_ptr<SampleFormat> sampleFormat;
|
||||||
|
thread* acceptThread;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
class ServerException : public std::exception
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
ServerException(const std::string& what) : what_(what)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual ~ServerException() throw()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual const char* what() const throw()
|
||||||
|
{
|
||||||
|
return what_.c_str();
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
std::string what_;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue