summaryrefslogtreecommitdiffstats
path: root/bindings/winrt/doubango_rt/src/rt_SipCallback.cxx
blob: ce5c0c9a73c8ef7519cfbac8cac66082576c719b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*Copyright (C) 2013 Doubango Telecom <http://www.doubango.org>
*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*/
#include "rt_SipCallback.h"
#include "rt_SipEvent.h"

#include "SipEvent.h"
#include "SipCallback.h"

using namespace doubango_rt::BackEnd;
using namespace Platform;
using namespace std;

class SipCallbackProxy : public SipCallback
{
public:
    SipCallbackProxy(rtSipCallback^ rtCallback) {
        m_pCallback = rtCallback;
    }

    virtual int OnDialogEvent(const DialogEvent* e) override {
        if(e && m_pCallback && m_pCallback->m_pI) {
            return m_pCallback->m_pI->OnDialogEvent(ref new rtDialogEvent(const_cast<tsip_event_t*>(const_cast<DialogEvent*>(e)->getWrappedEvent())));
        }
        return 0;
    }

    virtual int OnStackEvent(const StackEvent* e) override {
        if(e && m_pCallback && m_pCallback->m_pI) {
            return m_pCallback->m_pI->OnStackEvent(ref new rtStackEvent(const_cast<tsip_event_t*>(const_cast<StackEvent*>(e)->getWrappedEvent())));
        }
        return 0;
    }

    virtual int OnInviteEvent(const InviteEvent* e) override {
        if(e && m_pCallback && m_pCallback->m_pI) {
            return m_pCallback->m_pI->OnInviteEvent(ref new rtInviteEvent(const_cast<tsip_event_t*>(const_cast<InviteEvent*>(e)->getWrappedEvent())));
        }
        return 0;
    }

    virtual int OnMessagingEvent(const MessagingEvent* e) override {
        if(e && m_pCallback && m_pCallback->m_pI) {
            return m_pCallback->m_pI->OnMessagingEvent(ref new rtMessagingEvent(const_cast<tsip_event_t*>(const_cast<MessagingEvent*>(e)->getWrappedEvent())));
        }
        return 0;
    }

    virtual int OnInfoEvent(const InfoEvent* e) override {
        if(m_pCallback && m_pCallback->m_pI) {
            return m_pCallback->m_pI->OnInfoEvent(ref new rtInfoEvent(const_cast<tsip_event_t*>(const_cast<InfoEvent*>(e)->getWrappedEvent())));
        }
        return 0;
    }

    virtual int OnOptionsEvent(const OptionsEvent* e) override {
        if(e && m_pCallback && m_pCallback->m_pI) {
            return m_pCallback->m_pI->OnOptionsEvent(ref new rtOptionsEvent(const_cast<tsip_event_t*>(const_cast<OptionsEvent*>(e)->getWrappedEvent())));
        }
        return 0;
    }

    virtual int OnPublicationEvent(const PublicationEvent* e) override {
        if(e && m_pCallback && m_pCallback->m_pI) {
            return m_pCallback->m_pI->OnPublicationEvent(ref new rtPublicationEvent(const_cast<tsip_event_t*>(const_cast<PublicationEvent*>(e)->getWrappedEvent())));
        }
        return 0;
    }

    virtual int OnRegistrationEvent(const RegistrationEvent* e) override {
        if(m_pCallback && m_pCallback->m_pI) {
            return m_pCallback->m_pI->OnRegistrationEvent(ref new rtRegistrationEvent(const_cast<tsip_event_t*>(const_cast<RegistrationEvent*>(e)->getWrappedEvent())));
        }
        return 0;
    }

    virtual int OnSubscriptionEvent(const SubscriptionEvent* e) override {
        if(e && m_pCallback && m_pCallback->m_pI) {
            return m_pCallback->m_pI->OnSubscriptionEvent(ref new rtSubscriptionEvent(const_cast<tsip_event_t*>(const_cast<SubscriptionEvent*>(e)->getWrappedEvent())));
        }
        return 0;
    }

private:
    rtSipCallback^ m_pCallback;
};

rtSipCallback::rtSipCallback(rtISipCallback^ pI)
{
    m_pI = pI;
    m_pCallback = new SipCallbackProxy(this);
}

rtSipCallback::~rtSipCallback()
{
    rtSafeDelete(m_pCallback);
}

const SipCallback* rtSipCallback::getWrappedCallback()
{
    return dynamic_cast<const SipCallback*>(m_pCallback);
}
OpenPOWER on IntegriCloud