2014-01-12 08:58:47 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-09-26 08:48:14 -07:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents a single live tv back end (next pvr, media portal, etc).
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ILiveTvService
|
|
|
|
|
{
|
2014-01-14 22:38:08 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [data source changed].
|
|
|
|
|
/// </summary>
|
|
|
|
|
event EventHandler DataSourceChanged;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [recording status changed].
|
|
|
|
|
/// </summary>
|
|
|
|
|
event EventHandler<RecordingStatusChangedEventArgs> RecordingStatusChanged;
|
|
|
|
|
|
2013-09-26 08:48:14 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
string Name { get; }
|
|
|
|
|
|
2014-01-17 13:51:29 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the home page URL.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The home page URL.</value>
|
|
|
|
|
string HomePageUrl { get; }
|
|
|
|
|
|
2014-01-16 10:23:30 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the status information asynchronous.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{LiveTvServiceStatusInfo}.</returns>
|
|
|
|
|
Task<LiveTvServiceStatusInfo> GetStatusInfoAsync(CancellationToken cancellationToken);
|
|
|
|
|
|
2013-09-26 08:48:14 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the channels async.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{IEnumerable{ChannelInfo}}.</returns>
|
|
|
|
|
Task<IEnumerable<ChannelInfo>> GetChannelsAsync(CancellationToken cancellationToken);
|
2013-10-31 13:45:58 -07:00
|
|
|
|
|
2013-11-20 10:10:02 -07:00
|
|
|
|
/// <summary>
|
2013-11-26 14:36:11 -07:00
|
|
|
|
/// Cancels the timer asynchronous.
|
2013-11-20 10:10:02 -07:00
|
|
|
|
/// </summary>
|
2013-11-26 14:36:11 -07:00
|
|
|
|
/// <param name="timerId">The timer identifier.</param>
|
2013-11-20 10:10:02 -07:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2013-11-26 14:36:11 -07:00
|
|
|
|
Task CancelTimerAsync(string timerId, CancellationToken cancellationToken);
|
2013-11-20 10:10:02 -07:00
|
|
|
|
|
2013-12-15 07:19:24 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Cancels the series timer asynchronous.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="timerId">The timer identifier.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task CancelSeriesTimerAsync(string timerId, CancellationToken cancellationToken);
|
2014-01-12 08:58:47 -07:00
|
|
|
|
|
2013-11-25 13:39:23 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Deletes the recording asynchronous.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="recordingId">The recording identifier.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task DeleteRecordingAsync(string recordingId, CancellationToken cancellationToken);
|
2013-11-26 14:36:11 -07:00
|
|
|
|
|
2013-11-20 10:10:02 -07:00
|
|
|
|
/// <summary>
|
2013-11-26 14:36:11 -07:00
|
|
|
|
/// Creates the timer asynchronous.
|
2013-11-20 10:10:02 -07:00
|
|
|
|
/// </summary>
|
2013-11-26 14:36:11 -07:00
|
|
|
|
/// <param name="info">The information.</param>
|
2013-11-20 10:10:02 -07:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2013-11-26 14:36:11 -07:00
|
|
|
|
Task CreateTimerAsync(TimerInfo info, CancellationToken cancellationToken);
|
2013-11-25 13:39:23 -07:00
|
|
|
|
|
2013-11-30 23:25:19 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates the series timer asynchronous.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="info">The information.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task CreateSeriesTimerAsync(SeriesTimerInfo info, CancellationToken cancellationToken);
|
|
|
|
|
|
2013-12-14 18:17:57 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Updates the timer asynchronous.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="info">The information.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task UpdateTimerAsync(TimerInfo info, CancellationToken cancellationToken);
|
|
|
|
|
|
2013-11-30 23:25:19 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Updates the series timer asynchronous.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="info">The information.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task UpdateSeriesTimerAsync(SeriesTimerInfo info, CancellationToken cancellationToken);
|
2014-01-12 08:58:47 -07:00
|
|
|
|
|
2013-11-19 20:15:48 -07:00
|
|
|
|
/// <summary>
|
2013-12-19 14:51:32 -07:00
|
|
|
|
/// Gets the channel image asynchronous. This only needs to be implemented if an image path or url cannot be supplied to ChannelInfo
|
2013-11-19 20:15:48 -07:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="channelId">The channel identifier.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{Stream}.</returns>
|
2013-12-22 11:58:51 -07:00
|
|
|
|
Task<StreamResponseInfo> GetChannelImageAsync(string channelId, CancellationToken cancellationToken);
|
2013-11-19 20:15:48 -07:00
|
|
|
|
|
2013-12-14 08:49:11 -07:00
|
|
|
|
/// <summary>
|
2013-12-19 14:51:32 -07:00
|
|
|
|
/// Gets the recording image asynchronous. This only needs to be implemented if an image path or url cannot be supplied to RecordingInfo
|
2013-12-14 08:49:11 -07:00
|
|
|
|
/// </summary>
|
2013-12-17 22:44:46 -07:00
|
|
|
|
/// <param name="recordingId">The recording identifier.</param>
|
2013-12-14 08:49:11 -07:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{ImageResponseInfo}.</returns>
|
2013-12-22 11:58:51 -07:00
|
|
|
|
Task<StreamResponseInfo> GetRecordingImageAsync(string recordingId, CancellationToken cancellationToken);
|
2013-12-14 08:49:11 -07:00
|
|
|
|
|
2013-12-02 14:46:22 -07:00
|
|
|
|
/// <summary>
|
2013-12-19 14:51:32 -07:00
|
|
|
|
/// Gets the program image asynchronous. This only needs to be implemented if an image path or url cannot be supplied to ProgramInfo
|
2013-12-02 14:46:22 -07:00
|
|
|
|
/// </summary>
|
2013-12-17 22:44:46 -07:00
|
|
|
|
/// <param name="programId">The program identifier.</param>
|
2013-12-14 08:49:11 -07:00
|
|
|
|
/// <param name="channelId">The channel identifier.</param>
|
2013-12-02 14:46:22 -07:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{ImageResponseInfo}.</returns>
|
2013-12-22 11:58:51 -07:00
|
|
|
|
Task<StreamResponseInfo> GetProgramImageAsync(string programId, string channelId, CancellationToken cancellationToken);
|
2014-01-12 08:58:47 -07:00
|
|
|
|
|
2013-11-11 12:36:48 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the recordings asynchronous.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{IEnumerable{RecordingInfo}}.</returns>
|
2013-11-25 13:39:23 -07:00
|
|
|
|
Task<IEnumerable<RecordingInfo>> GetRecordingsAsync(CancellationToken cancellationToken);
|
2013-11-02 14:38:21 -07:00
|
|
|
|
|
2013-11-26 14:36:11 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the recordings asynchronous.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{IEnumerable{RecordingInfo}}.</returns>
|
|
|
|
|
Task<IEnumerable<TimerInfo>> GetTimersAsync(CancellationToken cancellationToken);
|
2013-11-29 23:49:38 -07:00
|
|
|
|
|
2013-12-17 13:02:12 -07:00
|
|
|
|
/// <summary>
|
2014-01-13 13:31:09 -07:00
|
|
|
|
/// Gets the new timer defaults asynchronous.
|
2013-12-17 13:02:12 -07:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
2014-01-13 13:31:09 -07:00
|
|
|
|
/// <param name="program">The program.</param>
|
|
|
|
|
/// <returns>Task{SeriesTimerInfo}.</returns>
|
|
|
|
|
Task<SeriesTimerInfo> GetNewTimerDefaultsAsync(CancellationToken cancellationToken, ProgramInfo program = null);
|
|
|
|
|
|
2013-11-29 23:49:38 -07:00
|
|
|
|
/// <summary>
|
2013-11-30 23:25:19 -07:00
|
|
|
|
/// Gets the series timers asynchronous.
|
2013-11-29 23:49:38 -07:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
2013-11-30 23:25:19 -07:00
|
|
|
|
/// <returns>Task{IEnumerable{SeriesTimerInfo}}.</returns>
|
|
|
|
|
Task<IEnumerable<SeriesTimerInfo>> GetSeriesTimersAsync(CancellationToken cancellationToken);
|
2014-01-12 08:58:47 -07:00
|
|
|
|
|
2013-11-11 12:36:48 -07:00
|
|
|
|
/// <summary>
|
2013-11-25 13:39:23 -07:00
|
|
|
|
/// Gets the programs asynchronous.
|
2013-11-11 12:36:48 -07:00
|
|
|
|
/// </summary>
|
2013-11-25 09:15:31 -07:00
|
|
|
|
/// <param name="channelId">The channel identifier.</param>
|
2014-01-12 08:58:47 -07:00
|
|
|
|
/// <param name="startDateUtc">The start date UTC.</param>
|
|
|
|
|
/// <param name="endDateUtc">The end date UTC.</param>
|
2013-11-11 12:36:48 -07:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
2013-11-25 09:15:31 -07:00
|
|
|
|
/// <returns>Task{IEnumerable{ProgramInfo}}.</returns>
|
2014-01-12 08:58:47 -07:00
|
|
|
|
Task<IEnumerable<ProgramInfo>> GetProgramsAsync(string channelId, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken);
|
2013-12-22 10:16:24 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the recording stream.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="recordingId">The recording identifier.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{Stream}.</returns>
|
2014-01-02 16:07:37 -07:00
|
|
|
|
Task<LiveStreamInfo> GetRecordingStream(string recordingId, CancellationToken cancellationToken);
|
2013-12-22 10:16:24 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the channel stream.
|
|
|
|
|
/// </summary>
|
2013-12-29 11:53:56 -07:00
|
|
|
|
/// <param name="channelId">The channel identifier.</param>
|
2013-12-22 10:16:24 -07:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{Stream}.</returns>
|
2014-01-02 16:07:37 -07:00
|
|
|
|
Task<LiveStreamInfo> GetChannelStream(string channelId, CancellationToken cancellationToken);
|
2014-01-04 20:50:29 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Closes the live stream.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The identifier.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task CloseLiveStream(string id, CancellationToken cancellationToken);
|
2014-01-12 08:58:47 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Records the live stream.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The identifier.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task RecordLiveStream(string id, CancellationToken cancellationToken);
|
2013-09-26 08:48:14 -07:00
|
|
|
|
}
|
|
|
|
|
}
|