blob: 5b0e50eb80ea77b36ffb66dda9ef1f338102b5f5 [file] [log] [blame]
// Copyright (c) 2021, 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.
/// @assertion
/// const Array<T extends NativeType>(
/// int dimension1,
/// [int dimension2,
/// int dimension3,
/// int dimension4,
/// int dimension5]
/// )
/// Const constructor to specify Array dimensions in Structs.
///
/// class MyStruct extends Struct {
/// @Array(8)
/// external Array<Uint8> inlineArray;
///
/// @Array(2, 2, 2)
/// external Array<Array<Array<Uint8>>> threeDimensionalInlineArray;
/// }
/// Do not invoke in normal code.
///
/// @description Checks that this class represents a fixed-size array of Pointer
/// @author sgrekhov@unipro.ru
import "dart:ffi";
import "package:ffi/ffi.dart";
import "../../../Utils/expect.dart";
class Coord extends Struct {
@Double()
external double x;
@Double()
external double y;
}
class MyStruct extends Struct {
@Array(2)
external Array<Coord> a0;
}
void main() {
final pointer = calloc<MyStruct>();
try {
final array = pointer.ref.a0;
for (int i = 0; i < 2; i++) {
Expect.equals(0, array[i].x);
Expect.equals(0, array[i].y);
array[i].x = 42;
array[i].y = 3.14;
Expect.equals(42, array[i].x);
Expect.equals(3.14, array[i].y);
}
} finally {
calloc.free(pointer);
}
}