GCC Code Coverage Report


Directory: cvmfs/
File: cvmfs/ingestion/task_chunk.cc
Date: 2026-02-22 02:35:58
Exec Total Coverage
Lines: 89 91 97.8%
Branches: 91 149 61.1%

Line Branch Exec Source
1 /**
2 * This file is part of the CernVM File System.
3 */
4
5 #include "ingestion/task_chunk.h"
6
7 #include <unistd.h>
8
9 #include <cassert>
10
11 #include "util/exception.h"
12
13 /**
14 * The tags from the read stage in the pipeline and the tags given in the
15 * chunking stage can safely overlap. Nevertheless, debugging might be easier
16 * if they don't. So let's start with a high number.
17 */
18 atomic_int64 TaskChunk::tag_seq_ = 2 << 28;
19
20 /**
21 * Consumes the stream of input blocks and produces new output blocks according
22 * to cut marks. The output blocks correspond to chunks.
23 */
24 15139440 void TaskChunk::Process(BlockItem *input_block) {
25 15139440 FileItem *file_item = input_block->file_item();
26 15132528 const int64_t input_tag = input_block->tag();
27
2/4
✓ Branch 0 taken 15147702 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 15147756 times.
✗ Branch 3 not taken.
15146865 assert((file_item != NULL) && (input_tag >= 0));
28
29 15147756 ChunkInfo chunk_info;
30 // Do we see blocks of the file for the first time?
31
3/4
✓ Branch 1 taken 15190443 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 6738380 times.
✓ Branch 4 taken 8452063 times.
15144003 if (!tag_map_.Lookup(input_tag, &chunk_info)) {
32 // We may have only regular chunks, only a bulk chunk, or both. We may
33 // end up in a situation where we produced only a single non-bulk chunk.
34 // This needs to be fixed up later in the pipeline by the write task.
35
2/2
✓ Branch 1 taken 421 times.
✓ Branch 2 taken 6737176 times.
6738380 if (file_item->may_have_chunks()) {
36
2/4
✓ Branch 1 taken 421 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 421 times.
✗ Branch 5 not taken.
421 chunk_info.next_chunk = new ChunkItem(file_item, 0);
37 421 chunk_info.output_tag_chunk = atomic_xadd64(&tag_seq_, 1);
38
2/2
✓ Branch 1 taken 301 times.
✓ Branch 2 taken 120 times.
421 if (file_item->has_legacy_bulk_chunk()) {
39
2/4
✓ Branch 1 taken 301 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 301 times.
✗ Branch 5 not taken.
301 chunk_info.bulk_chunk = new ChunkItem(file_item, 0);
40 }
41 } else {
42
2/4
✓ Branch 1 taken 6740578 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 6739687 times.
✗ Branch 5 not taken.
6737176 chunk_info.bulk_chunk = new ChunkItem(file_item, 0);
43 }
44
45
2/2
✓ Branch 0 taken 6740069 times.
✓ Branch 1 taken 39 times.
6740108 if (chunk_info.bulk_chunk != NULL) {
46
1/2
✓ Branch 1 taken 6734777 times.
✗ Branch 2 not taken.
6740069 chunk_info.bulk_chunk->MakeBulkChunk();
47 6734777 chunk_info.bulk_chunk->set_size(file_item->size());
48 6732077 chunk_info.output_tag_bulk = atomic_xadd64(&tag_seq_, 1);
49 }
50
1/2
✓ Branch 1 taken 6735383 times.
✗ Branch 2 not taken.
6749963 tag_map_.Insert(input_tag, chunk_info);
51 }
52
3/4
✓ Branch 0 taken 317528 times.
✓ Branch 1 taken 14869918 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 317528 times.
15187446 assert((chunk_info.bulk_chunk != NULL) || (chunk_info.next_chunk != NULL));
53
54 15187446 BlockItem *output_block_bulk = NULL;
55
2/2
✓ Branch 0 taken 14890870 times.
✓ Branch 1 taken 296576 times.
15187446 if (chunk_info.bulk_chunk != NULL) {
56
2/4
✓ Branch 1 taken 14897620 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 14869918 times.
✗ Branch 5 not taken.
14890870 output_block_bulk = new BlockItem(chunk_info.output_tag_bulk, allocator_);
57
1/2
✓ Branch 1 taken 14871295 times.
✗ Branch 2 not taken.
14869918 output_block_bulk->SetFileItem(file_item);
58
1/2
✓ Branch 1 taken 14875183 times.
✗ Branch 2 not taken.
14871295 output_block_bulk->SetChunkItem(chunk_info.bulk_chunk);
59 }
60
61 15171759 ChunkDetector *chunk_detector = file_item->chunk_detector();
62
2/3
✓ Branch 1 taken 6729146 times.
✓ Branch 2 taken 8484328 times.
✗ Branch 3 not taken.
15190983 switch (input_block->type()) {
63 6729146 case BlockItem::kBlockStop:
64 // End of the file, no more new chunks
65 6729146 file_item->set_is_fully_chunked();
66
2/2
✓ Branch 0 taken 6745550 times.
✓ Branch 1 taken 66 times.
6745616 if (output_block_bulk)
67
1/2
✓ Branch 1 taken 6735182 times.
✗ Branch 2 not taken.
6745550 output_block_bulk->MakeStop();
68
2/2
✓ Branch 0 taken 421 times.
✓ Branch 1 taken 6734827 times.
6735248 if (chunk_info.next_chunk != NULL) {
69
1/2
✗ Branch 2 not taken.
✓ Branch 3 taken 421 times.
421 assert(file_item->size() >= chunk_info.next_chunk->offset());
70 842 chunk_info.next_chunk->set_size(file_item->size()
71 421 - chunk_info.next_chunk->offset());
72 BlockItem *block_stop = new BlockItem(chunk_info.output_tag_chunk,
73
2/4
✓ Branch 1 taken 421 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 421 times.
✗ Branch 5 not taken.
421 allocator_);
74
1/2
✓ Branch 1 taken 421 times.
✗ Branch 2 not taken.
421 block_stop->SetFileItem(file_item);
75
1/2
✓ Branch 1 taken 421 times.
✗ Branch 2 not taken.
421 block_stop->SetChunkItem(chunk_info.next_chunk);
76
1/2
✓ Branch 1 taken 421 times.
✗ Branch 2 not taken.
421 block_stop->MakeStop();
77
1/2
✓ Branch 1 taken 421 times.
✗ Branch 2 not taken.
421 tubes_out_->Dispatch(block_stop);
78 }
79
1/2
✓ Branch 1 taken 6726014 times.
✗ Branch 2 not taken.
6735248 tag_map_.Erase(input_tag);
80 6726014 break;
81
82 8484328 case BlockItem::kBlockData:
83
2/2
✓ Branch 0 taken 8167379 times.
✓ Branch 1 taken 316949 times.
8484328 if (output_block_bulk) {
84
2/2
✓ Branch 0 taken 732078 times.
✓ Branch 1 taken 7435301 times.
8167379 if (chunk_info.next_chunk != NULL) {
85 // Reserve zero-copy for the regular chunk
86
1/2
✓ Branch 3 taken 733320 times.
✗ Branch 4 not taken.
732078 output_block_bulk->MakeDataCopy(input_block->data(),
87 input_block->size());
88 } else {
89 // There is only the bulk chunk, zero copy
90
1/2
✓ Branch 1 taken 7436192 times.
✗ Branch 2 not taken.
7435301 output_block_bulk->MakeDataMove(input_block);
91 }
92 }
93
94
2/2
✓ Branch 0 taken 1049999 times.
✓ Branch 1 taken 7436462 times.
8486461 if (chunk_info.next_chunk != NULL) {
95 1049999 unsigned offset_in_block = 0;
96 1049999 uint64_t cut_mark = 0;
97
3/4
✓ Branch 1 taken 1215668 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 165777 times.
✓ Branch 4 taken 1049891 times.
1215776 while ((cut_mark = chunk_detector->FindNextCutMark(input_block)) != 0) {
98
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 165777 times.
165777 assert(cut_mark >= chunk_info.offset + offset_in_block);
99 165777 const uint64_t cut_mark_in_block = cut_mark - chunk_info.offset;
100
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 165777 times.
165777 assert(cut_mark_in_block >= offset_in_block);
101
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 165777 times.
165777 assert(cut_mark_in_block <= input_block->size());
102 165777 const unsigned tail_size = cut_mark_in_block - offset_in_block;
103
104
1/2
✓ Branch 0 taken 165777 times.
✗ Branch 1 not taken.
165777 if (tail_size > 0) {
105 BlockItem *block_tail = new BlockItem(chunk_info.output_tag_chunk,
106
2/4
✓ Branch 1 taken 165777 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 165777 times.
✗ Branch 5 not taken.
165777 allocator_);
107
1/2
✓ Branch 1 taken 165777 times.
✗ Branch 2 not taken.
165777 block_tail->SetFileItem(file_item);
108
1/2
✓ Branch 1 taken 165777 times.
✗ Branch 2 not taken.
165777 block_tail->SetChunkItem(chunk_info.next_chunk);
109
1/2
✓ Branch 2 taken 165777 times.
✗ Branch 3 not taken.
165777 block_tail->MakeDataCopy(input_block->data() + offset_in_block,
110 tail_size);
111
1/2
✓ Branch 1 taken 165777 times.
✗ Branch 2 not taken.
165777 tubes_out_->Dispatch(block_tail);
112 }
113
114
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 165777 times.
165777 assert(cut_mark >= chunk_info.next_chunk->offset());
115 // If the cut mark happens to at the end of file, let the final
116 // incoming stop block schedule dispatch of the chunk stop block
117
2/2
✓ Branch 1 taken 165746 times.
✓ Branch 2 taken 31 times.
165777 if (cut_mark < file_item->size()) {
118 165746 chunk_info.next_chunk->set_size(cut_mark
119 165746 - chunk_info.next_chunk->offset());
120 BlockItem *block_stop = new BlockItem(chunk_info.output_tag_chunk,
121
2/4
✓ Branch 1 taken 165746 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 165746 times.
✗ Branch 5 not taken.
165746 allocator_);
122
1/2
✓ Branch 1 taken 165746 times.
✗ Branch 2 not taken.
165746 block_stop->SetFileItem(file_item);
123
1/2
✓ Branch 1 taken 165746 times.
✗ Branch 2 not taken.
165746 block_stop->SetChunkItem(chunk_info.next_chunk);
124
1/2
✓ Branch 1 taken 165746 times.
✗ Branch 2 not taken.
165746 block_stop->MakeStop();
125
1/2
✓ Branch 1 taken 165746 times.
✗ Branch 2 not taken.
165746 tubes_out_->Dispatch(block_stop);
126
127
2/4
✓ Branch 1 taken 165746 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 165746 times.
✗ Branch 5 not taken.
165746 chunk_info.next_chunk = new ChunkItem(file_item, cut_mark);
128 165746 chunk_info.output_tag_chunk = atomic_xadd64(&tag_seq_, 1);
129 }
130 165777 offset_in_block = cut_mark_in_block;
131 }
132 1049891 chunk_info.offset += offset_in_block;
133
134
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1049864 times.
1049891 assert(input_block->size() >= offset_in_block);
135 1049864 const unsigned tail_size = input_block->size() - offset_in_block;
136
2/2
✓ Branch 0 taken 1048371 times.
✓ Branch 1 taken 1493 times.
1049864 if (tail_size > 0) {
137 BlockItem *block_tail = new BlockItem(chunk_info.output_tag_chunk,
138
2/4
✓ Branch 1 taken 1048290 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 1048074 times.
✗ Branch 5 not taken.
1048371 allocator_);
139
1/2
✓ Branch 1 taken 1047993 times.
✗ Branch 2 not taken.
1048074 block_tail->SetFileItem(file_item);
140
1/2
✓ Branch 1 taken 1048020 times.
✗ Branch 2 not taken.
1047993 block_tail->SetChunkItem(chunk_info.next_chunk);
141
1/2
✓ Branch 2 taken 1048452 times.
✗ Branch 3 not taken.
1048020 block_tail->MakeDataCopy(input_block->data() + offset_in_block,
142 tail_size);
143
1/2
✓ Branch 1 taken 1048209 times.
✗ Branch 2 not taken.
1048452 tubes_out_->Dispatch(block_tail);
144 1048209 chunk_info.offset += tail_size;
145 }
146
147 // Delete data from incoming block
148
1/2
✓ Branch 1 taken 1049972 times.
✗ Branch 2 not taken.
1049702 input_block->Reset();
149 }
150
151
1/2
✓ Branch 1 taken 8496667 times.
✗ Branch 2 not taken.
8486434 tag_map_.Insert(input_tag, chunk_info);
152 8496667 break;
153
154 default:
155 PANIC(NULL);
156 }
157
158
2/2
✓ Branch 0 taken 15201108 times.
✓ Branch 1 taken 21573 times.
15222681 delete input_block;
159
2/2
✓ Branch 0 taken 14920030 times.
✓ Branch 1 taken 317528 times.
15237558 if (output_block_bulk)
160
1/2
✓ Branch 1 taken 14852989 times.
✗ Branch 2 not taken.
14920030 tubes_out_->Dispatch(output_block_bulk);
161 15170517 }
162