2018-11-04 10:19:17 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
* plugins/VOIP/services/rsVOIPItem.h *
|
|
|
|
* *
|
|
|
|
* Copyright 2011 by Robert Fernie <retroshare.project@gmail.com> *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
|
|
* License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 Affero General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2015-05-11 15:40:07 -04:00
|
|
|
|
|
|
|
#pragma once
|
2012-02-19 03:32:47 -05:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2017-04-18 15:11:37 -04:00
|
|
|
#include "rsitems/rsserviceids.h"
|
2017-05-02 16:05:54 -04:00
|
|
|
#include "rsitems/rsitem.h"
|
2012-02-19 03:32:47 -05:00
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
2012-02-26 12:13:54 -05:00
|
|
|
const uint16_t RS_SERVICE_TYPE_VOIP_PLUGIN = 0xa021;
|
2012-02-26 10:36:07 -05:00
|
|
|
|
2015-08-10 22:13:50 -04:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_VOIP_PING = 0x01;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_VOIP_PONG = 0x02;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_VOIP_PROTOCOL = 0x03 ;
|
|
|
|
// 0x04,0x05 is unused because of a change in the protocol
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_VOIP_BANDWIDTH = 0x06 ;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_VOIP_DATA = 0x07 ;
|
2012-02-19 16:13:20 -05:00
|
|
|
|
|
|
|
const uint8_t QOS_PRIORITY_RS_VOIP = 9 ;
|
2012-02-19 03:32:47 -05:00
|
|
|
|
2014-07-15 16:04:31 -04:00
|
|
|
const uint32_t RS_VOIP_FLAGS_VIDEO_DATA = 0x0001 ;
|
|
|
|
const uint32_t RS_VOIP_FLAGS_AUDIO_DATA = 0x0002 ;
|
|
|
|
|
2015-05-11 15:40:07 -04:00
|
|
|
class RsVOIPItem: public RsItem
|
2012-02-19 03:32:47 -05:00
|
|
|
{
|
|
|
|
public:
|
2017-05-02 16:05:54 -04:00
|
|
|
RsVOIPItem(uint8_t voip_subtype) : RsItem(RS_PKT_VERSION_SERVICE,RS_SERVICE_TYPE_VOIP_PLUGIN,voip_subtype)
|
2012-02-19 16:13:20 -05:00
|
|
|
{
|
|
|
|
setPriorityLevel(QOS_PRIORITY_RS_VOIP) ;
|
|
|
|
}
|
2012-02-19 03:32:47 -05:00
|
|
|
|
2015-10-10 09:21:59 -04:00
|
|
|
virtual ~RsVOIPItem() {}
|
|
|
|
virtual void clear() {}
|
2012-02-19 03:32:47 -05:00
|
|
|
};
|
|
|
|
|
2015-05-11 15:40:07 -04:00
|
|
|
class RsVOIPPingItem: public RsVOIPItem
|
2012-02-19 03:32:47 -05:00
|
|
|
{
|
|
|
|
public:
|
2015-06-28 08:50:26 -04:00
|
|
|
RsVOIPPingItem() :RsVOIPItem(RS_PKT_SUBTYPE_VOIP_PING), mSeqNo(0), mPingTS(0) {}
|
2015-05-11 15:40:07 -04:00
|
|
|
virtual ~RsVOIPPingItem() {}
|
2017-05-02 16:05:54 -04:00
|
|
|
|
|
|
|
virtual void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2012-02-19 03:32:47 -05:00
|
|
|
|
|
|
|
uint32_t mSeqNo;
|
|
|
|
uint64_t mPingTS;
|
|
|
|
};
|
|
|
|
|
2015-05-11 15:40:07 -04:00
|
|
|
class RsVOIPDataItem: public RsVOIPItem
|
2012-02-19 16:13:20 -05:00
|
|
|
{
|
|
|
|
public:
|
2015-05-11 15:40:07 -04:00
|
|
|
RsVOIPDataItem() :RsVOIPItem(RS_PKT_SUBTYPE_VOIP_DATA) {}
|
2012-02-19 16:13:20 -05:00
|
|
|
|
2015-05-11 15:40:07 -04:00
|
|
|
virtual ~RsVOIPDataItem()
|
2012-02-19 16:13:20 -05:00
|
|
|
{
|
|
|
|
free(voip_data) ;
|
|
|
|
voip_data = NULL ;
|
|
|
|
}
|
2017-05-02 16:05:54 -04:00
|
|
|
virtual void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2012-02-19 16:13:20 -05:00
|
|
|
|
|
|
|
uint32_t flags ;
|
|
|
|
uint32_t data_size ;
|
2015-08-10 22:13:50 -04:00
|
|
|
|
2012-02-19 16:13:20 -05:00
|
|
|
void *voip_data ;
|
|
|
|
};
|
|
|
|
|
2017-05-02 16:05:54 -04:00
|
|
|
#ifdef TODO
|
2015-08-10 22:13:50 -04:00
|
|
|
class RsVOIPBandwidthItem: public RsVOIPItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsVOIPBandwidthItem() :RsVOIPItem(RS_PKT_SUBTYPE_VOIP_BANDWIDTH) {}
|
|
|
|
|
|
|
|
virtual ~RsVOIPBandwidthItem() {}
|
2017-05-02 16:05:54 -04:00
|
|
|
virtual void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2015-08-10 22:13:50 -04:00
|
|
|
|
|
|
|
uint32_t flags ; // is that incoming or expected bandwidth?
|
|
|
|
uint32_t bytes_per_sec ; // bandwidth in bytes per sec.
|
|
|
|
};
|
2017-05-02 16:05:54 -04:00
|
|
|
#endif
|
2015-08-10 22:13:50 -04:00
|
|
|
|
2015-05-11 15:40:07 -04:00
|
|
|
class RsVOIPProtocolItem: public RsVOIPItem
|
2012-02-19 16:13:20 -05:00
|
|
|
{
|
|
|
|
public:
|
2015-05-11 15:40:07 -04:00
|
|
|
RsVOIPProtocolItem() :RsVOIPItem(RS_PKT_SUBTYPE_VOIP_PROTOCOL) {}
|
2012-02-19 16:13:20 -05:00
|
|
|
|
2015-10-10 09:21:59 -04:00
|
|
|
typedef enum { VoipProtocol_Ring = 1, VoipProtocol_Ackn = 2, VoipProtocol_Close = 3, VoipProtocol_Bandwidth = 4 } en_Protocol;
|
2012-02-19 16:13:20 -05:00
|
|
|
|
2015-05-11 15:40:07 -04:00
|
|
|
virtual ~RsVOIPProtocolItem() {}
|
2017-05-02 16:05:54 -04:00
|
|
|
virtual void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2012-02-19 16:13:20 -05:00
|
|
|
|
2017-05-02 16:05:54 -04:00
|
|
|
uint32_t protocol ;
|
2012-02-19 16:13:20 -05:00
|
|
|
uint32_t flags ;
|
|
|
|
};
|
|
|
|
|
2015-05-11 15:40:07 -04:00
|
|
|
class RsVOIPPongItem: public RsVOIPItem
|
2012-02-19 03:32:47 -05:00
|
|
|
{
|
|
|
|
public:
|
2015-05-11 15:40:07 -04:00
|
|
|
RsVOIPPongItem() :RsVOIPItem(RS_PKT_SUBTYPE_VOIP_PONG) {}
|
2012-02-19 03:32:47 -05:00
|
|
|
|
2017-05-02 16:05:54 -04:00
|
|
|
virtual void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2015-05-11 15:40:07 -04:00
|
|
|
virtual ~RsVOIPPongItem() {}
|
2012-02-19 03:32:47 -05:00
|
|
|
|
|
|
|
uint32_t mSeqNo;
|
|
|
|
uint64_t mPingTS;
|
|
|
|
uint64_t mPongTS;
|
|
|
|
};
|
|
|
|
|
2017-05-02 16:05:54 -04:00
|
|
|
class RsVOIPSerialiser: public RsServiceSerializer
|
2012-02-19 03:32:47 -05:00
|
|
|
{
|
|
|
|
public:
|
2017-05-02 16:05:54 -04:00
|
|
|
RsVOIPSerialiser() :RsServiceSerializer(RS_SERVICE_TYPE_VOIP_PLUGIN) {}
|
2015-05-11 15:40:07 -04:00
|
|
|
virtual ~RsVOIPSerialiser() {}
|
2012-02-19 16:13:20 -05:00
|
|
|
|
2017-05-02 16:05:54 -04:00
|
|
|
virtual RsItem *create_item(uint16_t service,uint8_t item_subtype) const ;
|
2012-02-19 03:32:47 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**************************************************************************/
|