1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // A DifferenceEstimator class provides a means for quickly estimating the
6 // difference between two regions of memory.
8 #ifndef COURGETTE_DIFFERENCE_ESTIMATOR_H_
9 #define COURGETTE_DIFFERENCE_ESTIMATOR_H_
13 #include "courgette/region.h"
17 // A DifferenceEstimator simplifies the task of determining which 'Subject' byte
18 // strings (stored in regions of memory) are good matches to existing 'Base'
19 // regions. The ultimate measure would be to try full differential compression
20 // and measure the output size, but an estimate that correlates well with the
21 // full compression is more efficient.
23 // The measure is asymmetric, if the Subject is a small substring of the Base
24 // then it should match very well.
26 // The comparison is staged: first make Base and Subject objects for the regions
27 // and then call 'Measure' to get the estimate. The staging allows multiple
28 // comparisons to be more efficient by precomputing information used in the
31 class DifferenceEstimator
{
33 DifferenceEstimator();
34 ~DifferenceEstimator();
39 // This DifferenceEstimator owns the objects returned by MakeBase and
40 // MakeSubject. Caller continues to own memory at |region| and must not free
41 // it until ~DifferenceEstimator has been called.
42 Base
* MakeBase(const Region
& region
);
43 Subject
* MakeSubject(const Region
& region
);
45 // Returns a value correlated with the size of the bsdiff or xdelta difference
46 // from |base| to |subject|. Returns zero iff the base and subject regions
47 // are bytewise identical.
48 size_t Measure(Base
* base
, Subject
* subject
);
51 std::vector
<Base
*> owned_bases_
;
52 std::vector
<Subject
*> owned_subjects_
;
53 DISALLOW_COPY_AND_ASSIGN(DifferenceEstimator
);
58 #endif // COURGETTE_DIFFERENCE_ESTIMATOR_H_