15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
25c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Copyright (C) 2012 Google Inc. All rights reserved.
35c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1.  Redistributions of source code must retain the above copyright
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer.
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2.  Redistributions in binary form must reproduce the above copyright
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer in the
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     documentation and/or other materials provided with the distribution.
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
235c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
25926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)#ifndef RTCDataChannelHandler_h
26926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)#define RTCDataChannelHandler_h
275c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
28521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)#include "core/platform/mediastream/RTCDataChannelHandlerClient.h"
29521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)#include "public/platform/WebRTCDataChannelHandler.h"
30521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)#include "public/platform/WebRTCDataChannelHandlerClient.h"
31521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)#include "wtf/OwnPtr.h"
32521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)#include "wtf/PassOwnPtr.h"
335c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
345c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)namespace WebCore {
355c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
36926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)class RTCDataChannelHandlerClient;
37926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)
3851b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)class RTCDataChannelHandler : public blink::WebRTCDataChannelHandlerClient {
39926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)public:
4051b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    static PassOwnPtr<RTCDataChannelHandler> create(blink::WebRTCDataChannelHandler*);
41521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)    virtual ~RTCDataChannelHandler();
425c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
43521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)    void setClient(RTCDataChannelHandlerClient*);
445c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
45f5e4ad553afbc08dd2e729bb77e937a9a94d5827Torne (Richard Coles)    String label() const;
46f5e4ad553afbc08dd2e729bb77e937a9a94d5827Torne (Richard Coles)
47f5e4ad553afbc08dd2e729bb77e937a9a94d5827Torne (Richard Coles)    // DEPRECATED
48f5e4ad553afbc08dd2e729bb77e937a9a94d5827Torne (Richard Coles)    bool isReliable() const;
49f5e4ad553afbc08dd2e729bb77e937a9a94d5827Torne (Richard Coles)
50f5e4ad553afbc08dd2e729bb77e937a9a94d5827Torne (Richard Coles)    bool ordered() const;
51f5e4ad553afbc08dd2e729bb77e937a9a94d5827Torne (Richard Coles)    unsigned short maxRetransmitTime() const;
52f5e4ad553afbc08dd2e729bb77e937a9a94d5827Torne (Richard Coles)    unsigned short maxRetransmits() const;
53f5e4ad553afbc08dd2e729bb77e937a9a94d5827Torne (Richard Coles)    String protocol() const;
54f5e4ad553afbc08dd2e729bb77e937a9a94d5827Torne (Richard Coles)    bool negotiated() const;
55f5e4ad553afbc08dd2e729bb77e937a9a94d5827Torne (Richard Coles)    unsigned short id() const;
56f5e4ad553afbc08dd2e729bb77e937a9a94d5827Torne (Richard Coles)
57521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)    unsigned long bufferedAmount();
58521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)    bool sendStringData(const String&);
59521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)    bool sendRawData(const char*, size_t);
60521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)    void close();
615c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
6251b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    // blink::WebRTCDataChannelHandlerClient implementation.
63521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)    virtual void didChangeReadyState(ReadyState) const OVERRIDE;
6451b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    virtual void didReceiveStringData(const blink::WebString&) const OVERRIDE;
65521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)    virtual void didReceiveRawData(const char*, size_t) const OVERRIDE;
66521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)    virtual void didDetectError() const OVERRIDE;
67521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)
68521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)private:
6951b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    explicit RTCDataChannelHandler(blink::WebRTCDataChannelHandler*);
70521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)
7151b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    OwnPtr<blink::WebRTCDataChannelHandler> m_webHandler;
72521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)    RTCDataChannelHandlerClient* m_client;
73926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)};
745c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
755c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)} // namespace WebCore
765c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
77926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)#endif // RTCDataChannelHandler_h
78