Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / safe_browsing / prefix_set.h
1 // Copyright (c) 2012 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.
4 //
5 // A read-only set implementation for |SBPrefix| items.  Prefixes are
6 // sorted and stored as 16-bit deltas from the previous prefix.  An
7 // index structure provides quick random access, and also handles
8 // cases where 16 bits cannot encode a delta.
9 //
10 // For example, the sequence {20, 25, 41, 65432, 150000, 160000} would
11 // be stored as:
12 //  A pair {20, 0} in |index_|.
13 //  5, 16, 65391 in |deltas_|.
14 //  A pair {150000, 3} in |index_|.
15 //  10000 in |deltas_|.
16 // |index_.size()| will be 2, |deltas_.size()| will be 4.
17 //
18 // This structure is intended for storage of sparse uniform sets of
19 // prefixes of a certain size.  As of this writing, my safe-browsing
20 // database contains:
21 //   653132 add prefixes
22 //   6446 are duplicates (from different chunks)
23 //   24301 w/in 2^8 of the prior prefix
24 //   622337 w/in 2^16 of the prior prefix
25 //   47 further than 2^16 from the prior prefix
26 // For this input, the memory usage is approximately 2 bytes per
27 // prefix, a bit over 1.2M.  The bloom filter used 25 bits per prefix,
28 // a bit over 1.9M on this data.
29 //
30 // Experimenting with random selections of the above data, storage
31 // size drops almost linearly as prefix count drops, until the index
32 // overhead starts to become a problem a bit under 200k prefixes.  The
33 // memory footprint gets worse than storing the raw prefix data around
34 // 75k prefixes.  Fortunately, the actual memory footprint also falls.
35 // If the prefix count increases the memory footprint should increase
36 // approximately linearly.  The worst-case would be 2^16 items all
37 // 2^16 apart, which would need 512k (versus 256k to store the raw
38 // data).
39 //
40 // The on-disk format looks like:
41 //         4 byte magic number
42 //         4 byte version number
43 //         4 byte |index_.size()|
44 //         4 byte |deltas_.size()|
45 //     n * 8 byte |&index_[0]..&index_[n]|
46 //     m * 2 byte |&deltas_[0]..&deltas_[m]|
47 //        16 byte digest
48
49 #ifndef CHROME_BROWSER_SAFE_BROWSING_PREFIX_SET_H_
50 #define CHROME_BROWSER_SAFE_BROWSING_PREFIX_SET_H_
51
52 #include <vector>
53
54 #include "chrome/browser/safe_browsing/safe_browsing_util.h"
55
56 namespace base {
57 class FilePath;
58 }
59
60 namespace safe_browsing {
61
62 class PrefixSet {
63  public:
64   explicit PrefixSet(const std::vector<SBPrefix>& sorted_prefixes);
65   ~PrefixSet();
66
67   // |true| if |prefix| was in |prefixes| passed to the constructor.
68   bool Exists(SBPrefix prefix) const;
69
70   // Persist the set on disk.
71   static PrefixSet* LoadFile(const base::FilePath& filter_name);
72   bool WriteFile(const base::FilePath& filter_name) const;
73
74   // Regenerate the vector of prefixes passed to the constructor into
75   // |prefixes|.  Prefixes will be added in sorted order.
76   void GetPrefixes(std::vector<SBPrefix>* prefixes) const;
77
78  private:
79   // Maximum number of consecutive deltas to encode before generating
80   // a new index entry.  This helps keep the worst-case performance
81   // for |Exists()| under control.
82   static const size_t kMaxRun = 100;
83
84   // Helpers to make |index_| easier to deal with.
85   typedef std::pair<SBPrefix,uint32> IndexPair;
86   typedef std::vector<IndexPair> IndexVector;
87   static bool PrefixLess(const IndexPair& a, const IndexPair& b);
88
89   // Helper for |LoadFile()|.  Steals the contents of |index| and
90   // |deltas| using |swap()|.
91   PrefixSet(IndexVector* index, std::vector<uint16>* deltas);
92
93   // Top-level index of prefix to offset in |deltas_|.  Each pair
94   // indicates a base prefix and where the deltas from that prefix
95   // begin in |deltas_|.  The deltas for a pair end at the next pair's
96   // index into |deltas_|.
97   IndexVector index_;
98
99   // Deltas which are added to the prefix in |index_| to generate
100   // prefixes.  Deltas are only valid between consecutive items from
101   // |index_|, or the end of |deltas_| for the last |index_| pair.
102   std::vector<uint16> deltas_;
103
104   DISALLOW_COPY_AND_ASSIGN(PrefixSet);
105 };
106
107 }  // namespace safe_browsing
108
109 #endif  // CHROME_BROWSER_SAFE_BROWSING_PREFIX_SET_H_