Merge branch 'development' into LTS_development

This commit is contained in:
Thulinma 2018-03-20 14:30:42 +01:00
commit 0385daabe8
7 changed files with 262 additions and 124 deletions

View file

@ -164,6 +164,7 @@ namespace Mist{
/// The standard implementation will set isInitialized to false and close the client connection,
/// thus causing the process to exit cleanly.
void Output::onFail(){
MEDIUM_MSG("onFail");
isInitialized = false;
wantRequest = true;
parseData= false;
@ -172,6 +173,7 @@ namespace Mist{
}
void Output::initialize(){
MEDIUM_MSG("initialize");
if (isInitialized){
return;
}
@ -181,7 +183,6 @@ namespace Mist{
if (streamName.size() < 1){
return; //abort - no stream to initialize...
}
isInitialized = true;
reconnect();
//if the connection failed, fail
if (streamName.size() < 1){
@ -322,6 +323,21 @@ namespace Mist{
return false;
}
/// Disconnects from all stat/user-related shared structures.
void Output::disconnect(){
MEDIUM_MSG("disconnect");
if (statsPage.getData()){
statsPage.finish();
myConn.resetCounter();
}
if (nProxy.userClient.getData()){
nProxy.userClient.finish();
}
isInitialized = false;
myMeta.reset();
nProxy.metaPages.clear();
}
/// Connects or reconnects to the stream.
/// Assumes streamName class member has been set already.
/// Will start input if not currently active, calls onFail() if this does not succeed.
@ -343,13 +359,7 @@ namespace Mist{
return;
}
}
if (statsPage.getData()){
statsPage.finish();
myConn.resetCounter();
}
if (nProxy.userClient.getData()){
nProxy.userClient.finish();
}
disconnect();
nProxy.streamName = streamName;
char userPageName[NAME_BUFFER_SIZE];
snprintf(userPageName, NAME_BUFFER_SIZE, SHM_USERS, streamName.c_str());
@ -364,13 +374,13 @@ namespace Mist{
}
char pageId[NAME_BUFFER_SIZE];
snprintf(pageId, NAME_BUFFER_SIZE, SHM_STREAM_INDEX, streamName.c_str());
nProxy.metaPages.clear();
nProxy.metaPages[0].init(pageId, DEFAULT_STRM_PAGE_SIZE);
if (!nProxy.metaPages[0].mapped){
FAIL_MSG("Could not connect to data for %s", streamName.c_str());
onFail();
return;
}
isInitialized = true;
statsPage = IPC::sharedClient(SHM_STATISTICS, STAT_EX_SIZE, true);
stats(true);
updateMeta();
@ -1562,8 +1572,11 @@ namespace Mist{
nProxy.userClient = IPC::sharedClient(userPageName, PLAY_EX_SIZE, true);
if (!nProxy.userClient.getData()){
WARN_MSG("Player connection failure - aborting output");
onFinish();
myConn.close();
if (!onFinish()){
myConn.close();
}else{
disconnect();
}
return;
}
}
@ -1572,14 +1585,20 @@ namespace Mist{
waitForStreamPushReady();
if (!nProxy.userClient.isAlive()){
WARN_MSG("Failed to wait for buffer, aborting incoming push");
onFinish();
myConn.close();
if (!onFinish()){
myConn.close();
}else{
disconnect();
}
return;
}
}else{
INFO_MSG("Received disconnect request from input");
onFinish();
myConn.close();
if (!onFinish()){
myConn.close();
}else{
disconnect();
}
return;
}
}

View file

@ -75,6 +75,7 @@ namespace Mist {
return false;
}
void reconnect();
void disconnect();
virtual void initialize();
virtual void sendHeader();
virtual void onFail();