GCC Code Coverage Report


Directory: cvmfs/
File: cvmfs/ingestion/task_hash.cc
Date: 2025-07-27 02:42:09
Exec Total Coverage
Lines: 12 14 85.7%
Branches: 3 5 60.0%

Line Branch Exec Source
1 /**
2 * This file is part of the CernVM File System.
3 */
4
5
6 #include "task_hash.h"
7
8 #include <cstdlib>
9
10 #include "crypto/hash.h"
11 #include "util/exception.h"
12
13
14 10080141 void TaskHash::Process(BlockItem *input_block) {
15 10080141 ChunkItem *chunk = input_block->chunk_item();
16
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 10072669 times.
10072669 assert(chunk != NULL);
17
18
2/3
✓ Branch 1 taken 6150781 times.
✓ Branch 2 taken 3980032 times.
✗ Branch 3 not taken.
10072669 switch (input_block->type()) {
19 6150781 case BlockItem::kBlockData:
20 6150781 shash::Update(input_block->data(), input_block->size(),
21 chunk->hash_ctx());
22 6173133 break;
23 3980032 case BlockItem::kBlockStop:
24 3980032 shash::Final(chunk->hash_ctx(), chunk->hash_ptr());
25 4000992 break;
26 default:
27 PANIC(NULL);
28 }
29
30 10174125 tubes_out_->Dispatch(input_block);
31 10099101 }
32