reader.h 2.4 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 18 19
#include <memory>
#include <vector>

Y
Yi Wang 已提交
20 21
#include "paddle/fluid/framework/ddim.h"
#include "paddle/fluid/framework/lod_tensor_array.h"
22 23
#include "paddle/fluid/platform/place.h"

F
fengjiayi 已提交
24 25 26
namespace paddle {
namespace framework {

27 28
enum ReaderStatus { kRunning, kStopped };

F
fengjiayi 已提交
29
class ReaderBase {
F
fengjiayi 已提交
30
 public:
31 32 33
  void ReadNext(std::vector<LoDTensor>* out);

  void Shutdown();
F
fengjiayi 已提交
34

35
  void Start();
F
fengjiayi 已提交
36

Y
Yu Yang 已提交
37
  virtual ~ReaderBase();
38 39 40 41

 protected:
  virtual void ReadNextImpl(std::vector<LoDTensor>* out) = 0;

Y
yuyang18 已提交
42
  virtual void ShutdownImpl() {}
43

Y
yuyang18 已提交
44
  virtual void StartImpl() {}
45

Y
yuyang18 已提交
46
  ReaderStatus status_{kRunning};
47 48

  mutable std::mutex mu_;
F
fengjiayi 已提交
49 50
};

F
fengjiayi 已提交
51
class DecoratedReader : public ReaderBase {
F
fengjiayi 已提交
52
 public:
F
fengjiayi 已提交
53 54
  explicit DecoratedReader(const std::shared_ptr<ReaderBase>& reader)
      : ReaderBase(), reader_(reader) {
F
fengjiayi 已提交
55 56 57
    PADDLE_ENFORCE_NOT_NULL(reader_);
  }

F
fengjiayi 已提交
58
 protected:
59 60 61 62
  void ShutdownImpl() override { reader_->Shutdown(); }

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

F
fengjiayi 已提交
63
  std::shared_ptr<ReaderBase> reader_;
F
fengjiayi 已提交
64 65
};

Y
yuyang18 已提交
66 67
// FileReader is just a conceptual class.
class FileReader : public ReaderBase {};
68

69 70
// The ReaderHolder is used as reader' unified wrapper,
// making it easier to access different type reader in Variables.
F
fengjiayi 已提交
71 72
class ReaderHolder {
 public:
F
fengjiayi 已提交
73
  void Reset(ReaderBase* reader) { reader_.reset(reader); }
F
fengjiayi 已提交
74

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

77 78 79 80
  void ReadNext(std::vector<LoDTensor>* out) {
    PADDLE_ENFORCE_NOT_NULL(reader_);
    reader_->ReadNext(out);
  }
81 82 83 84 85 86 87 88 89 90 91

  void ResetAll() {
    // TODO(fengjiayi): The interface of reseting all.
  }

  void Shutdown() {
    PADDLE_ENFORCE_NOT_NULL(reader_);
    reader_->Shutdown();
  }

  void Start() {
92
    PADDLE_ENFORCE_NOT_NULL(reader_);
93
    reader_->Start();
94
  }
F
fengjiayi 已提交
95 96

 private:
F
fengjiayi 已提交
97
  std::shared_ptr<ReaderBase> reader_;
F
fengjiayi 已提交
98 99
};

F
fengjiayi 已提交
100 101
}  // namespace framework
}  // namespace paddle