reader.h 6.1 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

F
fengjiayi 已提交
17
#include <memory>
18
#include <unordered_set>
Q
Qiao Longfei 已提交
19
#include <utility>
F
fengjiayi 已提交
20 21
#include <vector>

Y
Yi Wang 已提交
22
#include "paddle/fluid/framework/ddim.h"
23
#include "paddle/fluid/framework/framework.pb.h"
Y
Yi Wang 已提交
24
#include "paddle/fluid/framework/lod_tensor_array.h"
25 26
#include "paddle/fluid/platform/place.h"

F
fengjiayi 已提交
27 28 29
namespace paddle {
namespace framework {

F
fengjiayi 已提交
30
class ReaderBase {
F
fengjiayi 已提交
31
 public:
32 33 34 35 36 37 38 39 40 41 42 43 44 45
  explicit ReaderBase(const std::vector<DDim>& shapes,
                      const std::vector<proto::VarType::Type>& var_types,
                      const std::vector<bool>& need_check_feed)
      : shapes_(shapes),
        var_types_(var_types),
        need_check_feed_(need_check_feed) {
    PADDLE_ENFORCE_EQ(shapes_.size(), need_check_feed_.size(),
                      "Construct ReaderBase with mismatched sizes of shapes "
                      "and need_check_feed");
    PADDLE_ENFORCE_EQ(var_types_.size(), need_check_feed_.size(),
                      "Construct ReaderBase with mismatched sizes of var_types "
                      "and need_check_feed");
  }

46 47 48
  virtual void ReadNext(std::vector<LoDTensor>* out);

  virtual void Shutdown();
F
fengjiayi 已提交
49

50 51 52 53 54
  virtual void Start();

  // Return the readers which are the end of decorating chain. Basically
  // they are readers just before read op.
  std::unordered_set<ReaderBase*> GetEndPoints();
F
fengjiayi 已提交
55

T
tianshuo78520a 已提交
56
  // Returns the shapes of the fed variables
57 58
  const std::vector<DDim>& Shapes() const { return shapes_; }

T
tianshuo78520a 已提交
59
  // Returns the dtypes of the fed variables
60 61 62 63 64 65 66 67
  const std::vector<proto::VarType::Type>& VarTypes() const {
    return var_types_;
  }

  // For Backward compatibility, old fluid.layers.data doesn't check shape.
  // This function returns whether you have the check shape for this Reader.
  const std::vector<bool>& NeedCheckFeed() const { return need_check_feed_; }

Y
Yu Yang 已提交
68
  virtual ~ReaderBase();
69 70 71 72 73 74 75 76

 protected:
  virtual void ReadNextImpl(std::vector<LoDTensor>* out) {}

  virtual void ShutdownImpl() {}

  virtual void StartImpl() {}

Y
yuyang18 已提交
77 78
  enum ReaderStatus { kRunning, kStopped };

79 80 81 82
  ReaderStatus status_{kRunning};

