tsdp_parser_header_Dummy.jrl 1.28 KB
Newer Older
nextime's avatar
nextime committed
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
/*
* Copyright (C) 2012 Doubango Telecom <http://www.doubango.org>
* License: BSD
* This file is part of Open Source sipML5 solution <http://www.sipml5.org>
*/

tsdp_header_Dummy.prototype = Object.create(tsdp_header.prototype);
%%{
	machine tsdp_machine_parser_header_Dummy;

	# Includes
	include tsdp_machine_utils "./tsdp_machine_utils.jrl";
	
	action tag{
		i_tag_start = p;
	}

	action parse_name{
		hdr_Dummy.c_name = s_str[i_tag_start];
	}

	action parse_value{
		hdr_Dummy.s_value = tsk_ragel_parser_get_string(s_str, p, i_tag_start);
	}
		
	Dummy = alpha>tag %parse_name SP* "=" SP*<: js_any*>tag %parse_value;
	
	# Entry point
	main := Dummy :>CRLF?;

}%%

%%write data;

function tsdp_header_Dummy(c_name, s_value){
	tsdp_header.call(this, tsdp_header_type_e.DUMMY);
	this.c_name = c_name;
	this.s_value = s_value;
}

tsdp_header_Dummy.prototype.toString = function(){
	return this.s_value;
}

tsdp_header_Dummy.prototype.Parse = function(s_str){
	var cs = 0;
	var p = 0;
	var pe = s_str.length;
	var eof = pe;
	var data = tsk_buff_str2ib(s_str);
	var i_tag_start;	
	var hdr_Dummy = new tsdp_header_Dummy('*', null);
	
	%%write init;
	%%write exec;
	
	if( cs < %%{ write first_final; }%% ){
		tsk_utils_log_error("Failed to parse 'Dummy' header: " + s_str);
		return null;
	}
	
	return hdr_Dummy;
}