Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
sunos: implement file watcher API
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Oct 26, 2011
1 parent 3ecb319 commit 3e4af53
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 4 deletions.
10 changes: 10 additions & 0 deletions include/uv-private/uv-unix.h
Expand Up @@ -195,6 +195,16 @@ typedef int uv_file;
uv_fs_event_cb cb; \
int fflags; \

#elif defined(__sun)

#include <sys/port.h>
#include <port.h>

#define UV_FS_EVENT_PRIVATE_FIELDS \
ev_io event_watcher; \
uv_fs_event_cb cb; \
file_obj_t fo; \

#else

/* Stub for platforms where the file watcher isn't implemented yet. */
Expand Down
84 changes: 80 additions & 4 deletions src/unix/sunos.c
Expand Up @@ -23,13 +23,17 @@

#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <errno.h>

#include <sys/time.h>
#include <sys/loadavg.h>
#include <sys/time.h>
#include <sys/port.h>
#include <unistd.h>
#include <kstat.h>
#include <port.h>


uint64_t uv_hrtime() {
Expand Down Expand Up @@ -81,15 +85,87 @@ void uv_loadavg(double avg[3]) {
}


static void uv__fs_event_rearm(uv_fs_event_t *handle) {
if (port_associate(handle->fd,
PORT_SOURCE_FILE,
(uintptr_t) &handle->fo,
FILE_ATTRIB | FILE_MODIFIED,
NULL) == -1) {
uv__set_sys_error(handle->loop, errno);
}
}


static void uv__fs_event_read(EV_P_ ev_io* w, int revents) {
uv_fs_event_t *handle;
timespec_t timeout;
port_event_t pe;
int events;
int r;

handle = container_of(w, uv_fs_event_t, event_watcher);

do {
/* TODO use port_getn() */
do {
memset(&timeout, 0, sizeof timeout);
r = port_get(handle->fd, &pe, &timeout);
}
while (r == -1 && errno == EINTR);

if (r == -1 && errno == ETIME)
break;

assert((r == 0) && "unexpected port_get() error");

events = 0;
if (pe.portev_events & (FILE_ATTRIB | FILE_MODIFIED))
events |= UV_CHANGE;
if (pe.portev_events & ~(FILE_ATTRIB | FILE_MODIFIED))
events |= UV_RENAME;
assert(events != 0);

handle->cb(handle, NULL, events, 0);
}
while (handle->fd != -1);

if (handle->fd != -1)
uv__fs_event_rearm(handle);
}


int uv_fs_event_init(uv_loop_t* loop,
uv_fs_event_t* handle,
const char* filename,
uv_fs_event_cb cb) {
uv__set_sys_error(loop, ENOSYS);
return -1;
int portfd;

if ((portfd = port_create()) == -1) {
uv__set_sys_error(loop, errno);
return -1;
}

uv__handle_init(loop, (uv_handle_t*)handle, UV_FS_EVENT);
handle->filename = strdup(filename);
handle->fd = portfd;
handle->cb = cb;

memset(&handle->fo, 0, sizeof handle->fo);
handle->fo.fo_name = handle->filename;
uv__fs_event_rearm(handle);

ev_io_init(&handle->event_watcher, uv__fs_event_read, portfd, EV_READ);
ev_io_start(loop->ev, &handle->event_watcher);

return 0;
}


void uv__fs_event_destroy(uv_fs_event_t* handle) {
assert(0 && "implement me");
ev_io_stop(handle->loop->ev, &handle->event_watcher);
uv__close(handle->fd);
handle->fd = -1;
free(handle->filename);
handle->filename = NULL;
handle->fo.fo_name = NULL;
}

0 comments on commit 3e4af53

Please sign in to comment.