  mutable std::mutex mu_;

T
tianshuo78520a 已提交
83
  // The shapes of the fed variables.
84 85
  std::vector<DDim> shapes_;

T
tianshuo78520a 已提交
86
  // The dtypes of the fed variables.
87 88
  std::vector<proto::VarType::Type> var_types_;

T
tianshuo78520a 已提交
89
  // Whether to check the shape and dtype of fed variables.
90 91 92 93
  // For Backward compatibility, variables created by old API fluid.layers.data
  // doesn't check shape but fluid.data checks.
  std::vector<bool> need_check_feed_;

94 95 96 97 98 99 100 101
 private:
  friend class DecoratedReader;
  // These methods can be only invoked inside DecoratedReader to record the
  // decorating chain.
  void InsertDecoratedReader(
      const std::shared_ptr<ReaderBase>& decorated_reader);
  // A set of which readers that decorated this reader.
  std::vector<std::weak_ptr<ReaderBase>> decorated_readers_;
F
fengjiayi 已提交
102 103
};

104 105
class DecoratedReader : public ReaderBase,
                        public std::enable_shared_from_this<DecoratedReader> {
F
fengjiayi 已提交
106
 public:
F
fengjiayi 已提交
107
  explicit DecoratedReader(const std::shared_ptr<ReaderBase>& reader)
108 109 110
      : ReaderBase(reader->Shapes(), reader->VarTypes(),
                   reader->NeedCheckFeed()),
        reader_(reader) {
F
fengjiayi 已提交
111 112 113
    PADDLE_ENFORCE_NOT_NULL(reader_);
  }

114 115 116
  void RegisterDecorateChain() {
    reader_->InsertDecoratedReader(shared_from_this());
  }
F
fengjiayi 已提交
117

Y
yuyang18 已提交
118 119
  ~DecoratedReader();

F
fengjiayi 已提交
120
 protected:
Q
Qiao Longfei 已提交
121 122 123 124
  void ShutdownImpl() override {
    VLOG(1) << "ShutdownImpl";
    reader_->Shutdown();
  }
125

126
  void StartImpl() override { reader_->Start(); }
127

128
  std::shared_ptr<ReaderBase> reader_;
129 130
};

131
// FileReader is just a conceptual class.
132 133 134 135 136 137 138
class FileReader : public ReaderBase {
 public:
  explicit FileReader(const std::vector<DDim>& shapes,
                      const std::vector<proto::VarType::Type>& var_types,
                      const std::vector<bool>& need_check_feed)
      : ReaderBase(shapes, var_types, need_check_feed) {}
};
139

140 141
// The ReaderHolder is used as reader' unified wrapper,
// making it easier to access different type reader in Variables.
F
fengjiayi 已提交
142 143
class ReaderHolder {
 public:
144 145 146 147 148 149
  template <typename T>
  void Reset(const std::shared_ptr<T>& reader) {
    auto reader_base = std::dynamic_pointer_cast<ReaderBase>(reader);
    PADDLE_ENFORCE_NOT_NULL(reader_base);
    reader_ = reader_base;
  }
F
fengjiayi 已提交
150

Q
Qiao Longfei 已提交
151 152
  ~ReaderHolder() { VLOG(1) << "~ReaderHolder"; }

153
  const std::shared_ptr<ReaderBase>& Get() const { return reader_; }
F
fengjiayi 已提交
154

155 156 157 158
  void ReadNext(std::vector<LoDTensor>* out) {
    PADDLE_ENFORCE_NOT_NULL(reader_);
    reader_->ReadNext(out);
  }
159 160

  void ResetAll() {
Q
Qiao Longfei 已提交
161
    VLOG(1) << "ResetAll";
162 163 164 165 166 167 168 169 170 171
    auto end_readers = reader_->GetEndPoints();
    for (auto* reader : end_readers) {
      reader->Shutdown();
    }
    for (auto* reader : end_readers) {
      reader->Start();
    }
  }

  void Shutdown() {
Q
Qiao Longfei 已提交
172
    VLOG(1) << "Shutdown";
173
    PADDLE_ENFORCE_NOT_NULL(reader_);
174
    reader_->Shutdown();
175
  }
F
fengjiayi 已提交
176

177
  void Start() {
Q
Qiao Longfei 已提交
178
    VLOG(1) << "start";
179 180 181 182
    PADDLE_ENFORCE_NOT_NULL(reader_);
    reader_->Start();
  }

183 184 185 186 187 188 189 190 191 192
  const std::vector<DDim>& Shapes() const { return reader_->Shapes(); }

  const std::vector<proto::VarType::Type>& VarTypes() const {
    return reader_->VarTypes();
  }

  const std::vector<bool>& NeedCheckFeed() const {
    return reader_->NeedCheckFeed();
  }

193 194
  operator const std::shared_ptr<ReaderBase>&() const { return this->reader_; }

F
fengjiayi 已提交
195
 private:
F
fengjiayi 已提交
196
  std::shared_ptr<ReaderBase> reader_;
F
fengjiayi 已提交
197 198
};

199 200 201 202 203 204 205
template <typename T, typename... ARGS>
inline std::shared_ptr<DecoratedReader> MakeDecoratedReader(ARGS&&... args) {
  std::shared_ptr<DecoratedReader> reader(new T(std::forward<ARGS>(args)...));
  reader->RegisterDecorateChain();
  return reader;
}

F
fengjiayi 已提交
206 207
}  // namespace framework
}  // namespace paddle