io.h 1.6 KB
Newer Older
D
dongzhihong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#pragma once

#include <stdio.h>
#include <string>
D
dongzhihong 已提交
19

D
dongzhihong 已提交
20
#include "paddle/fluid/platform/enforce.h"
D
dongzhihong 已提交
21
#include "paddle/fluid/platform/macros.h"  // DISABLE_COPY_ASSIGN
D
dongzhihong 已提交
22 23 24 25

namespace paddle {
namespace recordio {

D
dongzhihong 已提交
26
// Seekable Stream Interface for read and write
D
dongzhihong 已提交
27 28 29
class Stream {
public:
  virtual ~Stream() {}
D
dongzhihong 已提交
30 31 32 33
  virtual size_t Read(void* ptr, size_t size) = 0;
  virtual void Write(const void* ptr, size_t size) = 0;
  virtual size_t Tell() = 0;
  virtual void Seek(size_t p) = 0;
D
dongzhihong 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
  // Create Stream Instance
  static Stream* Open(const char* filename, const char* mode);
};

// FileStream
class FileStream : public Stream {
public:
  explicit FileStream(FILE* fp) : fp_(fp) {}
  ~FileStream() { this->Close(); }
  size_t Read(void* ptr, size_t size);
  void Write(const void* ptr, size_t size);
  size_t Tell();
  void Seek(size_t p);
  bool Eof();
  void Close();

private:
  FILE* fp_;
D
dongzhihong 已提交
52
  DISABLE_COPY_AND_ASSIGN(FileStream);
D
dongzhihong 已提交
53 54 55 56
};

}  // namespace recordio
}  // namespace paddle