dart-sdk/sdk_nnbd/lib/ffi/dynamic_library.dart
Daco Harkes 3c9f52a499 [vm/ffi] Fix DynamicLibrary extension name
And add changelog entry.

Follow up of: https://dart-review.googlesource.com/c/sdk/+/135463

Closes: https://github.com/dart-lang/sdk/issues/35903
Closes: https://github.com/dart-lang/sdk/issues/40636

Change-Id: I877f735c54e466031715c775d37544617402f9ff
Cq-Include-Trybots: luci.dart.try:vm-ffi-android-debug-arm-try,vm-kernel-nnbd-linux-release-x64-try,analyzer-linux-release-try
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/136124
Commit-Queue: Daco Harkes <dacoharkes@google.com>
Reviewed-by: Martin Kustermann <kustermann@google.com>
2020-02-17 14:55:25 +00:00

47 lines
1.7 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.
part of dart.ffi;
/// Represents a dynamically loaded C library.
class DynamicLibrary {
/// Creates a dynamic library holding all global symbols.
///
/// Any symbol in a library currently loaded with global visibility (including
/// the executable itself) may be resolved in this library.
///
/// This feature is not available on Windows, instead an exception is thrown.
external factory DynamicLibrary.process();
/// Creates a dynamic library representing the running executable.
external factory DynamicLibrary.executable();
/// Loads a dynamic library file with local visibility.
///
/// Throws an [ArgumentError] if loading the dynamic library fails.
external factory DynamicLibrary.open(String name);
/// Looks up a symbol in the [DynamicLibrary] and returns its address in
/// memory. Equivalent of dlsym.
///
/// Throws an [ArgumentError] if it fails to lookup the symbol.
external Pointer<T> lookup<T extends NativeType>(String symbolName);
/// Dynamic libraries are equal if they load the same library.
external bool operator ==(Object other);
/// The hash code for a DynamicLibrary only depends on the loaded library
external int get hashCode;
/// The handle to the dynamic library.
external Pointer<Void> get handle;
}
/// Methods which cannot be invoked dynamically.
extension DynamicLibraryExtension on DynamicLibrary {
/// Helper that combines lookup and cast to a Dart function.
external F lookupFunction<T extends Function, F extends Function>(
String symbolName);
}