/* * Copyright (C) 2010-2011 Mamadou Diop. * * Contact: Mamadou Diop * * 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. * */ /**@file tsip_header_Supported.c * @brief SIP Supported/k header. * * @author Mamadou Diop * */ #include "tinysip/headers/tsip_header_Supported.h" #include "tinysip/parsers/tsip_parser_uri.h" #include "tsk_debug.h" #include "tsk_memory.h" #include /*********************************** * Ragel state machine. */ %%{ machine tsip_machine_parser_header_Supported; # Includes include tsip_machine_utils "./ragel/tsip_machine_utils.rl"; action tag{ tag_start = p; } action parse_option{ TSK_PARSER_ADD_STRING(hdr_supported->options); } action eob{ } Supported = ( "Supported"i | "k"i ) HCOLON ( option_tag>tag %parse_option ( COMMA option_tag>tag %parse_option )* )?; # Entry point main := Supported :>CRLF @eob; }%% tsip_header_Supported_t* tsip_header_Supported_create(const char* option) { return tsk_object_new(TSIP_HEADER_SUPPORTED_VA_ARGS(option)); } tsip_header_Supported_t* tsip_header_Supported_create_null() { return tsip_header_Supported_create(tsk_null); } int tsip_header_Supported_serialize(const tsip_header_t* header, tsk_buffer_t* output) { if(header){ const tsip_header_Supported_t *Supported = (const tsip_header_Supported_t *)header; tsk_list_item_t *item; tsk_string_t *str; int ret = 0; tsk_list_foreach(item, Supported->options){ str = item->data; if(item == Supported->options->head){ ret = tsk_buffer_append(output, str->value, tsk_strlen(str->value)); } else{ ret = tsk_buffer_append_2(output, ",%s", str->value); } } return ret; } return -1; } tsip_header_Supported_t *tsip_header_Supported_parse(const char *data, tsk_size_t size) { int cs = 0; const char *p = data; const char *pe = p + size; const char *eof = pe; tsip_header_Supported_t *hdr_supported = tsip_header_Supported_create_null(); const char *tag_start = tsk_null; %%write data; (void)(eof); (void)(tsip_machine_parser_header_Supported_first_final); (void)(tsip_machine_parser_header_Supported_error); (void)(tsip_machine_parser_header_Supported_en_main); %%write init; %%write exec; if( cs < %%{ write first_final; }%% ){ TSK_DEBUG_ERROR("Failed to parse 'Supported' header."); TSK_OBJECT_SAFE_FREE(hdr_supported); } return hdr_supported; } //======================================================== // Supported header object definition // static tsk_object_t* tsip_header_Supported_ctor(tsk_object_t *self, va_list * app) { tsip_header_Supported_t *Supported = self; if(Supported){ const char* option; TSIP_HEADER(Supported)->type = tsip_htype_Supported; TSIP_HEADER(Supported)->serialize = tsip_header_Supported_serialize; if((option = va_arg(*app, const char*))){ tsk_string_t* string = tsk_string_create(option); Supported->options = tsk_list_create(); tsk_list_push_back_data(Supported->options, ((void**) &string)); } } else{ TSK_DEBUG_ERROR("Failed to create new Supported header."); } return self; } static tsk_object_t* tsip_header_Supported_dtor(tsk_object_t *self) { tsip_header_Supported_t *Supported = self; if(Supported){ TSK_OBJECT_SAFE_FREE(Supported->options); } else{ TSK_DEBUG_ERROR("Null Supported header."); } return self; } static const tsk_object_def_t tsip_header_Supported_def_s = { sizeof(tsip_header_Supported_t), tsip_header_Supported_ctor, tsip_header_Supported_dtor, tsk_null }; const tsk_object_def_t *tsip_header_Supported_def_t = &tsip_header_Supported_def_s;