~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebCore/platform/mediastream/RTCDataChannelDescriptor.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2012 Google Inc. All rights reserved.
 
3
 *
 
4
 * Redistribution and use in source and binary forms, with or without
 
5
 * modification, are permitted provided that the following conditions
 
6
 * are met:
 
7
 * 1.  Redistributions of source code must retain the above copyright
 
8
 *     notice, this list of conditions and the following disclaimer.
 
9
 * 2.  Redistributions in binary form must reproduce the above copyright
 
10
 *     notice, this list of conditions and the following disclaimer in the
 
11
 *     documentation and/or other materials provided with the distribution.
 
12
 *
 
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
 
14
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
15
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
16
 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
 
17
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
18
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
19
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 
20
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
21
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
22
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
23
 */
 
24
 
 
25
#ifndef RTCDataChannelDescriptor_h
 
26
#define RTCDataChannelDescriptor_h
 
27
 
 
28
#if ENABLE(MEDIA_STREAM)
 
29
 
 
30
#include <wtf/RefCounted.h>
 
31
#include <wtf/Vector.h>
 
32
#include <wtf/text/WTFString.h>
 
33
 
 
34
namespace WebCore {
 
35
 
 
36
class RTCDataChannelDescriptorClient {
 
37
public:
 
38
    virtual ~RTCDataChannelDescriptorClient() { }
 
39
 
 
40
    virtual void readyStateChanged() = 0;
 
41
    virtual void dataArrived(const String&) = 0;
 
42
    virtual void dataArrived(const char*, size_t) = 0;
 
43
    virtual void error() = 0;
 
44
};
 
45
 
 
46
class RTCDataChannelDescriptor : public RefCounted<RTCDataChannelDescriptor> {
 
47
public:
 
48
    class ExtraData : public RefCounted<ExtraData> {
 
49
    public:
 
50
        virtual ~ExtraData() { }
 
51
    };
 
52
 
 
53
    enum ReadyState {
 
54
        ReadyStateConnecting = 0,
 
55
        ReadyStateOpen = 1,
 
56
        ReadyStateClosing = 2,
 
57
        ReadyStateClosed = 3,
 
58
    };
 
59
 
 
60
    static PassRefPtr<RTCDataChannelDescriptor> create(const String& label, bool reliable);
 
61
    virtual ~RTCDataChannelDescriptor();
 
62
 
 
63
    RTCDataChannelDescriptorClient* client() const { return m_client; }
 
64
    void setClient(RTCDataChannelDescriptorClient* client) { m_client = client; }
 
65
 
 
66
    const String& label() const { return m_label; }
 
67
    bool reliable() const { return m_reliable; }
 
68
 
 
69
    ReadyState readyState() const { return m_readyState; }
 
70
 
 
71
    unsigned long bufferedAmount() const { return m_bufferedAmount; }
 
72
    void setBufferedAmount(unsigned long bufferedAmount) { m_bufferedAmount = bufferedAmount; }
 
73
 
 
74
    void readyStateChanged(ReadyState);
 
75
    void dataArrived(const String&);
 
76
    void dataArrived(const char*, size_t);
 
77
    void error();
 
78
 
 
79
    PassRefPtr<ExtraData> extraData() const { return m_extraData; }
 
80
    void setExtraData(PassRefPtr<ExtraData> extraData) { m_extraData = extraData; }
 
81
 
 
82
private:
 
83
    RTCDataChannelDescriptor(const String& label, bool reliable);
 
84
 
 
85
    RTCDataChannelDescriptorClient* m_client;
 
86
    String m_label;
 
87
    bool m_reliable;
 
88
    ReadyState m_readyState;
 
89
    unsigned long m_bufferedAmount;
 
90
    RefPtr<ExtraData> m_extraData;
 
91
};
 
92
 
 
93
} // namespace WebCore
 
94
 
 
95
#endif // ENABLE(MEDIA_STREAM)
 
96
 
 
97
#endif // RTCDataChannelDescriptor_h