Directory: | cvmfs/ |
---|---|
File: | cvmfs/ingestion/task_read.cc |
Date: | 2025-04-20 02:34:28 |
Exec | Total | Coverage | |
---|---|---|---|
Lines: | 36 | 40 | 90.0% |
Branches: | 36 | 66 | 54.5% |
Line | Branch | Exec | Source |
---|---|---|---|
1 | /** | ||
2 | * This file is part of the CernVM File System. | ||
3 | */ | ||
4 | |||
5 | #include "ingestion/task_read.h" | ||
6 | |||
7 | #include <errno.h> | ||
8 | #include <fcntl.h> | ||
9 | #include <unistd.h> | ||
10 | |||
11 | #include <cstring> | ||
12 | |||
13 | #include "backoff.h" | ||
14 | #include "util/exception.h" | ||
15 | #include "util/logging.h" | ||
16 | #include "util/platform.h" | ||
17 | #include "util/posix.h" | ||
18 | #include "util/smalloc.h" | ||
19 | |||
20 | |||
21 | atomic_int64 TaskRead::tag_seq_ = 0; | ||
22 | |||
23 | |||
24 | 250023 | void TaskRead::Process(FileItem *item) { | |
25 |
1/2✓ Branch 1 taken 249986 times.
✗ Branch 2 not taken.
|
250023 | BackoffThrottle throttle(kThrottleInitMs, kThrottleMaxMs, kThrottleResetMs); |
26 |
5/6✓ Branch 0 taken 249986 times.
✗ Branch 1 not taken.
✓ Branch 3 taken 1 times.
✓ Branch 4 taken 250011 times.
✓ Branch 5 taken 1 times.
✓ Branch 6 taken 250011 times.
|
249986 | if ((high_watermark_ > 0) && (BlockItem::managed_bytes() > high_watermark_)) { |
27 | 1 | atomic_inc64(&n_block_); | |
28 | do { | ||
29 |
1/2✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
|
2 | throttle.Throttle(); |
30 |
2/2✓ Branch 1 taken 1 times.
✓ Branch 2 taken 1 times.
|
2 | } while (BlockItem::managed_bytes() > low_watermark_); |
31 | } | ||
32 | |||
33 |
2/4✓ Branch 1 taken 249931 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 249931 times.
|
250012 | if (item->Open() == false) { |
34 | ✗ | PANIC(kLogStderr, "failed to open %s (%d)", item->path().c_str(), errno); | |
35 | } | ||
36 | uint64_t size; | ||
37 |
2/4✓ Branch 1 taken 249952 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 249952 times.
|
249931 | if (item->GetSize(&size) == false) { |
38 | ✗ | PANIC(kLogStderr, "failed to fstat %s (%d)", item->path().c_str(), errno); | |
39 | } | ||
40 | 249952 | item->set_size(size); | |
41 | |||
42 |
2/2✓ Branch 1 taken 249841 times.
✓ Branch 2 taken 63 times.
|
249906 | if (item->may_have_chunks()) { |
43 | 499681 | item->set_may_have_chunks( | |
44 |
1/2✓ Branch 3 taken 249840 times.
✗ Branch 4 not taken.
|
249841 | item->chunk_detector()->MightFindChunks(item->size())); |
45 | } | ||
46 | |||
47 | unsigned char *buffer[kBlockSize]; | ||
48 | 249880 | uint64_t tag = atomic_xadd64(&tag_seq_, 1); | |
49 | 250058 | ssize_t nbytes = -1; | |
50 | 250058 | unsigned cnt = 0; | |
51 | do { | ||
52 |
1/2✓ Branch 1 taken 553341 times.
✗ Branch 2 not taken.
|
553033 | nbytes = item->Read(buffer, kBlockSize); |
53 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 553341 times.
|
553341 | if (nbytes < 0) { |
54 | ✗ | PANIC(kLogStderr, "failed to read %s (%d)", item->path().c_str(), errno); | |
55 | } | ||
56 | |||
57 |
2/4✓ Branch 1 taken 553155 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 552306 times.
✗ Branch 5 not taken.
|
553341 | BlockItem *block_item = new BlockItem(tag, allocator_); |
58 |
1/2✓ Branch 1 taken 552159 times.
✗ Branch 2 not taken.
|
552306 | block_item->SetFileItem(item); |
59 |
2/2✓ Branch 0 taken 249688 times.
✓ Branch 1 taken 302471 times.
|
552159 | if (nbytes == 0) { |
60 |
1/2✓ Branch 1 taken 249694 times.
✗ Branch 2 not taken.
|
249688 | item->Close(); |
61 |
1/2✓ Branch 1 taken 249679 times.
✗ Branch 2 not taken.
|
249694 | block_item->MakeStop(); |
62 | } else { | ||
63 |
1/2✓ Branch 1 taken 303898 times.
✗ Branch 2 not taken.
|
302471 | block_item->MakeDataCopy(reinterpret_cast<unsigned char *>(buffer), |
64 | nbytes); | ||
65 | } | ||
66 |
1/2✓ Branch 1 taken 552709 times.
✗ Branch 2 not taken.
|
553577 | tubes_out_->Dispatch(block_item); |
67 | |||
68 | 552709 | cnt++; | |
69 |
2/2✓ Branch 0 taken 1688 times.
✓ Branch 1 taken 551021 times.
|
552709 | if ((cnt % 32) == 0) { |
70 |
2/4✓ Branch 0 taken 1688 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 1688 times.
|
3376 | if ((high_watermark_ > 0) && |
71 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 1688 times.
|
1688 | (BlockItem::managed_bytes() > high_watermark_)) |
72 | { | ||
73 | ✗ | throttle.Throttle(); | |
74 | } | ||
75 | } | ||
76 |
2/2✓ Branch 0 taken 302975 times.
✓ Branch 1 taken 249734 times.
|
552709 | } while (nbytes > 0); |
77 | 249734 | } | |
78 | |||
79 | |||
80 | 2945 | void TaskRead::SetWatermarks(uint64_t low, uint64_t high) { | |
81 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 2945 times.
|
2945 | assert(high > low); |
82 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 2945 times.
|
2945 | assert(low > 0); |
83 | 2945 | low_watermark_ = low; | |
84 | 2945 | high_watermark_ = high; | |
85 | 2945 | } | |
86 |