reader.h 6.8 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/lod_tensor_array.h"
23
#include "paddle/fluid/platform/place.h"
24
#include "paddle/phi/core/ddim.h"
25

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

F
fengjiayi 已提交
29
class ReaderBase {
F
fengjiayi 已提交
30
 public:
31 32 33 34 35 36
  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) {
37 38 39 40 41 42 43 44 45 46
    PADDLE_ENFORCE_EQ(
        shapes_.size(), need_check_feed_.size(),
        platform::errors::InvalidArgument(
            "Construct ReaderBase with mismatched sizes of shapes "
            "and need_check_feed"));
    PADDLE_ENFORCE_EQ(
        var_types_.size(), need_check_feed_.size(),
        platform::errors::InvalidArgument(
            "Construct ReaderBase with mismatched sizes of var_types "
            "and need_check_feed"));
47 48
  }

49 50 51
  virtual void ReadNext(std::vector<LoDTensor>* out);

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

53 54 55 56 57
  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 已提交
58

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

T
tianshuo78520a 已提交
62
  // Returns the dtypes of the fed variables
63 64 65 66 67 68 69 70
  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 已提交
71
  virtual ~ReaderBase();
72 73 74 75 76 77 78 79

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

  virtual void ShutdownImpl() {}

  virtual void StartImpl() {}

Y
yuyang18 已提交
80 81
  enum ReaderStatus { kRunning, kStopped };

82 83 84 85
  ReaderStatus status_{kRunning};

  mutable std::mutex mu_;

T
tianshuo78520a 已提交
86
  // The shapes of the fed variables.
87 88
  std::vector<DDim> shapes_;

T
tianshuo78520a 已提交
89
  // The dtypes of the fed variables.
90 91
  std::vector<proto::VarType::Type> var_types_;

T
tianshuo78520a 已提交
92
  // Whether to check the shape and dtype of fed variables.
93 94 95 96
  // 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_;

97 98 99 100 101 102 103 104
 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 已提交
105 106
};

107 108
class DecoratedReader : public ReaderBase,
                        public std::enable_shared_from_this<DecoratedReader> {
F
fengjiayi 已提交
109
 public:
F
fengjiayi 已提交
110
  explicit DecoratedReader(const std::shared_ptr<ReaderBase>& reader)
111 112 113
      : ReaderBase(reader->Shapes(), reader->VarTypes(),
                   reader->NeedCheckFeed()),
        reader_(reader) {
114 115 116 117
    PADDLE_ENFORCE_NOT_NULL(
        reader_,
        platform::errors::InvalidArgument(
            "The underlying reader of DecoratedReader should not be null"));
F
fengjiayi 已提交
118 119
  }

120 121 122
  void RegisterDecorateChain() {
    reader_->InsertDecoratedReader(shared_from_this());
  }
F
fengjiayi 已提交
123

Y
yuyang18 已提交
124 125
  ~DecoratedReader();

126 127 128 129
  const std::shared_ptr<ReaderBase>& UnderlyingReader() const {
    return reader_;
  }

F
fengjiayi 已提交
130
 protected:
Q
Qiao Longfei 已提交
131 132 133 134
  void ShutdownImpl() override {
    VLOG(1) << "ShutdownImpl";
    reader_->Shutdown();
  }
135

136
  void StartImpl() override { reader_->Start(); }
137

138
  std::shared_ptr<ReaderBase> reader_;
139 140
};

141
// FileReader is just a conceptual class.
142 143 144 145 146 147 148
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) {}
};
149

150 151
// The ReaderHolder is used as reader' unified wrapper,
// making it easier to access different type reader in Variables.
F
fengjiayi 已提交
152 153
class ReaderHolder {
 public:
154 155 156
  template <typename T>
  void Reset(const std::shared_ptr<T>& reader) {
    auto reader_base = std::dynamic_pointer_cast<ReaderBase>(reader);
157 158 159 160
    PADDLE_ENFORCE_NOT_NULL(
        reader_base,
        platform::errors::InvalidArgument(
            "The underlying reader of ReaderHolder should not be null"));
161 162
    reader_ = reader_base;
  }
F
fengjiayi 已提交
163

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

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

168
  void ReadNext(std::vector<LoDTensor>* out) {
169 170 171 172
    PADDLE_ENFORCE_NOT_NULL(
        reader_,
        platform::errors::InvalidArgument(
            "The underlying reader of ReaderHolder should not be null"));
173 174
    reader_->ReadNext(out);
  }
175 176

  void ResetAll() {
Q
Qiao Longfei 已提交
177
    VLOG(1) << "ResetAll";
178 179 180 181 182 183 184 185 186 187
    auto end_readers = reader_->GetEndPoints();
    for (auto* reader : end_readers) {
      reader->Shutdown();
    }
    for (auto* reader : end_readers) {
      reader->Start();
    }
  }

  void Shutdown() {
Q
Qiao Longfei 已提交
188
    VLOG(1) << "Shutdown";
189 190 191 192
    PADDLE_ENFORCE_NOT_NULL(
        reader_,
        platform::errors::InvalidArgument(
            "The underlying reader of ReaderHolder should not be null"));
193
    reader_->Shutdown();
194
  }
F
fengjiayi 已提交
195

196
  void Start() {
Q
Qiao Longfei 已提交
197
    VLOG(1) << "start";
198 199 200 201
    PADDLE_ENFORCE_NOT_NULL(
        reader_,
        platform::errors::InvalidArgument(
            "The underlying reader of ReaderHolder should not be null"));
202 203 204
    reader_->Start();
  }

205 206 207 208 209 210 211 212 213 214
  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();
  }

215 216
  void Clear() { reader_.reset(); }

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

F
fengjiayi 已提交
219
 private:
F
fengjiayi 已提交
220
  std::shared_ptr<ReaderBase> reader_;
F
fengjiayi 已提交
221 222
};

223 224 225 226 227 228 229
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 已提交
230 231
}  // namespace framework
}  // namespace paddle