mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
50b94ef9fc
TEST=build VM Closes: https://github.com/dart-lang/sdk/pull/50862 GitOrigin-RevId: ae54b37666f70f670ee3af11c984c7e9a7e9da26 Change-Id: I459fda0439a1cd368f488a70d84ee6bb915e60bb Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/277761 Commit-Queue: Martin Kustermann <kustermann@google.com> Reviewed-by: Daco Harkes <dacoharkes@google.com> Reviewed-by: Martin Kustermann <kustermann@google.com>
167 lines
4.3 KiB
C++
167 lines
4.3 KiB
C++
// Copyright (c) 2016, 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 "platform/globals.h"
|
|
#if defined(DART_HOST_OS_FUCHSIA)
|
|
|
|
#include "bin/platform.h"
|
|
|
|
#include <string.h>
|
|
#include <sys/utsname.h>
|
|
#include <unistd.h>
|
|
#include <zircon/process.h>
|
|
#include <zircon/status.h>
|
|
#include <zircon/syscalls.h>
|
|
|
|
#include "bin/console.h"
|
|
#include "bin/dartutils.h"
|
|
#include "bin/fdutils.h"
|
|
#include "bin/file.h"
|
|
|
|
namespace dart {
|
|
namespace bin {
|
|
|
|
const char* Platform::executable_name_ = NULL;
|
|
int Platform::script_index_ = 1;
|
|
char** Platform::argv_ = NULL;
|
|
|
|
bool Platform::Initialize() {
|
|
return true;
|
|
}
|
|
|
|
int Platform::NumberOfProcessors() {
|
|
return sysconf(_SC_NPROCESSORS_CONF);
|
|
}
|
|
|
|
const char* Platform::OperatingSystemVersion() {
|
|
struct utsname info;
|
|
int ret = uname(&info);
|
|
if (ret != 0) {
|
|
return NULL;
|
|
}
|
|
const char* kFormat = "%s %s %s";
|
|
int len =
|
|
snprintf(NULL, 0, kFormat, info.sysname, info.release, info.version);
|
|
if (len <= 0) {
|
|
return NULL;
|
|
}
|
|
char* result = DartUtils::ScopedCString(len + 1);
|
|
ASSERT(result != NULL);
|
|
len = snprintf(result, len + 1, kFormat, info.sysname, info.release,
|
|
info.version);
|
|
if (len <= 0) {
|
|
return NULL;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
const char* Platform::LibraryPrefix() {
|
|
return "lib";
|
|
}
|
|
|
|
const char* Platform::LibraryExtension() {
|
|
return "so";
|
|
}
|
|
|
|
const char* Platform::LocaleName() {
|
|
char* lang = getenv("LANG");
|
|
if (lang == NULL) {
|
|
return "en_US";
|
|
}
|
|
return lang;
|
|
}
|
|
|
|
bool Platform::LocalHostname(char* buffer, intptr_t buffer_length) {
|
|
return gethostname(buffer, buffer_length) == 0;
|
|
}
|
|
|
|
char** Platform::Environment(intptr_t* count) {
|
|
// Using environ directly is only safe as long as we do not
|
|
// provide access to modifying environment variables.
|
|
intptr_t i = 0;
|
|
char** tmp = environ;
|
|
while (*(tmp++) != NULL) {
|
|
i++;
|
|
}
|
|
*count = i;
|
|
char** result;
|
|
result = reinterpret_cast<char**>(Dart_ScopeAllocate(i * sizeof(*result)));
|
|
for (intptr_t current = 0; current < i; current++) {
|
|
result[current] = environ[current];
|
|
}
|
|
return result;
|
|
}
|
|
|
|
const char* Platform::GetExecutableName() {
|
|
if (executable_name_ != NULL) {
|
|
return executable_name_;
|
|
}
|
|
char* name = DartUtils::ScopedCString(ZX_MAX_NAME_LEN);
|
|
zx_status_t status = zx_object_get_property(zx_process_self(), ZX_PROP_NAME,
|
|
name, ZX_MAX_NAME_LEN);
|
|
if (status != ZX_OK) {
|
|
return NULL;
|
|
}
|
|
return name;
|
|
}
|
|
|
|
const char* Platform::ResolveExecutablePath() {
|
|
const char* executable_name = Platform::GetExecutableName();
|
|
if (executable_name == NULL) {
|
|
return NULL;
|
|
}
|
|
if ((executable_name[0] == '/') && File::Exists(NULL, executable_name)) {
|
|
return File::GetCanonicalPath(NULL, executable_name);
|
|
}
|
|
if (strchr(executable_name, '/') != NULL) {
|
|
const char* result = File::GetCanonicalPath(NULL, executable_name);
|
|
if (File::Exists(NULL, result)) {
|
|
return result;
|
|
}
|
|
} else {
|
|
const char* path = getenv("PATH");
|
|
if (path == NULL) {
|
|
// If PATH isn't set, make some guesses about where we should look.
|
|
path = "/system/bin:/system/apps:/boot/bin";
|
|
}
|
|
char* pathcopy = DartUtils::ScopedCopyCString(path);
|
|
char* result = DartUtils::ScopedCString(PATH_MAX + 1);
|
|
char* save = NULL;
|
|
while ((pathcopy = strtok_r(pathcopy, ":", &save)) != NULL) {
|
|
snprintf(result, PATH_MAX, "%s/%s", pathcopy, executable_name);
|
|
result[PATH_MAX] = '\0';
|
|
if (File::Exists(NULL, result)) {
|
|
return File::GetCanonicalPath(NULL, result);
|
|
}
|
|
pathcopy = NULL;
|
|
}
|
|
}
|
|
// Couldn't find it. This causes null to be returned for
|
|
// Platform.resolvedExecutable.
|
|
return NULL;
|
|
}
|
|
|
|
intptr_t Platform::ResolveExecutablePathInto(char* result, size_t result_size) {
|
|
return -1;
|
|
}
|
|
|
|
void Platform::SetProcessName(const char* name) {
|
|
zx_object_set_property(zx_process_self(), ZX_PROP_NAME, name,
|
|
Utils::Minimum(strlen(name), ZX_MAX_NAME_LEN));
|
|
}
|
|
|
|
void Platform::Exit(int exit_code) {
|
|
Console::RestoreConfig();
|
|
Dart_PrepareToAbort();
|
|
exit(exit_code);
|
|
}
|
|
|
|
void Platform::SetCoreDumpResourceLimit(int value) {
|
|
// Not supported.
|
|
}
|
|
|
|
} // namespace bin
|
|
} // namespace dart
|
|
|
|
#endif // defined(DART_HOST_OS_FUCHSIA)
|