reader.h 2.5 KB
Newer Older
F
fengjiayi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//   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

Y
Yi Wang 已提交
17 18
#include "paddle/fluid/framework/ddim.h"
#include "paddle/fluid/framework/lod_tensor_array.h"
F
fengjiayi 已提交
19 20 21 22

namespace paddle {
namespace framework {

F
fengjiayi 已提交
23
class ReaderBase {
F
fengjiayi 已提交
24
 public:
F
fengjiayi 已提交
25 26 27 28
  explicit ReaderBase(const std::vector<DDim>& shapes) : shapes_(shapes) {
    PADDLE_ENFORCE(!shapes_.empty());
  }
  virtual void ReadNext(std::vector<LoDTensor>* out) = 0;
F
fengjiayi 已提交
29

F
fengjiayi 已提交
30 31
  virtual void ReInit() = 0;

F
fengjiayi 已提交
32 33 34
  DDim shape(size_t idx) const;
  std::vector<DDim> shapes() const { return shapes_; }
  void set_shapes(const std::vector<DDim>& shapes) { shapes_ = shapes; }
F
fengjiayi 已提交
35

F
fengjiayi 已提交
36
  virtual ~ReaderBase() {}
F
fengjiayi 已提交
37 38 39

 protected:
  std::vector<DDim> shapes_;
F
fengjiayi 已提交
40
};
F
fengjiayi 已提交
41

F
fengjiayi 已提交
42 43
class FileReader : public ReaderBase {
 public:
F
fengjiayi 已提交
44
  explicit FileReader(const std::vector<DDim>& shapes) : ReaderBase(shapes) {}
F
fengjiayi 已提交
45 46
};

F
fengjiayi 已提交
47
class DecoratedReader : public ReaderBase {
F
fengjiayi 已提交
48
 public:
F
fengjiayi 已提交
49 50
  explicit DecoratedReader(ReaderBase* reader)
      : ReaderBase(reader->shapes()), reader_(reader) {
F
fengjiayi 已提交
51 52 53
    PADDLE_ENFORCE_NOT_NULL(reader_);
  }

F
fengjiayi 已提交
54 55
  void ReInit() override { reader_->ReInit(); }

F
fengjiayi 已提交
56 57 58 59
 protected:
  ReaderBase* reader_;
};

60 61
// The ReaderHolder is used as reader' unified wrapper,
// making it easier to access different type reader in Variables.
F
fengjiayi 已提交
62 63 64 65 66 67
class ReaderHolder {
 public:
  void Reset(ReaderBase* reader) { reader_.reset(reader); }

  ReaderBase* Get() const { return reader_.get(); }

68 69 70 71 72 73 74 75
  void ReadNext(std::vector<LoDTensor>* out) {
    PADDLE_ENFORCE_NOT_NULL(reader_);
    reader_->ReadNext(out);
  }
  void ReInit() {
    PADDLE_ENFORCE_NOT_NULL(reader_);
    reader_->ReInit();
  }
F
fengjiayi 已提交
76

77 78 79 80 81 82 83 84
  DDim shape(size_t idx) const {
    PADDLE_ENFORCE_NOT_NULL(reader_);
    return reader_->shape(idx);
  }
  std::vector<DDim> shapes() const {
    PADDLE_ENFORCE_NOT_NULL(reader_);
    return reader_->shapes();
  }
F
fengjiayi 已提交
85
  void set_shapes(const std::vector<DDim>& shapes) {
86
    PADDLE_ENFORCE_NOT_NULL(reader_);
F
fengjiayi 已提交
87 88
    reader_->set_shapes(shapes);
  }
F
fengjiayi 已提交
89 90 91 92 93

 private:
  std::unique_ptr<ReaderBase> reader_;
};

F
fengjiayi 已提交
94 95
}  // namespace framework
}  // namespace paddle