blob: 1a0de5181d21ba49108c09c56f1da96841bf7f45 [file] [log] [blame]
Armando Montanez0bcae732020-05-27 13:28:11 -07001// Copyright 2020 The Pigweed Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4// use this file except in compliance with the License. You may obtain a copy of
5// the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12// License for the specific language governing permissions and limitations under
13// the License.
14
15#include "pw_stream/memory_stream.h"
16
17#include <cstddef>
18#include <cstring>
19
20#include "pw_status/status_with_size.h"
21
22namespace pw::stream {
23
David Rogers6d4f6302020-07-22 14:27:41 -070024Status MemoryWriter::DoWrite(ConstByteSpan data) {
25 if (ConservativeWriteLimit() == 0) {
Wyatt Heplerd78f7c62020-09-28 14:27:32 -070026 return Status::OutOfRange();
David Rogers6d4f6302020-07-22 14:27:41 -070027 }
28 if (ConservativeWriteLimit() < data.size_bytes()) {
Wyatt Heplerd78f7c62020-09-28 14:27:32 -070029 return Status::ResourceExhausted();
David Rogers6d4f6302020-07-22 14:27:41 -070030 }
31
32 size_t bytes_to_write = data.size_bytes();
Ted Pudlikc2a4cfc2021-11-12 22:18:07 +000033 if (bytes_to_write == 0) {
Ted Pudlik081499c2021-11-15 21:08:43 +000034 // Calling memmove with a null pointer is undefined behavior, even when zero
35 // bytes are moved. We must return early here to avoid performing such a
36 // call when data is an empty span.
Ted Pudlikc2a4cfc2021-11-12 22:18:07 +000037 return OkStatus();
38 }
Wyatt Hepler7b62e932021-08-10 23:57:10 -070039 std::memmove(dest_.data() + position_, data.data(), bytes_to_write);
40 position_ += bytes_to_write;
Armando Montanez0bcae732020-05-27 13:28:11 -070041
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -080042 return OkStatus();
Armando Montanez0bcae732020-05-27 13:28:11 -070043}
44
David Rogers6d4f6302020-07-22 14:27:41 -070045StatusWithSize MemoryReader::DoRead(ByteSpan dest) {
Wyatt Hepler7b62e932021-08-10 23:57:10 -070046 if (source_.size_bytes() == position_) {
Wyatt Heplerd78f7c62020-09-28 14:27:32 -070047 return StatusWithSize::OutOfRange();
David Rogers6d4f6302020-07-22 14:27:41 -070048 }
49
50 size_t bytes_to_read =
Wyatt Hepler7b62e932021-08-10 23:57:10 -070051 std::min(dest.size_bytes(), source_.size_bytes() - position_);
Ted Pudlik081499c2021-11-15 21:08:43 +000052 if (bytes_to_read == 0) {
53 // Calling memcpy with a null pointer is undefined behavior, even when zero
54 // bytes are copied. We must return early here to avoid performing such a
55 // call when the dest span is empty.
56 return StatusWithSize(0);
57 }
David Rogers6d4f6302020-07-22 14:27:41 -070058
Wyatt Hepler7b62e932021-08-10 23:57:10 -070059 std::memcpy(dest.data(), source_.data() + position_, bytes_to_read);
60 position_ += bytes_to_read;
David Rogers6d4f6302020-07-22 14:27:41 -070061
62 return StatusWithSize(bytes_to_read);
63}
64
65} // namespace pw::stream