13 releases

0.2.9 Oct 7, 2023
0.2.7 Feb 4, 2023
0.2.4 Oct 20, 2022
0.2.2 May 18, 2022
0.2.1 Mar 4, 2022

#31 in FFI

Download history 1/week @ 2023-12-29 7/week @ 2024-01-05 20/week @ 2024-01-12 7/week @ 2024-01-26 15/week @ 2024-02-02 4/week @ 2024-02-09 32/week @ 2024-02-16 44/week @ 2024-02-23 43/week @ 2024-03-01 29/week @ 2024-03-08 13/week @ 2024-03-15 4/week @ 2024-03-22 40/week @ 2024-03-29 11/week @ 2024-04-05 14/week @ 2024-04-12

69 downloads per month
Used in 3 crates (2 directly)

MIT/Apache

2MB
69K SLoC

wstp

Crates.io License Documentation

API Documentation | Changelog | Contributing

Bindings to the Wolfram Symbolic Transfer Protocol (WSTP).

This crate provides a set of safe and ergonomic bindings to the WSTP library, used to transfer Wolfram Language expressions between programs.

Quick Examples

Write an expression to a loopback Link, and then read it back from the same link object:

use wstp::Link;

fn example() -> Result<(), wstp::Error> {
    let mut link = Link::new_loopback()?;

    // Write the expression {"a", "b", "c"}
    link.put_function("System`List", 3)?;
    link.put_str("a")?;
    link.put_str("b")?;
    link.put_str("c")?;

    // Read back the expression, concatenating the elements as we go:
    let mut buffer = String::new();

    for _ in 0 .. link.test_head("System`List")? {
        buffer.push_str(link.get_string_ref()?.as_str())
    }

    assert_eq!(buffer, "abc");

    Ok(())
}

example();

Transfer the expression "hello!" from one Link endpoint to another:

use wstp::Protocol;

let (mut a, mut b) = wstp::channel(Protocol::SharedMemory).unwrap();

a.put_str("hello!").unwrap();
a.flush().unwrap();

assert_eq!(b.get_string().unwrap(), "hello!");

See wolfram-library-link for examples of using WSTP links to transfer expressions to and from LibraryLink functions.

Building wstp

The wstp crate uses wolfram-app-discovery to locate a local installation of the Wolfram Language that contains a suitable copy of the WSTP SDK. If the WSTP SDK cannot be located, wstp will fail to build.

If you have installed the Wolfram Language to a location unknown to wolfram-app-discovery, you may specify the installed location manually by setting the WOLFRAM_APP_DISCOVERY environment variable. See Configuring wolfram-app-discovery for details.

  • wolfram-library-link — author libraries that can be dynamically loaded by the Wolfram Language
  • wolfram-expr — efficient and ergonomic representation of Wolfram expressions in Rust.
  • wolfram-app-discovery — utility for locating local installations of Wolfram applications and the Wolfram Language.

Developer Notes

See Development.md for instructions on how to perform common development tasks when contributing to the wstp crate.

See Maintenance.md for instructions on how to keep wstp up to date as new versions of the Wolfram Language are released.

License

Licensed under either of

at your option.

Note: Licensing of the WSTP library linked by the wstp crate is covered by the terms of the MathLink License Agreement.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

See CONTRIBUTING.md for more information.

Dependencies

~0.6–4MB
~62K SLoC