gpt4 book ai didi

java - 在java中使用TextFormat将protobuf消息转换为字符串时如何控制字段的顺序?

转载 作者:行者123 更新时间:2023-12-01 17:50:39 32 4
gpt4 key购买 nike

我有一个 protobuf 消息,当使用 TextFormat.printToString() 转换为字符串时,如下所示:-

deploymentDef {
id: "PX3C1ED"
default: true
type: ONPREM
limits {
clusterSize: 3
limits {
numVMs: 18000
numVMsWithFlows: 18000
activeFlows: 6000000
totalFlows: 24000000
flowPlanning: 4000000
numDevices: 40
}
}
isEnterprise: false
brickSize: XLARGE
clusterSize: 3
description: "Default Role, Non-Enterprise, App-Discovery and Vf services stopped"
}

原型(prototype)定义如下所示

message DeploymentDef {
optional string id = 1;
optional bool default = 2;
optional DeploymentType type = 3;
optional PlatformClusterLimits limits = 4;
repeated Role roles = 5;
optional bool isEnterprise = 6;
optional Configs overrides = 7;
optional BrickSize brickSize = 8;
optional int32 clusterSize = 9;
optional string description = 10;
}

使用 TextFormat.printToString() 将原始消息转换为字符串时是否可以将 description 显示为第一个字段?

最佳答案

正如您现在可能理解的那样,消息是按照字段的顺序(即标签的顺序)进行编码的。这是由 Message#getAllFields() 保证的方法其中

is guaranteed to be a sorted map, so iterating over it will return fields in order by field number

因此,如果您需要将描述字段放在第一个字段,则需要弃用所有字段 1-9 并将其移动到数字 11-19,或者弃用 description 字段,并创建一条与此类似的新消息:

message Deployment {
optional string description = 1;
required DeploymentDef deploymentDef = 2;
}

抱歉,没有太多更好的选择,protobuf 中字段的顺序(根据设计)不是很重要/可自定义。

关于java - 在java中使用TextFormat将protobuf消息转换为字符串时如何控制字段的顺序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60800326/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com