Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
3.7 KiB
98 lines
3.7 KiB
// Protocol Buffers - Google's data interchange format |
|
// Copyright 2023 Google LLC. All rights reserved. |
|
// https://developers.google.com/protocol-buffers/ |
|
// |
|
// Redistribution and use in source and binary forms, with or without |
|
// modification, are permitted provided that the following conditions are |
|
// met: |
|
// |
|
// * Redistributions of source code must retain the above copyright |
|
// notice, this list of conditions and the following disclaimer. |
|
// * Redistributions in binary form must reproduce the above |
|
// copyright notice, this list of conditions and the following disclaimer |
|
// in the documentation and/or other materials provided with the |
|
// distribution. |
|
// * Neither the name of Google LLC nor the names of its |
|
// contributors may be used to endorse or promote products derived from |
|
// this software without specific prior written permission. |
|
// |
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
|
|
syntax = "proto2"; |
|
|
|
import "google/protobuf/timestamp.proto"; |
|
|
|
package upb_lua_test; |
|
|
|
message MapTest { |
|
map<string, double> map_string_double = 1; |
|
} |
|
|
|
message PackedTest { |
|
repeated bool bool_packed = 1 [packed = true]; |
|
repeated int32 i32_packed = 2 [packed = true]; |
|
repeated int64 i64_packed = 3 [packed = true]; |
|
repeated fixed32 f32_packed = 4 [packed = true]; |
|
repeated fixed64 f64_packed = 5 [packed = true]; |
|
} |
|
|
|
message UnpackedTest { |
|
repeated bool bool_packed = 1 [packed = false]; |
|
repeated int32 i32_packed = 2 [packed = false]; |
|
repeated int64 i64_packed = 3 [packed = false]; |
|
repeated fixed32 f32_packed = 4 [packed = false]; |
|
repeated fixed64 f64_packed = 5 [packed = false]; |
|
} |
|
|
|
message TestLargeFieldNumber { |
|
optional int32 i32 = 456214797; |
|
} |
|
|
|
message TestTimestamp { |
|
optional google.protobuf.Timestamp ts = 1; |
|
} |
|
|
|
message HelloRequest { |
|
optional uint32 id = 1; |
|
optional uint32 random_name_a0 = 2; |
|
optional uint32 random_name_a1 = 3; |
|
optional uint32 random_name_a2 = 4; |
|
optional uint32 random_name_a3 = 5; |
|
optional uint32 random_name_a4 = 6; |
|
optional uint32 random_name_a5 = 7; |
|
optional uint32 random_name_a6 = 8; |
|
optional uint32 random_name_a7 = 9; |
|
optional uint32 random_name_a8 = 10; |
|
optional uint32 random_name_a9 = 11; |
|
optional uint32 random_name_b0 = 12; |
|
optional uint32 random_name_b1 = 13; |
|
optional uint32 random_name_b2 = 14; |
|
optional uint32 random_name_b3 = 15; |
|
optional uint32 random_name_b4 = 16; |
|
optional uint32 random_name_b5 = 17; |
|
optional uint32 random_name_b6 = 18; |
|
optional uint32 random_name_b7 = 19; |
|
optional uint32 random_name_b8 = 20; |
|
optional uint32 random_name_b9 = 21; |
|
optional uint32 random_name_c0 = 22; |
|
optional uint32 random_name_c1 = 23; |
|
optional uint32 random_name_c2 = 24; |
|
optional uint32 random_name_c3 = 25; |
|
optional uint32 random_name_c4 = 26; |
|
optional uint32 random_name_c5 = 27; |
|
optional uint32 random_name_c6 = 28; |
|
optional uint32 random_name_c7 = 29; |
|
optional uint32 random_name_c8 = 30; |
|
optional uint32 random_name_c9 = 31; |
|
optional string version = 32; |
|
}
|
|
|