blob: 90ebb05c403d05237b837ebc7e4c7749c8fdb7e4 [file] [log] [blame]
// Copyright (c) 2022, 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 'package:ffigen/src/code_generator.dart';
import 'package:ffigen/src/header_parser/data.dart';
import 'package:logging/logging.dart';
import '../clang_bindings/clang_bindings.dart' as clang_types;
import '../utils.dart';
final _logger = Logger('ffigen.header_parser.objc_block_parser');
ObjCBlock parseObjCBlock(clang_types.CXType cxtype) {
final blk = clang.clang_getPointeeType(cxtype);
final returnType = clang.clang_getResultType(blk).toCodeGenType();
final argTypes = <Type>[];
final int numArgs = clang.clang_getNumArgTypes(blk);
for (int i = 0; i < numArgs; ++i) {
argTypes.add(clang.clang_getArgType(blk, i).toCodeGenType());
}
// Create a fake USR code for the block. This code is used to dedupe blocks
// with the same signature.
var usr = 'objcBlock: ${returnType.cacheKey()}';
for (final type in argTypes) {
usr += ' ${type.cacheKey()}';
}
_logger.fine('++++ Adding ObjC block: '
'${cxtype.completeStringRepr()}, syntheticUsr: $usr');
return ObjCBlock(
usr: usr.toString(),
returnType: returnType,
argTypes: argTypes,
);
}