Sha256: e78a8372be8cd2f1b97cde189563fe245df5561892772057ff84b0b13518fe02

Contents?: true

Size: 1.11 KB

Versions: 79

Compression:

Stored size: 1.11 KB

Contents

/*
** © 2014 by Philipp Dunkel <pip@pipobscure.com>
** Licensed under MIT License.
*/


void async_propagate(uv_async_t *async) {
  if (!async->data) return;
  FSEvents *fse = (FSEvents *)async->data;
  CFIndex idx, cnt;
  fse_event *event;
  char pathbuf[1024];
  const char *pathptr = NULL;
  fse->lock();
  cnt = CFArrayGetCount(fse->events);
  for (idx=0; idx<cnt; idx++) {
    event = (fse_event *)CFArrayGetValueAtIndex(fse->events, idx);
    pathptr = CFStringGetCStringPtr(event->path, kCFStringEncodingUTF8);
    if (!pathptr) CFStringGetCString(event->path, pathbuf, 1024, kCFStringEncodingUTF8);
    fse->emitEvent(pathptr ? pathptr : pathbuf, event->flags, event->id);
  }
  if (cnt>0) CFArrayRemoveAllValues(fse->events);
  fse->unlock();
}

void FSEvents::asyncStart() {
  if (async.data == this) return;
  async.data = this;
  uv_async_init(uv_default_loop(), &async, (uv_async_cb) async_propagate);
}

void FSEvents::asyncTrigger() {
  if (async.data != this) return;
  uv_async_send(&async);
}

void FSEvents::asyncStop() {
  if (async.data != this) return;
  async.data = NULL;
  uv_close((uv_handle_t *) &async, NULL);
}

Version data entries

79 entries across 79 versions & 3 rubygems

Version Path
hooch-0.4.2 jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/async.cc
hooch-0.4.1 jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/async.cc
hooch-0.4.0 jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/async.cc
hooch-0.3.0 jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/async.cc
hooch-0.2.1 jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/async.cc
hooch-0.2.0 jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/async.cc
hooch-0.1.0 jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/async.cc
hooch-0.0.8 jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/async.cc
hooch-0.0.7 jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/async.cc
hooch-0.0.6 jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/async.cc
smock-0.1.268 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/fsevents/src/async.cc
smock-0.1.267 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/fsevents/src/async.cc
smock-0.1.266 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/fsevents/src/async.cc
smock-0.1.265 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/fsevents/src/async.cc
smock-0.1.264 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/fsevents/src/async.cc
smock-0.1.263 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/fsevents/src/async.cc
smock-0.1.262 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/fsevents/src/async.cc
smock-0.1.261 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/fsevents/src/async.cc
smock-0.1.260 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/fsevents/src/async.cc
smock-0.1.259 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/fsevents/src/async.cc