1个不稳定版本

0.0.1 2021年5月9日

#8#关联

MPL-2.0 许可证

235KB
9K SLoC

使用Rust的Wolfram交换格式

设计

为了支持格式转换,只需实现ToWolfram特性。

pub trait ToWolfram {
    fn to_wolfram(&self) -> WolframValue;
    fn to_wolfram_string(&self) -> String {self.to_wolfram().to_string()}
    fn to_wolfram_bytes(&self) -> Vec<u8> {self.to_wolfram().to_bytes()}
    fn to_wolfram_solid(&self) -> Vec<u8> {self.to_wolfram().to_compressed()}
}

WolframValue由以下合法元素组成

pub enum WolframValue {
    /// Function with name, args
    Function(Box<str>, Vec<WolframValue>),
    String(Box<str>),
    Bytes(Vec<u8>),
    Symbol(Box<str>),
    Integer8(i8),
    Integer16(i16),
    Integer32(i32),
    Integer64(i64),
    BigInteger(BigInt),
    /// Do not use `f64`, because partial order cannot be defined
    Decimal64([u8; 8]),
    BigDecimal(Box<str>),
    /// Need to optimize
    PackedArray(Vec<WolframValue>),
    /// Need to optimize
    NumericArray(Vec<WolframValue>),
    /// Record with key, rule, value
    Association(BTreeMap<WolframValue, (WolframValue, WolframValue)>),
    Rule,
    RuleDelayed,
}

扩展

以下是当前支持的一些常见格式

pub enum SupportedFormat {
    JSON, //json
    TOML, //toml
    YAML, //yaml, yml
    Pickle, //pkl
}

因为Rust不能同时在外部定义特性和结构体,支持新的格式需要在项目内部完成。

查看从特性扩展了解如何支持新格式

工具

  • wex:一个命令行工具,可以转换wxf格式

依赖关系

~2–2.8MB
~57K SLoC