225a301637
There are minor fixes for dartkb and windows. The original revision is in patchset 1. Change-Id: I9ab6e5fdb33fb4e84ea520c283fe94323616a8ce Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/103129 Commit-Queue: Samir Jindel <sjindel@google.com> Auto-Submit: Samir Jindel <sjindel@google.com> Reviewed-by: Daco Harkes <dacoharkes@google.com>
74 lines
2.4 KiB
Dart
74 lines
2.4 KiB
Dart
// Copyright (c) 2019, 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.
|
|
|
|
import "dart:_internal" show patch;
|
|
|
|
@patch
|
|
Pointer<T> allocate<T extends NativeType>({int count: 1}) native "Ffi_allocate";
|
|
|
|
@patch
|
|
T fromAddress<T extends Pointer>(int ptr) native "Ffi_fromAddress";
|
|
|
|
@patch
|
|
int sizeOf<T extends NativeType>() native "Ffi_sizeOf";
|
|
|
|
@patch
|
|
Pointer<NativeFunction<T>> fromFunction<T extends Function>(
|
|
@DartRepresentationOf("T") Function f) native "Ffi_fromFunction";
|
|
|
|
@patch
|
|
@pragma("vm:entry-point")
|
|
class Pointer<T extends NativeType> {
|
|
@patch
|
|
void store(Object value) native "Ffi_store";
|
|
|
|
@patch
|
|
R load<R>() native "Ffi_load";
|
|
|
|
@patch
|
|
int get address native "Ffi_address";
|
|
|
|
// Note this could also be implmented without an extra native as offsetBy
|
|
// (elementSize()*index). This would be 2 native calls rather than one. What
|
|
// would be better?
|
|
@patch
|
|
Pointer<T> elementAt(int index) native "Ffi_elementAt";
|
|
|
|
// Note this could also be implmented without an extra native as
|
|
// fromAddress(address). This would be 2 native calls rather than one.
|
|
// What would be better?
|
|
@patch
|
|
Pointer<T> offsetBy(int offsetInBytes) native "Ffi_offsetBy";
|
|
|
|
// Note this could also be implemented without an extra native as
|
|
// fromAddress(address). This would be 2 native calls rather than one.
|
|
// What would be better?
|
|
@patch
|
|
U cast<U extends Pointer>() native "Ffi_cast";
|
|
|
|
@patch
|
|
R asFunction<R extends Function>() native "Ffi_asFunction";
|
|
|
|
@patch
|
|
void free() native "Ffi_free";
|
|
}
|
|
|
|
// This method gets called when an exception bubbles up to the native -> Dart
|
|
// boundary from an FFI native callback. Since native code does not have any
|
|
// concept of exceptions, the exception cannot be propagated any further.
|
|
// Instead, print a warning with the exception and return 0/0.0 from the
|
|
// callback.
|
|
//
|
|
// TODO(36856): Iron out the story behind exceptions.
|
|
@pragma("vm:entry-point")
|
|
void _handleExposedException(dynamic exception, dynamic stackTrace) {
|
|
print(
|
|
"==================== UNHANDLED EXCEPTION FROM FFI CALLBACK ====================");
|
|
print(
|
|
""" ** Native callbacks should not throw exceptions because they cannot be
|
|
propagated into native code. **""");
|
|
print("EXCEPTION: $exception");
|
|
print(stackTrace);
|
|
}
|