Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: runtime/bin/file_system_watcher.cc

Issue 19263003: Add FileSystemWatcher class to dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix android socket. Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/bin/file_system_watcher.h ('k') | runtime/bin/file_system_watcher_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/file_system_watcher.cc
diff --git a/runtime/bin/file_system_watcher.cc b/runtime/bin/file_system_watcher.cc
new file mode 100644
index 0000000000000000000000000000000000000000..aedefab2869ee9ca06979f8aded9aec250890272
--- /dev/null
+++ b/runtime/bin/file_system_watcher.cc
@@ -0,0 +1,62 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+#include "bin/file_system_watcher.h"
+
+#include "bin/builtin.h"
+#include "bin/dartutils.h"
+
+#include "include/dart_api.h"
+
+namespace dart {
+namespace bin {
+
+static const int kWatcherNativeField = 0;
+
+
+void SetWatcherIdNativeField(Dart_Handle watcher, intptr_t id) {
+ ThrowIfError(Dart_SetNativeInstanceField(watcher, kWatcherNativeField, id));
+}
+
+
+void GetWatcherIdNativeField(Dart_Handle watcher, intptr_t* id) {
+ ThrowIfError(Dart_GetNativeInstanceField(watcher, kWatcherNativeField, id));
+}
+
+
+void FUNCTION_NAME(FileSystemWatcher_WatchPath)(Dart_NativeArguments args) {
+ Dart_Handle watcher = Dart_GetNativeArgument(args, 0);
+ const char* path = DartUtils::GetStringValue(Dart_GetNativeArgument(args, 1));
+ int events = DartUtils::GetIntegerValue(Dart_GetNativeArgument(args, 2));
+ bool recursive = DartUtils::GetBooleanValue(Dart_GetNativeArgument(args, 3));
+ intptr_t id = FileSystemWatcher::WatchPath(path, events, recursive);
+ if (id == -1) {
+ Dart_PropagateError(DartUtils::NewDartOSError());
+ } else {
+ SetWatcherIdNativeField(watcher, id);
+ }
+ intptr_t socket_id = FileSystemWatcher::GetSocketId(id);
+ Dart_SetReturnValue(args, Dart_NewInteger(socket_id));
+}
+
+
+void FUNCTION_NAME(FileSystemWatcher_UnwatchPath)(Dart_NativeArguments args) {
+ Dart_Handle watcher = Dart_GetNativeArgument(args, 0);
+ intptr_t id;
+ GetWatcherIdNativeField(watcher, &id);
+ FileSystemWatcher::UnwatchPath(id);
+}
+
+
+void FUNCTION_NAME(FileSystemWatcher_ReadEvents)(Dart_NativeArguments args) {
+ Dart_Handle watcher = Dart_GetNativeArgument(args, 0);
+ intptr_t id;
+ GetWatcherIdNativeField(watcher, &id);
+ Dart_Handle handle = FileSystemWatcher::ReadEvents(id);
+ ThrowIfError(handle);
+ Dart_SetReturnValue(args, handle);
+}
+
+} // namespace bin
+} // namespace dart
« no previous file with comments | « runtime/bin/file_system_watcher.h ('k') | runtime/bin/file_system_watcher_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698