doubango/tinyMCPTT/src/packet/tmcptt_mcptt_packet_idle.c
c732d49e
 #if HAVE_CRT
 #define _CRTDBG_MAP_ALLOC 
 #include <stdlib.h> 
 #include <crtdbg.h>
 #endif //HAVE_CRT
 /* 
175b478c
 
74ca6d11
 *  Copyright (C) 2020, University of the Basque Country (UPV/EHU)
c732d49e
 *
 * Contact for licensing options: <licensing-mcpttclient(at)mcopenplatform(dot)com>
 *       
 * This file is part of MCOP MCPTT Client
 *
 * This 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.
 *       
 * This 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 this program; if not, write to the Free Software Foundation, Inc., 
 * 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */
 
 #include "tinymcptt/packet/tmcptt_mcptt_packet.h"
 #include "tinymcptt/packet/tmcptt_mcptt_packet_specific.h"
 #include "tinymcptt/packet/tmcptt_mcptt_packet_idle.h"
 
 #include "tsk_memory.h"
 #include "tsk_debug.h"
 
 static tsk_object_t* tmcptt_mcptt_packet_idle_ctor(tsk_object_t * self, va_list * app)
 {
 	tmcptt_mcptt_packet_idle_t *idle_pkt = (tmcptt_mcptt_packet_idle_t *)self;
 	if(idle_pkt){
 		idle_pkt->message_seq_num = tsk_null;
 		idle_pkt->track_info = tsk_null;
 		idle_pkt->floor_indicator = tsk_null;
 	}
 	return self;
 }
 
 static tsk_object_t* tmcptt_mcptt_packet_idle_dtor(tsk_object_t * self)
 { 
 	tmcptt_mcptt_packet_idle_t *idle_pkt = (tmcptt_mcptt_packet_idle_t *)self;
 	if(idle_pkt){
 	}
 
 	return self;
 }
 
 static const tsk_object_def_t tmcptt_mcptt_packet_idle_def_s = 
 {
 	sizeof(tmcptt_mcptt_packet_idle_t),
 	tmcptt_mcptt_packet_idle_ctor, 
 	tmcptt_mcptt_packet_idle_dtor,
 	tsk_null, 
 };
 const tsk_object_def_t *tmcptt_mcptt_packet_idle_def_t = &tmcptt_mcptt_packet_idle_def_s;
 
 tmcptt_mcptt_packet_idle_t* tmcptt_mcptt_packet_idle_create_null()
 {
 	tmcptt_mcptt_packet_idle_t* idle_pkt;
 	idle_pkt = (tmcptt_mcptt_packet_idle_t*)tsk_object_new(tmcptt_mcptt_packet_idle_def_t);
 	return idle_pkt;
 }
 
 tmcptt_mcptt_packet_idle_t* tmcptt_mcptt_packet_idle_deserialize(const void* data, tsk_size_t _size)
 {
 	tmcptt_mcptt_packet_idle_t* idle_pkt = tsk_null;
 	const uint8_t* pdata = (const uint8_t*)data;
 	int32_t size = (int32_t)_size;
 	tsk_size_t field_size = 0;
 
 	if (pdata == tsk_null) {
 		TSK_DEBUG_ERROR("Incorrect packet data");
 		goto bail;
 	}
 
 	if(!(idle_pkt = tmcptt_mcptt_packet_idle_create_null())){
 		TSK_DEBUG_ERROR("Failed to create object");
 		goto bail;
 	}
 
 	while (pdata != tsk_null && size > 0) { 
 		switch (pdata[0]) {
 		case FID_MSG_SEQ_NUMBER_OLD:
 			TSK_DEBUG_WARN("Use version 13.0 of Floor control specific fields");
 		case FID_MSG_SEQ_NUMBER:
 			if (size < TMCPTT_MCPTT_PACKET_SPECIFIC_BINARY_16_MIN_SIZE) {
 				TSK_DEBUG_ERROR("Incorrect field size");
 				return tsk_null;
 			}
 			idle_pkt->message_seq_num = tmcptt_mcptt_packet_specific_binary_16_deserialize(pdata[0], pdata, size);
 			if (idle_pkt->message_seq_num == tsk_null) {
 				TSK_DEBUG_ERROR("Error deserializing field");
 				return tsk_null;
 			}
 			field_size = tmcptt_mcptt_packet_specific_binary_16_get_size(idle_pkt->message_seq_num);
 			break;
 		case FID_TRACK_INFO_OLD:
 			TSK_DEBUG_WARN("Use version 13.0 of Floor control specific fields");
 		case FID_TRACK_INFO:
 			if (size < TMCPTT_MCPTT_PACKET_SPECIFIC_BINARY_TXT_REF_MIN_SIZE) {
 				TSK_DEBUG_ERROR("Incorrect field size");
 				return tsk_null;
 			}
 			idle_pkt->track_info = tmcptt_mcptt_packet_specific_binary_txt_ref_deserialize(pdata[0], pdata, size);
 			if (idle_pkt->track_info == tsk_null) {
 				TSK_DEBUG_ERROR("Error deserializing field");
 				return tsk_null;
 			}
 			field_size = tmcptt_mcptt_packet_specific_binary_txt_ref_get_size(idle_pkt->track_info);
 			break;
 		case FID_FLOOR_INDICATOR_OLD:
 			TSK_DEBUG_WARN("Use version 13.0 of Floor control specific fields");
 		case FID_FLOOR_INDICATOR:
 			if (size < TMCPTT_MCPTT_PACKET_SPECIFIC_BINARY_16_MIN_SIZE) {
 				TSK_DEBUG_ERROR("Incorrect field size");
 				return tsk_null;
 			}
 			idle_pkt->floor_indicator = tmcptt_mcptt_packet_specific_binary_16_deserialize(pdata[0], pdata, size);
 			if (idle_pkt->floor_indicator == tsk_null) {
 				TSK_DEBUG_ERROR("Error deserializing field");
 				return tsk_null;
 			}
 			field_size = tmcptt_mcptt_packet_specific_binary_16_get_size(idle_pkt->floor_indicator);
 			break;
 		default:
 			TSK_DEBUG_ERROR("Field not supported");
 			return tsk_null;
 		}
 		pdata += field_size;
 		size -= field_size;
 	}
 
 bail:
 	return idle_pkt;
 }
 
 int tmcptt_mcptt_packet_idle_serialize_to(const tmcptt_mcptt_packet_idle_t* self, void* data, tsk_size_t size)
 {
 	int ret = 0;
 	uint8_t* pdata = (uint8_t*)data;
 	tsk_size_t field_size = 0;
 
 	if(!self || !data || size < tmcptt_mcptt_packet_idle_get_size(self)){
 		return -1;
 	}
 
 	if (self->message_seq_num) {
 		tmcptt_mcptt_packet_specific_binary_16_serialize_to(self->message_seq_num, pdata, size);
 		field_size = tmcptt_mcptt_packet_specific_binary_16_get_size(self->message_seq_num);
 		pdata += field_size;
 		size -= field_size;
 	}
 
 	if (self->track_info) {
 		tmcptt_mcptt_packet_specific_binary_txt_ref_serialize_to(self->track_info, pdata, size);
 		field_size = tmcptt_mcptt_packet_specific_binary_txt_ref_get_size(self->track_info);
 		pdata += field_size;
 		size -= field_size;
 	}
 
 	if (self->floor_indicator) {
 		tmcptt_mcptt_packet_specific_binary_16_serialize_to(self->floor_indicator, pdata, size);
 		field_size = tmcptt_mcptt_packet_specific_binary_16_get_size(self->floor_indicator);
 		pdata += field_size;
 		size -= field_size;
 	}
 
 	return ret;
 }
 
 tsk_size_t tmcptt_mcptt_packet_idle_get_size(const tmcptt_mcptt_packet_idle_t* self)
 {
 	tsk_size_t size = 0;
 
 	if(!self){
 		TSK_DEBUG_ERROR("Invalid parameter");
 		return 0;
 	}
 
 	if (self->message_seq_num)
 		size += tmcptt_mcptt_packet_specific_binary_16_get_size(self->message_seq_num);
 	
 	if (self->track_info)
 		size += tmcptt_mcptt_packet_specific_binary_txt_ref_get_size(self->track_info);
 
 	if (self->floor_indicator)
 		size += tmcptt_mcptt_packet_specific_binary_16_get_size(self->floor_indicator);
 
 	return size;
 }