GCC Code Coverage Report


Directory: cvmfs/
File: cvmfs/pack.cc
Date: 2026-07-12 02:35:48
Exec Total Coverage
Lines: 283 307 92.2%
Branches: 202 332 60.8%

Line Branch Exec Source
1 /**
2 * This file is part of the CernVM File System.
3 */
4
5 #include "pack.h"
6
7 #include <algorithm>
8 #include <cassert>
9 #include <cstring>
10 #include <map>
11
12 #include "util/exception.h"
13 #include "util/platform.h"
14 #include "util/smalloc.h"
15 #include "util/string.h"
16
17 using namespace std; // NOLINT
18
19 namespace { // some private utility functions used by ObjectPackProducer
20
21 3174 void InitializeHeader(const int version, const int num_objects,
22 const size_t pack_size, std::string *header) {
23
1/2
✓ Branch 0 taken 3174 times.
✗ Branch 1 not taken.
3174 if (header) {
24
2/4
✓ Branch 2 taken 3174 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 3174 times.
✗ Branch 6 not taken.
3174 *header = "V" + StringifyInt(version) + "\n";
25
3/6
✓ Branch 2 taken 3174 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 3174 times.
✗ Branch 6 not taken.
✓ Branch 8 taken 3174 times.
✗ Branch 9 not taken.
3174 *header += "S" + StringifyInt(pack_size) + "\n";
26
3/6
✓ Branch 2 taken 3174 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 3174 times.
✗ Branch 6 not taken.
✓ Branch 8 taken 3174 times.
✗ Branch 9 not taken.
3174 *header += "N" + StringifyInt(num_objects) + "\n";
27 3174 *header += "--\n";
28 }
29 3174 }
30
31 276374 void AppendItemToHeader(ObjectPack::BucketContentType object_type,
32 const std::string &hash_str, const size_t object_size,
33 const std::string &object_name, std::string *header) {
34 // If the item type is kName, the "item_name" parameter should not be empty
35
4/6
✓ Branch 0 taken 120 times.
✓ Branch 1 taken 276254 times.
✓ Branch 2 taken 120 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 120 times.
✗ Branch 6 not taken.
276374 assert((object_type == ObjectPack::kCas)
36 || ((object_type == ObjectPack::kNamed) && (!object_name.empty())));
37
1/2
✓ Branch 2 taken 276374 times.
✗ Branch 3 not taken.
276374 std::string line_prefix = "";
38
1/2
✓ Branch 2 taken 276374 times.
✗ Branch 3 not taken.
276374 std::string line_suffix = "";
39
2/3
✓ Branch 0 taken 120 times.
✓ Branch 1 taken 276254 times.
✗ Branch 2 not taken.
276374 switch (object_type) {
40 120 case ObjectPack::kNamed:
41
1/2
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
120 line_prefix = "N ";
42
3/6
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
✓ Branch 5 taken 120 times.
✗ Branch 6 not taken.
✓ Branch 8 taken 120 times.
✗ Branch 9 not taken.
120 line_suffix = std::string(" ") + Base64Url(object_name);
43 120 break;
44 276254 case ObjectPack::kCas:
45
1/2
✓ Branch 1 taken 276254 times.
✗ Branch 2 not taken.
276254 line_prefix = "C ";
46 276254 break;
47 default:
48 PANIC(kLogStderr, "Unknown object pack type to be added to header.");
49 }
50
1/2
✓ Branch 0 taken 276374 times.
✗ Branch 1 not taken.
276374 if (header) {
51
4/8
✓ Branch 1 taken 276374 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 276374 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 276374 times.
✗ Branch 8 not taken.
✓ Branch 10 taken 276374 times.
✗ Branch 11 not taken.
552748 *header += line_prefix + hash_str + " " + StringifyInt(object_size)
52
3/6
✓ Branch 1 taken 276374 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 276374 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 276374 times.
✗ Branch 8 not taken.
276374 + line_suffix + "\n";
53 }
54 276374 }
55
56 } // namespace
57
58 4014576 ObjectPack::Bucket::Bucket()
59 4014576 : content(reinterpret_cast<unsigned char *>(smalloc(kInitialSize)))
60 4014576 , size(0)
61 4014576 , capacity(kInitialSize)
62 4014576 , content_type(kEmpty)
63 8029152 , name() { }
64
65 14136 void ObjectPack::Bucket::Add(const void *buf, const uint64_t buf_size) {
66
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 14136 times.
14136 if (buf_size == 0)
67 return;
68
69
2/2
✓ Branch 0 taken 164600 times.
✓ Branch 1 taken 14136 times.
178736 while (size + buf_size > capacity) {
70 164600 capacity *= 2;
71 164600 content = reinterpret_cast<unsigned char *>(srealloc(content, capacity));
72 }
73 14136 memcpy(content + size, buf, buf_size);
74 14136 size += buf_size;
75 }
76
77 4014576 ObjectPack::Bucket::~Bucket() { free(content); }
78
79 //------------------------------------------------------------------------------
80
81 2096 ObjectPack::ObjectPack(const uint64_t limit) : limit_(limit), size_(0) {
82 2096 InitLock();
83 2096 }
84
85 2074 ObjectPack::~ObjectPack() {
86 4148 for (std::set<BucketHandle>::const_iterator i = open_buckets_.begin(),
87 2074 iEnd = open_buckets_.end();
88
2/2
✓ Branch 1 taken 2640 times.
✓ Branch 2 taken 2074 times.
4714 i != iEnd;
89 2640 ++i) {
90
1/2
✓ Branch 1 taken 2640 times.
✗ Branch 2 not taken.
2640 delete *i;
91 }
92
93
2/2
✓ Branch 1 taken 4011776 times.
✓ Branch 2 taken 2074 times.
4013850 for (unsigned i = 0; i < buckets_.size(); ++i)
94
1/2
✓ Branch 1 taken 4011776 times.
✗ Branch 2 not taken.
4011776 delete buckets_[i];
95 2074 pthread_mutex_destroy(lock_);
96 2074 free(lock_);
97 2074 }
98
99 2776 void ObjectPack::AddToBucket(const void *buf, const uint64_t size,
100 const ObjectPack::BucketHandle handle) {
101 2776 handle->Add(buf, size);
102 2776 }
103
104 4014536 ObjectPack::BucketHandle ObjectPack::NewBucket() {
105
2/4
✓ Branch 1 taken 4014536 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 4014536 times.
✗ Branch 5 not taken.
4014536 BucketHandle handle = new Bucket();
106
107 4014536 const MutexLockGuard mutex_guard(lock_);
108
1/2
✓ Branch 1 taken 4014536 times.
✗ Branch 2 not taken.
4014536 open_buckets_.insert(handle);
109 4014536 return handle;
110 4014536 }
111
112 /**
113 * Can only fail due to insufficient remaining space in the ObjectPack.
114 */
115 4014808 bool ObjectPack::CommitBucket(const BucketContentType type,
116 const shash::Any &id,
117 const ObjectPack::BucketHandle handle,
118 const std::string &name) {
119 4014808 handle->id = id;
120
121 4014808 handle->content_type = type;
122
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4014808 times.
4014808 if (type == kNamed) {
123 handle->name = name;
124 }
125
126 4014808 const MutexLockGuard mutex_guard(lock_);
127
2/2
✓ Branch 1 taken 40 times.
✓ Branch 2 taken 4014768 times.
4014808 if (buckets_.size() >= kMaxObjects)
128 40 return false;
129
2/2
✓ Branch 0 taken 2992 times.
✓ Branch 1 taken 4011776 times.
4014768 if (size_ + handle->size > limit_)
130 2992 return false;
131
1/2
✓ Branch 1 taken 4011776 times.
✗ Branch 2 not taken.
4011776 open_buckets_.erase(handle);
132
1/2
✓ Branch 1 taken 4011776 times.
✗ Branch 2 not taken.
4011776 buckets_.push_back(handle);
133 4011776 size_ += handle->size;
134 4011776 return true;
135 4014808 }
136
137 120 void ObjectPack::DiscardBucket(const BucketHandle handle) {
138 120 const MutexLockGuard mutex_guard(lock_);
139
1/2
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
120 open_buckets_.erase(handle);
140
1/2
✓ Branch 0 taken 120 times.
✗ Branch 1 not taken.
120 delete handle;
141 120 }
142
143 2096 void ObjectPack::InitLock() {
144 2096 lock_ = reinterpret_cast<pthread_mutex_t *>(smalloc(sizeof(pthread_mutex_t)));
145 2096 const int retval = pthread_mutex_init(lock_, NULL);
146
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2096 times.
2096 assert(retval == 0);
147 2096 }
148
149 /**
150 * If a commit failed, an open Bucket can be transferred to another ObjectPack
151 * with more space.
152 */
153 524 void ObjectPack::TransferBucket(const ObjectPack::BucketHandle handle,
154 ObjectPack *other) {
155 524 const MutexLockGuard mutex_guard(lock_);
156
1/2
✓ Branch 1 taken 524 times.
✗ Branch 2 not taken.
524 open_buckets_.erase(handle);
157
1/2
✓ Branch 1 taken 524 times.
✗ Branch 2 not taken.
524 other->open_buckets_.insert(handle);
158 524 }
159
160 1520774 unsigned char *ObjectPack::BucketContent(size_t idx) const {
161
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1520774 times.
1520774 assert(idx < buckets_.size());
162 1520774 return buckets_[idx]->content;
163 }
164
165 1797028 uint64_t ObjectPack::BucketSize(size_t idx) const {
166
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1797028 times.
1797028 assert(idx < buckets_.size());
167 1797028 return buckets_[idx]->size;
168 }
169
170 276254 const shash::Any &ObjectPack::BucketId(size_t idx) const {
171
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 276254 times.
276254 assert(idx < buckets_.size());
172 276254 return buckets_[idx]->id;
173 }
174
175 //------------------------------------------------------------------------------
176
177 /**
178 * Hash over the header. The hash algorithm needs to be provided by hash.
179 */
180 2930 void ObjectPackProducer::GetDigest(shash::Any *hash) {
181
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2930 times.
2930 assert(hash);
182 2930 shash::HashString(header_, hash);
183 2930 }
184
185 3054 ObjectPackProducer::ObjectPackProducer(ObjectPack *pack)
186 3054 : pack_(pack), big_file_(NULL), pos_(0), idx_(0), pos_in_bucket_(0) {
187 3054 const unsigned N = pack->GetNoObjects();
188 // rough guess, most likely a little too much
189
1/2
✓ Branch 1 taken 3054 times.
✗ Branch 2 not taken.
3054 header_.reserve(30 + N * (2 * shash::kMaxDigestSize + 5));
190
191
1/2
✓ Branch 2 taken 3054 times.
✗ Branch 3 not taken.
3054 InitializeHeader(2, N, pack->size(), &header_);
192
193
2/2
✓ Branch 0 taken 276254 times.
✓ Branch 1 taken 3054 times.
279308 for (unsigned i = 0; i < N; ++i) {
194
3/6
✓ Branch 2 taken 276254 times.
✗ Branch 3 not taken.
✓ Branch 7 taken 276254 times.
✗ Branch 8 not taken.
✓ Branch 10 taken 276254 times.
✗ Branch 11 not taken.
276254 AppendItemToHeader(ObjectPack::kCas, pack->BucketId(i).ToString(true),
195 pack->BucketSize(i), "", &header_);
196 }
197 3054 }
198
199 120 ObjectPackProducer::ObjectPackProducer(const shash::Any &id, FILE *big_file,
200 120 const std::string &file_name)
201 120 : pack_(NULL), big_file_(big_file), pos_(0), idx_(0), pos_in_bucket_(0) {
202 120 const int fd = fileno(big_file_);
203
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 120 times.
120 assert(fd >= 0);
204 platform_stat64 info;
205 120 const int retval = platform_fstat(fd, &info);
206
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 120 times.
120 assert(retval == 0);
207
208
1/2
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
120 InitializeHeader(2, 1, info.st_size, &header_);
209
210
2/4
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 120 times.
✗ Branch 5 not taken.
120 AppendItemToHeader(ObjectPack::kNamed, id.ToString(true), info.st_size,
211 file_name, &header_);
212
213
1/2
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
120 rewind(big_file);
214 120 }
215
216 /**
217 * Copies as many bytes as possible into buf. If the returned number of bytes
218 * is shorter than buf_size, everything has been produced.
219 */
220 1258690 unsigned ObjectPackProducer::ProduceNext(const unsigned buf_size,
221 unsigned char *buf) {
222 1258690 const unsigned remaining_in_header = (pos_ < header_.size())
223 13174 ? (header_.size() - pos_)
224
2/2
✓ Branch 0 taken 13174 times.
✓ Branch 1 taken 1245516 times.
1271864 : 0;
225 1258690 const unsigned nbytes_header = std::min(remaining_in_header, buf_size);
226
2/2
✓ Branch 0 taken 13174 times.
✓ Branch 1 taken 1245516 times.
1258690 if (nbytes_header) {
227 13174 memcpy(buf, header_.data() + pos_, nbytes_header);
228 13174 pos_ += nbytes_header;
229 }
230
231 1258690 unsigned remaining_in_buf = buf_size - nbytes_header;
232
2/2
✓ Branch 0 taken 10120 times.
✓ Branch 1 taken 1248570 times.
1258690 if (remaining_in_buf == 0)
233 10120 return nbytes_header;
234 1248570 unsigned nbytes_payload = 0;
235
236
2/2
✓ Branch 0 taken 760 times.
✓ Branch 1 taken 1247810 times.
1248570 if (big_file_) {
237
1/2
✓ Branch 1 taken 760 times.
✗ Branch 2 not taken.
760 const size_t nbytes = fread(buf + nbytes_header, 1, remaining_in_buf,
238 big_file_);
239 760 nbytes_payload = nbytes;
240 760 pos_ += nbytes_payload;
241
2/2
✓ Branch 1 taken 1247494 times.
✓ Branch 2 taken 316 times.
1247810 } else if (idx_ < pack_->GetNoObjects()) {
242 // Copy a few buckets more
243
6/6
✓ Branch 0 taken 1523668 times.
✓ Branch 1 taken 1244600 times.
✓ Branch 3 taken 1520774 times.
✓ Branch 4 taken 2894 times.
✓ Branch 5 taken 1520774 times.
✓ Branch 6 taken 1247494 times.
2768268 while ((remaining_in_buf) > 0 && (idx_ < pack_->GetNoObjects())) {
244 1520774 const unsigned remaining_in_bucket = pack_->BucketSize(idx_)
245 1520774 - pos_in_bucket_;
246 1520774 const unsigned nbytes = std::min(remaining_in_buf, remaining_in_bucket);
247 3041548 memcpy(buf + nbytes_header + nbytes_payload,
248 1520774 pack_->BucketContent(idx_) + pos_in_bucket_, nbytes);
249
250 1520774 pos_in_bucket_ += nbytes;
251 1520774 nbytes_payload += nbytes;
252 1520774 remaining_in_buf -= nbytes;
253
2/2
✓ Branch 0 taken 276254 times.
✓ Branch 1 taken 1244520 times.
1520774 if (nbytes == remaining_in_bucket) {
254 276254 pos_in_bucket_ = 0;
255 276254 idx_++;
256 }
257 }
258 }
259
260 1248570 return nbytes_header + nbytes_payload;
261 }
262
263 //------------------------------------------------------------------------------
264
265 2970 ObjectPackConsumer::ObjectPackConsumer(const shash::Any &expected_digest,
266 2970 const unsigned expected_header_size)
267 2970 : expected_digest_(expected_digest)
268 2970 , expected_header_size_(expected_header_size)
269 2970 , pos_(0)
270 2970 , idx_(0)
271 2970 , pos_in_object_(0)
272 2970 , pos_in_accu_(0)
273 2970 , state_(ObjectPackBuild::kStateContinue)
274 2970 , size_(0) {
275 // Upper limit of 100B per entry
276
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2970 times.
2970 if (expected_header_size > (100 * ObjectPack::kMaxObjects)) {
277 state_ = ObjectPackBuild::kStateHeaderTooBig;
278 return;
279 }
280
281
1/2
✓ Branch 1 taken 2970 times.
✗ Branch 2 not taken.
2970 raw_header_.reserve(expected_header_size);
282 }
283
284 /**
285 * At the end of the function, pos_ will have progressed by buf_size (unless
286 * the buffer contains trailing garbage bytes.
287 */
288 1256890 ObjectPackBuild::State ObjectPackConsumer::ConsumeNext(
289 const unsigned buf_size, const unsigned char *buf) {
290
2/2
✓ Branch 0 taken 2680 times.
✓ Branch 1 taken 1254210 times.
1256890 if (buf_size == 0)
291 2680 return state_;
292
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1254210 times.
1254210 if (state_ == ObjectPackBuild::kStateDone) {
293 state_ = ObjectPackBuild::kStateTrailingBytes;
294 return state_;
295 }
296
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1254210 times.
1254210 if (state_ != ObjectPackBuild::kStateContinue)
297 return state_;
298
299
2/2
✓ Branch 0 taken 9810 times.
✓ Branch 1 taken 1244400 times.
1254210 const unsigned remaining_in_header = (pos_ < expected_header_size_)
300 9810 ? (expected_header_size_ - pos_)
301 : 0;
302 1254210 const unsigned nbytes_header = std::min(remaining_in_header, buf_size);
303
2/2
✓ Branch 0 taken 9810 times.
✓ Branch 1 taken 1244400 times.
1254210 if (nbytes_header) {
304
2/4
✓ Branch 2 taken 9810 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 9810 times.
✗ Branch 6 not taken.
9810 raw_header_ += string(reinterpret_cast<const char *>(buf), nbytes_header);
305 9810 pos_ += nbytes_header;
306 }
307
308
2/2
✓ Branch 0 taken 6840 times.
✓ Branch 1 taken 1247370 times.
1254210 if (pos_ < expected_header_size_)
309 6840 return ObjectPackBuild::kStateContinue;
310
311 // This condition can only be true once through the lifetime of the
312 // Consumer.
313
3/4
✓ Branch 0 taken 2970 times.
✓ Branch 1 taken 1244400 times.
✓ Branch 2 taken 2970 times.
✗ Branch 3 not taken.
1247370 if (nbytes_header && (pos_ == expected_header_size_)) {
314
1/2
✓ Branch 1 taken 2970 times.
✗ Branch 2 not taken.
2970 shash::Any digest(expected_digest_.algorithm);
315
1/2
✓ Branch 1 taken 2970 times.
✗ Branch 2 not taken.
2970 shash::HashString(raw_header_, &digest);
316
2/4
✓ Branch 1 taken 2970 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 2970 times.
2970 if (digest != expected_digest_) {
317 state_ = ObjectPackBuild::kStateCorrupt;
318 80 return state_;
319 } else {
320
1/2
✓ Branch 1 taken 2970 times.
✗ Branch 2 not taken.
2970 const bool retval = ParseHeader();
321
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2970 times.
2970 if (!retval) {
322 state_ = ObjectPackBuild::kStateBadFormat;
323 return state_;
324 }
325 // We don't need the raw string anymore
326 2970 raw_header_.clear();
327 }
328
329 // Empty pack?
330
6/6
✓ Branch 0 taken 120 times.
✓ Branch 1 taken 2850 times.
✓ Branch 3 taken 80 times.
✓ Branch 4 taken 40 times.
✓ Branch 5 taken 80 times.
✓ Branch 6 taken 2890 times.
2970 if ((buf_size == nbytes_header) && (index_.size() == 0)) {
331 80 state_ = ObjectPackBuild::kStateDone;
332 80 return state_;
333 }
334 }
335
336 1247290 const unsigned remaining_in_buf = buf_size - nbytes_header;
337 1247290 const unsigned char *payload = buf + nbytes_header;
338
1/2
✓ Branch 1 taken 1247290 times.
✗ Branch 2 not taken.
1247290 return ConsumePayload(remaining_in_buf, payload);
339 }
340
341 /**
342 * Informs listeners for small complete objects. For large objects, buffers
343 * the
344 * input into reasonably sized chunks. buf can contain both a chunk of data
345 * that needs to be added to the consumer's accumulator and a bunch of
346 * complete small objects. We use the accumulator only if necessary to avoid
347 * unnecessary memory copies.
348 */
349 1247290 ObjectPackBuild::State ObjectPackConsumer::ConsumePayload(
350 const unsigned buf_size, const unsigned char *buf) {
351 1247290 uint64_t pos_in_buf = 0;
352 2949860 while ((idx_ < index_.size())
353
8/8
✓ Branch 0 taken 2946970 times.
✓ Branch 1 taken 2890 times.
✓ Branch 2 taken 1244440 times.
✓ Branch 3 taken 1702530 times.
✓ Branch 5 taken 40 times.
✓ Branch 6 taken 1244400 times.
✓ Branch 7 taken 1702570 times.
✓ Branch 8 taken 1247290 times.
2949860 && ((pos_in_buf < buf_size) || (index_[idx_].size == 0))) {
354 // Fill the accumulator or process next small object
355 uint64_t nbytes; // How many bytes are consumed in this iteration
356 1702570 const uint64_t remaining_in_buf = buf_size - pos_in_buf;
357 1702570 const uint64_t remaining_in_object = index_[idx_].size - pos_in_object_;
358 1702570 const bool is_small_rest = remaining_in_buf < kAccuSize;
359
360 // We use the accumulator if there is already something in or if we have a
361 // small piece of data of a larger object.
362 1702570 nbytes = std::min(remaining_in_object, remaining_in_buf);
363
2/2
✓ Branch 0 taken 1296530 times.
✓ Branch 1 taken 406040 times.
1702570 if ((pos_in_accu_ > 0)
364
4/4
✓ Branch 0 taken 1028000 times.
✓ Branch 1 taken 268530 times.
✓ Branch 2 taken 189720 times.
✓ Branch 3 taken 838280 times.
1296530 || ((remaining_in_buf < remaining_in_object) && is_small_rest)) {
365 595760 const uint64_t remaining_in_accu = kAccuSize - pos_in_accu_;
366 595760 nbytes = std::min(remaining_in_accu, nbytes);
367 595760 memcpy(accumulator_ + pos_in_accu_, buf + pos_in_buf, nbytes);
368 595760 pos_in_accu_ += nbytes;
369
4/4
✓ Branch 0 taken 413600 times.
✓ Branch 1 taken 182160 times.
✓ Branch 2 taken 7560 times.
✓ Branch 3 taken 406040 times.
595760 if ((pos_in_accu_ == kAccuSize) || (nbytes == remaining_in_object)) {
370
1/2
✓ Branch 1 taken 189720 times.
✗ Branch 2 not taken.
189720 NotifyListeners(ObjectPackBuild::Event(
371
1/2
✓ Branch 3 taken 189720 times.
✗ Branch 4 not taken.
189720 index_[idx_].id, index_[idx_].size, pos_in_accu_, accumulator_,
372 189720 index_[idx_].entry_type, index_[idx_].entry_name));
373 189720 pos_in_accu_ = 0;
374 }
375 595760 } else { // directly trigger listeners using buf
376
1/2
✓ Branch 1 taken 1106810 times.
✗ Branch 2 not taken.
1106810 NotifyListeners(ObjectPackBuild::Event(
377
1/2
✓ Branch 3 taken 1106810 times.
✗ Branch 4 not taken.
1106810 index_[idx_].id, index_[idx_].size, nbytes, buf + pos_in_buf,
378 1106810 index_[idx_].entry_type, index_[idx_].entry_name));
379 }
380
381 1702570 pos_in_buf += nbytes;
382 1702570 pos_in_object_ += nbytes;
383
2/2
✓ Branch 0 taken 276130 times.
✓ Branch 1 taken 1426440 times.
1702570 if (nbytes == remaining_in_object) {
384 276130 idx_++;
385 276130 pos_in_object_ = 0;
386 }
387 }
388
389 1247290 pos_ += buf_size;
390
391
2/2
✓ Branch 1 taken 2890 times.
✓ Branch 2 taken 1244400 times.
1247290 if (idx_ == index_.size())
392
1/2
✓ Branch 0 taken 2890 times.
✗ Branch 1 not taken.
2890 state_ = (pos_in_buf == buf_size) ? ObjectPackBuild::kStateDone
393 : ObjectPackBuild::kStateTrailingBytes;
394 else
395 1244400 state_ = ObjectPackBuild::kStateContinue;
396 1247290 return state_;
397 }
398
399 2970 bool ObjectPackConsumer::ParseHeader() {
400 2970 map<char, string> header;
401 const unsigned char *data = reinterpret_cast<const unsigned char *>(
402 2970 raw_header_.data());
403
1/2
✓ Branch 2 taken 2970 times.
✗ Branch 3 not taken.
2970 ParseKeyvalMem(data, raw_header_.size(), &header);
404
2/5
✓ Branch 2 taken 2970 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✓ Branch 6 taken 2970 times.
2970 if (header.find('V') == header.end())
405 return false;
406
3/7
✓ Branch 1 taken 2970 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 2970 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 2970 times.
2970 if (header['V'] != "2")
407 return false;
408
2/4
✓ Branch 1 taken 2970 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 2970 times.
✗ Branch 5 not taken.
2970 size_ = String2Uint64(header['S']);
409
2/4
✓ Branch 1 taken 2970 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 2970 times.
✗ Branch 5 not taken.
2970 const unsigned nobjects = String2Uint64(header['N']);
410
411
2/2
✓ Branch 0 taken 80 times.
✓ Branch 1 taken 2890 times.
2970 if (nobjects == 0)
412 80 return true;
413
414 // Build the object index
415 2890 const size_t separator_idx = raw_header_.find("--\n");
416
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2890 times.
2890 if (separator_idx == string::npos)
417 return false;
418 2890 unsigned index_idx = separator_idx + 3;
419
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2890 times.
2890 if (index_idx >= raw_header_.size())
420 return false;
421
422 2890 uint64_t sum_size = 0;
423 do {
424 276130 const unsigned remaining_in_header = raw_header_.size() - index_idx;
425 552260 const string line = GetLineMem(raw_header_.data() + index_idx,
426
1/2
✓ Branch 2 taken 276130 times.
✗ Branch 3 not taken.
276130 remaining_in_header);
427
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 276130 times.
276130 if (line == "")
428 break;
429
430
1/2
✓ Branch 1 taken 276130 times.
✗ Branch 2 not taken.
276130 IndexEntry entry;
431
2/4
✓ Branch 1 taken 276130 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 276130 times.
276130 if (!ParseItem(line, &entry, &sum_size)) {
432 break;
433 }
434
435
1/2
✓ Branch 1 taken 276130 times.
✗ Branch 2 not taken.
276130 index_.push_back(entry);
436 276130 index_idx += line.size() + 1;
437
4/6
✓ Branch 1 taken 276130 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 276130 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 273240 times.
✓ Branch 8 taken 2890 times.
552260 } while (index_idx < raw_header_.size());
438
439
2/4
✓ Branch 1 taken 2890 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 2890 times.
✗ Branch 4 not taken.
2890 return (nobjects == index_.size()) && (size_ == sum_size);
440 2970 }
441
442 276130 bool ObjectPackConsumer::ParseItem(const std::string &line,
443 ObjectPackConsumer::IndexEntry *entry,
444 uint64_t *sum_size) {
445
2/4
✓ Branch 0 taken 276130 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 276130 times.
276130 if (!entry || !sum_size) {
446 return false;
447 }
448
449
2/2
✓ Branch 1 taken 276090 times.
✓ Branch 2 taken 40 times.
276130 if (line[0] == 'C') { // CAS blob
450 276090 const ObjectPack::BucketContentType entry_type = ObjectPack::kCas;
451
452 // We could use SplitString but we can have many lines so we do something
453 // more efficient here
454 276090 const size_t separator = line.find(' ', 2);
455
3/6
✓ Branch 0 taken 276090 times.
✗ Branch 1 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 276090 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 276090 times.
276090 if ((separator == string::npos) || (separator == (line.size() - 1))) {
456 return false;
457 }
458
459
2/4
✓ Branch 1 taken 276090 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 276090 times.
✗ Branch 5 not taken.
276090 const uint64_t size = String2Uint64(line.substr(separator + 1));
460 276090 *sum_size += size;
461
462 // Warning do not construct a HexPtr with an rvalue!
463 // The constructor takes the address of its argument.
464
1/2
✓ Branch 1 taken 276090 times.
✗ Branch 2 not taken.
276090 const std::string hash_string = line.substr(2, separator - 2);
465 276090 const shash::HexPtr hex_ptr(hash_string);
466
467
1/2
✓ Branch 1 taken 276090 times.
✗ Branch 2 not taken.
276090 entry->id = shash::MkFromSuffixedHexPtr(hex_ptr);
468 276090 entry->size = size;
469 276090 entry->entry_type = entry_type;
470
1/2
✓ Branch 1 taken 276090 times.
✗ Branch 2 not taken.
276090 entry->entry_name = "";
471
1/2
✓ Branch 2 taken 40 times.
✗ Branch 3 not taken.
276130 } else if (line[0] == 'N') { // Named file
472 40 const ObjectPack::BucketContentType entry_type = ObjectPack::kNamed;
473
474 // First separator, before the size field
475 40 const size_t separator1 = line.find(' ', 2);
476
3/6
✓ Branch 0 taken 40 times.
✗ Branch 1 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 40 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 40 times.
40 if ((separator1 == string::npos) || (separator1 == (line.size() - 1))) {
477 return false;
478 }
479
480 // Second separator, before the name field
481 40 const size_t separator2 = line.find(' ', separator1 + 1);
482
1/2
✓ Branch 0 taken 40 times.
✗ Branch 1 not taken.
40 if ((separator1 == 0) || (separator1 == string::npos)
483
3/6
✓ Branch 0 taken 40 times.
✗ Branch 1 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 40 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 40 times.
80 || (separator1 == (line.size() - 1))) {
484 return false;
485 }
486
487
1/2
✓ Branch 1 taken 40 times.
✗ Branch 2 not taken.
40 const uint64_t size = String2Uint64(
488
1/2
✓ Branch 1 taken 40 times.
✗ Branch 2 not taken.
80 line.substr(separator1 + 1, separator2 - separator1 - 1));
489
490 40 std::string name;
491
3/7
✓ Branch 1 taken 40 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 40 times.
✗ Branch 5 not taken.
✗ Branch 7 not taken.
✓ Branch 8 taken 40 times.
40 if (!Debase64(line.substr(separator2 + 1), &name)) {
492 return false;
493 }
494
495 40 *sum_size += size;
496
497 // Warning do not construct a HexPtr with an rvalue!
498 // The constructor takes the address of its argument.
499
1/2
✓ Branch 1 taken 40 times.
✗ Branch 2 not taken.
40 const std::string hash_string = line.substr(2, separator1 - 2);
500 40 const shash::HexPtr hex_ptr(hash_string);
501
502
1/2
✓ Branch 1 taken 40 times.
✗ Branch 2 not taken.
40 entry->id = shash::MkFromSuffixedHexPtr(hex_ptr);
503 40 entry->size = size;
504 40 entry->entry_type = entry_type;
505
1/2
✓ Branch 1 taken 40 times.
✗ Branch 2 not taken.
40 entry->entry_name = name;
506
1/2
✓ Branch 2 taken 40 times.
✗ Branch 3 not taken.
40 } else { // Error
507 return false;
508 }
509
510 276130 return true;
511 }
512