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

Unified Diff: runtime/lib/bool.cc

Issue 50983002: Implement fromEnvironment on bool, int and String (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed comments Created 7 years, 2 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
Index: runtime/lib/bool.cc
diff --git a/runtime/lib/bool.cc b/runtime/lib/bool.cc
new file mode 100644
index 0000000000000000000000000000000000000000..ae4af27f9301fc89a2c8af25a83f29f8bb46cd8b
--- /dev/null
+++ b/runtime/lib/bool.cc
@@ -0,0 +1,46 @@
+// Copyright (c) 2012, 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 "vm/bootstrap_natives.h"
+
+#include "include/dart_api.h"
+#include "vm/bigint_operations.h"
+#include "vm/dart_entry.h"
+#include "vm/dart_api_impl.h"
+#include "vm/exceptions.h"
+#include "vm/isolate.h"
+#include "vm/native_entry.h"
+#include "vm/object.h"
+#include "vm/object_store.h"
+#include "vm/symbols.h"
+
+namespace dart {
+
+DEFINE_NATIVE_ENTRY(Bool_fromEnvironment, 3) {
+ GET_NON_NULL_NATIVE_ARGUMENT(String, name, arguments->NativeArgAt(1));
+ GET_NATIVE_ARGUMENT(Bool, default_value, arguments->NativeArgAt(2));
+ // Call the embedder to supply us with the environment.
+ Dart_EnvironmentCallback callback = isolate->environment_callback();
+ if (callback != NULL) {
+ Dart_Handle result = callback(Api::NewHandle(isolate, name.raw()));
+ if (Dart_IsError(result)) {
+ const Object& error =
+ Object::Handle(isolate, Api::UnwrapHandle(result));
+ Exceptions::ThrowArgumentError(
+ String::Handle(
+ String::New(Error::Cast(error).ToErrorCString())));
+ } else if (Dart_IsString(result)) {
+ const char *chars;
+ Dart_StringToCString(result, &chars);
+ return (strcmp("true", chars) == 0)
+ ? Bool::True().raw() : Bool::False().raw();
+ } else if (!Dart_IsNull(result)) {
+ Exceptions::ThrowArgumentError(
+ String::Handle(String::New("Illegal environment value")));
+ }
+ }
+ return default_value.raw();
+}
+
+} // namespace dart
« no previous file with comments | « runtime/include/dart_api.h ('k') | runtime/lib/bool_patch.dart » ('j') | sdk/lib/core/bool.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698