Init
[?]
Nov 26, 2020, 9:30 PM
RXG3CUOJVQSX4Z4T32PJHGDA5CMZEVP543EXAVL6HYDEU7V6YYWQCDependencies
Change contents
- file addition: src[1.0]
- file addition: lib.rs[0.6]
/*This library is free software; you can redistribute it and/ormodify it under the terms of the GNU Lesser General PublicLicense as published by the Free Software Foundation; eitherversion 2.1 of the License, or (at your option) any later version.This library is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNULesser General Public License for more details.You should have received a copy of the GNU Lesser General PublicLicense along with this library; if not, write to the Free SoftwareFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA*///! LibRsync//! # Examples//! In the following example, the signature file should be computed on the local file, sent to the remote machine where the delta is computed. Then, `delta_file` must be run on the remote machine, creating a file /tmp/delta. Then, /tmp/delta should be copied to the local machine, and finally `patch_file` must be applied to write a copy of the remote file in /tmp/new.//!//! ```//! extern crate rsync;//! use rsync::*;//!//! fn main(){//! sig_file("/tmp/old","/tmp/old.sig",2048,8,None).unwrap();//! let sig=loadsig_file("/tmp/old.sig",None).unwrap();//! delta_file(&sig, "/tmp/new", "/tmp/delta",None).unwrap();//! patch_file("/tmp/old","/tmp/delta","/tmp/new.new",None).unwrap();//! }//! ```extern crate libc;use libc::{c_int,c_char,size_t,c_longlong,FILE,fopen,fclose,strlen};use std::ptr;use std::path::{Path};use std::{error,fmt};#[allow(missing_copy_implementations)]enum CRsSignature {}type CRsResult=c_int;// This needs to be generated from the C headers.type RsLongT=c_longlong;#[repr(C)]pub struct rs_stats_t {op:*const c_char,lit_cmds:c_int,lit_bytes:RsLongT,lit_cmdbytes:RsLongT,copy_cmds:RsLongT,copy_bytes:RsLongT,copy_cmdbytes:RsLongT,sig_cmds:RsLongT,sig_bytes:RsLongT,false_matches:c_int,sig_blocks:RsLongT,block_len:size_t,in_bytes:RsLongT,out_bytes:RsLongT}#[derive(Debug)]pub enum Error {Error(c_int),PathEncoding,FileMissing,IO(std::io::Error)}extern "C" {fn rs_loadsig_file(old_file:*const FILE, sig_out:*mut*mut CRsSignature,stats:*mut rs_stats_t)->CRsResult;fn rs_sig_file(old_file:*const FILE,sig_file:*const FILE,block_len:size_t, strong_len:size_t,stats:*mut rs_stats_t)->CRsResult;fn rs_delta_file(sig:*const CRsSignature,input_file:*const FILE,output_file:*const FILE,stats:*mut rs_stats_t)->CRsResult;fn rs_patch_file(basis:*const FILE, delta:*const FILE, new_file:*const FILE, stats:*mut rs_stats_t)->CRsResult;fn rs_strerror(err:CRsResult)->*const c_char;fn rs_free_sumset(sig:*const CRsSignature);fn rs_build_hash_table(sig:*mut CRsSignature)->c_int;fn rs_sumset_dump(sig:*const CRsSignature);}pub fn sumset_dump(sig:&Signature) {unsafe { rs_sumset_dump(sig.sig) }}pub struct Signature {sig:*mut CRsSignature}impl Drop for Signature {fn drop(&mut self){unsafe { rs_free_sumset(self.sig) }}}/// Generates a signature of the "old_file" input file and writes it to "signature_file".pub fn sig_file<P:AsRef<Path>>(old_file:P,signature_file:P,block_len:usize,strong_len:usize,stats:Option<&mut rs_stats_t>)->Result<(),Error>{let old=old_file.as_ref().as_os_str().to_os_string();let sig=signature_file.as_ref().as_os_str().to_os_string();match (old.to_str(),sig.to_str()) {(Some(old),Some(sig))=>{unsafe {let old=std::ffi::CString::new(old).unwrap();let fi=fopen(old.as_ptr() as *const c_char,"rb".as_ptr() as *const c_char);if !fi.is_null() {let sig=std::ffi::CString::new(sig).unwrap();let fo=fopen(sig.as_ptr() as *const c_char,"wb".as_ptr() as *const c_char);let e=rs_sig_file(fi,fo,block_len as size_t,strong_len as size_t,match stats {None => std::ptr::null_mut(),Some(x)=>x});fclose(fi);fclose(fo);if e==0 { Ok(()) } else { Err(Error::Error(e)) }} else {println!("old: {:?}",old);Err(Error::FileMissing)}}},_=>Err(Error::PathEncoding)}}/// Loads a signature from "sig_file".pub fn loadsig_file<P:AsRef<Path>>(sig_file:P,stats:Option<&mut rs_stats_t>)->Result<Signature,Error>{let sig_file=sig_file.as_ref().as_os_str().to_os_string();match sig_file.to_str() {Some(s)=>unsafe {let mut sig_out=ptr::null_mut();let s=std::ffi::CString::new(s).unwrap();let fi=fopen(s.as_ptr() as *const c_char,"rb".as_ptr() as *const c_char);if !fi.is_null(){let e=rs_loadsig_file(fi, &mut sig_out,match stats {None => std::ptr::null_mut(),Some(x)=>x});fclose(fi);if e==0 { Ok(Signature{sig:sig_out}) } else { Err(Error::Error(e)) }} else {Err(Error::FileMissing)}},None =>{Err(Error::PathEncoding)}}}/// Produce a delta from a signature and a "new" file.pub fn delta_file<P:AsRef<Path>>(sig:&Signature,input_file:P,output_file:P,stats:Option<&mut rs_stats_t>)->Result<(),Error>{let input_file=input_file.as_ref().as_os_str().to_os_string();let output_file=output_file.as_ref().as_os_str().to_os_string();match (input_file.to_str(),output_file.to_str()) {(Some(i),Some(o))=>{unsafe {let i=std::ffi::CString::new(i).unwrap();let fi=fopen(i.as_ptr() as *const c_char,"rb".as_ptr() as *const c_char);if !fi.is_null() {let o=std::ffi::CString::new(o).unwrap();let fo=fopen(o.as_ptr() as *const c_char,"wb".as_ptr() as *const c_char);rs_build_hash_table(sig.sig);let e=rs_delta_file(sig.sig,fi,fo,match stats {None => std::ptr::null_mut(),Some(x)=>x});fclose(fi);fclose(fo);if e==0 { Ok(()) } else { Err(Error::Error(e)) }} else {Err(Error::IO(std::io::Error::last_os_error()))}}},_=>Err(Error::PathEncoding)}}/// Applies a delta file (or a "patch") to "old_file", and write the result to "new_file".pub fn patch_file<P:AsRef<Path>>(old_file:P,delta:P,new_file:P,stats:Option<&mut rs_stats_t>)->Result<(),Error>{let old_file=old_file.as_ref().as_os_str().to_os_string();let delta=delta.as_ref().as_os_str().to_os_string();let new_file=new_file.as_ref().as_os_str().to_os_string();match (old_file.to_str(),delta.to_str(),new_file.to_str()) {(Some(old),Some(delta),Some(new))=>{unsafe {let old=std::ffi::CString::new(old).unwrap();let fa=fopen(old.as_ptr() as *const c_char,"rb".as_ptr() as *const c_char);let delta=std::ffi::CString::new(delta).unwrap();let fb=fopen(delta.as_ptr() as *const c_char,"rb".as_ptr() as *const c_char);let new=std::ffi::CString::new(new).unwrap();let fc=fopen(new.as_ptr() as *const c_char,"wb".as_ptr() as *const c_char);if !fa.is_null() && !fb.is_null() {let e=rs_patch_file(fa,fb,fc,match stats { Some(st)=>st, None => std::ptr::null_mut() });fclose(fa);fclose(fb);fclose(fc);if e==0 { Ok(()) } else { Err(Error::Error(e)) }} else {Err(Error::FileMissing)}}},_=>Err(Error::PathEncoding)}}impl error::Error for Error {fn cause(&self) -> Option<&dyn error::Error> {match *self {Error::IO(ref e)=>Some(e),_ => None}}}impl fmt::Display for Error {fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {match *self {Error::PathEncoding => write!(f,"Error in the encoding of a path"),Error::FileMissing => write!(f,"File missing"),Error::Error(e)=>{write!(f,"{}",unsafe {let c=rs_strerror(e);std::str::from_utf8_unchecked(std::slice::from_raw_parts(c as *const u8,strlen(c)))})},Error::IO(ref e)=>e.fmt(f)}}}#[cfg(test)]mod tests {use super::*;use std::fs::File;use std::io::prelude::*;extern crate rand;#[test]fn test() {let mut local:Vec<u8>=vec![0;10000];let mut remote:Vec<u8>=vec![0;10000];for x in local.iter_mut() { *x = rand::random() }for x in remote.iter_mut() { *x = rand::random() }let local_file="local";let remote_file="remote";{let mut f = File::create(local_file).unwrap();f.write_all(&local[..]).unwrap();let mut f = File::create(remote_file).unwrap();f.write_all(&remote[..]).unwrap();}let signature_file="local.sig";sig_file(local_file,signature_file,2048,8,None).unwrap();let signature=loadsig_file(signature_file,None).unwrap();let delta="delta";delta_file(&signature,remote_file,delta,None).unwrap();let copy_file="remote.copy";patch_file(local_file,delta,copy_file,None).unwrap();let mut f = File::open(copy_file).unwrap();let mut contents: Vec<u8> = Vec::new();let _ = f.read_to_end(&mut contents).unwrap();if contents!=remote { panic!("test failled") }}} - file addition: Cargo.toml[1.0]
[package]name = "rsync"version = "0.1.3"authors = ["Pierre-Étienne Meunier <pe@pijul.org>"]description = "Bindings to librsync"license = "LGPL-3.0"homepage = "https://nest.pijul.com/pmeunier/rsync"documentation = "http://docs.rs/rsync"include = ["src/lib.rs","COPYING.LESSER","Cargo.toml"][dependencies]libc="0.2.2"[dev-dependencies]rand="0.3.12" - file addition: COPYING.LESSER[1.0]
GNU LESSER GENERAL PUBLIC LICENSEVersion 3, 29 June 2007Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>Everyone is permitted to copy and distribute verbatim copiesof this license document, but changing it is not allowed.This version of the GNU Lesser General Public License incorporatesthe terms and conditions of version 3 of the GNU General PublicLicense, supplemented by the additional permissions listed below.0. Additional Definitions.As used herein, "this License" refers to version 3 of the GNU LesserGeneral Public License, and the "GNU GPL" refers to version 3 of the GNUGeneral Public License."The Library" refers to a covered work governed by this License,other than an Application or a Combined Work as defined below.An "Application" is any work that makes use of an interface providedby the Library, but which is not otherwise based on the Library.Defining a subclass of a class defined by the Library is deemed a modeof using an interface provided by the Library.A "Combined Work" is a work produced by combining or linking anApplication with the Library. The particular version of the Librarywith which the Combined Work was made is also called the "LinkedVersion".The "Minimal Corresponding Source" for a Combined Work means theCorresponding Source for the Combined Work, excluding any source codefor portions of the Combined Work that, considered in isolation, arebased on the Application, and not on the Linked Version.The "Corresponding Application Code" for a Combined Work means theobject code and/or source code for the Application, including any dataand utility programs needed for reproducing the Combined Work from theApplication, but excluding the System Libraries of the Combined Work.1. Exception to Section 3 of the GNU GPL.You may convey a covered work under sections 3 and 4 of this Licensewithout being bound by section 3 of the GNU GPL.2. Conveying Modified Versions.If you modify a copy of the Library, and, in your modifications, afacility refers to a function or data to be supplied by an Applicationthat uses the facility (other than as an argument passed when thefacility is invoked), then you may convey a copy of the modifiedversion:a) under this License, provided that you make a good faith effort toensure that, in the event an Application does not supply thefunction or data, the facility still operates, and performswhatever part of its purpose remains meaningful, orb) under the GNU GPL, with none of the additional permissions ofthis License applicable to that copy.3. Object Code Incorporating Material from Library Header Files.The object code form of an Application may incorporate material froma header file that is part of the Library. You may convey such objectcode under terms of your choice, provided that, if the incorporatedmaterial is not limited to numerical parameters, data structurelayouts and accessors, or small macros, inline functions and templates(ten or fewer lines in length), you do both of the following:a) Give prominent notice with each copy of the object code that theLibrary is used in it and that the Library and its use arecovered by this License.b) Accompany the object code with a copy of the GNU GPL and this licensedocument.4. Combined Works.You may convey a Combined Work under terms of your choice that,taken together, effectively do not restrict modification of theportions of the Library contained in the Combined Work and reverseengineering for debugging such modifications, if you also do each ofthe following:a) Give prominent notice with each copy of the Combined Work thatthe Library is used in it and that the Library and its use arecovered by this License.b) Accompany the Combined Work with a copy of the GNU GPL and this licensedocument.c) For a Combined Work that displays copyright notices duringexecution, include the copyright notice for the Library amongthese notices, as well as a reference directing the user to thecopies of the GNU GPL and this license document.d) Do one of the following:0) Convey the Minimal Corresponding Source under the terms of thisLicense, and the Corresponding Application Code in a formsuitable for, and under terms that permit, the user torecombine or relink the Application with a modified version ofthe Linked Version to produce a modified Combined Work, in themanner specified by section 6 of the GNU GPL for conveyingCorresponding Source.1) Use a suitable shared library mechanism for linking with theLibrary. A suitable mechanism is one that (a) uses at run timea copy of the Library already present on the user's computersystem, and (b) will operate properly with a modified versionof the Library that is interface-compatible with the LinkedVersion.e) Provide Installation Information, but only if you would otherwisebe required to provide such information under section 6 of theGNU GPL, and only to the extent that such information isnecessary to install and execute a modified version of theCombined Work produced by recombining or relinking theApplication with a modified version of the Linked Version. (Ifyou use option 4d0, the Installation Information must accompanythe Minimal Corresponding Source and Corresponding ApplicationCode. If you use option 4d1, you must provide the InstallationInformation in the manner specified by section 6 of the GNU GPLfor conveying Corresponding Source.)5. Combined Libraries.You may place library facilities that are a work based on theLibrary side by side in a single library together with other libraryfacilities that are not Applications and are not covered by thisLicense, and convey such a combined library under terms of yourchoice, if you do both of the following:a) Accompany the combined library with a copy of the same work basedon the Library, uncombined with any other library facilities,conveyed under the terms of this License.b) Give prominent notice with the combined library that part of itis a work based on the Library, and explaining where to find theaccompanying uncombined form of the same work.6. Revised Versions of the GNU Lesser General Public License.The Free Software Foundation may publish revised and/or new versionsof the GNU Lesser General Public License from time to time. Such newversions will be similar in spirit to the present version, but maydiffer in detail to address new problems or concerns.Each version is given a distinguishing version number. If theLibrary as you received it specifies that a certain numbered versionof the GNU Lesser General Public License "or any later version"applies to it, you have the option of following the terms andconditions either of that published version or of any later versionpublished by the Free Software Foundation. If the Library as youreceived it does not specify a version number of the GNU LesserGeneral Public License, you may choose any version of the GNU LesserGeneral Public License ever published by the Free Software Foundation.If the Library as you received it specifies that a proxy can decidewhether future versions of the GNU Lesser General Public License shallapply, that proxy's public statement of acceptance of any version ispermanent authorization for you to choose that version for theLibrary.