aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-28 10:23:25 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-28 10:23:25 +0000
commit917af9ad51151364dd7d6c6847f3494a36f6bf6c (patch)
treebef5a7bd67f6a9a354f9be9fec0e262f5e6e4e3b /main
parent30830453fb5a084f158ef8b9dd1c44ba3a6e2676 (diff)
Various simplifications of the code:
+ use a wrapper around ast_carefulwrite(), used in two places, to make life easier when we decide to use a different interface to the socket. + put an ast_verbose() message on astman_append on a case that should never happen now that we use a temporary file for AMI-over-HTTP sessions + document and slightly simplify process_events() by removing unnecessary parentheses. + in get_input(), use ast_wait_for_input() instead of poll(). We may want to move to a completely non-blocking git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48080 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/manager.c33
1 files changed, 21 insertions, 12 deletions
diff --git a/main/manager.c b/main/manager.c
index 6ffa290d5..b8d543067 100644
--- a/main/manager.c
+++ b/main/manager.c
@@ -736,6 +736,15 @@ struct ast_variable *astman_get_variables(struct message *m)
return head;
}
+/*!
+ * helper function to send a string to the socket.
+ * Return -1 on error (e.g. buffer full).
+ */
+static int send_string(struct mansession *s, char *string)
+{
+ return ast_carefulwrite(s->fd, string, strlen(string), s->writetimeout);
+}
+
/*
* utility functions for creating AMI replies
*/
@@ -752,8 +761,9 @@ void astman_append(struct mansession *s, const char *fmt, ...)
va_end(ap);
if (s->fd > -1)
- ast_carefulwrite(s->fd, buf->str, strlen(buf->str), s->writetimeout);
+ send_string(s, buf->str);
else {
+ ast_verbose("fd == -1 in astman_append, should not happen\n");
if (!s->outputstr && !(s->outputstr = ast_calloc(1, sizeof(*s->outputstr))))
return;
@@ -1591,7 +1601,7 @@ static int action_command(struct mansession *s, struct message *m)
if (!ast_strlen_zero(id))
astman_append(s, "ActionID: %s\r\n", id);
/* FIXME: Wedge a ActionID response in here, waiting for later changes */
- ast_cli_command(s->fd, cmd);
+ ast_cli_command(s->fd, cmd); /* XXX need to change this to use a FILE * */
astman_append(s, "--END COMMAND--\r\n\r\n");
return 0;
}
@@ -1905,7 +1915,9 @@ static int action_timeout(struct mansession *s, struct message *m)
}
/*!
- * Send any applicable events to the client listening on this socket
+ * Send any applicable events to the client listening on this socket.
+ * Wait only for a finite time on each event, and drop all events whether
+ * they are successfully sent or not.
*/
static int process_events(struct mansession *s)
{
@@ -1917,11 +1929,11 @@ static int process_events(struct mansession *s)
while ( (eqe = NEW_EVENT(s)) ) {
ref_event(eqe);
- if ((s->authenticated && (s->readperm & eqe->category) == eqe->category) &&
- ((s->send_events & eqe->category) == eqe->category)) {
- if (!ret && ast_carefulwrite(s->fd, eqe->eventdata,
- strlen(eqe->eventdata), s->writetimeout) < 0)
- ret = -1;
+ if (!ret && s->authenticated &&
+ (s->readperm & eqe->category) == eqe->category &&
+ (s->send_events & eqe->category) == eqe->category) {
+ if (send_string(s, eqe->eventdata) < 0)
+ ret = -1; /* don't send more */
}
s->last_ev = unref_event(s->last_ev);
}
@@ -2016,7 +2028,6 @@ static int process_message(struct mansession *s, struct message *m)
*/
static int get_input(struct mansession *s, char *output)
{
- struct pollfd fds[1];
int res, x;
int maxlen = sizeof(s->inbuf) - 1;
char *src = s->inbuf;
@@ -2040,8 +2051,6 @@ static int get_input(struct mansession *s, char *output)
ast_log(LOG_WARNING, "Dumping long line with no return from %s: %s\n", ast_inet_ntoa(s->sin.sin_addr), src);
s->inlen = 0;
}
- fds[0].fd = s->fd;
- fds[0].events = POLLIN;
res = 0;
while (res == 0) {
/* XXX do we really need this locking ? */
@@ -2049,7 +2058,7 @@ static int get_input(struct mansession *s, char *output)
s->waiting_thread = pthread_self();
ast_mutex_unlock(&s->__lock);
- res = poll(fds, 1, -1); /* return 0 on timeout ? */
+ res = ast_wait_for_input(s->fd, -1); /* return 0 on timeout ? */
ast_mutex_lock(&s->__lock);
s->waiting_thread = AST_PTHREADT_NULL;