-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathbfia-y.proto
61 lines (53 loc) · 2.6 KB
/
bfia-y.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* Copyright 2023 The BFIA Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
syntax = "proto3";
package org.ppc.ptp;
// PTP Private transfer protocol
// 通用报头名称编码,4层无Header以二进制填充到报头,7层以Header传输
// x-ptp-tech-provider-code: required 厂商编码
// x-ptp-trace-id: required 链路追踪ID
// x-ptp-token required 认证令牌
// x-ptp-session-id required 通信会话号,全网唯一
// x-ptp-target-node-id required 接收端节点编号,全网唯一
// x-ptp-target-inst-id optional 接收端机构编号,全网唯一
message PeekInbound {
string topic = 1; // optional 会话主题,相同信道具有唯一性,用于同一信道的传输隔离
}
message PopInbound {
string topic = 1; // optional 会话主题,相同信道具有唯一性,用于同一信道的传输隔离
int32 timeout = 2; // optional 阻塞超时时间,默认120s
}
message PushInbound{
string topic = 1; // optional 会话主题,相同信道具有唯一性,用于同一信道的传输隔离
bytes payload = 2; // 二进制报文
map<string, string> metadata = 3; // optional 保留参数,用于扩展性
}
message ReleaseInbound {
string topic = 1; // optional 会话主题,相同信道具有唯一性,用于同一信道的传输隔离
int32 timeout = 2; // optional 阻塞超时时间,默认120s
}
message TransportOutbound {
map<string, string> metadata = 1; // 可选,预留扩展,Dict,序列化协议由通信层统一实现
bytes payload = 2; // 二进制报文
string code = 3; // 状态码
string message = 4; // 状态说明
}
service PrivateTransferTransport {
rpc peek (PeekInbound) returns (TransportOutbound);
rpc pop (PopInbound) returns (TransportOutbound);
rpc push (PushInbound) returns (TransportOutbound);
rpc release (ReleaseInbound) returns (TransportOutbound);
}