[Multimedia] Deprecate constructors related to ElmSharp (#4540)
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia.Remoting / WebRTC / MediaScreenSource.cs
1 /*
2  * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 using System;
18 using System.Diagnostics;
19 using NativeWebRTC = Interop.NativeWebRTC;
20
21 namespace Tizen.Multimedia.Remoting
22 {
23     /// <summary>
24     /// Represents a screen source.
25     /// </summary>
26     /// <seealso cref="WebRTC.AddSource"/>
27     /// <seealso cref="WebRTC.AddSources"/>
28     /// <since_tizen> 9 </since_tizen>
29     public sealed class MediaScreenSource : MediaSource
30     {
31         /// <summary>
32         /// Initializes a new instance of the <see cref="MediaScreenSource"/> class.
33         /// </summary>
34         /// <since_tizen> 9 </since_tizen>
35         public MediaScreenSource() : base(MediaType.Video) {}
36
37         internal override void OnAttached(WebRTC webRtc)
38         {
39             Debug.Assert(webRtc != null);
40
41             if (WebRtc != null)
42             {
43                 throw new InvalidOperationException("The source is has already been assigned to another WebRTC.");
44             }
45
46             NativeWebRTC.AddMediaSource(webRtc.Handle, MediaSourceType.Screen, out uint sourceId).
47                 ThrowIfFailed("Failed to add MediaScreenSource.");
48
49             WebRtc = webRtc;
50             SourceId = sourceId;
51         }
52
53         internal override void OnDetached(WebRTC webRtc)
54         {
55             NativeWebRTC.RemoveMediaSource(webRtc.Handle, SourceId.Value).
56                 ThrowIfFailed("Failed to remove MediaScreenSource.");
57
58             WebRtc = null;
59         }
60     }
61 }