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/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
  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) {
38 39 40 41 42 43 44 45 46 47
    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"));
48 49
  }

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

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

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

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

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

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

  virtual void ShutdownImpl() {}

  virtual void StartImpl() {}

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

83 84 85 86
  ReaderStatus status_{kRunning};

  mutable std::mutex mu_;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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