Skip to content

Commit 1a86b78

Browse files
Niels MöllerCommit Bot
Niels Möller
authored and
Commit Bot
committed
Delete StreamInterface methods GetPosition, SetPosition and Rewind
Keep methods on subclasses where they are used: FifoBuffer and MemoryStream. Also FileStream gets to keep SetPosition, because it's used by a downstream subclass. Bug: webrtc:6424 Change-Id: If2a00855aba7c2c9dc0909cda7c8a8ef00e0b9af Reviewed-on: https://webrtc-review.googlesource.com/c/116487 Commit-Queue: Niels Moller <[email protected]> Reviewed-by: Karl Wiberg <[email protected]> Cr-Commit-Position: refs/heads/master@{#26237}
1 parent eb0de22 commit 1a86b78

6 files changed

+22
-92
lines changed

rtc_base/logging_unittest.cc

-15
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ class StringStream : public StreamInterface {
4040
size_t* written,
4141
int* error) override;
4242
void Close() override;
43-
bool SetPosition(size_t position) override;
44-
bool GetPosition(size_t* position) const override;
4543

4644
private:
4745
std::string& str_;
@@ -92,19 +90,6 @@ StreamResult StringStream::Write(const void* data,
9290

9391
void StringStream::Close() {}
9492

95-
bool StringStream::SetPosition(size_t position) {
96-
if (position > str_.size())
97-
return false;
98-
read_pos_ = position;
99-
return true;
100-
}
101-
102-
bool StringStream::GetPosition(size_t* position) const {
103-
if (position)
104-
*position = read_pos_;
105-
return true;
106-
}
107-
10893
} // namespace
10994

11095
template <typename Base>

rtc_base/memory_stream.cc

+4
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ bool MemoryStream::GetPosition(size_t* position) const {
9191
return true;
9292
}
9393

