1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
use std::io; use std::path::Path; use std::io::prelude::*; use std::fs; use std::borrow::Cow; use {EntryType, Header, other}; use header::{bytes2path, HeaderMode, path2bytes}; /// A structure for building archives /// /// This structure has methods for building up an archive from scratch into any /// arbitrary writer. pub struct Builder<W: Write> { mode: HeaderMode, finished: bool, obj: Option<W>, } impl<W: Write> Builder<W> { /// Create a new archive builder with the underlying object as the /// destination of all data written. The builder will use /// `HeaderMode::Complete` by default. pub fn new(obj: W) -> Builder<W> { Builder { mode: HeaderMode::Complete, finished: false, obj: Some(obj), } } fn inner(&mut self) -> &mut W { self.obj.as_mut().unwrap() } /// Changes the HeaderMode that will be used when reading fs Metadata for /// methods that implicitly read metadata for an input Path. Notably, this /// does _not_ apply to `append(Header)`. pub fn mode(&mut self, mode: HeaderMode) { self.mode = mode; } /// Unwrap this archive, returning the underlying object. /// /// This function will finish writing the archive if the `finish` function /// hasn't yet been called, returning any I/O error which happens during /// that operation. pub fn into_inner(mut self) -> io::Result<W> { if !self.finished { try!(self.finish()); } Ok(self.obj.take().unwrap()) } /// Adds a new entry to this archive. /// /// This function will append the header specified, followed by contents of /// the stream specified by `data`. To produce a valid archive the `size` /// field of `header` must be the same as the length of the stream that's /// being written. Additionally the checksum for the header should have been /// set via the `set_cksum` method. /// /// Note that this will not attempt to seek the archive to a valid position, /// so if the archive is in the middle of a read or some other similar /// operation then this may corrupt the archive. /// /// Also note that after all entries have been written to an archive the /// `finish` function needs to be called to finish writing the archive. /// /// # Errors /// /// This function will return an error for any intermittent I/O error which /// occurs when either reading or writing. /// /// # Examples /// /// ``` /// use tar::{Builder, Header}; /// /// let mut header = Header::new_gnu(); /// header.set_path("foo"); /// header.set_size(4); /// header.set_cksum(); /// /// let mut data: &[u8] = &[1, 2, 3, 4]; /// /// let mut ar = Builder::new(Vec::new()); /// ar.append(&header, data).unwrap(); /// let data = ar.into_inner().unwrap(); /// ``` pub fn append<R: Read>(&mut self, header: &Header, mut data: R) -> io::Result<()> { append(self.inner(), header, &mut data) } /// Adds a file on the local filesystem to this archive. /// /// This function will open the file specified by `path` and insert the file /// into the archive with the appropriate metadata set, returning any I/O /// error which occurs while writing. The path name for the file inside of /// this archive will be the same as `path`, and it is required that the /// path is a relative path. /// /// Note that this will not attempt to seek the archive to a valid position, /// so if the archive is in the middle of a read or some other similar /// operation then this may corrupt the archive. /// /// Also note that after all files have been written to an archive the /// `finish` function needs to be called to finish writing the archive. /// /// # Examples /// /// ```no_run /// use tar::Builder; /// /// let mut ar = Builder::new(Vec::new()); /// /// ar.append_path("foo/bar.txt").unwrap(); /// ``` pub fn append_path<P: AsRef<Path>>(&mut self, path: P) -> io::Result<()> { let mode = self.mode.clone(); append_path(self.inner(), path.as_ref(), mode) } /// Adds a file to this archive with the given path as the name of the file /// in the archive. /// /// This will use the metadata of `file` to populate a `Header`, and it will /// then append the file to the archive with the name `path`. /// /// Note that this will not attempt to seek the archive to a valid position, /// so if the archive is in the middle of a read or some other similar /// operation then this may corrupt the archive. /// /// Also note that after all files have been written to an archive the /// `finish` function needs to be called to finish writing the archive. /// /// # Examples /// /// ```no_run /// use std::fs::File; /// use tar::Builder; /// /// let mut ar = Builder::new(Vec::new()); /// /// // Open the file at one location, but insert it into the archive with a /// // different name. /// let mut f = File::open("foo/bar/baz.txt").unwrap(); /// ar.append_file("bar/baz.txt", &mut f).unwrap(); /// ``` pub fn append_file<P: AsRef<Path>>(&mut self, path: P, file: &mut fs::File) -> io::Result<()> { let mode = self.mode.clone(); append_file(self.inner(), path.as_ref(), file, mode) } /// Adds a directory to this archive with the given path as the name of the /// directory in the archive. /// /// This will use `stat` to populate a `Header`, and it will then append the /// directory to the archive with the name `path`. /// /// Note that this will not attempt to seek the archive to a valid position, /// so if the archive is in the middle of a read or some other similar /// operation then this may corrupt the archive. /// /// Also note that after all files have been written to an archive the /// `finish` function needs to be called to finish writing the archive. /// /// # Examples /// /// ``` /// use std::fs; /// use tar::Builder; /// /// let mut ar = Builder::new(Vec::new()); /// /// // Use the directory at one location, but insert it into the archive /// // with a different name. /// ar.append_dir("bardir", ".").unwrap(); /// ``` pub fn append_dir<P, Q>(&mut self, path: P, src_path: Q) -> io::Result<()> where P: AsRef<Path>, Q: AsRef<Path> { let mode = self.mode.clone(); append_dir(self.inner(), path.as_ref(), src_path.as_ref(), mode) } /// Adds a directory and all of its contents (recursively) to this archive /// with the given path as the name of the directory in the archive. /// /// Note that this will not attempt to seek the archive to a valid position, /// so if the archive is in the middle of a read or some other similar /// operation then this may corrupt the archive. /// /// Also note that after all files have been written to an archive the /// `finish` function needs to be called to finish writing the archive. /// /// # Examples /// /// ``` /// use std::fs; /// use tar::Builder; /// /// let mut ar = Builder::new(Vec::new()); /// /// // Use the directory at one location, but insert it into the archive /// // with a different name. /// ar.append_dir_all("bardir", ".").unwrap(); /// ``` pub fn append_dir_all<P, Q>(&mut self, path: P, src_path: Q) -> io::Result<()> where P: AsRef<Path>, Q: AsRef<Path> { let mode = self.mode.clone(); append_dir_all(self.inner(), path.as_ref(), src_path.as_ref(), mode) } /// Finish writing this archive, emitting the termination sections. /// /// This function should only be called when the archive has been written /// entirely and if an I/O error happens the underlying object still needs /// to be acquired. /// /// In most situations the `into_inner` method should be preferred. pub fn finish(&mut self) -> io::Result<()> { if self.finished { return Ok(()) } self.finished = true; self.inner().write_all(&[0; 1024]) } } fn append(mut dst: &mut Write, header: &Header, mut data: &mut Read) -> io::Result<()> { try!(dst.write_all(header.as_bytes())); let len = try!(io::copy(&mut data, &mut dst)); // Pad with zeros if necessary. let buf = [0; 512]; let remaining = 512 - (len % 512); if remaining < 512 { try!(dst.write_all(&buf[..remaining as usize])); } Ok(()) } fn append_path(dst: &mut Write, path: &Path, mode: HeaderMode) -> io::Result<()> { let stat = try!(fs::metadata(path)); if stat.is_file() { append_fs(dst, path, &stat, &mut try!(fs::File::open(path)), mode) } else if stat.is_dir() { append_fs(dst, path, &stat, &mut io::empty(), mode) } else { Err(other("path has unknown file type")) } } fn append_file(dst: &mut Write, path: &Path, file: &mut fs::File, mode: HeaderMode) -> io::Result<()> { let stat = try!(file.metadata()); append_fs(dst, path, &stat, file, mode) } fn append_dir(dst: &mut Write, path: &Path, src_path: &Path, mode: HeaderMode) -> io::Result<()> { let stat = try!(fs::metadata(src_path)); append_fs(dst, path, &stat, &mut io::empty(), mode) } fn append_fs(dst: &mut Write, path: &Path, meta: &fs::Metadata, read: &mut Read, mode: HeaderMode) -> io::Result<()> { let mut header = Header::new_gnu(); // Try to encode the path directly in the header, but if it ends up not // working (e.g. it's too long) then use the GNU-specific long name // extension by emitting an entry which indicates that it's the filename if let Err(e) = header.set_path(path) { let data = try!(path2bytes(&path)); let max = header.as_old().name.len(); if data.len() < max { return Err(e) } let mut header2 = Header::new_gnu(); header2.as_gnu_mut().unwrap().name[..13].clone_from_slice(b"././@LongLink"); header2.set_mode(0o644); header2.set_uid(0); header2.set_gid(0); header2.set_mtime(0); header2.set_size((data.len() + 1) as u64); header2.set_entry_type(EntryType::new(b'L')); header2.set_cksum(); let mut data2 = data.chain(io::repeat(0).take(0)); try!(append(dst, &header2, &mut data2)); // Truncate the path to store in the header we're about to emit to // ensure we've got something at least mentioned. let path = try!(bytes2path(Cow::Borrowed(&data[..max]))); try!(header.set_path(&path)); } header.set_metadata_in_mode(meta, mode); header.set_cksum(); append(dst, &header, read) } fn append_dir_all(dst: &mut Write, path: &Path, src_path: &Path, mode: HeaderMode) -> io::Result<()> { let mut stack = vec![(src_path.to_path_buf(), true)]; while let Some((src, is_dir)) = stack.pop() { let dest = path.join(src.strip_prefix(&src_path).unwrap()); if is_dir { for entry in try!(fs::read_dir(&src)) { let entry = try!(entry); stack.push((entry.path(), try!(entry.file_type()).is_dir())); } try!(append_dir(dst, &dest, &src, mode)); } else { try!(append_file(dst, &dest, &mut try!(fs::File::open(src)), mode)); } } Ok(()) } impl<W: Write> Drop for Builder<W> { fn drop(&mut self) { let _ = self.finish(); } }