#symbol #cache #file #download #microsoft #env-var #variables

symsrv

A Microsoft symsrv symbol server consumer (downloader + cache)

6 releases (3 breaking)

0.4.0 Feb 28, 2024
0.3.0 Feb 9, 2024
0.2.0 Jul 21, 2022
0.1.2 May 17, 2022

#146 in Filesystem

Download history 302/week @ 2023-12-14 240/week @ 2023-12-21 123/week @ 2023-12-28 260/week @ 2024-01-04 328/week @ 2024-01-11 405/week @ 2024-01-18 287/week @ 2024-01-25 428/week @ 2024-02-01 611/week @ 2024-02-08 398/week @ 2024-02-15 738/week @ 2024-02-22 1436/week @ 2024-02-29 1009/week @ 2024-03-07 703/week @ 2024-03-14 827/week @ 2024-03-21 732/week @ 2024-03-28

3,469 downloads per month
Used in 10 crates (5 directly)

MIT/Apache

88KB
1.5K SLoC

crates.io page docs.rs page

symsrv

This crate lets you download and cache symbol files from symbol servers, according to the rules from the _NT_SYMBOL_PATH environment variable.

It exposes an async API. Internally it uses reqwest and tokio.

The downloaded symbols are stored on the file system. No automatic expiration or eviction is performed. If you want to enforce a cache size limit or expire old files, you can observe cache file creations and accesses with the SymsrvObserver trait, and then write your own implementation for automatic file cleanup.

Microsoft Documentation

Example

use symsrv::SymsrvDownloader;

// Parse the _NT_SYMBOL_PATH environment variable.
let symbol_path_env = symsrv::get_symbol_path_from_environment();
let symbol_path =
  symbol_path_env.as_deref().unwrap_or("srv**https://msdl.microsoft.com/download/symbols");
let parsed_symbol_path = symsrv::parse_nt_symbol_path(symbol_path);

// Create a downloader which follows the _NT_SYMBOL_PATH recipe.
let mut downloader = SymsrvDownloader::new(parsed_symbol_path);
downloader.set_default_downstream_store(symsrv::get_home_sym_dir());

// Download and cache a PDB file.
let local_path = downloader.get_file("dcomp.pdb", "648B8DD0780A4E22FA7FA89B84633C231").await?;

// Use the PDB file.
open_pdb_at_path(&local_path);

Command line tool symfetch

This repository also contains a small example program called symfetch. You can install it as follows:

cargo install --examples symsrv

Run it with symfetch <filename> <hash> - see symfetch --help for details.

License

Licensed under either of

at your option.

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.

Dependencies

~9–24MB
~379K SLoC