]> git.proxmox.com Git - rustc.git/blob - src/librustdoc/flock.rs
Imported Upstream version 1.3.0+dfsg1
[rustc.git] / src / librustdoc / flock.rs
1 // Copyright 2014-2015 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 //! Simple file-locking apis for each OS.
12 //!
13 //! This is not meant to be in the standard library, it does nothing with
14 //! green/native threading. This is just a bare-bones enough solution for
15 //! librustdoc, it is not production quality at all.
16
17 #![allow(non_camel_case_types)]
18
19 pub use self::imp::Lock;
20
21 #[cfg(unix)]
22 mod imp {
23 use std::ffi::{CString, OsStr};
24 use std::os::unix::prelude::*;
25 use std::path::Path;
26 use std::io;
27 use libc;
28
29 #[cfg(target_os = "linux")]
30 mod os {
31 use libc;
32
33 pub struct flock {
34 pub l_type: libc::c_short,
35 pub l_whence: libc::c_short,
36 pub l_start: libc::off_t,
37 pub l_len: libc::off_t,
38 pub l_pid: libc::pid_t,
39
40 // not actually here, but brings in line with freebsd
41 pub l_sysid: libc::c_int,
42 }
43
44 pub const F_WRLCK: libc::c_short = 1;
45 pub const F_UNLCK: libc::c_short = 2;
46 pub const F_SETLK: libc::c_int = 6;
47 pub const F_SETLKW: libc::c_int = 7;
48 }
49
50 #[cfg(target_os = "freebsd")]
51 mod os {
52 use libc;
53
54 pub struct flock {
55 pub l_start: libc::off_t,
56 pub l_len: libc::off_t,
57 pub l_pid: libc::pid_t,
58 pub l_type: libc::c_short,
59 pub l_whence: libc::c_short,
60 pub l_sysid: libc::c_int,
61 }
62
63 pub const F_UNLCK: libc::c_short = 2;
64 pub const F_WRLCK: libc::c_short = 3;
65 pub const F_SETLK: libc::c_int = 12;
66 pub const F_SETLKW: libc::c_int = 13;
67 }
68
69 #[cfg(any(target_os = "dragonfly",
70 target_os = "bitrig",
71 target_os = "netbsd",
72 target_os = "openbsd"))]
73 mod os {
74 use libc;
75
76 pub struct flock {
77 pub l_start: libc::off_t,
78 pub l_len: libc::off_t,
79 pub l_pid: libc::pid_t,
80 pub l_type: libc::c_short,
81 pub l_whence: libc::c_short,
82
83 // not actually here, but brings in line with freebsd
84 pub l_sysid: libc::c_int,
85 }
86
87 pub const F_UNLCK: libc::c_short = 2;
88 pub const F_WRLCK: libc::c_short = 3;
89 pub const F_SETLK: libc::c_int = 8;
90 pub const F_SETLKW: libc::c_int = 9;
91 }
92
93 #[cfg(any(target_os = "macos", target_os = "ios"))]
94 mod os {
95 use libc;
96
97 pub struct flock {
98 pub l_start: libc::off_t,
99 pub l_len: libc::off_t,
100 pub l_pid: libc::pid_t,
101 pub l_type: libc::c_short,
102 pub l_whence: libc::c_short,
103
104 // not actually here, but brings in line with freebsd
105 pub l_sysid: libc::c_int,
106 }
107
108 pub const F_UNLCK: libc::c_short = 2;
109 pub const F_WRLCK: libc::c_short = 3;
110 pub const F_SETLK: libc::c_int = 8;
111 pub const F_SETLKW: libc::c_int = 9;
112 }
113
114 pub struct Lock {
115 fd: libc::c_int,
116 }
117
118 impl Lock {
119 pub fn new(p: &Path) -> Lock {
120 let os: &OsStr = p.as_ref();
121 let buf = CString::new(os.as_bytes()).unwrap();
122 let fd = unsafe {
123 libc::open(buf.as_ptr(), libc::O_RDWR | libc::O_CREAT,
124 libc::S_IRWXU)
125 };
126 assert!(fd > 0, "failed to open lockfile: {}",
127 io::Error::last_os_error());
128 let flock = os::flock {
129 l_start: 0,
130 l_len: 0,
131 l_pid: 0,
132 l_whence: libc::SEEK_SET as libc::c_short,
133 l_type: os::F_WRLCK,
134 l_sysid: 0,
135 };
136 let ret = unsafe {
137 libc::fcntl(fd, os::F_SETLKW, &flock)
138 };
139 if ret == -1 {
140 let err = io::Error::last_os_error();
141 unsafe { libc::close(fd); }
142 panic!("could not lock `{}`: {}", p.display(), err);
143 }
144 Lock { fd: fd }
145 }
146 }
147
148 impl Drop for Lock {
149 fn drop(&mut self) {
150 let flock = os::flock {
151 l_start: 0,
152 l_len: 0,
153 l_pid: 0,
154 l_whence: libc::SEEK_SET as libc::c_short,
155 l_type: os::F_UNLCK,
156 l_sysid: 0,
157 };
158 unsafe {
159 libc::fcntl(self.fd, os::F_SETLK, &flock);
160 libc::close(self.fd);
161 }
162 }
163 }
164 }
165
166 #[cfg(windows)]
167 mod imp {
168 use libc;
169 use std::io;
170 use std::mem;
171 use std::ffi::OsStr;
172 use std::os::windows::prelude::*;
173 use std::path::Path;
174 use std::ptr;
175
176 const LOCKFILE_EXCLUSIVE_LOCK: libc::DWORD = 0x00000002;
177
178 #[allow(non_snake_case)]
179 extern "system" {
180 fn LockFileEx(hFile: libc::HANDLE,
181 dwFlags: libc::DWORD,
182 dwReserved: libc::DWORD,
183 nNumberOfBytesToLockLow: libc::DWORD,
184 nNumberOfBytesToLockHigh: libc::DWORD,
185 lpOverlapped: libc::LPOVERLAPPED) -> libc::BOOL;
186 fn UnlockFileEx(hFile: libc::HANDLE,
187 dwReserved: libc::DWORD,
188 nNumberOfBytesToLockLow: libc::DWORD,
189 nNumberOfBytesToLockHigh: libc::DWORD,
190 lpOverlapped: libc::LPOVERLAPPED) -> libc::BOOL;
191 }
192
193 pub struct Lock {
194 handle: libc::HANDLE,
195 }
196
197 impl Lock {
198 pub fn new(p: &Path) -> Lock {
199 let os: &OsStr = p.as_ref();
200 let mut p_16: Vec<_> = os.encode_wide().collect();
201 p_16.push(0);
202 let handle = unsafe {
203 libc::CreateFileW(p_16.as_ptr(),
204 libc::FILE_GENERIC_READ |
205 libc::FILE_GENERIC_WRITE,
206 libc::FILE_SHARE_READ |
207 libc::FILE_SHARE_DELETE |
208 libc::FILE_SHARE_WRITE,
209 ptr::null_mut(),
210 libc::CREATE_ALWAYS,
211 libc::FILE_ATTRIBUTE_NORMAL,
212 ptr::null_mut())
213 };
214 if handle == libc::INVALID_HANDLE_VALUE {
215 panic!("create file error: {}", io::Error::last_os_error());
216 }
217 let mut overlapped: libc::OVERLAPPED = unsafe { mem::zeroed() };
218 let ret = unsafe {
219 LockFileEx(handle, LOCKFILE_EXCLUSIVE_LOCK, 0, 100, 0,
220 &mut overlapped)
221 };
222 if ret == 0 {
223 let err = io::Error::last_os_error();
224 unsafe { libc::CloseHandle(handle); }
225 panic!("could not lock `{}`: {}", p.display(), err);
226 }
227 Lock { handle: handle }
228 }
229 }
230
231 impl Drop for Lock {
232 fn drop(&mut self) {
233 let mut overlapped: libc::OVERLAPPED = unsafe { mem::zeroed() };
234 unsafe {
235 UnlockFileEx(self.handle, 0, 100, 0, &mut overlapped);
236 libc::CloseHandle(self.handle);
237 }
238 }
239 }
240 }