2009-02-07 23:14:25 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009, Anthony Minessale II
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* * Neither the name of the original author; nor the names of any contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
|
|
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "openzap.h"
|
|
|
|
#include "lpwrap_pri.h"
|
|
|
|
#ifndef HAVE_GETTIMEOFDAY
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#include <mmsystem.h>
|
|
|
|
|
|
|
|
static __inline int gettimeofday(struct timeval *tp, void *nothing)
|
|
|
|
{
|
|
|
|
#ifdef WITHOUT_MM_LIB
|
|
|
|
SYSTEMTIME st;
|
|
|
|
time_t tt;
|
|
|
|
struct tm tmtm;
|
|
|
|
/* mktime converts local to UTC */
|
|
|
|
GetLocalTime (&st);
|
|
|
|
tmtm.tm_sec = st.wSecond;
|
|
|
|
tmtm.tm_min = st.wMinute;
|
|
|
|
tmtm.tm_hour = st.wHour;
|
|
|
|
tmtm.tm_mday = st.wDay;
|
|
|
|
tmtm.tm_mon = st.wMonth - 1;
|
|
|
|
tmtm.tm_year = st.wYear - 1900; tmtm.tm_isdst = -1;
|
|
|
|
tt = mktime (&tmtm);
|
|
|
|
tp->tv_sec = tt;
|
|
|
|
tp->tv_usec = st.wMilliseconds * 1000;
|
|
|
|
#else
|
|
|
|
/**
|
|
|
|
** The earlier time calculations using GetLocalTime
|
|
|
|
** had a time resolution of 10ms.The timeGetTime, part
|
|
|
|
** of multimedia apis offer a better time resolution
|
|
|
|
** of 1ms.Need to link against winmm.lib for this
|
|
|
|
**/
|
|
|
|
unsigned long Ticks = 0;
|
|
|
|
unsigned long Sec =0;
|
|
|
|
unsigned long Usec = 0;
|
|
|
|
Ticks = timeGetTime();
|
|
|
|
|
|
|
|
Sec = Ticks/1000;
|
|
|
|
Usec = (Ticks - (Sec*1000))*1000;
|
|
|
|
tp->tv_sec = Sec;
|
|
|
|
tp->tv_usec = Usec;
|
|
|
|
#endif /* WITHOUT_MM_LIB */
|
|
|
|
(void)nothing;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* WIN32 */
|
|
|
|
#endif /* HAVE_GETTIMEOFDAY */
|
|
|
|
|
|
|
|
static struct lpwrap_pri_event_list LPWRAP_PRI_EVENT_LIST[] = {
|
|
|
|
{0, LPWRAP_PRI_EVENT_ANY, "ANY"},
|
|
|
|
{1, LPWRAP_PRI_EVENT_DCHAN_UP, "DCHAN_UP"},
|
|
|
|
{2, LPWRAP_PRI_EVENT_DCHAN_DOWN, "DCHAN_DOWN"},
|
|
|
|
{3, LPWRAP_PRI_EVENT_RESTART, "RESTART"},
|
|
|
|
{4, LPWRAP_PRI_EVENT_CONFIG_ERR, "CONFIG_ERR"},
|
|
|
|
{5, LPWRAP_PRI_EVENT_RING, "RING"},
|
|
|
|
{6, LPWRAP_PRI_EVENT_HANGUP, "HANGUP"},
|
|
|
|
{7, LPWRAP_PRI_EVENT_RINGING, "RINGING"},
|
|
|
|
{8, LPWRAP_PRI_EVENT_ANSWER, "ANSWER"},
|
|
|
|
{9, LPWRAP_PRI_EVENT_HANGUP_ACK, "HANGUP_ACK"},
|
|
|
|
{10, LPWRAP_PRI_EVENT_RESTART_ACK, "RESTART_ACK"},
|
|
|
|
{11, LPWRAP_PRI_EVENT_FACNAME, "FACNAME"},
|
|
|
|
{12, LPWRAP_PRI_EVENT_INFO_RECEIVED, "INFO_RECEIVED"},
|
|
|
|
{13, LPWRAP_PRI_EVENT_PROCEEDING, "PROCEEDING"},
|
|
|
|
{14, LPWRAP_PRI_EVENT_SETUP_ACK, "SETUP_ACK"},
|
|
|
|
{15, LPWRAP_PRI_EVENT_HANGUP_REQ, "HANGUP_REQ"},
|
|
|
|
{16, LPWRAP_PRI_EVENT_NOTIFY, "NOTIFY"},
|
|
|
|
{17, LPWRAP_PRI_EVENT_PROGRESS, "PROGRESS"},
|
2009-03-07 02:20:40 +00:00
|
|
|
{18, LPWRAP_PRI_EVENT_KEYPAD_DIGIT, "KEYPAD_DIGIT"},
|
2009-03-10 20:56:38 +00:00
|
|
|
{19, LPWRAP_PRI_EVENT_IO_FAIL, "IO_FAIL"},
|
2009-02-07 23:14:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define LINE "--------------------------------------------------------------------------------"
|
|
|
|
|
|
|
|
const char *lpwrap_pri_event_str(lpwrap_pri_event_t event_id)
|
|
|
|
{
|
|
|
|
return LPWRAP_PRI_EVENT_LIST[event_id].name;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int __pri_lpwrap_read(struct pri *pri, void *buf, int buflen)
|
|
|
|
{
|
|
|
|
struct lpwrap_pri *spri = (struct lpwrap_pri *) pri_get_userdata(pri);
|
|
|
|
zap_size_t len = buflen;
|
|
|
|
int res;
|
|
|
|
|
2009-03-10 20:56:38 +00:00
|
|
|
if (zap_channel_read(spri->dchan, buf, &len) != ZAP_SUCCESS) {
|
|
|
|
zap_log(ZAP_LOG_CRIT, "span %d D-READ FAIL! [%s]\n", spri->span->span_id, spri->dchan->last_error);
|
2009-03-07 02:20:40 +00:00
|
|
|
zap_clear_flag(spri, LPWRAP_PRI_READY);
|
|
|
|
return -1;
|
2009-02-07 23:14:25 +00:00
|
|
|
}
|
|
|
|
res = (int)len;
|
|
|
|
memset(&((unsigned char*)buf)[res],0,2);
|
|
|
|
res+=2;
|
|
|
|
|
|
|
|
//print_bits(buf, res-2, bb, sizeof(bb), 1, 0);
|
2009-03-11 02:04:18 +00:00
|
|
|
//zap_log(ZAP_LOG_DEBUG, "READ %d\n", res-2);
|
2009-02-07 23:14:25 +00:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int __pri_lpwrap_write(struct pri *pri, void *buf, int buflen)
|
|
|
|
{
|
|
|
|
struct lpwrap_pri *spri = (struct lpwrap_pri *) pri_get_userdata(pri);
|
|
|
|
zap_size_t len = buflen -2;
|
|
|
|
|
2009-03-10 20:56:38 +00:00
|
|
|
if (zap_channel_write(spri->dchan, buf, buflen, &len) != ZAP_SUCCESS) {
|
|
|
|
zap_log(ZAP_LOG_CRIT, "span %d D-WRITE FAIL! [%s]\n", spri->span->span_id, spri->dchan->last_error);
|
2009-03-07 02:20:40 +00:00
|
|
|
zap_clear_flag(spri, LPWRAP_PRI_READY);
|
|
|
|
return -1;
|
2009-02-07 23:14:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//print_bits(buf, (int)buflen-2, bb, sizeof(bb), 1, 0);
|
2009-03-11 02:04:18 +00:00
|
|
|
//zap_log(ZAP_LOG_DEBUG, "WRITE %d\n", (int)buflen-2);
|
2009-02-07 23:14:25 +00:00
|
|
|
|
|
|
|
return (int) buflen;
|
|
|
|
}
|
|
|
|
|
2009-03-10 20:56:38 +00:00
|
|
|
int lpwrap_init_pri(struct lpwrap_pri *spri, zap_span_t *span, zap_channel_t *dchan, int swtype, int node, int debug)
|
2009-02-07 23:14:25 +00:00
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
memset(spri, 0, sizeof(struct lpwrap_pri));
|
|
|
|
|
2009-03-10 20:56:38 +00:00
|
|
|
spri->dchan = dchan;
|
2009-02-07 23:14:25 +00:00
|
|
|
|
2009-03-10 20:56:38 +00:00
|
|
|
if ((spri->pri = pri_new_cb(spri->dchan->sockfd, node, swtype, __pri_lpwrap_read, __pri_lpwrap_write, spri))){
|
2009-03-11 02:04:18 +00:00
|
|
|
unsigned char buf[4] = { 0 };
|
|
|
|
size_t buflen = sizeof(buf), len = 0;
|
2009-02-07 23:14:25 +00:00
|
|
|
spri->span = span;
|
|
|
|
pri_set_debug(spri->pri, debug);
|
|
|
|
ret = 0;
|
2009-03-07 02:20:40 +00:00
|
|
|
zap_set_flag(spri, LPWRAP_PRI_READY);
|
2009-03-11 02:04:18 +00:00
|
|
|
zap_channel_write(spri->dchan, buf, buflen, &len);
|
2009-02-07 23:14:25 +00:00
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Unable to create PRI\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int lpwrap_one_loop(struct lpwrap_pri *spri)
|
|
|
|
{
|
|
|
|
fd_set rfds, efds;
|
|
|
|
struct timeval now = {0,0}, *next;
|
|
|
|
pri_event *event;
|
2009-03-07 02:20:40 +00:00
|
|
|
event_handler handler;
|
2009-02-07 23:14:25 +00:00
|
|
|
int sel;
|
|
|
|
|
|
|
|
if (spri->on_loop) {
|
2009-03-11 02:04:18 +00:00
|
|
|
if ((sel = spri->on_loop(spri)) < 0) {
|
|
|
|
return sel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!zap_test_flag(spri, LPWRAP_PRI_READY)) {
|
|
|
|
return -1;
|
2009-02-07 23:14:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_ZERO(&efds);
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
//Windows macro for FD_SET includes a warning C4127: conditional expression is constant
|
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable:4127)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
FD_SET(pri_fd(spri->pri), &rfds);
|
|
|
|
FD_SET(pri_fd(spri->pri), &efds);
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
now.tv_sec = 0;
|
|
|
|
now.tv_usec = 100000;
|
|
|
|
|
|
|
|
sel = select(pri_fd(spri->pri) + 1, &rfds, NULL, &efds, &now);
|
|
|
|
|
|
|
|
event = NULL;
|
|
|
|
|
|
|
|
if (!sel) {
|
|
|
|
if ((next = pri_schedule_next(spri->pri))) {
|
|
|
|
gettimeofday(&now, NULL);
|
|
|
|
if (now.tv_sec >= next->tv_sec && (now.tv_usec >= next->tv_usec || next->tv_usec <= 100000)) {
|
|
|
|
//zap_log(ZAP_LOG_DEBUG, "Check event\n");
|
|
|
|
event = pri_schedule_run(spri->pri);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (sel > 0) {
|
|
|
|
event = pri_check_event(spri->pri);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event) {
|
|
|
|
/* 0 is catchall event handler */
|
|
|
|
if ((handler = spri->eventmap[event->e] ? spri->eventmap[event->e] : spri->eventmap[0] ? spri->eventmap[0] : NULL)) {
|
|
|
|
handler(spri, event->e, event);
|
|
|
|
} else {
|
|
|
|
zap_log(ZAP_LOG_CRIT, "No event handler found for event %d.\n", event->e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-07 02:20:40 +00:00
|
|
|
if (zap_test_flag(spri, LPWRAP_PRI_READY)) {
|
|
|
|
return sel;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((handler = spri->eventmap[LPWRAP_PRI_EVENT_IO_FAIL] ? spri->eventmap[LPWRAP_PRI_EVENT_IO_FAIL] : spri->eventmap[0] ? spri->eventmap[0] : NULL)) {
|
|
|
|
handler(spri, LPWRAP_PRI_EVENT_IO_FAIL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
2009-02-07 23:14:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int lpwrap_run_pri(struct lpwrap_pri *spri)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
2009-03-07 02:20:40 +00:00
|
|
|
|
2009-02-07 23:14:25 +00:00
|
|
|
for (;;){
|
2009-03-07 02:20:40 +00:00
|
|
|
ret = lpwrap_one_loop(spri);
|
|
|
|
|
|
|
|
if (ret < 0) {
|
2009-02-07 23:14:25 +00:00
|
|
|
|
|
|
|
#ifndef WIN32 //This needs to be adressed fror WIN32 still
|
|
|
|
if (errno == EINTR){
|
|
|
|
/* Igonore an interrupted system call */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
2009-03-07 02:20:40 +00:00
|
|
|
zap_log(ZAP_LOG_CRIT, "Error = %i [%s]\n", ret, strerror(errno));
|
|
|
|
break;
|
2009-02-07 23:14:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For Emacs:
|
|
|
|
* Local Variables:
|
|
|
|
* mode:c
|
|
|
|
* indent-tabs-mode:t
|
|
|
|
* tab-width:4
|
|
|
|
* c-basic-offset:4
|
|
|
|
* End:
|
|
|
|
* For VIM:
|
|
|
|
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 expandtab:
|
|
|
|
*/
|
|
|
|
|