aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authoranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2004-09-24 21:33:48 +0000
committeranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2004-09-24 21:33:48 +0000
commit6ffda996af2f5261775610a416e5146d5d394f4f (patch)
tree9dc1614246c2f8319edee2064d5efe8b24880b6a /apps
parentce99091f34f4409c251d35d603e027311521d96e (diff)
add app_forkcdr
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3832 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rwxr-xr-xapps/Makefile2
-rwxr-xr-xapps/app_forkcdr.c89
2 files changed, 90 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 5aacce21f..ebd149c76 100755
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -29,7 +29,7 @@ APPS=app_dial.so app_playback.so app_voicemail.so app_directory.so app_mp3.so\
app_nbscat.so app_sendtext.so app_exec.so app_sms.so \
app_groupcount.so app_txtcidname.so app_controlplayback.so \
app_talkdetect.so app_alarmreceiver.so app_userevent.so app_verbose.so \
- app_test.so
+ app_test.so app_forkcdr.so
ifneq (${OSARCH},Darwin)
APPS+=app_intercom.so
diff --git a/apps/app_forkcdr.c b/apps/app_forkcdr.c
new file mode 100755
index 000000000..547bfa45e
--- /dev/null
+++ b/apps/app_forkcdr.c
@@ -0,0 +1,89 @@
+/*
+ * Asterisk -- A telephony toolkit for Linux.
+ *
+ * Fork CDR application
+ * Copyright Anthony Minessale anthmct@yahoo.com
+ * Development of this app Sponsered/Funded by TAAN Softworks Corp
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License
+ */
+
+#include <asterisk/file.h>
+#include <asterisk/logger.h>
+#include <asterisk/channel.h>
+#include <asterisk/pbx.h>
+#include <asterisk/cdr.h>
+#include <asterisk/module.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <string.h>
+#include <pthread.h>
+
+static char *tdesc = "Fork The CDR into 2 seperate entities.";
+static char *app = "ForkCDR";
+static char *synopsis =
+"Forks the Call Data Record\n"
+" ForkCDR(): Causes the Call Data Record to fork an additional\n"
+ "cdr record starting from the time of the fork call\n";
+
+
+STANDARD_LOCAL_USER;
+
+LOCAL_USER_DECL;
+
+
+static void ast_cdr_clone(struct ast_cdr *cdr) {
+ struct ast_cdr *newcdr = ast_cdr_alloc();
+ memcpy(newcdr,cdr,sizeof(struct ast_cdr));
+ ast_cdr_append(cdr,newcdr);
+ gettimeofday(&newcdr->start, NULL);
+ memset(&newcdr->answer, 0, sizeof(newcdr->answer));
+ ast_cdr_add_flag(cdr,AST_CDR_FLAG_CHILD|AST_CDR_FLAG_LOCKED);
+}
+
+static void ast_cdr_fork(struct ast_channel *chan) {
+ if(chan && chan->cdr) {
+ ast_cdr_clone(chan->cdr);
+ }
+}
+
+static int forkcdr_exec(struct ast_channel *chan, void *data)
+{
+ int res=0;
+ struct localuser *u;
+ LOCAL_USER_ADD(u);
+
+ ast_cdr_fork(chan);
+
+ LOCAL_USER_REMOVE(u);
+ return res;
+}
+
+int unload_module(void)
+{
+ STANDARD_HANGUP_LOCALUSERS;
+ return ast_unregister_application(app);
+}
+
+int load_module(void)
+{
+ return ast_register_application(app, forkcdr_exec, synopsis, tdesc);
+}
+
+char *description(void)
+{
+ return tdesc;
+}
+
+int usecount(void)
+{
+ int res;
+ STANDARD_USECOUNT(res);
+ return res;
+}
+
+char *key()
+{
+ return ASTERISK_GPL_KEY;
+}