Skip to content

Commit ddfc5df

Browse files
authored
Add skip_bytes functionality to OTA Provider and BDX downloader class (#36357)
1 parent 2e09ccc commit ddfc5df

File tree

3 files changed

+30
-7
lines changed

3 files changed

+30
-7
lines changed

examples/ota-provider-app/ota-provider-common/BdxOtaSender.cpp

+20-6
Original file line numberDiff line numberDiff line change
@@ -124,16 +124,24 @@ void BdxOtaSender::HandleTransferSessionOutput(TransferSession::OutputEvent & ev
124124

125125
break;
126126
}
127-
case TransferSession::OutputEventType::kQueryReceived: {
127+
case TransferSession::OutputEventType::kQueryReceived:
128+
case TransferSession::OutputEventType::kQueryWithSkipReceived: {
128129
TransferSession::BlockData blockData;
129130
uint16_t blockSize = mTransfer.GetTransferBlockSize();
130131
uint16_t bytesToRead = blockSize;
132+
uint64_t bytesToSkip = 0;
133+
134+
if (event.EventType == TransferSession::OutputEventType::kQueryWithSkipReceived)
135+
{
136+
bytesToSkip = event.bytesToSkip.BytesToSkip;
137+
}
138+
uint64_t seekOffset = mNumBytesSent + bytesToSkip;
131139

132140
// TODO: This should be a utility function in TransferSession
133-
if (mTransfer.GetTransferLength() > 0 && mNumBytesSent + blockSize > mTransfer.GetTransferLength())
141+
if ((mTransfer.GetTransferLength() > 0) && ((seekOffset + blockSize) > mTransfer.GetTransferLength()))
134142
{
135143
// cast should be safe because of condition above
136-
bytesToRead = static_cast<uint16_t>(mTransfer.GetTransferLength() - mNumBytesSent);
144+
bytesToRead = static_cast<uint16_t>(mTransfer.GetTransferLength() - seekOffset);
137145
}
138146

139147
chip::System::PacketBufferHandle blockBuf = chip::System::PacketBufferHandle::New(bytesToRead);
@@ -152,7 +160,13 @@ void BdxOtaSender::HandleTransferSessionOutput(TransferSession::OutputEvent & ev
152160
return;
153161
}
154162

155-
otaFile.seekg(mNumBytesSent);
163+
if (seekOffset > static_cast<uint64_t>(std::numeric_limits<std::streamoff>::max()))
164+
{
165+
ChipLogError(BDX, "Seek offset too large");
166+
mTransfer.AbortTransfer(StatusCode::kLengthTooLarge);
167+
return;
168+
}
169+
otaFile.seekg(static_cast<std::streamoff>(seekOffset));
156170
otaFile.read(reinterpret_cast<char *>(blockBuf->Start()), bytesToRead);
157171
if (!(otaFile.good() || otaFile.eof()))
158172
{
@@ -164,8 +178,8 @@ void BdxOtaSender::HandleTransferSessionOutput(TransferSession::OutputEvent & ev
164178
blockData.Data = blockBuf->Start();
165179
blockData.Length = static_cast<size_t>(otaFile.gcount());
166180
blockData.IsEof = (blockData.Length < blockSize) ||
167-
(mNumBytesSent + static_cast<uint64_t>(blockData.Length) == mTransfer.GetTransferLength() || (otaFile.peek() == EOF));
168-
mNumBytesSent = static_cast<uint32_t>(mNumBytesSent + blockData.Length);
181+
(seekOffset + static_cast<uint64_t>(blockData.Length) == mTransfer.GetTransferLength() || (otaFile.peek() == EOF));
182+
mNumBytesSent = static_cast<uint32_t>(seekOffset + blockData.Length);
169183
otaFile.close();
170184

171185
err = mTransfer.PrepareBlock(blockData);

src/app/clusters/ota-requestor/BDXDownloader.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,15 @@ CHIP_ERROR BDXDownloader::FetchNextData()
159159
return CHIP_NO_ERROR;
160160
}
161161

162+
CHIP_ERROR BDXDownloader::SkipData(uint32_t numBytes)
163+
{
164+
VerifyOrReturnError(mState == State::kInProgress, CHIP_ERROR_INCORRECT_STATE);
165+
ReturnErrorOnFailure(mBdxTransfer.PrepareBlockQueryWithSkip(numBytes));
166+
PollTransferSession();
167+
168+
return CHIP_NO_ERROR;
169+
}
170+
162171
void BDXDownloader::OnDownloadTimeout()
163172
{
164173
Reset();

src/app/clusters/ota-requestor/BDXDownloader.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class BDXDownloader : public chip::OTADownloader
7373
// instead.
7474
void EndDownload(CHIP_ERROR reason = CHIP_NO_ERROR) override;
7575
CHIP_ERROR FetchNextData() override;
76-
// TODO: override SkipData
76+
CHIP_ERROR SkipData(uint32_t numBytes) override;
7777

7878
System::Clock::Timeout GetTimeout();
7979
// If True, there's been a timeout in the transfer as measured by no download progress after 'mTimeout' seconds.

0 commit comments

Comments
 (0)