summaryrefslogtreecommitdiff
path: root/testing/string_write_stream.h
blob: a77e4f0c6982a8e1f00db5b73ff74709edf4a7e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright 2018 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef TESTING_STRING_WRITE_STREAM_H_
#define TESTING_STRING_WRITE_STREAM_H_

#include <sstream>
#include <string>

#include "core/fxcrt/fx_stream.h"

class StringWriteStream final : public IFX_SeekableWriteStream {
 public:
  StringWriteStream();
  ~StringWriteStream() override;

  // IFX_SeekableWriteStream
  FX_FILESIZE GetSize() override;
  bool Flush() override;
  bool WriteBlock(const void* pData, FX_FILESIZE offset, size_t size) override;
  bool WriteString(const ByteStringView& str) override;

  std::string ToString() const { return stream_.str(); }

 private:
  std::ostringstream stream_;
};

#endif  // TESTING_STRING_WRITE_STREAM_H_