| Directory: | cvmfs/ |
|---|---|
| File: | cvmfs/ingestion/task_read.cc |
| Date: | 2026-02-22 02:35:58 |
| Exec | Total | Coverage | |
|---|---|---|---|
| Lines: | 36 | 40 | 90.0% |
| Branches: | 37 | 66 | 56.1% |
| 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 | 6750017 | void TaskRead::Process(FileItem *item) { | |
| 25 |
1/2✓ Branch 1 taken 6751097 times.
✗ Branch 2 not taken.
|
6750017 | BackoffThrottle throttle(kThrottleInitMs, kThrottleMaxMs, kThrottleResetMs); |
| 26 |
6/6✓ Branch 0 taken 6751031 times.
✓ Branch 1 taken 66 times.
✓ Branch 3 taken 31 times.
✓ Branch 4 taken 6750892 times.
✓ Branch 5 taken 31 times.
✓ Branch 6 taken 6750958 times.
|
6751097 | if ((high_watermark_ > 0) && (BlockItem::managed_bytes() > high_watermark_)) { |
| 27 | 31 | atomic_inc64(&n_block_); | |
| 28 | do { | ||
| 29 |
1/2✓ Branch 1 taken 62 times.
✗ Branch 2 not taken.
|
62 | throttle.Throttle(); |
| 30 |
2/2✓ Branch 1 taken 31 times.
✓ Branch 2 taken 31 times.
|
62 | } while (BlockItem::managed_bytes() > low_watermark_); |
| 31 | } | ||
| 32 | |||
| 33 |
2/4✓ Branch 1 taken 6749990 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 6749990 times.
|
6750989 | 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 6749342 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 6749342 times.
|
6749990 | if (item->GetSize(&size) == false) { |
| 38 | ✗ | PANIC(kLogStderr, "failed to fstat %s (%d)", item->path().c_str(), errno); | |
| 39 | } | ||
| 40 | 6749342 | item->set_size(size); | |
| 41 | |||
| 42 |
2/2✓ Branch 1 taken 6747274 times.
✓ Branch 2 taken 1393 times.
|
6748856 | if (item->may_have_chunks()) { |
| 43 | 13493711 | item->set_may_have_chunks( | |
| 44 |
1/2✓ Branch 3 taken 6746437 times.
✗ Branch 4 not taken.
|
6747274 | item->chunk_detector()->MightFindChunks(item->size())); |
| 45 | } | ||
| 46 | |||
| 47 | unsigned char *buffer[kBlockSize]; | ||
| 48 | 6747992 | const uint64_t tag = atomic_xadd64(&tag_seq_, 1); | |
| 49 | 6751691 | ssize_t nbytes = -1; | |
| 50 | 6751691 | unsigned cnt = 0; | |
| 51 | do { | ||
| 52 |
1/2✓ Branch 1 taken 14933131 times.
✗ Branch 2 not taken.
|
14920927 | nbytes = item->Read(buffer, kBlockSize); |
| 53 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 14933131 times.
|
14933131 | if (nbytes < 0) { |
| 54 | ✗ | PANIC(kLogStderr, "failed to read %s (%d)", item->path().c_str(), errno); | |
| 55 | } | ||
| 56 | |||
| 57 |
2/4✓ Branch 1 taken 14930917 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 14898085 times.
✗ Branch 5 not taken.
|
14933131 | BlockItem *block_item = new BlockItem(tag, allocator_); |
| 58 |
1/2✓ Branch 1 taken 14894737 times.
✗ Branch 2 not taken.
|
14898085 | block_item->SetFileItem(item); |
| 59 |
2/2✓ Branch 0 taken 6741431 times.
✓ Branch 1 taken 8153306 times.
|
14894737 | if (nbytes == 0) { |
| 60 |
1/2✓ Branch 1 taken 6742187 times.
✗ Branch 2 not taken.
|
6741431 | item->Close(); |
| 61 |
1/2✓ Branch 1 taken 6741242 times.
✗ Branch 2 not taken.
|
6742187 | block_item->MakeStop(); |
| 62 | } else { | ||
| 63 |
1/2✓ Branch 1 taken 8202095 times.
✗ Branch 2 not taken.
|
8153306 | block_item->MakeDataCopy(reinterpret_cast<unsigned char *>(buffer), |
| 64 | nbytes); | ||
| 65 | } | ||
| 66 |
1/2✓ Branch 1 taken 14909020 times.
✗ Branch 2 not taken.
|
14943337 | tubes_out_->Dispatch(block_item); |
| 67 | |||
| 68 | 14909020 | cnt++; | |
| 69 |
2/2✓ Branch 0 taken 45576 times.
✓ Branch 1 taken 14863444 times.
|
14909020 | if ((cnt % 32) == 0) { |
| 70 | 91152 | if ((high_watermark_ > 0) | |
| 71 |
3/6✓ Branch 0 taken 45576 times.
✗ Branch 1 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 45576 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 45576 times.
|
45576 | && (BlockItem::managed_bytes() > high_watermark_)) { |
| 72 | ✗ | throttle.Throttle(); | |
| 73 | } | ||
| 74 | } | ||
| 75 |
2/2✓ Branch 0 taken 8169236 times.
✓ Branch 1 taken 6739784 times.
|
14909020 | } while (nbytes > 0); |
| 76 | 6739784 | } | |
| 77 | |||
| 78 | |||
| 79 | 71903 | void TaskRead::SetWatermarks(uint64_t low, uint64_t high) { | |
| 80 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 71903 times.
|
71903 | assert(high > low); |
| 81 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 71903 times.
|
71903 | assert(low > 0); |
| 82 | 71903 | low_watermark_ = low; | |
| 83 | 71903 | high_watermark_ = high; | |
| 84 | 71903 | } | |
| 85 |