summaryrefslogtreecommitdiffstats
path: root/branches/1.0/tinyMSRP/ragel/tmsrp_parser_header_From-Path.rl
blob: db9d18c295f6667f2dec5144c895703cae22655f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/*
* Copyright (C) 2009 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 tmsrp_header_From_Path.c
 * @brief MSRP "From-Path" header.
 *
 * @author Mamadou Diop <diopmamadou(at)doubango.org>
 *
 * @date Created: Sat Nov 8 16:54:58 2009 mdiop
 */
#include "tinymsrp/headers/tmsrp_header_From-Path.h"

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

#include <string.h>

/***********************************
*	Ragel state machine.
*/
%%{
	machine tmsrp_machine_parser_header_From_Path;

	# Includes
	include tmsrp_machine_utils "./ragel/tmsrp_machine_utils.rl";
	
	action tag{
		tag_start = p;
	}

	action parse_uri{
		int len = (int)(p  - tag_start);
		tmsrp_uri_t* uri;
		if((uri = tmsrp_uri_parse(tag_start, (tsk_size_t)len))){
			if(!header->uri){
				header->uri = uri;
			}
			else{
				if(!header->otherURIs){
					header->otherURIs = tsk_list_create();
				}
				tsk_list_push_back_data(header->otherURIs, ((void**) &uri));
			}
		}
	}
		
	MSRP_URI = (any -- SP)* >tag %parse_uri;

	#//"From-Path:" SP MSRP-URI  *( SP MSRP-URI ) 
	From_Path = "From-Path:"i SP MSRP_URI (SP <:MSRP_URI)*;
	
	# Entry point
	main := From_Path :>CRLF?;

}%%


tmsrp_header_From_Path_t* tmsrp_header_From_Path_create(const tmsrp_uri_t* uri)
{
	return tsk_object_new(TMSRP_HEADER_FROM_PATH_VA_ARGS(uri));
}

tmsrp_header_From_Path_t* tmsrp_header_From_Path_create_null()
{
	return tmsrp_header_From_Path_create(tsk_null);
}

int tmsrp_header_From_Path_tostring(const tmsrp_header_t* header, tsk_buffer_t* output)
{
	if(header){
		const tmsrp_header_From_Path_t *From_Path = (const tmsrp_header_From_Path_t *)header;
		const tsk_list_item_t *item;

		if(From_Path->uri){
			tmsrp_uri_serialize(From_Path->uri, output);
		}
		tsk_list_foreach(item, From_Path->otherURIs){
			tsk_buffer_append(output, " ", 1);
			tmsrp_uri_serialize(TMSRP_URI(item->data), output);
		}
	}

	return -1;
}

tmsrp_header_From_Path_t *tmsrp_header_From_Path_parse(const char *data, tsk_size_t size)
{
	int cs = 0;
	const char *p = data;
	const char *pe = p + size;
	const char *eof = pe;
	tmsrp_header_From_Path_t *header = tmsrp_header_From_Path_create_null();

	const char *tag_start;

	%%write data;
	%%write init;
	%%write exec;
	
	if( cs < %%{ write first_final; }%% ){
		TSK_DEBUG_ERROR("Failed to parse 'From-Path' header.");
		TSK_OBJECT_SAFE_FREE(header);
	}
	
	return header;
}


tmsrp_header_From_Path_t *tmsrp_header_From_Path_clone(const tmsrp_header_From_Path_t* From_Path)
{
	tmsrp_header_From_Path_t* clone = tsk_null;
	
	if(!From_Path){
		goto bail;
	}

	clone = tmsrp_header_From_Path_create_null();
	clone->uri = tmsrp_uri_clone(From_Path->uri);
	if(From_Path->otherURIs){
		tsk_list_item_t *item;
		clone->otherURIs = tsk_list_create();

		tsk_list_foreach(item, From_Path->otherURIs){
			tmsrp_uri_t *uri = tmsrp_uri_clone(TMSRP_URI(item->data));
			tsk_list_push_back_data(clone->otherURIs, (void**)&uri);
		}
	}

bail:
	return clone;
}




//========================================================
//	From_Path header object definition
//

static tsk_object_t* tmsrp_header_From_Path_ctor(tsk_object_t *self, va_list * app)
{
	tmsrp_header_From_Path_t *From_Path = self;
	if(From_Path){
		TMSRP_HEADER(From_Path)->type = tmsrp_htype_From_Path;
		TMSRP_HEADER(From_Path)->tostring = tmsrp_header_From_Path_tostring;
		
		From_Path->uri = tsk_object_ref((void*)va_arg(*app, const tmsrp_uri_t*));
	}
	else{
		TSK_DEBUG_ERROR("Failed to create new From-Path header.");
	}
	return self;
}

static tsk_object_t* tmsrp_header_From_Path_dtor(tsk_object_t *self)
{
	tmsrp_header_From_Path_t *From_Path = self;
	if(From_Path){
		TSK_OBJECT_SAFE_FREE(From_Path->uri);
		TSK_OBJECT_SAFE_FREE(From_Path->otherURIs);
	}
	else{
		TSK_DEBUG_ERROR("Null From-Path header.");
	}

	return self;
}

static const tsk_object_def_t tmsrp_header_From_Path_def_s = 
{
	sizeof(tmsrp_header_From_Path_t),
	tmsrp_header_From_Path_ctor,
	tmsrp_header_From_Path_dtor,
	tsk_null
};

const tsk_object_def_t *tmsrp_header_From_Path_def_t = &tmsrp_header_From_Path_def_s;
OpenPOWER on IntegriCloud