mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-11 15:21:45 +02:00
replaced boost program options with getopt
This commit is contained in:
parent
26af00a8c3
commit
884a65f289
6 changed files with 208 additions and 120 deletions
|
@ -2,10 +2,12 @@ VERSION = 0.3.90
|
||||||
TARGET = snapclient
|
TARGET = snapclient
|
||||||
SHELL = /bin/bash
|
SHELL = /bin/bash
|
||||||
|
|
||||||
|
#CXX = /home/johannes/Develop/android-ndk-r10e-arm-21/bin/arm-linux-androideabi-g++
|
||||||
|
#CFLAGS = -std=c++0x -Wall -Wno-unused-function -O3 -pthread -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I.. -I../externals/asio/asio/include -I../externals/tclap/include -I../externals/ezOptionParser -I/home/johannes/Develop/build/arm/include -L/home/johannes/Develop/build/arm/lib
|
||||||
|
|
||||||
CXX = /usr/bin/g++
|
CXX = /usr/bin/g++
|
||||||
CFLAGS = -std=c++0x -Wall -Wno-unused-function -O3 -pthread -DVERSION=\"$(VERSION)\" -I.. -I../externals/asio/asio/include
|
CFLAGS = -std=c++0x -Wall -Wno-unused-function -O3 -pthread -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I.. -I../externals/asio/asio/include -I../externals/tclap/include -I../externals/ezOptionParser
|
||||||
#CFLAGS = -std=c++0x -Wall -Wno-unused-function -O3 -pthread -DVERSION=\"$(VERSION)\" -I.. -static-libgcc -static-libstdc++
|
LDFLAGS = -lrt -lasound -logg -lvorbis -lvorbisenc -lFLAC -lavahi-client -lavahi-common
|
||||||
LDFLAGS = -lrt -lboost_system -lboost_program_options -lasound -logg -lvorbis -lvorbisenc -lFLAC -lavahi-client -lavahi-common
|
|
||||||
|
|
||||||
OBJ = snapClient.o stream.o clientConnection.o timeProvider.o player/player.o player/alsaPlayer.o decoder/oggDecoder.o decoder/pcmDecoder.o decoder/flacDecoder.o controller.o browseAvahi.o ../message/pcmChunk.o ../common/log.o ../message/sampleFormat.o
|
OBJ = snapClient.o stream.o clientConnection.o timeProvider.o player/player.o player/alsaPlayer.o decoder/oggDecoder.o decoder/pcmDecoder.o decoder/flacDecoder.o controller.o browseAvahi.o ../message/pcmChunk.o ../common/log.o ../message/sampleFormat.o
|
||||||
BIN = snapclient
|
BIN = snapclient
|
||||||
|
|
|
@ -18,18 +18,17 @@
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <sys/resource.h>
|
#include <sys/resource.h>
|
||||||
#include <boost/program_options.hpp>
|
#include <getopt.h>
|
||||||
|
|
||||||
#include "common/daemon.h"
|
|
||||||
#include "common/log.h"
|
|
||||||
#include "common/signalHandler.h"
|
|
||||||
#include "controller.h"
|
#include "controller.h"
|
||||||
#include "player/alsaPlayer.h"
|
#include "player/alsaPlayer.h"
|
||||||
#include "browseAvahi.h"
|
#include "browseAvahi.h"
|
||||||
|
#include "common/daemon.h"
|
||||||
|
#include "common/log.h"
|
||||||
|
#include "common/signalHandler.h"
|
||||||
|
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
namespace po = boost::program_options;
|
|
||||||
|
|
||||||
bool g_terminated = false;
|
bool g_terminated = false;
|
||||||
|
|
||||||
|
@ -58,76 +57,113 @@ PcmDevice getPcmDevice(const std::string& soundcard)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int main (int argc, char *argv[])
|
int main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
string soundcard;
|
string soundcard("default");
|
||||||
string host;
|
string host("");
|
||||||
// int bufferMs;
|
size_t port(1704);
|
||||||
size_t port;
|
size_t latency(0);
|
||||||
size_t latency;
|
bool runAsDaemon(false);
|
||||||
int runAsDaemon;
|
int processPriority(-3);
|
||||||
bool listPcmDevices;
|
|
||||||
|
|
||||||
po::options_description desc("Allowed options");
|
while (1)
|
||||||
desc.add_options()
|
{
|
||||||
("help", "produce help message")
|
int option_index = 0;
|
||||||
("version,v", "show version number")
|
static struct option long_options[] =
|
||||||
("list,l", po::bool_switch(&listPcmDevices)->default_value(false), "list pcm devices")
|
{
|
||||||
("host,h", po::value<string>(&host), "server hostname or ip address")
|
{"help", no_argument, 0, '?'},
|
||||||
("port,p", po::value<size_t>(&port)->default_value(1704), "server port")
|
{"version", no_argument, 0, 'v'},
|
||||||
("soundcard,s", po::value<string>(&soundcard)->default_value("default"), "index or name of the soundcard")
|
{"list", no_argument, 0, 'l'},
|
||||||
("daemon,d", po::value<int>(&runAsDaemon)->implicit_value(-3), "daemonize, optional process priority [-20..19]")
|
{"host", required_argument, 0, 'h'},
|
||||||
("latency", po::value<size_t>(&latency)->default_value(0), "latency of the soundcard")
|
{"port", required_argument, 0, 'p'},
|
||||||
;
|
{"soundcard", required_argument, 0, 's'},
|
||||||
|
{"daemon", optional_argument, 0, 'd'},
|
||||||
|
{"latency", required_argument, 0, 0 },
|
||||||
|
{0, 0, 0, 0 }
|
||||||
|
};
|
||||||
|
|
||||||
|
char c = getopt_long(argc, argv, "?vlh:p:s:d::", long_options, &option_index);
|
||||||
|
if (c == -1)
|
||||||
|
break;
|
||||||
|
|
||||||
|
switch (c)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
if (strcmp(long_options[option_index].name, "latency") == 0)
|
||||||
|
latency = atoi(optarg);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'v':
|
||||||
|
cout << "snapclient v" << VERSION << "\n"
|
||||||
|
<< "Copyright (C) 2014, 2015 BadAix (snapcast@badaix.de).\n"
|
||||||
|
<< "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n"
|
||||||
|
<< "This is free software: you are free to change and redistribute it.\n"
|
||||||
|
<< "There is NO WARRANTY, to the extent permitted by law.\n\n"
|
||||||
|
<< "Written by Johannes M. Pohl.\n\n";
|
||||||
|
exit(EXIT_SUCCESS);
|
||||||
|
|
||||||
|
case 'l':
|
||||||
|
{
|
||||||
|
vector<PcmDevice> pcmDevices = AlsaPlayer::pcm_list();
|
||||||
|
for (auto dev: pcmDevices)
|
||||||
|
{
|
||||||
|
cout << dev.idx << ": " << dev.name << "\n"
|
||||||
|
<< dev.description << "\n\n";
|
||||||
|
}
|
||||||
|
exit(EXIT_SUCCESS);
|
||||||
|
}
|
||||||
|
|
||||||
|
case 'h':
|
||||||
|
host = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'p':
|
||||||
|
port = atoi(optarg);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 's':
|
||||||
|
soundcard = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'd':
|
||||||
|
runAsDaemon = true;
|
||||||
|
if (optarg)
|
||||||
|
processPriority = atoi(optarg);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default: //?
|
||||||
|
cout << "Allowed options:\n\n"
|
||||||
|
<< " --help \t\t produce help message\n"
|
||||||
|
<< " -v, --version \t\t show version number\n"
|
||||||
|
<< " -l, --list \t\t list pcm devices\n"
|
||||||
|
<< " -h, --host arg \t\t server hostname or ip address\n"
|
||||||
|
<< " -p, --port arg (=" << port << ")\t server port\n"
|
||||||
|
<< " -s, --soundcard arg(=" << soundcard << ")\t index or name of the soundcard\n"
|
||||||
|
<< " -d, --daemon [arg(=" << processPriority << ")]\t daemonize, optional process priority [-20..19]\n"
|
||||||
|
<< " --latency arg(=" << latency << ")\t\t latency of the soundcard [ms]\n"
|
||||||
|
<< "\n";
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
po::variables_map vm;
|
|
||||||
po::store(po::parse_command_line(argc, argv, desc), vm);
|
|
||||||
po::notify(vm);
|
|
||||||
|
|
||||||
std::clog.rdbuf(new Log("snapclient", LOG_DAEMON));
|
std::clog.rdbuf(new Log("snapclient", LOG_DAEMON));
|
||||||
|
|
||||||
if (vm.count("help"))
|
signal(SIGHUP, signal_handler);
|
||||||
{
|
signal(SIGTERM, signal_handler);
|
||||||
cout << desc << "\n";
|
signal(SIGINT, signal_handler);
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (vm.count("version"))
|
if (runAsDaemon)
|
||||||
{
|
|
||||||
cout << "snapclient v" << VERSION << "\n"
|
|
||||||
<< "Copyright (C) 2014 BadAix (snapcast@badaix.de).\n"
|
|
||||||
<< "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n"
|
|
||||||
<< "This is free software: you are free to change and redistribute it.\n"
|
|
||||||
<< "There is NO WARRANTY, to the extent permitted by law.\n\n"
|
|
||||||
<< "Written by Johannes M. Pohl.\n";
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (listPcmDevices)
|
|
||||||
{
|
|
||||||
vector<PcmDevice> pcmDevices = AlsaPlayer::pcm_list();
|
|
||||||
for (auto dev: pcmDevices)
|
|
||||||
{
|
|
||||||
cout << dev.idx << ": " << dev.name << "\n"
|
|
||||||
<< dev.description << "\n\n";
|
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
signal(SIGHUP, signal_handler);
|
|
||||||
signal(SIGTERM, signal_handler);
|
|
||||||
signal(SIGINT, signal_handler);
|
|
||||||
|
|
||||||
if (vm.count("daemon"))
|
|
||||||
{
|
{
|
||||||
daemonize("/var/run/snapclient.pid");
|
daemonize("/var/run/snapclient.pid");
|
||||||
if (runAsDaemon < -20)
|
if (processPriority < -20)
|
||||||
runAsDaemon = -20;
|
processPriority = -20;
|
||||||
else if (runAsDaemon > 19)
|
else if (processPriority > 19)
|
||||||
runAsDaemon = 19;
|
processPriority = 19;
|
||||||
setpriority(PRIO_PROCESS, 0, runAsDaemon);
|
if (processPriority != 0)
|
||||||
|
setpriority(PRIO_PROCESS, 0, processPriority);
|
||||||
logS(kLogNotice) << "daemon started" << std::endl;
|
logS(kLogNotice) << "daemon started" << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -135,10 +171,10 @@ int main (int argc, char *argv[])
|
||||||
if (pcmDevice.idx == -1)
|
if (pcmDevice.idx == -1)
|
||||||
{
|
{
|
||||||
cout << "soundcard \"" << soundcard << "\" not found\n";
|
cout << "soundcard \"" << soundcard << "\" not found\n";
|
||||||
return 1;
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!vm.count("host"))
|
if (!host.empty())
|
||||||
{
|
{
|
||||||
BrowseAvahi browseAvahi;
|
BrowseAvahi browseAvahi;
|
||||||
AvahiResult avahiResult;
|
AvahiResult avahiResult;
|
||||||
|
@ -165,6 +201,7 @@ int main (int argc, char *argv[])
|
||||||
std::unique_ptr<Controller> controller(new Controller());
|
std::unique_ptr<Controller> controller(new Controller());
|
||||||
if (!g_terminated)
|
if (!g_terminated)
|
||||||
{
|
{
|
||||||
|
logO << "Latency: " << latency << "\n";
|
||||||
controller->start(pcmDevice, host, port, latency);
|
controller->start(pcmDevice, host, port, latency);
|
||||||
while(!g_terminated)
|
while(!g_terminated)
|
||||||
usleep(100*1000);
|
usleep(100*1000);
|
||||||
|
@ -178,7 +215,7 @@ int main (int argc, char *argv[])
|
||||||
|
|
||||||
logS(kLogNotice) << "daemon terminated." << endl;
|
logS(kLogNotice) << "daemon terminated." << endl;
|
||||||
daemonShutdown();
|
daemonShutdown();
|
||||||
return 0;
|
exit(EXIT_SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,8 @@
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <syslog.h>
|
#include <syslog.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
int pidFilehandle;
|
int pidFilehandle;
|
||||||
|
|
||||||
|
|
|
@ -77,7 +77,7 @@ void SampleFormat::setFormat(uint32_t rate, uint16_t bits, uint16_t channels)
|
||||||
if (bits == 24)
|
if (bits == 24)
|
||||||
sampleSize = 4;
|
sampleSize = 4;
|
||||||
frameSize = channels*sampleSize;
|
frameSize = channels*sampleSize;
|
||||||
logD << "SampleFormat: " << rate << ":" << bits << ":" << channels << "\n";
|
// logD << "SampleFormat: " << rate << ":" << bits << ":" << channels << "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,8 +3,8 @@ TARGET = snapserver
|
||||||
SHELL = /bin/bash
|
SHELL = /bin/bash
|
||||||
|
|
||||||
CXX = /usr/bin/g++
|
CXX = /usr/bin/g++
|
||||||
CFLAGS = -std=c++0x -Wall -Wno-unused-function -O3 -pthread -DVERSION=\"$(VERSION)\" -I.. -I../externals/asio/asio/include
|
CFLAGS = -std=c++0x -Wall -Wno-unused-function -O3 -pthread -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I.. -I../externals/asio/asio/include
|
||||||
LDFLAGS = -lrt -lboost_system -lboost_program_options -lvorbis -lvorbisenc -logg -lFLAC -lavahi-client -lavahi-common
|
LDFLAGS = -lrt -lvorbis -lvorbisenc -logg -lFLAC -lavahi-client -lavahi-common
|
||||||
|
|
||||||
OBJ = snapServer.o config.o controlServer.o controlSession.o streamServer.o streamSession.o json/jsonrpc.o pcmreader/pcmReader.o pcmreader/pipeReader.o encoder/encoderFactory.o encoder/flacEncoder.o encoder/pcmEncoder.o encoder/oggEncoder.o publishAvahi.o ../common/log.o ../message/pcmChunk.o ../message/sampleFormat.o
|
OBJ = snapServer.o config.o controlServer.o controlSession.o streamServer.o streamSession.o json/jsonrpc.o pcmreader/pcmReader.o pcmreader/pipeReader.o encoder/encoderFactory.o encoder/flacEncoder.o encoder/pcmEncoder.o encoder/oggEncoder.o publishAvahi.o ../common/log.o ../message/pcmChunk.o ../message/sampleFormat.o
|
||||||
BIN = snapserver
|
BIN = snapserver
|
||||||
|
|
|
@ -16,15 +16,14 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
***/
|
***/
|
||||||
|
|
||||||
#include <boost/program_options.hpp>
|
#include <getopt.h>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
#include <sys/resource.h>
|
#include <sys/resource.h>
|
||||||
|
|
||||||
|
#include "common/daemon.h"
|
||||||
#include "common/timeDefs.h"
|
#include "common/timeDefs.h"
|
||||||
#include "common/signalHandler.h"
|
#include "common/signalHandler.h"
|
||||||
#include "common/daemon.h"
|
|
||||||
#include "common/log.h"
|
|
||||||
#include "common/snapException.h"
|
#include "common/snapException.h"
|
||||||
#include "message/sampleFormat.h"
|
#include "message/sampleFormat.h"
|
||||||
#include "message/message.h"
|
#include "message/message.h"
|
||||||
|
@ -32,58 +31,106 @@
|
||||||
#include "streamServer.h"
|
#include "streamServer.h"
|
||||||
#include "publishAvahi.h"
|
#include "publishAvahi.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "common/log.h"
|
||||||
|
|
||||||
|
|
||||||
bool g_terminated = false;
|
bool g_terminated = false;
|
||||||
|
std::condition_variable terminateSignaled;
|
||||||
namespace po = boost::program_options;
|
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
|
|
||||||
std::condition_variable terminateSignaled;
|
|
||||||
|
|
||||||
int main(int argc, char* argv[])
|
int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
StreamServerSettings settings;
|
StreamServerSettings settings;
|
||||||
int runAsDaemon;
|
bool runAsDaemon(false);
|
||||||
|
int processPriority(-3);
|
||||||
string sampleFormat;
|
string sampleFormat;
|
||||||
|
|
||||||
po::options_description desc("Allowed options");
|
while (1)
|
||||||
desc.add_options()
|
|
||||||
("help,h", "produce help message")
|
|
||||||
("version,v", "show version number")
|
|
||||||
("port,p", po::value<size_t>(&settings.port)->default_value(settings.port), "server port")
|
|
||||||
("controlPort", po::value<size_t>(&settings.controlPort)->default_value(settings.controlPort), "Remote control port")
|
|
||||||
("sampleformat,s", po::value<string>(&sampleFormat)->default_value(settings.sampleFormat.getFormat()), "sample format")
|
|
||||||
("codec,c", po::value<string>(&settings.codec)->default_value(settings.codec), "transport codec [flac|ogg|pcm][:options]. Type codec:? to get codec specific options")
|
|
||||||
("fifo,f", po::value<string>(&settings.fifoName)->default_value(settings.fifoName), "name of the input fifo file")
|
|
||||||
("daemon,d", po::value<int>(&runAsDaemon)->implicit_value(-3), "daemonize, optional process priority [-20..19]")
|
|
||||||
("buffer,b", po::value<int32_t>(&settings.bufferMs)->default_value(settings.bufferMs), "buffer [ms]")
|
|
||||||
("pipeReadBuffer", po::value<size_t>(&settings.pipeReadMs)->default_value(settings.pipeReadMs), "pipe read buffer [ms]")
|
|
||||||
;
|
|
||||||
|
|
||||||
po::variables_map vm;
|
|
||||||
po::store(po::parse_command_line(argc, argv, desc), vm);
|
|
||||||
po::notify(vm);
|
|
||||||
|
|
||||||
if (vm.count("help"))
|
|
||||||
{
|
{
|
||||||
cout << desc << "\n";
|
int option_index = 0;
|
||||||
return 1;
|
static struct option long_options[] =
|
||||||
}
|
{
|
||||||
|
{"help", no_argument, 0, 'h'},
|
||||||
|
{"version", no_argument, 0, 'v'},
|
||||||
|
{"port", required_argument, 0, 'p'},
|
||||||
|
{"controlPort", required_argument, 0, 0 },
|
||||||
|
{"sampleformat", required_argument, 0, 's'},
|
||||||
|
{"codec", required_argument, 0, 'c'},
|
||||||
|
{"fifo", required_argument, 0, 'f'},
|
||||||
|
{"daemon", optional_argument, 0, 'd'},
|
||||||
|
{"buffer", required_argument, 0, 'b'},
|
||||||
|
{"pipeReadBuffer", required_argument, 0, 0 },
|
||||||
|
{0, 0, 0, 0 }
|
||||||
|
};
|
||||||
|
|
||||||
if (vm.count("version"))
|
char c = getopt_long(argc, argv, "hvp:s:c:f:d::b:", long_options, &option_index);
|
||||||
{
|
if (c == -1)
|
||||||
cout << "snapserver " << VERSION << "\n"
|
break;
|
||||||
<< "Copyright (C) 2014, 2015 BadAix (snapcast@badaix.de).\n"
|
|
||||||
<< "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n"
|
switch (c)
|
||||||
<< "This is free software: you are free to change and redistribute it.\n"
|
{
|
||||||
<< "There is NO WARRANTY, to the extent permitted by law.\n\n"
|
case 0:
|
||||||
<< "Written by Johannes Pohl.\n";
|
if (strcmp(long_options[option_index].name, "controlPort") == 0)
|
||||||
return 1;
|
settings.controlPort = atoi(optarg);
|
||||||
|
else if (strcmp(long_options[option_index].name, "pipeReadBuffer") == 0)
|
||||||
|
settings.pipeReadMs = atoi(optarg);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'v':
|
||||||
|
cout << "snapserver " << VERSION << "\n"
|
||||||
|
<< "Copyright (C) 2014, 2015 BadAix (snapcast@badaix.de).\n"
|
||||||
|
<< "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n"
|
||||||
|
<< "This is free software: you are free to change and redistribute it.\n"
|
||||||
|
<< "There is NO WARRANTY, to the extent permitted by law.\n\n"
|
||||||
|
<< "Written by Johannes Pohl.\n";
|
||||||
|
exit(EXIT_SUCCESS);
|
||||||
|
|
||||||
|
case 'p':
|
||||||
|
settings.port = atoi(optarg);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 's':
|
||||||
|
settings.sampleFormat = string(optarg);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'c':
|
||||||
|
settings.codec = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'f':
|
||||||
|
settings.fifoName = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'd':
|
||||||
|
runAsDaemon = true;
|
||||||
|
if (optarg)
|
||||||
|
processPriority = atoi(optarg);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'b':
|
||||||
|
settings.bufferMs = atoi(optarg);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default: //?
|
||||||
|
cout << "Allowed options:\n\n"
|
||||||
|
<< " -h, --help \t\t\t produce help message\n"
|
||||||
|
<< " -v, --version \t\t\t show version number\n"
|
||||||
|
<< " -p, --port arg (=" << settings.port << ")\t\t server port\n"
|
||||||
|
<< " --controlPort arg (=" << settings.controlPort << ")\t\t Remote control port\n"
|
||||||
|
<< " -s, --sampleformat arg(=" << settings.sampleFormat.getFormat() << ")\t sample format\n"
|
||||||
|
<< " -c, --codec arg(=" << settings.codec << ")\t\t transport codec [flac|ogg|pcm][:options]. Type codec:? to get codec specific options\n"
|
||||||
|
<< " -f, --fifo arg(=" << settings.fifoName << ")\t name of the input fifo file\n"
|
||||||
|
<< " -d, --daemon [arg(=" << processPriority << ")]\t\t daemonize, optional process priority [-20..19]\n"
|
||||||
|
<< " -b, --buffer arg(=" << settings.bufferMs << ")\t\t buffer [ms]\n"
|
||||||
|
<< " --pipeReadBuffer arg(=" << settings.pipeReadMs << ")\t\t pipe read buffer [ms]\n"
|
||||||
|
<< "\n";
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settings.codec.find(":?") != string::npos)
|
if (settings.codec.find(":?") != string::npos)
|
||||||
|
@ -106,15 +153,16 @@ int main(int argc, char* argv[])
|
||||||
signal(SIGTERM, signal_handler);
|
signal(SIGTERM, signal_handler);
|
||||||
signal(SIGINT, signal_handler);
|
signal(SIGINT, signal_handler);
|
||||||
|
|
||||||
if (vm.count("daemon"))
|
if (runAsDaemon)
|
||||||
{
|
{
|
||||||
daemonize("/var/run/snapserver.pid");
|
daemonize("/var/run/snapserver.pid");
|
||||||
if (runAsDaemon < -20)
|
if (processPriority < -20)
|
||||||
runAsDaemon = -20;
|
processPriority = -20;
|
||||||
else if (runAsDaemon > 19)
|
else if (processPriority > 19)
|
||||||
runAsDaemon = 19;
|
processPriority = 19;
|
||||||
setpriority(PRIO_PROCESS, 0, runAsDaemon);
|
if (processPriority != 0)
|
||||||
logS(kLogNotice) << "daemon started." << endl;
|
setpriority(PRIO_PROCESS, 0, processPriority);
|
||||||
|
logS(kLogNotice) << "daemon started" << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
PublishAvahi publishAvahi("SnapCast");
|
PublishAvahi publishAvahi("SnapCast");
|
||||||
|
@ -125,7 +173,6 @@ int main(int argc, char* argv[])
|
||||||
|
|
||||||
if (settings.bufferMs < 400)
|
if (settings.bufferMs < 400)
|
||||||
settings.bufferMs = 400;
|
settings.bufferMs = 400;
|
||||||
settings.sampleFormat = sampleFormat;
|
|
||||||
|
|
||||||
asio::io_service io_service;
|
asio::io_service io_service;
|
||||||
std::unique_ptr<StreamServer> streamServer(new StreamServer(&io_service, settings));
|
std::unique_ptr<StreamServer> streamServer(new StreamServer(&io_service, settings));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue