Sync OpenBSD patchset 493:

Switch jobs over to use a bufferevent.
This commit is contained in:
Tiago Cunha 2009-11-08 22:56:04 +00:00
parent 5116aaa51a
commit 53ef4c2bab
6 changed files with 85 additions and 136 deletions

View File

@ -1,4 +1,4 @@
/* $Id: cmd-run-shell.c,v 1.4 2009-11-02 21:38:26 tcunha Exp $ */ /* $Id: cmd-run-shell.c,v 1.5 2009-11-08 22:56:04 tcunha Exp $ */
/* /*
* Copyright (c) 2009 Tiago Cunha <me@tiagocunha.org> * Copyright (c) 2009 Tiago Cunha <me@tiagocunha.org>
@ -77,31 +77,33 @@ cmd_run_shell_callback(struct job *job)
{ {
struct cmd_run_shell_data *cdata = job->data; struct cmd_run_shell_data *cdata = job->data;
struct cmd_ctx *ctx = &cdata->ctx; struct cmd_ctx *ctx = &cdata->ctx;
char *cmd, *msg, *line, *buf; char *cmd, *msg, *line;
size_t off, len, llen; size_t size;
int retcode; int retcode;
u_int lines;
buf = BUFFER_OUT(job->out); lines = 0;
len = BUFFER_USED(job->out); do {
if ((line = evbuffer_readline(job->event->input)) != NULL) {
ctx->print(ctx, "%s", line);
lines++;
}
} while (line != NULL);
size = EVBUFFER_LENGTH(job->event->input);
if (size != 0) {
line = xmalloc(size + 1);
memcpy(line, EVBUFFER_DATA(job->event->input), size);
line[size] = '\0';
ctx->print(ctx, "%s", line);
lines++;
xfree(line);
}
cmd = cdata->cmd; cmd = cdata->cmd;
if (len != 0) {
line = buf;
for (off = 0; off < len; off++) {
if (buf[off] == '\n') {
llen = buf + off - line;
if (llen > INT_MAX)
break;
ctx->print(ctx, "%.*s", (int) llen, line);
line = buf + off + 1;
}
}
llen = buf + len - line;
if (llen > 0 && llen < INT_MAX)
ctx->print(ctx, "%.*s", (int) llen, line);
}
msg = NULL; msg = NULL;
if (WIFEXITED(job->status)) { if (WIFEXITED(job->status)) {
if ((retcode = WEXITSTATUS(job->status)) != 0) if ((retcode = WEXITSTATUS(job->status)) != 0)
@ -111,7 +113,7 @@ cmd_run_shell_callback(struct job *job)
xasprintf(&msg, "'%s' terminated by signal %d", cmd, retcode); xasprintf(&msg, "'%s' terminated by signal %d", cmd, retcode);
} }
if (msg != NULL) { if (msg != NULL) {
if (len != 0) if (lines != 0)
ctx->print(ctx, "%s", msg); ctx->print(ctx, "%s", msg);
else else
ctx->info(ctx, "%s", msg); ctx->info(ctx, "%s", msg);

53
job.c
View File

@ -1,4 +1,4 @@
/* $Id: job.c,v 1.10 2009-11-08 22:40:36 tcunha Exp $ */ /* $Id: job.c,v 1.11 2009-11-08 22:56:04 tcunha Exp $ */
/* /*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@ -17,6 +17,7 @@
*/ */
#include <sys/types.h> #include <sys/types.h>
#include <sys/socket.h>
#include <fcntl.h> #include <fcntl.h>
#include <string.h> #include <string.h>
@ -34,6 +35,8 @@ struct joblist all_jobs = SLIST_HEAD_INITIALIZER(&all_jobs);
RB_GENERATE(jobs, job, entry, job_cmp); RB_GENERATE(jobs, job, entry, job_cmp);
void job_callback(struct bufferevent *, short, void *);
int int
job_cmp(struct job *job1, struct job *job2) job_cmp(struct job *job1, struct job *job2)
{ {
@ -85,14 +88,13 @@ job_add(struct jobs *jobs, int flags, struct client *c, const char *cmd,
job->client = c; job->client = c;
job->fd = -1; job->fd = -1;
job->out = buffer_create(BUFSIZ); job->event = NULL;
memset(&job->event, 0, sizeof job->event);
job->callbackfn = callbackfn; job->callbackfn = callbackfn;
job->freefn = freefn; job->freefn = freefn;
job->data = data; job->data = data;
job->flags = flags|JOB_DONE; job->flags = flags;
if (jobs != NULL) if (jobs != NULL)
RB_INSERT(jobs, jobs, job); RB_INSERT(jobs, jobs, job);
@ -124,9 +126,9 @@ job_free(struct job *job)
if (job->fd != -1) if (job->fd != -1)
close(job->fd); close(job->fd);
if (job->out != NULL)
buffer_destroy(job->out); if (job->event != NULL)
event_del(&job->event); bufferevent_free(job->event);
xfree(job); xfree(job);
} }
@ -137,11 +139,10 @@ job_run(struct job *job)
{ {
int nullfd, out[2], mode; int nullfd, out[2], mode;
if (!(job->flags & JOB_DONE)) if (job->fd != -1 || job->pid != -1)
return (0); return (0);
job->flags &= ~JOB_DONE;
if (pipe(out) != 0) if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, out) != 0)
return (-1); return (-1);
switch (job->pid = fork()) { switch (job->pid = fork()) {
@ -180,13 +181,41 @@ job_run(struct job *job)
if (fcntl(job->fd, F_SETFD, FD_CLOEXEC) == -1) if (fcntl(job->fd, F_SETFD, FD_CLOEXEC) == -1)
fatal("fcntl failed"); fatal("fcntl failed");
if (BUFFER_USED(job->out) != 0) if (job->event != NULL)
buffer_remove(job->out, BUFFER_USED(job->out)); bufferevent_free(job->event);
job->event =
bufferevent_new(job->fd, NULL, NULL, job_callback, job);
bufferevent_enable(job->event, EV_READ);
return (0); return (0);
} }
} }
/* Job buffer error callback. */
void
job_callback(unused struct bufferevent *bufev, unused short events, void *data)
{
struct job *job = data;
bufferevent_disable(job->event, EV_READ);
close(job->fd);
job->fd = -1;
if (job->pid == -1 && job->callbackfn != NULL)
job->callbackfn(job);
}
/* Job died (waitpid() returned its pid). */
void
job_died(struct job *job, int status)
{
job->status = status;
job->pid = -1;
if (job->fd == -1 && job->callbackfn != NULL)
job->callbackfn(job);
}
/* Kill a job. */ /* Kill a job. */
void void
job_kill(struct job *job) job_kill(struct job *job)

View File

@ -1,77 +0,0 @@
/* $Id: server-job.c,v 1.4 2009-11-08 22:40:36 tcunha Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <event.h>
#include <unistd.h>
#include "tmux.h"
/* Register jobs for poll. */
void
server_job_prepare(void)
{
struct job *job;
SLIST_FOREACH(job, &all_jobs, lentry) {
if (job->fd == -1)
continue;
event_del(&job->event);
event_set(
&job->event, job->fd, EV_READ, server_job_callback, job);
event_add(&job->event, NULL);
}
}
/* Process a single job event. */
void
server_job_callback(int fd, short events, void *data)
{
struct job *job = data;
if (job->fd == -1)
return;
if (buffer_poll(fd, events, job->out, NULL) != 0) {
close(job->fd);
job->fd = -1;
}
}
/* Job functions that happen once a loop. */
void
server_job_loop(void)
{
struct job *job;
restart:
SLIST_FOREACH(job, &all_jobs, lentry) {
if (job->flags & JOB_DONE || job->fd != -1 || job->pid != -1)
continue;
job->flags |= JOB_DONE;
if (job->callbackfn != NULL) {
job->callbackfn(job);
if ((!job->flags & JOB_PERSIST)) {
job_free(job);
goto restart;
}
}
}
}

View File

@ -1,4 +1,4 @@
/* $Id: server.c,v 1.217 2009-11-08 22:40:36 tcunha Exp $ */ /* $Id: server.c,v 1.218 2009-11-08 22:56:04 tcunha Exp $ */
/* /*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -218,14 +218,12 @@ server_loop(void)
while (!server_should_shutdown()) { while (!server_should_shutdown()) {
server_update_socket(); server_update_socket();
server_job_prepare();
server_window_prepare(); server_window_prepare();
server_client_prepare(); server_client_prepare();
event_loopexit(&tv); event_loopexit(&tv);
event_loop(EVLOOP_ONCE); event_loop(EVLOOP_ONCE);
server_job_loop();
server_window_loop(); server_window_loop();
server_client_loop(); server_client_loop();
@ -474,8 +472,8 @@ server_child_exited(pid_t pid, int status)
SLIST_FOREACH(job, &all_jobs, lentry) { SLIST_FOREACH(job, &all_jobs, lentry) {
if (pid == job->pid) { if (pid == job->pid) {
job->pid = -1; job_died(job, status); /* might free job */
job->status = status; break;
} }
} }
} }

View File

@ -1,4 +1,4 @@
/* $Id: status.c,v 1.125 2009-11-04 23:12:32 tcunha Exp $ */ /* $Id: status.c,v 1.126 2009-11-08 22:56:04 tcunha Exp $ */
/* /*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -486,23 +486,26 @@ status_job(struct client *c, char **iptr)
void void
status_job_callback(struct job *job) status_job_callback(struct job *job)
{ {
char *buf; char *line, *buf;
size_t len; size_t len;
len = BUFFER_USED(job->out); buf = NULL;
buf = xmalloc(len + 1); if ((line = evbuffer_readline(job->event->input)) == NULL) {
if (len != 0) len = EVBUFFER_LENGTH(job->event->input);
buffer_read(job->out, buf, len); buf = xmalloc(len + 1);
buf[len] = '\0'; if (len != 0)
buf[strcspn(buf, "\n")] = '\0'; memcpy(buf, EVBUFFER_DATA(job->event->input), len);
buf[len] = '\0';
}
if (job->data != NULL) if (job->data != NULL)
xfree(job->data); xfree(job->data);
else else
server_redraw_client(job->client); server_redraw_client(job->client);
job->data = xstrdup(buf); job->data = xstrdup(line);
xfree(buf); if (buf != NULL)
xfree(buf);
} }
size_t size_t

14
tmux.h
View File

@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.497 2009-11-08 22:40:36 tcunha Exp $ */ /* $Id: tmux.h,v 1.498 2009-11-08 22:56:04 tcunha Exp $ */
/* /*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -660,16 +660,14 @@ struct job {
struct client *client; struct client *client;
int fd; int fd;
struct event event; struct bufferevent *event;
struct buffer *out;
void (*callbackfn)(struct job *); void (*callbackfn)(struct job *);
void (*freefn)(void *); void (*freefn)(void *);
void *data; void *data;
int flags; int flags;
#define JOB_DONE 0x1 #define JOB_PERSIST 0x1 /* don't free after callback */
#define JOB_PERSIST 0x2 /* don't free after callback */
RB_ENTRY(job) entry; RB_ENTRY(job) entry;
SLIST_ENTRY(job) lentry; SLIST_ENTRY(job) lentry;
@ -1305,6 +1303,7 @@ struct job *job_add(struct jobs *, int, struct client *,
void job_remove(struct jobs *, struct job *); void job_remove(struct jobs *, struct job *);
void job_free(struct job *); void job_free(struct job *);
int job_run(struct job *); int job_run(struct job *);
void job_died(struct job *, int);
void job_kill(struct job *); void job_kill(struct job *);
/* environ.c */ /* environ.c */
@ -1588,11 +1587,6 @@ void server_client_prepare(void);
void server_client_callback(int, short, void *); void server_client_callback(int, short, void *);
void server_client_loop(void); void server_client_loop(void);
/* server-job.c */
void server_job_prepare(void);
void server_job_callback(int, short, void *);
void server_job_loop(void);
/* server-window.c */ /* server-window.c */
void server_window_prepare(void); void server_window_prepare(void);
void server_window_callback(int, short, void *); void server_window_callback(int, short, void *);