我目前正在使用一个原型文件,该文件定义了系统正在使用的多种类型。
使用protoc将其编译为飞镖效果很好,但是尝试在项目中使用它会导致问题
原型中定义的消息之一是String
,它的值是string
,这似乎与Darts核心String
类型冲突,我将生成的代码片段下面的代码:
import 'dart:core' show int, bool, double, String, List, Map, override;
import 'package:fixnum/fixnum.dart';
import 'package:protobuf/protobuf.dart' as $pb;
import 'Framework.pbenum.dart';
export 'Framework.pbenum.dart';
class String extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = new $pb.BuilderInfo('String', package: const $pb.PackageName('sila2.org.silastandard'))
..aOS(1, 'value')
..hasRequiredFields = false
;
String() : super();
String.fromBuffer(List<int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) : super.fromBuffer(i, r);
String.fromJson(String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) : super.fromJson(i, r);
String clone() => new String()..mergeFromMessage(this);
String copyWith(void Function(String) updates) => super.copyWith((message) => updates(message as String));
$pb.BuilderInfo get info_ => _i;
static String create() => new String();
String createEmptyInstance() => create();
static $pb.PbList<String> createRepeated() => new $pb.PbList<String>();
static String getDefault() => _defaultInstance ??= create()..freeze();
static String _defaultInstance;
static void $checkItem(String v) {
if (v is! String) $pb.checkItemFailed(v, _i.qualifiedMessageName);
}
// Warning here
String get value => $_getS(0, '');
set value(String v) { $_setString(0, v); }
bool hasValue() => $_has(0);
void clearValue() => clearField(1);
}
我在value
属性上遇到错误,因为不清楚是获取/设置标准Dart字符串还是Proto消息字符串。
我无法更改原型,所以我尝试了更改导入并在需要的地方添加名称前缀:
import 'dart:core' show int, bool, double, List, Map, override;
import 'dart:core' as core;
core.String get value => $_getS(0, '');
set value(core.String v) { $_setString(0, v);
但这不是理想的,因为我不想修改生成的代码,是否有更正确的方法来做到这一点?
以下错误的副本:
Error: The argument type 'String (.../Framework.pb.dart)' can't be assigned to the parameter type 'String (C:\src\flutter\bin\cache\pkg\sky_engine\lib\core\string.dart)'. (argument_type_not_assignable at (.../Framework.pb.dart:50)
原始代码段:
syntax = "proto3";
message String {
string value = 1;
}