aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authoropenvcdiff <openvcdiff@132ac840-3546-0410-a738-d3f8764196be>2008-08-26 19:29:25 +0000
committeropenvcdiff <openvcdiff@132ac840-3546-0410-a738-d3f8764196be>2008-08-26 19:29:25 +0000
commit311c71486f5f6074e5ba62a7f4c5397c8700b868 (patch)
tree3851b12e95a0f6a5a30deb52ae13ae7453f606bc /README
parenta2f33801808f7704582f62e098c0aff24a22def5 (diff)
downloadopen-vcdiff-311c71486f5f6074e5ba62a7f4c5397c8700b868.tar.gz
Mon, 16 Jun 2008 15:15:51 -0700 Google Inc. <opensource@google.com>
* open-vcdiff: initial release: The open-vcdiff package provides an encoder and decoder for the VCDIFF format described in RFC 3284 (http://www.ietf.org/rfc/rfc3284.txt). git-svn-id: http://open-vcdiff.googlecode.com/svn/trunk@7 132ac840-3546-0410-a738-d3f8764196be
Diffstat (limited to 'README')
-rw-r--r--README43
1 files changed, 43 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..c67823b
--- /dev/null
+++ b/README
@@ -0,0 +1,43 @@
+open-vcdiff is an encoder and decoder for the VCDIFF format, as described in
+RFC 3284 : The VCDIFF Generic Differencing and Compression Data Format
+(http://www.ietf.org/rfc/rfc3284.txt)
+A library with a simple API is included, as well as a command-line executable
+that can apply the encoder and decoder to source, target, and delta files.
+For further details, please refer to:
+http://code.google.com/p/open-vcdiff/wiki/HowToUseOpenVcdiff
+
+See INSTALL for (generic) installation instructions for C++: basically
+ ./configure && make && make install
+
+This should compile the unit tests as well as "vcdiff", a simple command-line
+utility to run the encoder and decoder. Typical usage of vcdiff is as follows
+(the "<" and ">" are file redirect operations, not optional arguments):
+ vcdiff encode -dictionary file.dict < target_file > delta_file
+ vcdiff decode -dictionary file.dict < delta_file > target_file
+To see the command-line syntax of vcdiff, use "vcdiff --help" or just "vcdiff".
+
+To call the encoder from C++ code, assuming that dictionary, target, and delta
+are all std::string objects:
+#include <google/vcencoder.h> // Read this file for interface details
+[...]
+ open_vcdiff::VCDiffEncoder encoder(dictionary.data(), dictionary.size());
+ encoder.SetFormatFlags(open_vcdiff::VCD_FORMAT_INTERLEAVED);
+ encoder.Encode(target.data(), target.size(), &delta);
+
+Calling the decoder is just as simple:
+#include <google/vcdecoder.h> // Read this file for interface details
+[...]
+ open_vcdiff::VCDiffDecoder decoder;
+ decoder.Decode(dictionary.data(), dictionary.size(), delta, &target);
+
+When using the encoder, the C++ application must be linked with the library
+options -lvcdcom and -lvcdenc; when using the decoder, it must be linked with
+-lvcdcom and -lvcddec.
+
+To verify that the package works on your system, especially after making
+modifications to the source code, please run the unit tests using
+ make check
+
+For further details, please refer to:
+http://code.google.com/p/open-vcdiff/wiki/HowToUseOpenVcdiff
+