]> git.lizzy.rs Git - rust.git/blob - src/libstd/sys/windows/dynamic_lib.rs
Auto merge of #35856 - phimuemue:master, r=brson
[rust.git] / src / libstd / sys / windows / dynamic_lib.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use os::windows::prelude::*;
12
13 use ffi::{CString, OsStr};
14 use io;
15 use sys::c;
16
17 pub struct DynamicLibrary {
18     handle: c::HMODULE,
19 }
20
21 impl DynamicLibrary {
22     pub fn open(filename: &str) -> io::Result<DynamicLibrary> {
23         let filename = OsStr::new(filename)
24                              .encode_wide()
25                              .chain(Some(0))
26                              .collect::<Vec<_>>();
27         let result = unsafe {
28             c::LoadLibraryW(filename.as_ptr())
29         };
30         if result.is_null() {
31             Err(io::Error::last_os_error())
32         } else {
33             Ok(DynamicLibrary { handle: result })
34         }
35     }
36
37     pub fn symbol(&self, symbol: &str) -> io::Result<usize> {
38         let symbol = CString::new(symbol)?;
39         unsafe {
40             match c::GetProcAddress(self.handle, symbol.as_ptr()) as usize {
41                 0 => Err(io::Error::last_os_error()),
42                 n => Ok(n),
43             }
44         }
45     }
46 }
47
48 impl Drop for DynamicLibrary {
49     fn drop(&mut self) {
50         unsafe {
51             c::FreeLibrary(self.handle);
52         }
53     }
54 }