/* * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the License); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an AS IS BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ using System; using System.Diagnostics; using NativeWebRTC = Interop.NativeWebRTC; namespace Tizen.Multimedia.Remoting { /// /// Represents a media source with contents read from a file. /// /// /// Depending on where the source file is located either the media storage privilege (http://tizen.org/privilege/mediastorage) is required or
/// the external storage privilege(http://tizen.org/privilege/externalstorage) is required. ///
/// /// /// 10 public sealed class MediaFileSource : MediaSource { private string _path; /// /// Initializes a new instance of the class. /// /// The of file source. /// The file path. /// is null. /// 10 public MediaFileSource(MediaType type, string path) : base(type) { _path = path ?? throw new ArgumentNullException(nameof(path), "path is null"); } /// /// Gets or sets the looping mode of the file source. /// /// /// true if the transfer starts again from the beginning of the file source after reaching the end of the file; otherwise, false\n /// The default value is false. /// /// MediaSource is not attached yet. /// The WebRTC has already been disposed. /// 10 public bool IsLooping { get { if (!SourceId.HasValue) { return false; } NativeWebRTC.GetFileSourceLooping(WebRtc.Handle, SourceId.Value, out bool isLooping). ThrowIfFailed("Failed to get looping mode"); return isLooping; } set { if (!SourceId.HasValue) { throw new InvalidOperationException("MediaSource is not attached yet. Call AddSource() first."); } NativeWebRTC.SetFileSourceLooping(WebRtc.Handle, SourceId.Value, value). ThrowIfFailed("Failed to set looping mode"); } } internal override void OnAttached(WebRTC webRtc) { Debug.Assert(webRtc != null); if (WebRtc != null) { throw new InvalidOperationException("The source is has already been assigned to another WebRTC."); } NativeWebRTC.AddMediaSource(webRtc.Handle, MediaSourceType.File, out uint sourceId). ThrowIfFailed("Failed to add MediaFileSource."); NativeWebRTC.SetFileSourcePath(webRtc.Handle, sourceId, _path). ThrowIfFailed("Failed to set path for MediaFileSource."); WebRtc = webRtc; SourceId = sourceId; } internal override void OnDetached(WebRTC webRtc) { NativeWebRTC.RemoveMediaSource(webRtc.Handle, SourceId.Value). ThrowIfFailed("Failed to remove MediaFileSource."); WebRtc = null; } } }