summaryrefslogtreecommitdiffstats
path: root/tinySIP/ragel/tsip_parser_header_Proxy_Require.rl
diff options
context:
space:
mode:
Diffstat (limited to 'tinySIP/ragel/tsip_parser_header_Proxy_Require.rl')
-rw-r--r--tinySIP/ragel/tsip_parser_header_Proxy_Require.rl177
1 files changed, 177 insertions, 0 deletions
diff --git a/tinySIP/ragel/tsip_parser_header_Proxy_Require.rl b/tinySIP/ragel/tsip_parser_header_Proxy_Require.rl
new file mode 100644
index 0000000..1bfd2fa
--- /dev/null
+++ b/tinySIP/ragel/tsip_parser_header_Proxy_Require.rl
@@ -0,0 +1,177 @@
+
+/*
+* Copyright (C) 2009-2010 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* 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_Proxy_Require.c
+ * @brief SIP Proxy-Require header.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+#include "tinysip/headers/tsip_header_Proxy_Require.h"
+
+#include "tinysip/parsers/tsip_parser_uri.h"
+
+#include "tsk_debug.h"
+#include "tsk_memory.h"
+
+#include <string.h>
+
+
+/***********************************
+* Ragel state machine.
+*/
+%%{
+ machine tsip_machine_parser_header_Proxy_Require;
+
+ # Includes
+ include tsip_machine_utils "./ragel/tsip_machine_utils.rl";
+
+ action tag{
+ tag_start = p;
+ }
+
+ action parse_option{
+ TSK_PARSER_ADD_STRING(hdr_proxyrequire->options);
+ }
+
+ action eob{
+ }
+
+ Proxy_Require = "Proxy-Require"i HCOLON option_tag>tag %parse_option ( COMMA option_tag>tag %parse_option )*;
+
+ # Entry point
+ main := Proxy_Require :>CRLF @eob;
+
+}%%
+
+
+tsip_header_Proxy_Require_t* tsip_header_Proxy_Require_create(const char* option)
+{
+ return tsk_object_new(TSIP_HEADER_PROXY_REQUIRE_VA_ARGS(option));
+}
+
+tsip_header_Proxy_Require_t* tsip_header_Proxy_Require_create_null()
+{
+ return tsip_header_Proxy_Require_create(tsk_null);
+}
+
+int tsip_header_Proxy_Require_serialize(const tsip_header_t* header, tsk_buffer_t* output)
+{
+ if(header){
+ const tsip_header_Proxy_Require_t *Proxy_Require = (const tsip_header_Proxy_Require_t *)header;
+ tsk_list_item_t *item;
+ tsk_string_t *str;
+ int ret = 0;
+
+ tsk_list_foreach(item, Proxy_Require->options){
+ str = item->data;
+ if(item == Proxy_Require->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_Proxy_Require_t *tsip_header_Proxy_Require_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_Proxy_Require_t *hdr_proxyrequire = tsip_header_Proxy_Require_create_null();
+
+ const char *tag_start;
+
+ %%write data;
+ %%write init;
+ %%write exec;
+
+ if( cs < %%{ write first_final; }%% ){
+ TSK_DEBUG_ERROR("Failed to parse 'Privacy' header.");
+ TSK_OBJECT_SAFE_FREE(hdr_proxyrequire);
+ }
+
+ return hdr_proxyrequire;
+}
+
+
+
+
+
+
+
+//========================================================
+// Proxy_Require header object definition
+//
+
+static tsk_object_t* tsip_header_Proxy_Require_ctor(tsk_object_t *self, va_list * app)
+{
+ tsip_header_Proxy_Require_t *Proxy_Require = self;
+ if(Proxy_Require){
+ const char* option;
+
+ TSIP_HEADER(Proxy_Require)->type = tsip_htype_Proxy_Require;
+ TSIP_HEADER(Proxy_Require)->serialize = tsip_header_Proxy_Require_serialize;
+
+ if((option = va_arg(*app, const char*))){
+ tsk_string_t* string = tsk_string_create(option);
+ Proxy_Require->options = tsk_list_create();
+
+ tsk_list_push_back_data(Proxy_Require->options, ((void**) &string));
+ }
+ }
+ else{
+ TSK_DEBUG_ERROR("Failed to create new Proxy_Require header.");
+ }
+ return self;
+}
+
+static tsk_object_t* tsip_header_Proxy_Require_dtor(tsk_object_t *self)
+{
+ tsip_header_Proxy_Require_t *Proxy_Require = self;
+ if(Proxy_Require){
+ TSK_OBJECT_SAFE_FREE(Proxy_Require->options);
+ }
+ else{
+ TSK_DEBUG_ERROR("Null Proxy_Require header.");
+ }
+
+ return self;
+}
+
+static const tsk_object_def_t tsip_header_Proxy_Require_def_s =
+{
+ sizeof(tsip_header_Proxy_Require_t),
+ tsip_header_Proxy_Require_ctor,
+ tsip_header_Proxy_Require_dtor,
+ tsk_null
+};
+const tsk_object_def_t *tsip_header_Proxy_Require_def_t = &tsip_header_Proxy_Require_def_s;
OpenPOWER on IntegriCloud