123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- using System;
- using System.IO;
- using System.Threading;
- using System.Threading.Tasks;
- using MediaBrowser.Model.IO;
- using MediaBrowser.Common.Net;
- using MediaBrowser.Controller;
- using MediaBrowser.Controller.LiveTv;
- using MediaBrowser.Controller.Library;
- using MediaBrowser.Model.Dto;
- using MediaBrowser.Model.Logging;
- using MediaBrowser.Model.MediaInfo;
- using MediaBrowser.Model.System;
- namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
- {
- public class HdHomerunHttpStream : LiveStream, IDirectStreamProvider
- {
- private readonly ILogger _logger;
- private readonly IHttpClient _httpClient;
- private readonly IServerApplicationHost _appHost;
- private readonly CancellationTokenSource _liveStreamCancellationTokenSource = new CancellationTokenSource();
- private readonly TaskCompletionSource<bool> _liveStreamTaskCompletionSource = new TaskCompletionSource<bool>();
- private readonly string _tempFilePath;
- public HdHomerunHttpStream(MediaSourceInfo mediaSource, string originalStreamId, IFileSystem fileSystem, IHttpClient httpClient, ILogger logger, IServerApplicationPaths appPaths, IServerApplicationHost appHost, IEnvironmentInfo environment)
- : base(mediaSource, environment, fileSystem)
- {
- _httpClient = httpClient;
- _logger = logger;
- _appHost = appHost;
- OriginalStreamId = originalStreamId;
- _tempFilePath = Path.Combine(appPaths.TranscodingTempPath, UniqueId + ".ts");
- }
- protected override async Task OpenInternal(CancellationToken openCancellationToken)
- {
- _liveStreamCancellationTokenSource.Token.ThrowIfCancellationRequested();
- var mediaSource = OriginalMediaSource;
- var url = mediaSource.Path;
- _logger.Info("Opening HDHR Live stream from {0}", url);
- var taskCompletionSource = new TaskCompletionSource<bool>();
- StartStreaming(url, taskCompletionSource, _liveStreamCancellationTokenSource.Token);
- //OpenedMediaSource.Protocol = MediaProtocol.File;
- //OpenedMediaSource.Path = tempFile;
- //OpenedMediaSource.ReadAtNativeFramerate = true;
- OpenedMediaSource.Path = _appHost.GetLocalApiUrl("127.0.0.1") + "/LiveTv/LiveStreamFiles/" + UniqueId + "/stream.ts";
- OpenedMediaSource.Protocol = MediaProtocol.Http;
- //OpenedMediaSource.SupportsDirectPlay = false;
- //OpenedMediaSource.SupportsDirectStream = true;
- //OpenedMediaSource.SupportsTranscoding = true;
- await taskCompletionSource.Task.ConfigureAwait(false);
- //await Task.Delay(5000).ConfigureAwait(false);
- }
- public override Task Close()
- {
- _logger.Info("Closing HDHR live stream");
- _liveStreamCancellationTokenSource.Cancel();
- return _liveStreamTaskCompletionSource.Task;
- }
- private Task StartStreaming(string url, TaskCompletionSource<bool> openTaskCompletionSource, CancellationToken cancellationToken)
- {
- return Task.Run(async () =>
- {
- var isFirstAttempt = true;
- while (!cancellationToken.IsCancellationRequested)
- {
- try
- {
- using (var response = await _httpClient.SendAsync(new HttpRequestOptions
- {
- Url = url,
- CancellationToken = cancellationToken,
- BufferContent = false,
- // Increase a little bit
- TimeoutMs = 30000
- }, "GET").ConfigureAwait(false))
- {
- _logger.Info("Opened HDHR stream from {0}", url);
- if (!cancellationToken.IsCancellationRequested)
- {
- _logger.Info("Beginning multicastStream.CopyUntilCancelled");
- FileSystem.CreateDirectory(FileSystem.GetDirectoryName(_tempFilePath));
- using (var fileStream = FileSystem.GetFileStream(_tempFilePath, FileOpenMode.Create, FileAccessMode.Write, FileShareMode.Read, FileOpenOptions.Asynchronous | FileOpenOptions.SequentialScan))
- {
- ResolveAfterDelay(2000, openTaskCompletionSource);
- await response.Content.CopyToAsync(fileStream, 81920, cancellationToken).ConfigureAwait(false);
- }
- }
- }
- }
- catch (OperationCanceledException)
- {
- break;
- }
- catch (Exception ex)
- {
- if (isFirstAttempt)
- {
- _logger.ErrorException("Error opening live stream:", ex);
- openTaskCompletionSource.TrySetException(ex);
- break;
- }
- _logger.ErrorException("Error copying live stream, will reopen", ex);
- }
- isFirstAttempt = false;
- }
- _liveStreamTaskCompletionSource.TrySetResult(true);
- await DeleteTempFile(_tempFilePath).ConfigureAwait(false);
- });
- }
- private void ResolveAfterDelay(int delayMs, TaskCompletionSource<bool> openTaskCompletionSource)
- {
- Task.Run(async () =>
- {
- await Task.Delay(delayMs).ConfigureAwait(false);
- openTaskCompletionSource.TrySetResult(true);
- });
- }
- public Task CopyToAsync(Stream stream, CancellationToken cancellationToken)
- {
- return CopyFileTo(_tempFilePath, false, stream, cancellationToken);
- }
- }
- }
|