reader.h 6.9 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
    PADDLE_ENFORCE_EQ(
38 39
        shapes_.size(),
        need_check_feed_.size(),
40 41 42 43
        platform::errors::InvalidArgument(
            "Construct ReaderBase with mismatched sizes of shapes "
            "and need_check_feed"));
    PADDLE_ENFORCE_EQ(
44 45
        var_types_.size(),
        need_check_feed_.size(),
46 47 48
        platform::errors::InvalidArgument(
            "Construct ReaderBase with mismatched sizes of var_types "
            "and need_check_feed"));
49 50
  }

51
  virtual void ReadNext(paddle::framework::LoDTensorArray* out);
52 53

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

55 56 57 58 59
  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 已提交
60

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

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

 protected:
76
  virtual void ReadNextImpl(paddle::framework::LoDTensorArray* out) {}
77 78 79 80 81

  virtual void ShutdownImpl() {}

  virtual void StartImpl() {}

Y
yuyang18 已提交
82 83
  enum ReaderStatus { kRunning, kStopped };

84 85 86 87
  ReaderStatus status_{kRunning};

  mutable std::mutex mu_;

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

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

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

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

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

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

Y
yuyang18 已提交
126 127
  ~DecoratedReader();

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

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

138
  void StartImpl() override { reader_->Start(); }
139

140
  std::shared_ptr<ReaderBase> reader_;
141 142
};

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

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

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

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

170
  void ReadNext(paddle::framework::LoDTensorArray* out) {
171 172 173 174
    PADDLE_ENFORCE_NOT_NULL(
        reader_,
        platform::errors::InvalidArgument(
            "The underlying reader of ReaderHolder should not be null"));
175 176
    reader_->ReadNext(out);
  }
177 178

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

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

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

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

217 218
  void Clear() { reader_.reset(); }

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

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

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