94+
void MemoryStream::Rewind() {
95+
seek_position_ = 0;
96+
}
97+
9498
bool MemoryStream::GetSize(size_t* size) const {
9599
if (size)
96100
*size = data_length_;

rtc_base/memory_stream.h

+4-2
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,13 @@ class MemoryStream final : public StreamInterface {
3636
size_t* bytes_written,
3737
int* error) override;
3838
void Close() override;
39-
bool SetPosition(size_t position) override;
40-
bool GetPosition(size_t* position) const override;
4139
bool GetSize(size_t* size) const;
4240
bool ReserveSize(size_t size);
4341

42+
bool SetPosition(size_t position);
43+
bool GetPosition(size_t* position) const;
44+
void Rewind();
45+
4446
char* GetBuffer() { return buffer_; }
4547
const char* GetBuffer() const { return buffer_; }
4648

rtc_base/stream.cc

-28
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,6 @@ void StreamInterface::PostEvent(int events, int err) {
7777
PostEvent(Thread::Current(), events, err);
7878
}
7979

80-
bool StreamInterface::SetPosition(size_t position) {
81-
return false;
82-
}
83-
84-
bool StreamInterface::GetPosition(size_t* position) const {
85-
return false;
86-
}
87-
8880
bool StreamInterface::Flush() {
8981
return false;
9082
}
@@ -129,14 +121,6 @@ void StreamAdapterInterface::Close() {
129121
stream_->Close();
130122
}
131123

132-
bool StreamAdapterInterface::SetPosition(size_t position) {
133-
return stream_->SetPosition(position);
134-
}
135-
136-
bool StreamAdapterInterface::GetPosition(size_t* position) const {
137-
return stream_->GetPosition(position);
138-
}
139-
140124
bool StreamAdapterInterface::Flush() {
141125
return stream_->Flush();
142126
}
@@ -288,18 +272,6 @@ bool FileStream::SetPosition(size_t position) {
288272
return (fseek(file_, static_cast<int>(position), SEEK_SET) == 0);
289273
}
290274

291-
bool FileStream::GetPosition(size_t* position) const {
292-
RTC_DCHECK(nullptr != position);
293-
if (!file_)
294-
return false;
295-
long result = ftell(file_);
296-
if (result < 0)
297-
return false;
298-
if (position)
299-
*position = result;
300-
return true;
301-
}
302-
303275
bool FileStream::Flush() {
304276
if (file_) {
305277
return (0 == fflush(file_));

rtc_base/stream.h

+14-16
Original file line numberDiff line numberDiff line change
@@ -107,15 +107,6 @@ class StreamInterface : public MessageHandler {
107107
// Like the aforementioned method, but posts to the current thread.
108108
void PostEvent(int events, int err);
109109

110-
// Seek to a byte offset from the beginning of the stream. Returns false if
111-
// the stream does not support seeking, or cannot seek to the specified
112-
// position.
113-
virtual bool SetPosition(size_t position);
114-
115-
// Get the byte offset of the current position from the start of the stream.
116-
// Returns false if the position is not known.
117-
virtual bool GetPosition(size_t* position) const;
118-
119110
// Return true if flush is successful.
120111
virtual bool Flush();
121112

@@ -125,9 +116,6 @@ class StreamInterface : public MessageHandler {
125116
// These methods are implemented in terms of other methods, for convenience.
126117
//
127118

128-
// Seek to the start of the stream.
129-
inline bool Rewind() { return SetPosition(0); }
130-
131119
// WriteAll is a helper function which repeatedly calls Write until all the
132120
// data is written, or something other than SR_SUCCESS is returned. Note that
133121
// unlike Write, the argument 'written' is always set, and may be non-zero
@@ -180,8 +168,6 @@ class StreamAdapterInterface : public StreamInterface,
180168
int* error) override;
181169
void Close() override;
182170

183-
bool SetPosition(size_t position) override;
184-
bool GetPosition(size_t* position) const override;
185171
bool Flush() override;
186172

187173
void Attach(StreamInterface* stream, bool owned = true);
@@ -232,8 +218,7 @@ class FileStream : public StreamInterface {
232218
size_t* written,
233219
int* error) override;
234220
void Close() override;
235-
bool SetPosition(size_t position) override;
236-
bool GetPosition(size_t* position) const override;
221+
virtual bool SetPosition(size_t position);
237222

238223
bool Flush() override;
239224

@@ -291,6 +276,19 @@ class FifoBuffer final : public StreamInterface {
291276
size_t* bytes_written,
292277
int* error) override;
293278
void Close() override;
279+
280+
// Seek to a byte offset from the beginning of the stream. Returns false if
281+
// the stream does not support seeking, or cannot seek to the specified
282+
// position.
283+
bool SetPosition(size_t position);
284+
285+
// Get the byte offset of the current position from the start of the stream.
286+
// Returns false if the position is not known.
287+
bool GetPosition(size_t* position) const;
288+
289+
// Seek to the start of the stream.
290+
bool Rewind() { return SetPosition(0); }
291+
294292
// GetReadData returns a pointer to a buffer which is owned by the stream.
295293
// The buffer contains data_len bytes. null is returned if no data is
296294
// available, or if the method fails. If the caller processes the data, it

rtc_base/stream_unittest.cc

-31
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,6 @@ class TestStream : public StreamInterface {
5050

5151
void Close() override {}
5252

53-
bool SetPosition(size_t position) override {
54-
pos_ = position;
55-
return true;
56-
}
57-
58-
bool GetPosition(size_t* position) const override {
59-
if (position)
60-
*position = pos_;
61-
return true;
62-
}
63-
6453
private:
6554
size_t pos_;
6655
};
@@ -78,26 +67,6 @@ bool VerifyTestBuffer(unsigned char* buffer, size_t len, unsigned char value) {
7867
return passed;
7968
}
8069

81-
void SeekTest(StreamInterface* stream, const unsigned char value) {
82-
size_t bytes;
83-
unsigned char buffer[13] = {0};
84-
const size_t kBufSize = sizeof(buffer);
85-
86-
EXPECT_EQ(stream->Read(buffer, kBufSize, &bytes, nullptr), SR_SUCCESS);
87-
EXPECT_EQ(bytes, kBufSize);
88-
EXPECT_TRUE(VerifyTestBuffer(buffer, kBufSize, value));
89-
EXPECT_TRUE(stream->GetPosition(&bytes));
90-
EXPECT_EQ(13U, bytes);
91-
92-
EXPECT_TRUE(stream->SetPosition(7));
93-
94-
EXPECT_EQ(stream->Read(buffer, kBufSize, &bytes, nullptr), SR_SUCCESS);
95-
EXPECT_EQ(bytes, kBufSize);
96-
EXPECT_TRUE(VerifyTestBuffer(buffer, kBufSize, value + 7));
97-
EXPECT_TRUE(stream->GetPosition(&bytes));
98-
EXPECT_EQ(20U, bytes);
99-
}
100-
10170
TEST(FifoBufferTest, TestAll) {
10271
const size_t kSize = 16;
10372
const char in[kSize * 2 + 1] = "0123456789ABCDEFGHIJKLMNOPQRSTUV";

0 commit comments

Comments
 (0)