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

Unified Diff: runtime/bin/platform_win.cc

Issue 10112002: Add read-only environment variable access. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add windows error handling. Created 8 years, 8 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/bin/platform_win.cc
diff --git a/runtime/bin/platform_win.cc b/runtime/bin/platform_win.cc
index 115cdf097e7632178343e4f3671fa42c676270f7..d5ca62fc4e70f3495e53d0f088ee8127a7531ce9 100644
--- a/runtime/bin/platform_win.cc
+++ b/runtime/bin/platform_win.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -25,16 +25,35 @@ const char* Platform::OperatingSystem() {
bool Platform::LocalHostname(char *buffer, intptr_t buffer_length) {
- static bool socketInitialized = false;
- if (!socketInitialized) {
+ static bool socket_initialized = false;
+ if (!socket_initialized) {
// Initialize Socket for gethostname.
if (!Socket::Initialize()) return false;
- socketInitialized = true;
+ socket_initialized = true;
}
return gethostname(buffer, buffer_length) == 0;
}
+char** Platform::Environment(intptr_t* count) {
+ char* strings = GetEnvironmentStringsA();
+ if (strings == NULL) return NULL;
+ char* tmp = strings;
+ intptr_t i = 0;
+ while (*tmp != '\0') {
+ i++;
+ tmp += (strlen(tmp) + 1);
+ }
+ *count = i;
+ char** result = new char*[i];
+ for (intptr_t current = 0; current < i; current++) {
+ result[current] = strings;
+ strings += (strlen(strings) + 1);
+ }
+ return result;
+}
+
+
char* Platform::StrError(int error_code) {
static const int kBufferSize = 1024;
char* error = static_cast<char*>(malloc(kBufferSize));

Powered by Google App Engine
This is Rietveld 408576698