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.
104 lines
3.5 KiB
104 lines
3.5 KiB
// Copyright 2023 Google LLC. All rights reserved. |
|
// |
|
// Use of this source code is governed by a BSD-style |
|
// license that can be found in the LICENSE file or at |
|
// https://developers.google.com/open-source/licenses/bsd |
|
|
|
use conformance_proto::conformance::{ConformanceRequest, ConformanceResponse}; |
|
|
|
#[cfg(cpp_kernel)] |
|
use protobuf_cpp as kernel; |
|
|
|
#[cfg(upb_kernel)] |
|
use protobuf_upb as kernel; |
|
|
|
use kernel::Optional::{Set, Unset}; |
|
|
|
use std::io::{self, ErrorKind, Read, Write}; |
|
use test_messages_proto2::protobuf_test_messages::proto2::TestAllTypesProto2; |
|
|
|
/// Returns Some(i32) if a binary read can succeed from stdin. |
|
/// Returns None if we have reached an EOF. |
|
/// Panics for any other error reading. |
|
fn read_little_endian_i32_from_stdin() -> Option<i32> { |
|
let mut buffer = [0_u8; 4]; |
|
if let Err(e) = io::stdin().read_exact(&mut buffer) { |
|
match e.kind() { |
|
ErrorKind::UnexpectedEof => None, |
|
_ => panic!("failed to read i32 from stdin"), |
|
} |
|
} else { |
|
Some(i32::from_le_bytes(buffer)) |
|
} |
|
} |
|
|
|
/// Returns Some of a conformance request read from stdin. |
|
/// Returns None if we have hit an EOF that suggests the test suite is complete. |
|
/// Panics in any other case (e.g. an EOF in a place that would imply a |
|
/// programmer error in the conformance test suite). |
|
fn read_request_from_stdin() -> Option<ConformanceRequest> { |
|
let msg_len = read_little_endian_i32_from_stdin()?; |
|
let mut serialized = vec![0_u8; msg_len as usize]; |
|
io::stdin().read_exact(&mut serialized).unwrap(); |
|
let mut req = ConformanceRequest::new(); |
|
req.deserialize(&serialized).unwrap(); |
|
Some(req) |
|
} |
|
|
|
fn write_response_to_stdout(resp: &ConformanceResponse) { |
|
let bytes = resp.serialize(); |
|
let len = bytes.len() as u32; |
|
let mut handle = io::stdout(); |
|
handle.write_all(&len.to_le_bytes()).unwrap(); |
|
handle.write(&bytes).unwrap(); |
|
handle.flush().unwrap(); |
|
} |
|
|
|
fn do_test(req: &ConformanceRequest) -> ConformanceResponse { |
|
let mut resp = ConformanceResponse::new(); |
|
let message_type = req.message_type(); |
|
let is_proto2 = match message_type.as_bytes() { |
|
b"protobuf_test_messages.proto2.TestAllTypesProto2" => true, |
|
b"protobuf_test_messages.proto3.TestAllTypesProto3" => false, |
|
_ => panic!("unexpected msg type {message_type}"), |
|
}; |
|
|
|
// Enums aren't supported yet (and not in scope for v0.6) so we can't perform |
|
// this check yet. |
|
|
|
// if req.requested_output_format() != WireFormat.PROTOBUF { |
|
// resp.skipped_mut().set("only wire format output implemented") |
|
// } |
|
|
|
let bytes = match req.protobuf_payload_opt() { |
|
Unset(_) => { |
|
resp.skipped_mut().set("only wire format input implemented"); |
|
return resp; |
|
} |
|
Set(bytes) => bytes, |
|
}; |
|
|
|
if is_proto2 { |
|
let mut proto = TestAllTypesProto2::new(); |
|
if let Err(_) = proto.deserialize(bytes) { |
|
resp.parse_error_mut().set("failed to parse bytes"); |
|
return resp; |
|
} |
|
let serialized = proto.serialize(); // Note: serialize() is infallible in Rust api. |
|
resp.protobuf_payload_mut().set(serialized.as_ref()); |
|
return resp; |
|
} else { |
|
resp.skipped_mut().set("only proto2 supported"); |
|
return resp; |
|
} |
|
} |
|
|
|
fn main() { |
|
let mut total_runs = 0; |
|
while let Some(req) = read_request_from_stdin() { |
|
let resp = do_test(&req); |
|
write_response_to_stdout(&resp); |
|
total_runs += 1; |
|
} |
|
eprintln!("conformance_rust: received EOF from test runner after {total_runs} tests"); |
|
}
|
|
|