6eb85949fd
This adds support for printing the DTD connection information to stdout when --print-dtd-uri is passed. This change also fixes an issue where DDS would fail to spawn an isolate with the DTD snapshot when DDS was running in AOT mode. This means the SDK must be shipped with both AppJIT and AOT DTD snapshots, at least until dartdev is moved to run from AOT. Fixes https://github.com/dart-lang/sdk/issues/55034 TEST=run_test.dart Change-Id: I788ef9bfe76297a8d594992a2aac440ed9e2ecac Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/358541 Reviewed-by: Siva Annamalai <asiva@google.com> Commit-Queue: Ben Konyi <bkonyi@google.com> Reviewed-by: Kenzie Davisson <kenzieschmoll@google.com>
83 lines
2.5 KiB
C++
83 lines
2.5 KiB
C++
// 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.
|
|
|
|
#ifndef RUNTIME_BIN_VMSERVICE_IMPL_H_
|
|
#define RUNTIME_BIN_VMSERVICE_IMPL_H_
|
|
|
|
#include "include/dart_api.h"
|
|
|
|
#include "platform/globals.h"
|
|
|
|
namespace dart {
|
|
namespace bin {
|
|
|
|
class VmService {
|
|
public:
|
|
#if defined(PRODUCT)
|
|
static bool Setup(const char* server_ip,
|
|
intptr_t server_port,
|
|
bool dev_mode_server,
|
|
bool auth_codes_disabled,
|
|
const char* write_service_info_filename,
|
|
bool trace_loading,
|
|
bool deterministic,
|
|
bool enable_service_port_fallback,
|
|
bool wait_for_dds_to_advertise_service,
|
|
bool serve_devtools,
|
|
bool serve_observatory,
|
|
bool print_dtd) {
|
|
return false;
|
|
}
|
|
|
|
static void SetNativeResolver() {}
|
|
|
|
// Error message if startup failed.
|
|
static const char* GetErrorMessage() {
|
|
return "VM Service not suppported in Product mode";
|
|
}
|
|
|
|
// HTTP Server's address.
|
|
static const char* GetServerAddress() { return nullptr; }
|
|
|
|
private:
|
|
#else // defined(PRODUCT)
|
|
static bool Setup(const char* server_ip,
|
|
intptr_t server_port,
|
|
bool dev_mode_server,
|
|
bool auth_codes_disabled,
|
|
const char* write_service_info_filename,
|
|
bool trace_loading,
|
|
bool deterministic,
|
|
bool enable_service_port_fallback,
|
|
bool wait_for_dds_to_advertise_service,
|
|
bool serve_devtools,
|
|
bool serve_observatory,
|
|
bool print_dtd);
|
|
|
|
static void SetNativeResolver();
|
|
|
|
// Error message if startup failed.
|
|
static const char* GetErrorMessage();
|
|
|
|
// HTTP Server's address.
|
|
static const char* GetServerAddress() { return &server_uri_[0]; }
|
|
|
|
private:
|
|
static constexpr intptr_t kServerUriStringBufferSize = 1024;
|
|
friend void NotifyServerState(Dart_NativeArguments args);
|
|
|
|
static void SetServerAddress(const char* server_uri_);
|
|
|
|
static const char* error_msg_;
|
|
static char server_uri_[kServerUriStringBufferSize];
|
|
#endif // defined(PRODUCT)
|
|
DISALLOW_ALLOCATION();
|
|
DISALLOW_IMPLICIT_CONSTRUCTORS(VmService);
|
|
};
|
|
|
|
} // namespace bin
|
|
} // namespace dart
|
|
|
|
#endif // RUNTIME_BIN_VMSERVICE_IMPL_H_
|