mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:49:00 +00:00
40e18905f2
Closes https://github.com/dart-lang/sdk/pull/49478 TEST=Manual GitOrigin-RevId: f4c9c6869dfe73639295e86574a021523b3d374d Change-Id: I134a97caed4eec59d70e9cbca16b7e9a472cf2c1 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/251902 Reviewed-by: Michael Thomsen <mit@google.com> Commit-Queue: Alexander Thomas <athom@google.com> Reviewed-by: Aske Simon Christensen <askesc@google.com> Reviewed-by: Kevin Chisholm <kevinjchisholm@google.com> Reviewed-by: Alexander Thomas <athom@google.com>
72 lines
1.7 KiB
Dart
72 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.
|
|
|
|
import 'dart:ffi';
|
|
|
|
import 'package:ffi/ffi.dart';
|
|
|
|
import 'coordinate.dart';
|
|
import 'dylib_utils.dart';
|
|
|
|
typedef NativeCoordinateOp = Pointer<Coordinate> Function(Pointer<Coordinate>);
|
|
|
|
main() {
|
|
print('start main');
|
|
|
|
DynamicLibrary ffiTestFunctions =
|
|
dlopenPlatformSpecific("ffi_test_functions");
|
|
|
|
{
|
|
// Pass a struct to a c function and get a struct as return value.
|
|
Pointer<NativeFunction<NativeCoordinateOp>> p1 =
|
|
ffiTestFunctions.lookup("TransposeCoordinate");
|
|
NativeCoordinateOp f1 = p1.asFunction();
|
|
|
|
final c1 = calloc<Coordinate>()
|
|
..ref.x = 10.0
|
|
..ref.y = 20.0;
|
|
final c2 = calloc<Coordinate>()
|
|
..ref.x = 42.0
|
|
..ref.y = 84.0
|
|
..ref.next = c1;
|
|
c1.ref.next = c2;
|
|
|
|
Coordinate result = f1(c1).ref;
|
|
|
|
print(c1.ref.x);
|
|
print(c1.ref.y);
|
|
|
|
print(result.runtimeType);
|
|
|
|
print(result.x);
|
|
print(result.y);
|
|
}
|
|
|
|
{
|
|
// Pass an array of structs to a c function.
|
|
Pointer<NativeFunction<NativeCoordinateOp>> p1 =
|
|
ffiTestFunctions.lookup("CoordinateElemAt1");
|
|
NativeCoordinateOp f1 = p1.asFunction();
|
|
|
|
Pointer<Coordinate> c1 = calloc<Coordinate>(3);
|
|
Pointer<Coordinate> c2 = c1.elementAt(1);
|
|
Pointer<Coordinate> c3 = c1.elementAt(2);
|
|
c1.ref.x = 10.0;
|
|
c1.ref.y = 10.0;
|
|
c1.ref.next = c3;
|
|
c2.ref.x = 20.0;
|
|
c2.ref.y = 20.0;
|
|
c2.ref.next = c1;
|
|
c3.ref.x = 30.0;
|
|
c3.ref.y = 30.0;
|
|
c3.ref.next = c2;
|
|
|
|
Coordinate result = f1(c1).ref;
|
|
|
|
print(result.x);
|
|
print(result.y);
|
|
}
|
|
|
|
print("end main");
|
|
}
|