| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  |  * Asterisk -- An open source telephony toolkit. | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-02-12 04:28:58 +00:00
										 |  |  |  * Copyright (c) 2003-2006 Tilghman Lesher.  All rights reserved. | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2004-04-12 16:08:20 +00:00
										 |  |  |  * Tilghman Lesher <app_cut__v003@the-tilghman.com> | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This code is released by the author with no restrictions on usage. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  |  * See http://www.asterisk.org for more information about
 | 
					
						
							|  |  |  |  * the Asterisk project. Please do not directly contact | 
					
						
							|  |  |  |  * any of the maintainers of this project for assistance; | 
					
						
							|  |  |  |  * the project provides a web site, mailing lists and IRC | 
					
						
							|  |  |  |  * channels for your use. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-24 20:12:06 +00:00
										 |  |  | /*! \file
 | 
					
						
							| 
									
										
										
										
											2005-12-30 21:18:06 +00:00
										 |  |  |  *  | 
					
						
							| 
									
										
										
										
											2005-12-15 19:05:41 +00:00
										 |  |  |  * \brief CUT function | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-12-30 21:18:06 +00:00
										 |  |  |  * \author Tilghman Lesher <app_cut__v003@the-tilghman.com> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-12-15 19:05:41 +00:00
										 |  |  |  * \ingroup functions | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-07 18:54:56 +00:00
										 |  |  | #include "asterisk.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ASTERISK_FILE_VERSION(__FILE__, "$Revision$") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-21 06:02:45 +00:00
										 |  |  | #include "asterisk/file.h"
 | 
					
						
							|  |  |  | #include "asterisk/channel.h"
 | 
					
						
							|  |  |  | #include "asterisk/pbx.h"
 | 
					
						
							|  |  |  | #include "asterisk/module.h"
 | 
					
						
							| 
									
										
										
										
											2005-11-01 21:02:07 +00:00
										 |  |  | #include "asterisk/app.h"
 | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | /*** DOCUMENTATION
 | 
					
						
							|  |  |  | 	<function name="SORT" language="en_US"> | 
					
						
							|  |  |  | 		<synopsis> | 
					
						
							|  |  |  | 			Sorts a list of key/vals into a list of keys, based upon the vals.	 | 
					
						
							|  |  |  | 		</synopsis> | 
					
						
							|  |  |  | 		<syntax> | 
					
						
							|  |  |  | 			<parameter name="keyval" required="true" argsep=":"> | 
					
						
							|  |  |  | 				<argument name="key1" required="true" /> | 
					
						
							|  |  |  | 				<argument name="val1" required="true" /> | 
					
						
							|  |  |  | 			</parameter> | 
					
						
							|  |  |  | 			<parameter name="keyvaln" multiple="true" argsep=":"> | 
					
						
							|  |  |  | 				<argument name="key2" required="true" /> | 
					
						
							|  |  |  | 				<argument name="val2" required="true" /> | 
					
						
							|  |  |  | 			</parameter> | 
					
						
							|  |  |  | 		</syntax> | 
					
						
							|  |  |  | 		<description> | 
					
						
							|  |  |  | 			<para>Takes a comma-separated list of keys and values, each separated by a colon, and returns a | 
					
						
							|  |  |  | 			comma-separated list of the keys, sorted by their values.  Values will be evaluated as | 
					
						
							|  |  |  | 			floating-point numbers.</para> | 
					
						
							|  |  |  | 		</description> | 
					
						
							|  |  |  | 	</function> | 
					
						
							|  |  |  | 	<function name="CUT" language="en_US"> | 
					
						
							|  |  |  | 		<synopsis> | 
					
						
							|  |  |  | 			Slices and dices strings, based upon a named delimiter.		 | 
					
						
							|  |  |  | 		</synopsis> | 
					
						
							|  |  |  | 		<syntax> | 
					
						
							|  |  |  | 			<parameter name="varname" required="true"> | 
					
						
							|  |  |  | 				<para>Variable you want cut</para> | 
					
						
							|  |  |  | 			</parameter> | 
					
						
							|  |  |  | 			<parameter name="char-delim" required="true"> | 
					
						
							|  |  |  | 				<para>Delimiter, defaults to <literal>-</literal></para> | 
					
						
							|  |  |  | 			</parameter> | 
					
						
							|  |  |  | 			<parameter name="range-spec" required="true"> | 
					
						
							|  |  |  | 				<para>Number of the field you want (1-based offset), may also be specified as a range (with <literal>-</literal>) | 
					
						
							|  |  |  | 				or group of ranges and fields (with <literal>&</literal>)</para> | 
					
						
							|  |  |  | 			</parameter> | 
					
						
							|  |  |  | 		</syntax> | 
					
						
							|  |  |  | 		<description> | 
					
						
							|  |  |  | 			<para>Cut out information from a string (<replaceable>varname</replaceable>), based upon a named delimiter.</para> | 
					
						
							|  |  |  | 		</description>	 | 
					
						
							|  |  |  | 	</function> | 
					
						
							|  |  |  |  ***/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | struct sortable_keys { | 
					
						
							|  |  |  | 	char *key; | 
					
						
							|  |  |  | 	float value; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int sort_subroutine(const void *arg1, const void *arg2) | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 	const struct sortable_keys *one=arg1, *two=arg2; | 
					
						
							| 
									
										
										
										
											2006-04-14 22:55:58 +00:00
										 |  |  | 	if (one->value < two->value) | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2006-04-14 22:55:58 +00:00
										 |  |  | 	else if (one->value == two->value) | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2006-04-14 22:55:58 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define ERROR_NOARG	(-1)
 | 
					
						
							|  |  |  | #define ERROR_NOMEM	(-2)
 | 
					
						
							|  |  |  | #define ERROR_USAGE	(-3)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int sort_internal(struct ast_channel *chan, char *data, char *buffer, size_t buflen) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char *strings, *ptrkey, *ptrvalue; | 
					
						
							| 
									
										
										
										
											2005-10-18 16:48:19 +00:00
										 |  |  | 	int count=1, count2, element_count=0; | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 	struct sortable_keys *sortable_keys; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-18 02:06:27 +00:00
										 |  |  | 	*buffer = '\0'; | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-14 22:55:58 +00:00
										 |  |  | 	if (!data) | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 		return ERROR_NOARG; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-10 13:22:15 +00:00
										 |  |  | 	strings = ast_strdupa(data); | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (ptrkey = strings; *ptrkey; ptrkey++) { | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 		if (*ptrkey == ',') | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 			count++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sortable_keys = alloca(count * sizeof(struct sortable_keys)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(sortable_keys, 0, count * sizeof(struct sortable_keys)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Parse each into a struct */ | 
					
						
							|  |  |  | 	count2 = 0; | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 	while ((ptrkey = strsep(&strings, ","))) { | 
					
						
							| 
									
										
										
										
											2008-09-25 22:21:28 +00:00
										 |  |  | 		ptrvalue = strchr(ptrkey, ':'); | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 		if (!ptrvalue) { | 
					
						
							|  |  |  | 			count--; | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-04-14 22:55:58 +00:00
										 |  |  | 		*ptrvalue++ = '\0'; | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 		sortable_keys[count2].key = ptrkey; | 
					
						
							| 
									
										
										
										
											2009-08-10 19:20:57 +00:00
										 |  |  | 		sscanf(ptrvalue, "%30f", &sortable_keys[count2].value); | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 		count2++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Sort the structs */ | 
					
						
							|  |  |  | 	qsort(sortable_keys, count, sizeof(struct sortable_keys), sort_subroutine); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (count2 = 0; count2 < count; count2++) { | 
					
						
							| 
									
										
										
										
											2005-10-18 16:48:19 +00:00
										 |  |  | 		int blen = strlen(buffer); | 
					
						
							|  |  |  | 		if (element_count++) { | 
					
						
							|  |  |  | 			strncat(buffer + blen, ",", buflen - blen - 1); | 
					
						
							| 
									
										
										
										
											2005-12-16 00:55:39 +00:00
										 |  |  | 			blen++; | 
					
						
							| 
									
										
										
										
											2005-10-18 16:48:19 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2005-12-16 00:55:39 +00:00
										 |  |  | 		strncat(buffer + blen, sortable_keys[count2].key, buflen - blen - 1); | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-29 18:53:01 +00:00
										 |  |  | static int cut_internal(struct ast_channel *chan, char *data, struct ast_str **buf, ssize_t buflen) | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-06-18 18:24:23 +00:00
										 |  |  | 	char *parse, ds[2], *var_expr; | 
					
						
							| 
									
										
										
										
											2007-10-26 00:11:31 +00:00
										 |  |  | 	size_t delim_consumed; | 
					
						
							| 
									
										
										
										
											2009-06-18 18:24:23 +00:00
										 |  |  | 	struct ast_str *var_value; | 
					
						
							| 
									
										
										
										
											2006-01-11 19:52:29 +00:00
										 |  |  | 	AST_DECLARE_APP_ARGS(args, | 
					
						
							|  |  |  | 		AST_APP_ARG(varname); | 
					
						
							|  |  |  | 		AST_APP_ARG(delimiter); | 
					
						
							|  |  |  | 		AST_APP_ARG(field); | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											2007-10-28 14:11:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-10 13:22:15 +00:00
										 |  |  | 	parse = ast_strdupa(data); | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-11 19:52:29 +00:00
										 |  |  | 	AST_STANDARD_APP_ARGS(args, parse); | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 18:24:23 +00:00
										 |  |  | 	/* Check arguments */ | 
					
						
							| 
									
										
										
										
											2007-01-07 14:44:49 +00:00
										 |  |  | 	if (args.argc < 3) { | 
					
						
							| 
									
										
										
										
											2006-01-11 19:52:29 +00:00
										 |  |  | 		return ERROR_NOARG; | 
					
						
							| 
									
										
										
										
											2009-06-18 18:24:23 +00:00
										 |  |  | 	} else if (!(var_expr = alloca(strlen(args.varname) + 4))) { | 
					
						
							|  |  |  | 		return ERROR_NOMEM; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Get the value of the variable named in the 1st argument */ | 
					
						
							|  |  |  | 	snprintf(var_expr, strlen(args.varname) + 4, "${%s}", args.varname); | 
					
						
							|  |  |  | 	var_value = ast_str_create(16); | 
					
						
							|  |  |  | 	ast_str_substitute_variables(&var_value, 0, chan, var_expr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Copy delimiter from 2nd argument to ds[] possibly decoding backslash escapes */ | 
					
						
							|  |  |  | 	if (ast_get_encoded_char(args.delimiter, ds, &delim_consumed)) { | 
					
						
							|  |  |  | 		ast_copy_string(ds, "-", sizeof(ds)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	ds[1] = '\0'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ast_str_strlen(var_value)) { | 
					
						
							|  |  |  | 		int curfieldnum = 1; | 
					
						
							|  |  |  | 		char *curfieldptr = ast_str_buffer(var_value); | 
					
						
							|  |  |  | 		int out_field_count = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		while (curfieldptr != NULL && args.field != NULL) { | 
					
						
							|  |  |  | 			char *next_range = strsep(&(args.field), "&"); | 
					
						
							|  |  |  | 			int start_field, stop_field; | 
					
						
							|  |  |  | 			char trashchar; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-10 19:20:57 +00:00
										 |  |  | 			if (sscanf(next_range, "%30d-%30d", &start_field, &stop_field) == 2) { | 
					
						
							| 
									
										
										
										
											2009-06-18 18:24:23 +00:00
										 |  |  | 				/* range with both start and end */ | 
					
						
							| 
									
										
										
										
											2009-08-10 19:20:57 +00:00
										 |  |  | 			} else if (sscanf(next_range, "-%30d", &stop_field) == 1) { | 
					
						
							| 
									
										
										
										
											2009-06-18 18:24:23 +00:00
										 |  |  | 				/* range with end only */ | 
					
						
							|  |  |  | 				start_field = 1; | 
					
						
							| 
									
										
										
										
											2009-08-10 19:20:57 +00:00
										 |  |  | 			} else if ((sscanf(next_range, "%30d%1c", &start_field, &trashchar) == 2) && (trashchar == '-')) { | 
					
						
							| 
									
										
										
										
											2009-06-18 18:24:23 +00:00
										 |  |  | 				/* range with start only */ | 
					
						
							|  |  |  | 				stop_field = INT_MAX; | 
					
						
							| 
									
										
										
										
											2009-08-10 19:20:57 +00:00
										 |  |  | 			} else if (sscanf(next_range, "%30d", &start_field) == 1) { | 
					
						
							| 
									
										
										
										
											2009-06-18 18:24:23 +00:00
										 |  |  | 				/* single number */ | 
					
						
							|  |  |  | 				stop_field = start_field; | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				/* invalid field spec */ | 
					
						
							|  |  |  | 				ast_free(var_value); | 
					
						
							|  |  |  | 				return ERROR_USAGE; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/* Get to start, if not there already */ | 
					
						
							|  |  |  | 			while (curfieldptr != NULL && curfieldnum < start_field) { | 
					
						
							|  |  |  | 				strsep(&curfieldptr, ds); | 
					
						
							|  |  |  | 				curfieldnum++; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/* Most frequent problem is the expectation of reordering fields */ | 
					
						
							|  |  |  | 			if (curfieldnum > start_field) { | 
					
						
							|  |  |  | 				ast_log(LOG_WARNING, "We're already past the field you wanted?\n"); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 18:24:23 +00:00
										 |  |  | 			/* Output fields until we either run out of fields or stop_field is reached */ | 
					
						
							|  |  |  | 			while (curfieldptr != NULL && curfieldnum <= stop_field) { | 
					
						
							|  |  |  | 				char *field_value = strsep(&curfieldptr, ds); | 
					
						
							|  |  |  | 				ast_str_append(buf, buflen, "%s%s", out_field_count++ ? ds : "", field_value); | 
					
						
							|  |  |  | 				curfieldnum++; | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-06-18 18:24:23 +00:00
										 |  |  | 	ast_free(var_value); | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-06 00:13:33 +00:00
										 |  |  | static int acf_sort_exec(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len) | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-12 04:28:58 +00:00
										 |  |  | 	int ret = -1; | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (sort_internal(chan, data, buf, len)) { | 
					
						
							|  |  |  | 	case ERROR_NOARG: | 
					
						
							|  |  |  | 		ast_log(LOG_ERROR, "SORT() requires an argument\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case ERROR_NOMEM: | 
					
						
							|  |  |  | 		ast_log(LOG_ERROR, "Out of memory\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 0: | 
					
						
							| 
									
										
										
										
											2006-02-12 04:28:58 +00:00
										 |  |  | 		ret = 0; | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		ast_log(LOG_ERROR, "Unknown internal error\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-12 04:28:58 +00:00
										 |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-06 00:13:33 +00:00
										 |  |  | static int acf_cut_exec(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len) | 
					
						
							| 
									
										
										
										
											2009-04-29 18:53:01 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int ret = -1; | 
					
						
							|  |  |  | 	struct ast_str *str = ast_str_create(16); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (cut_internal(chan, data, &str, len)) { | 
					
						
							|  |  |  | 	case ERROR_NOARG: | 
					
						
							|  |  |  | 		ast_log(LOG_ERROR, "Syntax: CUT(<varname>,<char-delim>,<range-spec>) - missing argument!\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case ERROR_NOMEM: | 
					
						
							|  |  |  | 		ast_log(LOG_ERROR, "Out of memory\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case ERROR_USAGE: | 
					
						
							|  |  |  | 		ast_log(LOG_ERROR, "Usage: CUT(<varname>,<char-delim>,<range-spec>)\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 0: | 
					
						
							|  |  |  | 		ret = 0; | 
					
						
							|  |  |  | 		ast_copy_string(buf, ast_str_buffer(str), len); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		ast_log(LOG_ERROR, "Unknown internal error\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	ast_free(str); | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int acf_cut_exec2(struct ast_channel *chan, const char *cmd, char *data, struct ast_str **buf, ssize_t len) | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-12 04:28:58 +00:00
										 |  |  | 	int ret = -1; | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (cut_internal(chan, data, buf, len)) { | 
					
						
							|  |  |  | 	case ERROR_NOARG: | 
					
						
							| 
									
										
										
										
											2006-01-11 19:52:29 +00:00
										 |  |  | 		ast_log(LOG_ERROR, "Syntax: CUT(<varname>,<char-delim>,<range-spec>) - missing argument!\n"); | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case ERROR_NOMEM: | 
					
						
							|  |  |  | 		ast_log(LOG_ERROR, "Out of memory\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case ERROR_USAGE: | 
					
						
							| 
									
										
										
										
											2005-12-15 19:05:41 +00:00
										 |  |  | 		ast_log(LOG_ERROR, "Usage: CUT(<varname>,<char-delim>,<range-spec>)\n"); | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case 0: | 
					
						
							| 
									
										
										
										
											2006-02-12 04:28:58 +00:00
										 |  |  | 		ret = 0; | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		ast_log(LOG_ERROR, "Unknown internal error\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-12 04:28:58 +00:00
										 |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-15 17:34:30 +00:00
										 |  |  | static struct ast_custom_function acf_sort = { | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 	.name = "SORT", | 
					
						
							|  |  |  | 	.read = acf_sort_exec, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-15 17:34:30 +00:00
										 |  |  | static struct ast_custom_function acf_cut = { | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | 	.name = "CUT", | 
					
						
							|  |  |  | 	.read = acf_cut_exec, | 
					
						
							| 
									
										
										
										
											2009-04-29 18:53:01 +00:00
										 |  |  | 	.read2 = acf_cut_exec2, | 
					
						
							| 
									
										
										
										
											2005-08-26 20:01:22 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | static int unload_module(void) | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-11 03:14:05 +00:00
										 |  |  | 	int res = 0; | 
					
						
							| 
									
										
										
										
											2005-10-18 22:52:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-11 03:14:05 +00:00
										 |  |  | 	res |= ast_custom_function_unregister(&acf_cut); | 
					
						
							| 
									
										
										
										
											2005-10-18 22:52:21 +00:00
										 |  |  | 	res |= ast_custom_function_unregister(&acf_sort); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | static int load_module(void) | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-11 03:14:05 +00:00
										 |  |  | 	int res = 0; | 
					
						
							| 
									
										
										
										
											2005-10-18 22:52:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-11 03:14:05 +00:00
										 |  |  | 	res |= ast_custom_function_register(&acf_cut); | 
					
						
							| 
									
										
										
										
											2005-10-18 22:52:21 +00:00
										 |  |  | 	res |= ast_custom_function_register(&acf_sort); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											2003-10-22 13:34:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Cut out information from a string"); |