summaryrefslogtreecommitdiffstats
path: root/callasterisk.cpp
diff options
context:
space:
mode:
authorSuper User2007-07-15 12:03:09 +0200
committerSuper User2007-07-15 12:03:09 +0200
commita54078ccf090907f1ebd9ddc3a02cd613ffecf9c (patch)
tree5fb00c27c281d5d687beaecc77c792e2230d212a /callasterisk.cpp
parentbackup (diff)
downloadlcr-a54078ccf090907f1ebd9ddc3a02cd613ffecf9c.tar.gz
lcr-a54078ccf090907f1ebd9ddc3a02cd613ffecf9c.tar.xz
lcr-a54078ccf090907f1ebd9ddc3a02cd613ffecf9c.zip
backup
Diffstat (limited to 'callasterisk.cpp')
-rw-r--r--callasterisk.cpp109
1 files changed, 109 insertions, 0 deletions
diff --git a/callasterisk.cpp b/callasterisk.cpp
new file mode 100644
index 0000000..0e7719f
--- /dev/null
+++ b/callasterisk.cpp
@@ -0,0 +1,109 @@
+/*****************************************************************************\
+** **
+** PBX4Linux **
+** **
+**---------------------------------------------------------------------------**
+** Copyright: Andreas Eversberg **
+** **
+** call functions for channel driver **
+** **
+\*****************************************************************************/
+
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+//#include <unistd.h>
+//#include <poll.h>
+//#include <sys/types.h>
+//#include <sys/stat.h>
+//#include <fcntl.h>
+#include "main.h"
+//#define __u8 unsigned char
+//#define __u16 unsigned short
+//#define __u32 unsigned long
+//#include "linux/isdnif.h"
+
+
+/*
+ * constructor for a new call
+ * the call will have a relation to the calling endpoint
+ */
+CallAsterisk::CallAsterisk(unsigned long serial) : Call()
+{
+ PDEBUG(DEBUG_CALL, "Constructor(new call)");
+
+ c_type = CALL_TYPE_ASTERISK;
+
+ c_epoint_id = serial;
+ if (c_epoint_id)
+ PDEBUG(DEBUG_CALL, "New call connected to endpoint id %lu\n", c_epoint_id);
+}
+
+
+/*
+ * call descructor
+ */
+CallAsterisk::~CallAsterisk()
+{
+
+}
+
+
+/* call process is called from the main loop
+ * it processes the current calling state.
+ * returns 0 if call nothing was done
+ */
+int CallAsterisk::handler(void)
+{
+ return(0);
+}
+
+
+void CallAsterisk::message_epoint(unsigned long epoint_id, int message_type, union parameter *param)
+{
+ /* if endpoint has just been removed, but still a message in the que */
+ if (epoint_id != c_epoint_id)
+ return;
+
+ /* look for asterisk's interface */
+ if (admin_message_from_join(epoint_id, message_type, param)<0)
+ {
+ PERROR("No socket with asterisk found, this shall not happen. Closing socket shall cause release of all asterisk calls\n");
+ return;
+ }
+
+ if (message_type == MESSAGE_RELEASE)
+ {
+ delete this;
+ return;
+ }
+}
+
+void CallAsterisk::message_asterisk(unsigned long callref, int message_type, union parameter *param)
+{
+ struct message *message;
+
+ /* create relation if no relation exists */
+ if (!c_epoint_id)
+ {
+ class Endpoint *epoint;
+
+ if (!(epoint = new Endpoint(0, c_serial, callref)))
+ FATAL("No memory for Endpoint instance\n");
+ if (!(epoint->ep_app = new DEFAULT_ENDPOINT_APP(epoint)))
+ FATAL("No memory for Endpoint Application instance\n");
+ }
+
+ message = message_create(c_serial, c_epoint_id, CALL_TO_EPOINT, message_type);
+ memcpy(&message->param, param, sizeof(message->param));
+ message_put(message);
+
+ if (message_type == MESSAGE_RELEASE)
+ {
+ delete this;
+ return;
+ }
+}
+
+
+