OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Ericsson AB. All rights reserved. | 2 * Copyright (C) 2011 Ericsson AB. All rights reserved. |
3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 22 matching lines...) Expand all Loading... |
33 #define MediaStreamDescriptor_h | 33 #define MediaStreamDescriptor_h |
34 | 34 |
35 #include "platform/mediastream/MediaStreamComponent.h" | 35 #include "platform/mediastream/MediaStreamComponent.h" |
36 #include "platform/mediastream/MediaStreamSource.h" | 36 #include "platform/mediastream/MediaStreamSource.h" |
37 #include "wtf/PassOwnPtr.h" | 37 #include "wtf/PassOwnPtr.h" |
38 #include "wtf/RefCounted.h" | 38 #include "wtf/RefCounted.h" |
39 #include "wtf/Vector.h" | 39 #include "wtf/Vector.h" |
40 | 40 |
41 namespace blink { | 41 namespace blink { |
42 | 42 |
43 class PLATFORM_EXPORT MediaStreamDescriptorClient : public GarbageCollectedMixin
{ | 43 class PLATFORM_EXPORT MediaStreamDescriptorClient { |
44 public: | 44 public: |
45 virtual ~MediaStreamDescriptorClient() { } | 45 virtual ~MediaStreamDescriptorClient() { } |
46 | 46 |
47 virtual void streamEnded() = 0; | 47 virtual void streamEnded() = 0; |
48 virtual void addRemoteTrack(MediaStreamComponent*) = 0; | 48 virtual void addRemoteTrack(MediaStreamComponent*) = 0; |
49 virtual void removeRemoteTrack(MediaStreamComponent*) = 0; | 49 virtual void removeRemoteTrack(MediaStreamComponent*) = 0; |
50 DEFINE_INLINE_VIRTUAL_TRACE() { } | |
51 }; | 50 }; |
52 | 51 |
53 class PLATFORM_EXPORT MediaStreamDescriptor final : public GarbageCollectedFinal
ized<MediaStreamDescriptor> { | 52 class PLATFORM_EXPORT MediaStreamDescriptor final : public RefCounted<MediaStrea
mDescriptor> { |
54 public: | 53 public: |
55 class ExtraData { | 54 class ExtraData { |
56 public: | 55 public: |
57 virtual ~ExtraData() { } | 56 virtual ~ExtraData() { } |
58 }; | 57 }; |
59 | 58 |
60 // Only used for AudioDestinationNode. | 59 // Only used for AudioDestinationNode. |
61 static MediaStreamDescriptor* create(const MediaStreamSourceVector& audioSou
rces, const MediaStreamSourceVector& videoSources); | 60 static PassRefPtr<MediaStreamDescriptor> create(const MediaStreamSourceVecto
r& audioSources, const MediaStreamSourceVector& videoSources); |
62 | 61 |
63 static MediaStreamDescriptor* create(const MediaStreamComponentVector& audio
Components, const MediaStreamComponentVector& videoComponents); | 62 static PassRefPtr<MediaStreamDescriptor> create(const MediaStreamComponentVe
ctor& audioComponents, const MediaStreamComponentVector& videoComponents); |
64 | 63 |
65 static MediaStreamDescriptor* create(const String& id, const MediaStreamComp
onentVector& audioComponents, const MediaStreamComponentVector& videoComponents)
; | 64 static PassRefPtr<MediaStreamDescriptor> create(const String& id, const Medi
aStreamComponentVector& audioComponents, const MediaStreamComponentVector& video
Components); |
66 | 65 |
67 MediaStreamDescriptorClient* client() const { return m_client; } | 66 MediaStreamDescriptorClient* client() const { return m_client; } |
68 void setClient(MediaStreamDescriptorClient* client) { m_client = client; } | 67 void setClient(MediaStreamDescriptorClient* client) { m_client = client; } |
69 | 68 |
70 String id() const { return m_id; } | 69 String id() const { return m_id; } |
71 | 70 |
72 unsigned numberOfAudioComponents() const { return m_audioComponents.size();
} | 71 unsigned numberOfAudioComponents() const { return m_audioComponents.size();
} |
73 MediaStreamComponent* audioComponent(unsigned index) const { return m_audioC
omponents[index].get(); } | 72 MediaStreamComponent* audioComponent(unsigned index) const { return m_audioC
omponents[index].get(); } |
74 | 73 |
75 unsigned numberOfVideoComponents() const { return m_videoComponents.size();
} | 74 unsigned numberOfVideoComponents() const { return m_videoComponents.size();
} |
76 MediaStreamComponent* videoComponent(unsigned index) const { return m_videoC
omponents[index].get(); } | 75 MediaStreamComponent* videoComponent(unsigned index) const { return m_videoC
omponents[index].get(); } |
77 | 76 |
78 void addComponent(MediaStreamComponent*); | 77 void addComponent(PassRefPtr<MediaStreamComponent>); |
79 void removeComponent(MediaStreamComponent*); | 78 void removeComponent(PassRefPtr<MediaStreamComponent>); |
80 | 79 |
81 void addRemoteTrack(MediaStreamComponent*); | 80 void addRemoteTrack(MediaStreamComponent*); |
82 void removeRemoteTrack(MediaStreamComponent*); | 81 void removeRemoteTrack(MediaStreamComponent*); |
83 | 82 |
84 bool active() const { return m_active; } | 83 bool active() const { return m_active; } |
85 void setActive(bool active) { m_active = active; } | 84 void setActive(bool active) { m_active = active; } |
86 | 85 |
87 bool ended() const { return m_ended; } | 86 bool ended() const { return m_ended; } |
88 void setEnded() { m_ended = true; } | 87 void setEnded() { m_ended = true; } |
89 | 88 |
90 ExtraData* extraData() const { return m_extraData.get(); } | 89 ExtraData* extraData() const { return m_extraData.get(); } |
91 void setExtraData(PassOwnPtr<ExtraData> extraData) { m_extraData = extraData
; } | 90 void setExtraData(PassOwnPtr<ExtraData> extraData) { m_extraData = extraData
; } |
92 | 91 |
93 // |m_extraData| may hold pointers to GC objects, and it may touch them in d
estruction. | |
94 // So this class is eagerly finalized to finalize |m_extraData| promptly. | |
95 EAGERLY_FINALIZE(); | |
96 DECLARE_TRACE(); | |
97 | |
98 private: | 92 private: |
99 MediaStreamDescriptor(const String& id, const MediaStreamSourceVector& audio
Sources, const MediaStreamSourceVector& videoSources); | 93 MediaStreamDescriptor(const String& id, const MediaStreamSourceVector& audio
Sources, const MediaStreamSourceVector& videoSources); |
100 MediaStreamDescriptor(const String& id, const MediaStreamComponentVector& au
dioComponents, const MediaStreamComponentVector& videoComponents); | 94 MediaStreamDescriptor(const String& id, const MediaStreamComponentVector& au
dioComponents, const MediaStreamComponentVector& videoComponents); |
101 | 95 |
102 Member<MediaStreamDescriptorClient> m_client; | 96 MediaStreamDescriptorClient* m_client; |
103 String m_id; | 97 String m_id; |
104 HeapVector<Member<MediaStreamComponent>> m_audioComponents; | 98 Vector<RefPtr<MediaStreamComponent>> m_audioComponents; |
105 HeapVector<Member<MediaStreamComponent>> m_videoComponents; | 99 Vector<RefPtr<MediaStreamComponent>> m_videoComponents; |
106 bool m_active; | 100 bool m_active; |
107 bool m_ended; | 101 bool m_ended; |
108 | 102 |
109 OwnPtr<ExtraData> m_extraData; | 103 OwnPtr<ExtraData> m_extraData; |
110 }; | 104 }; |
111 | 105 |
112 typedef HeapVector<Member<MediaStreamDescriptor>> MediaStreamDescriptorVector; | 106 typedef Vector<RefPtr<MediaStreamDescriptor>> MediaStreamDescriptorVector; |
113 | 107 |
114 } // namespace blink | 108 } // namespace blink |
115 | 109 |
116 #endif // MediaStreamDescriptor_h | 110 #endif // MediaStreamDescriptor_h |
OLD | NEW |