#pdb #source #windows #symbols #file-path #pdbstr

srcsrv

Interpret the contents of a srcsrv stream from a pdb file (Microsoft Source Server)

4 releases

0.2.2 Sep 29, 2021
0.2.1 Sep 28, 2021
0.2.0 Sep 28, 2021
0.1.0 Sep 27, 2021

#510 in Debugging

Download history 169/week @ 2024-01-06 231/week @ 2024-01-13 172/week @ 2024-01-20 122/week @ 2024-01-27 257/week @ 2024-02-03 343/week @ 2024-02-10 246/week @ 2024-02-17 792/week @ 2024-02-24 739/week @ 2024-03-02 478/week @ 2024-03-09 509/week @ 2024-03-16 414/week @ 2024-03-23 808/week @ 2024-03-30 414/week @ 2024-04-06 794/week @ 2024-04-13 628/week @ 2024-04-20

2,669 downloads per month
Used in 9 crates (2 directly)

MIT/Apache

37KB
571 lines

crates.io page docs.rs page

srcsrv

Parse a srcsrv stream from a Windows PDB file and look up file paths to see how the source for these paths can be obtained:

use srcsrv::{SrcSrvStream, SourceRetrievalMethod};

if let Ok(srcsrv_stream) = pdb.named_stream(b"srcsrv") {
    let stream = SrcSrvStream::parse(srcsrv_stream.as_slice())?;
    let url = match stream.source_for_path(
        r#"C:\build\renderdoc\renderdoc\data\glsl\gl_texsample.h"#,
        r#"C:\Debugger\Cached Sources"#,
    )? {
        SourceRetrievalMethod::Download { url } => Some(url),
        _ => None,
    };
    assert_eq!(url, Some("https://raw.githubusercontent.com/baldurk/renderdoc/v1.15/renderdoc/data/glsl/gl_texsample.h".to_string()));
}

Further reading

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

~0.5–1.1MB
~23K SLoC