/*

*  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.
*/

/*
 * @file tmcptt_mbms_event.c
 * @brief MCPTT MBMS Event.
 *
 */

#include "tinymcptt/tmcptt_mbms_message.h"
#include "tinymcptt/tmcptt_mbms_event.h"

#include "tsk_debug.h"

tmcptt_mbms_event_t* tmcptt_mbms_event_create(const void* callback_data, tmcptt_mbms_event_type_t type, tmcptt_mbms_message_t* message)
{
	tmcptt_mbms_event_t* _event;
	if((_event = (tmcptt_mbms_event_t*)tsk_object_new(tmcptt_mbms_event_def_t))){
		_event->callback_data = callback_data;
		_event->type = type;
		_event->message = (tmcptt_mbms_message_t*)tsk_object_ref(message);
	}
	else{
		TSK_DEBUG_ERROR("Failed to create new MCPTT MBMS event");
	}

	return _event;
}

//========================================================
//	MCPTT MBMS Event definition
//

/**@ingroup tmcptt_mbms_event_group
*/
static tsk_object_t* tmcptt_mbms_event_ctor(tsk_object_t *self, va_list * app)
{
	tmcptt_mbms_event_t *_event = (tmcptt_mbms_event_t *)self;
	if(_event){
	}
	else{
		TSK_DEBUG_ERROR("Failed to create new MCPTT MBMS Event");
	}
	return self;
}

/**@ingroup tmcptt_mbms_event_group
*/
static tsk_object_t* tmcptt_mbms_event_dtor(tsk_object_t *self)
{
	tmcptt_mbms_event_t *_event = (tmcptt_mbms_event_t *)self;
	if(_event){
		TSK_OBJECT_SAFE_FREE(_event->message);
	}
	else{
		TSK_DEBUG_ERROR("Null MCPTT MBMS Event");
	}

	return self;
}

static const tsk_object_def_t tmcptt_mbms_event_def_s = 
{
	sizeof(tmcptt_mbms_event_t),
	tmcptt_mbms_event_ctor,
	tmcptt_mbms_event_dtor,
	tsk_null
};
const tsk_object_def_t* tmcptt_mbms_event_def_t = &tmcptt_mbms_event_def_s;