summaryrefslogtreecommitdiffstats
path: root/bindings/winrt/doubango_rt/src/rt_ActionConfig.cxx
blob: 02f713edeabd6c637fad0f2f0873974472ca68bb (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
/*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_ActionConfig.h"
#include "rt_String.h"

#include "ActionConfig.h"

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

rtActionConfig::rtActionConfig()
{
	m_pActionConfig = new ActionConfig();
}

rtActionConfig::~rtActionConfig()
{
	rtSafeDelete(m_pActionConfig);
}
	
bool rtActionConfig::addHeader(String^ name, String^ value)
{
	return m_pActionConfig->addHeader(rtString::toUtf8(name).data(), rtString::toUtf8(value).data());
}

bool rtActionConfig::setActiveMedia(rt_twrap_media_type_t type)
{
	return m_pActionConfig->setActiveMedia((twrap_media_type_t)type);
}

#if COM_VISIBLE
bool rtActionConfig::addPayload(Platform::String^ payload)
{
	static std::vector<char> _payload = rtString::toUtf8(payload);
	return m_pActionConfig->addPayload(_payload.data(), _payload.size());
}
#else
bool rtActionConfig::addPayload(IntPtr payload, unsigned len)
{
	return m_pActionConfig->addPayload((const void*)payload, len);
}
#endif /* COM_VISIBLE */
	
rtActionConfig^ rtActionConfig::setResponseLine(short code, String^ phrase)
{
	m_pActionConfig->setResponseLine(code, rtString::toUtf8(phrase).data());
	return this;
}

rtActionConfig^ rtActionConfig::setMediaString(rt_twrap_media_type_t type, String^ key, String^ value)
{
	m_pActionConfig->setMediaString((twrap_media_type_t)type, rtString::toUtf8(key).data(),  rtString::toUtf8(value).data());
	return this;
}

rtActionConfig^ rtActionConfig::setMediaInt(rt_twrap_media_type_t type, String^ key, int value)
{
	m_pActionConfig->setMediaInt((twrap_media_type_t)type, rtString::toUtf8(key).data(),  value);
	return this;
}
OpenPOWER on IntegriCloud