1 个不稳定版本
0.18.1 | 2023年8月10日 |
---|
#20 在 #rpc-client
290KB
5.5K SLoC
Rust Thrift库
概述
此crate实现了构建工作Thrift服务器和客户端所需的组件。它分为以下模块
- errors
- protocol
- transport
- server
- autogen
模块按如下分层。生成的generated
层是Thrift编译器的Rust插件生成的代码。它使用此crate中定义的组件来序列化和反序列化类型并实现RPC。用户通过编写自己的代码与这些类型和服务交互。
+-----------+
| app dev |
+-----------+
| generated | <-> errors/results
+-----------+
| protocol |
+-----------+
| transport |
+-----------+
使用此crate
将thrift = "x.y.z"
添加到您的Cargo.toml
中,其中x.y.z
是您使用的Thrift编译器的版本。
API文档
完整的Rustdoc
兼容性
Rust库和自动生成的代码针对Rust版本1.28+。它目前不使用任何Rust 2021特性。
重大变更
重大变更已最小化。当它们发生时,将在下面概述并附带过渡指南。
Thrift 0.15.0
-
[THRIFT-5360] - 不再为
Error
类型定义或生成description()
方法。Error.description()
在1.27中已软弃用,并在1.41中弃用。库错误类型也不实现Error.description()
。此外,由于此更改,生成的Rust表示的错误不再实现Error.description()
方法。相反,它生成一个包含相同信息的Display
实现。例如
exception Xception { 1: i32 errorCode, 2: string message }
以前生成
use std::error::Error; use std::fmt; use std::fmt::{Display, Formatter}; // auto-generated by the Thrift compiler #[derive(Clone, Debug, Eq, Ord, PartialEq, PartialOrd)] pub struct Xception { pub error_code: Option<i32>, pub message: Option<String>, } // auto-generated by the Thrift compiler impl Error for Xception { fn description(&self) -> &str { "remote service threw Xception" } } // auto-generated by the Thrift compiler impl From<Xception> for thrift::Error { fn from(e: Xception) -> Self { thrift::Error::User(Box::new(e)) } } // auto-generated by the Thrift compiler impl Display for Xception { fn fmt(&self, f: &mut Formatter) -> fmt::Result { self.description().format(f) } }
现在生成
use std::error::Error; use std::fmt; use std::fmt::{Display, Formatter}; // auto-generated by the Thrift compiler #[derive(Clone, Debug, Eq, Ord, PartialEq, PartialOrd)] pub struct Xception { pub error_code: Option<i32>, pub message: Option<String>, } // auto-generated by the Thrift compiler impl Error for Xception { } // auto-generated by the Thrift compiler impl From<Xception> for thrift::Error { fn from(e: Xception) -> Self { thrift::Error::User(Box::new(e)) } } // auto-generated by the Thrift compiler impl Display for Xception { fn fmt(&self, f: &mut Formatter) -> fmt::Result { write!(f, "remote service threw Xception") } }
-
[THRIFT-5314] - 生成向前兼容的枚举实现(即对未知值不报错)
由于此更改,Rust枚举的表示从标准Rust枚举更改为具有关联常量的newtype结构体。
例如
// THRIFT enum Operation { ADD, SUBTRACT, MULTIPLY, DIVIDE, }
以前生成
// OLD AUTO-GENERATED RUST pub enum Operation { Add, Subtract, Multiply, Divide, }
现在生成
// NEW AUTO-GENERATED RUST pub struct Operation(pub i32); impl Operation { pub const ADD: Operation = Operation(0); pub const SUBTRACT: Operation = Operation(1); pub const MULTIPLY: Operation = Operation(2); pub const DIVIDE: Operation = Operation(3); }
Thrift 0.14.0
-
[THRIFT-5158] - Rust库和生成器现在仅支持Rust 2021。需要rust 1.61.0或更高版本
Rust
thrift
库已通过cargo fix --edition
更新为Rust 2021。同时,仓库中的所有测试代码也进行了更新。代码生成器也进行了更新,以仅支持Rust 2021。
Thrift 0.13.0
-
[THRIFT-4536] - 使用来自std的TryFrom,需要rust 1.34.0或更高版本
之前TryFrom来自try_from crate,现在来自std库,但此功能仅在rust 1.34.0中可用。此外,ordered-float现在在thrift模块下重新导出,以减少可能的依赖项不匹配。
Thrift 0.12.0
-
[THRIFT-4529] - Rust枚举变体现在使用驼峰命名法而不是大写字母,以符合Rust命名约定
之前,枚举变体在自动生成的代码中都是大写的。例如,以下thrift枚举
// THRIFT enum Operation { ADD, SUBTRACT, MULTIPLY, DIVIDE, }
以前生成
// OLD AUTO-GENERATED RUST pub enum Operation { ADD, SUBTRACT, MULTIPLY, DIVIDE, }
现在生成
// NEW AUTO-GENERATED RUST pub enum Operation { Add, Subtract, Multiply, Divide, }
您必须将代码中的所有枚举变体更改为使用驼峰命名。这应该是一个搜索和替换操作。
贡献
欢迎提交错误报告和PR!请参阅Thrift网站获取更多详细信息。
Thrift Rust支持需要几个目录中的代码
compiler/cpp/src/thrift/generate/t_rs_generator.cc
:绑定代码生成器lib/rs
:运行时库lib/rs/test
:补充测试tutorial/rs
:教程客户端和服务器test/rs
:跨语言测试客户端和服务器
所有库代码、测试代码和自动生成的代码均编译并通过clippy,无警告。所有新代码都必须做到同样!在做出更改时,确保
rustc
不输出任何警告clippy
在默认设置下不输出任何警告(包括自动生成的代码)cargo test
执行成功make precross
和make check
执行成功tutorial/bin/tutorial_client
和tutorial/bin/tutorial_server
通信
依赖项
~305–440KB