758943e32a
Map<String, String> env = new Platform().environment(); Unfortunately, this is a bit hard to test at this point. I will move on to implement support for providing an environment to processes that are started. At that point we can test it properly. Another follow-up change will be to remove the instantiation for Platform. I would like this to be just Map<String, String> env = Platform.environment(); R=sgjesse@google.com BUG=dartbug.com/752 TEST= Review URL: https://chromiumcodereview.appspot.com//10112002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@6646 260f80e4-7a28-3924-810f-c04153c831b5
73 lines
2.1 KiB
C++
73 lines
2.1 KiB
C++
// 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 "bin/file.h"
|
|
#include "bin/platform.h"
|
|
#include "include/dart_api.h"
|
|
|
|
|
|
void FUNCTION_NAME(Platform_NumberOfProcessors)(Dart_NativeArguments args) {
|
|
Dart_EnterScope();
|
|
Dart_SetReturnValue(args, Dart_NewInteger(Platform::NumberOfProcessors()));
|
|
Dart_ExitScope();
|
|
}
|
|
|
|
|
|
void FUNCTION_NAME(Platform_OperatingSystem)(Dart_NativeArguments args) {
|
|
Dart_EnterScope();
|
|
Dart_SetReturnValue(args, Dart_NewString(Platform::OperatingSystem()));
|
|
Dart_ExitScope();
|
|
}
|
|
|
|
|
|
void FUNCTION_NAME(Platform_PathSeparator)(Dart_NativeArguments args) {
|
|
Dart_EnterScope();
|
|
Dart_SetReturnValue(args, Dart_NewString(File::PathSeparator()));
|
|
Dart_ExitScope();
|
|
}
|
|
|
|
|
|
void FUNCTION_NAME(Platform_LocalHostname)(Dart_NativeArguments args) {
|
|
Dart_EnterScope();
|
|
const intptr_t HOSTNAME_LENGTH = 256;
|
|
char hostname[HOSTNAME_LENGTH];
|
|
if (Platform::LocalHostname(hostname, HOSTNAME_LENGTH)) {
|
|
Dart_SetReturnValue(args, Dart_NewString(hostname));
|
|
} else {
|
|
Dart_SetReturnValue(args, DartUtils::NewDartOSError());
|
|
}
|
|
Dart_ExitScope();
|
|
}
|
|
|
|
|
|
void FUNCTION_NAME(Platform_Environment)(Dart_NativeArguments args) {
|
|
Dart_EnterScope();
|
|
intptr_t count = 0;
|
|
char** env = Platform::Environment(&count);
|
|
if (env == NULL) {
|
|
OSError error(-1,
|
|
"Failed to retrieve environment variables.",
|
|
OSError::kUnknown);
|
|
Dart_SetReturnValue(args, DartUtils::NewDartOSError(&error));
|
|
} else {
|
|
Dart_Handle result = Dart_NewList(count);
|
|
if (Dart_IsError(result)) {
|
|
Dart_PropagateError(result);
|
|
}
|
|
for (intptr_t i = 0; i < count; i++) {
|
|
Dart_Handle str = Dart_NewString(env[i]);
|
|
if (Dart_IsError(str)) {
|
|
Dart_PropagateError(str);
|
|
}
|
|
Dart_Handle error = Dart_ListSetAt(result, i, str);
|
|
if (Dart_IsError(error)) {
|
|
Dart_PropagateError(error);
|
|
}
|
|
}
|
|
delete[] env;
|
|
Dart_SetReturnValue(args, result);
|
|
}
|
|
Dart_ExitScope();
|
|
}
|