Skip to content

Commit

Permalink
[lgwebos] Delay subscription of channel (#7401)
Browse files Browse the repository at this point in the history
* Delay subscription of channel. Addresses issue #7243.
* Calling stopChannelSubscriptionJob() in dispose()

Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>
  • Loading branch information
sprehn committed Apr 17, 2020
1 parent e1040a6 commit 37f1096
Showing 1 changed file with 30 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public class LGWebOSHandler extends BaseThingHandler implements LGWebOSTVSocket.
*/
private static final int RECONNECT_INTERVAL_SECONDS = 10;
private static final int RECONNECT_START_UP_DELAY_SECONDS = 0;

private static final int CHANNEL_SUBSCRIPTION_DELAY_SECONDS = 1;
private static final String APP_ID_LIVETV = "com.webos.app.livetv";

/*
Expand All @@ -92,6 +92,7 @@ public class LGWebOSHandler extends BaseThingHandler implements LGWebOSTVSocket.

private @Nullable ScheduledFuture<?> reconnectJob;
private @Nullable ScheduledFuture<?> keepAliveJob;
private @Nullable ScheduledFuture<?> channelSubscriptionJob;

private @Nullable LGWebOSConfiguration config;

Expand Down Expand Up @@ -148,6 +149,7 @@ public void dispose() {
logger.debug("Disposing handler for thing {}", getThing().getUID());
stopKeepAliveJob();
stopReconnectJob();
stopChannelSubscriptionJob();

LGWebOSTVSocket s = socket;
if (s != null) {
Expand Down Expand Up @@ -332,10 +334,34 @@ public void postUpdate(String channelId, State state) {
updateState(channelId, state);
}

// channel subscription only works when on livetv app.
if (CHANNEL_APP_LAUNCHER.equals(channelId) && APP_ID_LIVETV.equals(state.toString())) {
channelHandlers.get(CHANNEL_CHANNEL).refreshSubscription(CHANNEL_CHANNEL, this);
// channel subscription only works when livetv app is started,
// therefore we need to slightly delay the subscription
if (CHANNEL_APP_LAUNCHER.equals(channelId)) {
if (APP_ID_LIVETV.equals(state.toString())) {
scheduleChannelSubscriptionJob();
} else {
stopChannelSubscriptionJob();
}
}
}

private void scheduleChannelSubscriptionJob() {
ScheduledFuture<?> job = channelSubscriptionJob;
if (job == null || job.isCancelled()) {
logger.debug("Schedule channel subscription job");
channelSubscriptionJob = scheduler.schedule(
() -> channelHandlers.get(CHANNEL_CHANNEL).refreshSubscription(CHANNEL_CHANNEL, this),
CHANNEL_SUBSCRIPTION_DELAY_SECONDS, TimeUnit.SECONDS);
}
}

private void stopChannelSubscriptionJob() {
ScheduledFuture<?> job = channelSubscriptionJob;
if (job != null && !job.isCancelled()) {
logger.debug("Stop channel subscription job");
job.cancel(true);
}
channelSubscriptionJob = null;
}

@Override
Expand Down

0 comments on commit 37f1096

Please sign in to comment.