#if HAVE_CRT
#define _CRTDBG_MAP_ALLOC 
#include <stdlib.h> 
#include <crtdbg.h>
#endif //HAVE_CRT
/* 

*  Copyright (C) 2020, University of the Basque Country (UPV/EHU)
*
* 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_preestablished.h"
#include "tinymcptt/packet/tmcptt_mcptt_packet_specific.h"
#include "tinymcptt/packet/tmcptt_mcptt_packet_disconnect.h"

#include "tsk_memory.h"
#include "tsk_debug.h"

static tsk_object_t* tmcptt_mcptt_packet_disconnect_ctor(tsk_object_t * self, va_list * app)
{
	tmcptt_mcptt_packet_disconnect_t *disconnect_pkt = (tmcptt_mcptt_packet_disconnect_t *)self;
	if(disconnect_pkt){
		disconnect_pkt->mcptt_session_identity = tsk_null;
	}
	return self;
}

static tsk_object_t* tmcptt_mcptt_packet_disconnect_dtor(tsk_object_t * self)
{ 
	tmcptt_mcptt_packet_disconnect_t *disconnect_pkt = (tmcptt_mcptt_packet_disconnect_t *)self;
	if(disconnect_pkt){
	}

	return self;
}

static const tsk_object_def_t tmcptt_mcptt_packet_disconnect_def_s = 
{
	sizeof(tmcptt_mcptt_packet_disconnect_t),
	tmcptt_mcptt_packet_disconnect_ctor, 
	tmcptt_mcptt_packet_disconnect_dtor,
	tsk_null, 
};
const tsk_object_def_t *tmcptt_mcptt_packet_disconnect_def_t = &tmcptt_mcptt_packet_disconnect_def_s;

tmcptt_mcptt_packet_disconnect_t* tmcptt_mcptt_packet_disconnect_create_null()
{
	tmcptt_mcptt_packet_disconnect_t* disconnect_pkt;
	disconnect_pkt = (tmcptt_mcptt_packet_disconnect_t*)tsk_object_new(tmcptt_mcptt_packet_disconnect_def_t);
	return disconnect_pkt;
}

tmcptt_mcptt_packet_disconnect_t* tmcptt_mcptt_packet_disconnect_deserialize(const void* data, tsk_size_t _size)
{
	tmcptt_mcptt_packet_disconnect_t* disconnect_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(!(disconnect_pkt = tmcptt_mcptt_packet_disconnect_create_null())){
		TSK_DEBUG_ERROR("Failed to create object");
		goto bail;
	}

	while (pdata != tsk_null && size > 0) { 
		switch (pdata[0]) {
		case FID_MCPTT_SESSION_ID:
			if (size < TMCPTT_MCPTT_PACKET_SPECIFIC_BINARY_8_TXT_MIN_SIZE) {
				TSK_DEBUG_ERROR("Incorrect field size");
				return tsk_null;
			}
			disconnect_pkt->mcptt_session_identity = tmcptt_mcptt_packet_specific_binary_8_txt_deserialize(FID_MCPTT_SESSION_ID, pdata, size);
			if (disconnect_pkt->mcptt_session_identity == tsk_null) {
				TSK_DEBUG_ERROR("Error deserializing field");
				return tsk_null;
			}
			field_size = tmcptt_mcptt_packet_specific_binary_8_txt_get_size(disconnect_pkt->mcptt_session_identity);
			break;
		default:
			TSK_DEBUG_ERROR("Field not supported");
			return tsk_null;
		}
		pdata += field_size;
		size -= field_size;
	}

bail:
	return disconnect_pkt;
}

int tmcptt_mcptt_packet_disconnect_serialize_to(const tmcptt_mcptt_packet_disconnect_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_disconnect_get_size(self)){
		return -1;
	}

	if (self->mcptt_session_identity) {
		tmcptt_mcptt_packet_specific_binary_8_txt_serialize_to(self->mcptt_session_identity, pdata, size);
		field_size = tmcptt_mcptt_packet_specific_binary_8_txt_get_size(self->mcptt_session_identity);
		pdata += field_size;
		size -= field_size;
	}

	return ret;
}

tsk_size_t tmcptt_mcptt_packet_disconnect_get_size(const tmcptt_mcptt_packet_disconnect_t* self)
{
	tsk_size_t size = 0;

	if(!self){
		TSK_DEBUG_ERROR("Invalid parameter");
		return 0;
	}

	if (self->mcptt_session_identity) {
		size += tmcptt_mcptt_packet_specific_binary_8_txt_get_size(self->mcptt_session_identity);
	}

	return size;
}