reader_op_registry.h 3.8 KB
Newer Older
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

M
minqiyang 已提交
17
#include <memory>
18
#include <string>
M
minqiyang 已提交
19
#include <unordered_map>
20
#include <vector>
21 22 23 24 25 26 27
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/reader.h"

namespace paddle {
namespace operators {
namespace reader {

F
fengjiayi 已提交
28
static constexpr char kFileFormatSeparator[] = ".";
F
fengjiayi 已提交
29

30 31
using FileReaderCreator =
    std::function<framework::ReaderBase*(const std::string&)>;
32 33 34 35 36

std::unordered_map<std::string, FileReaderCreator>& FileReaderRegistry();

template <typename Reader>
int RegisterFileReader(const std::string& filetype) {
37 38
  FileReaderRegistry()[filetype] = [](const std::string& fn) {
    return new Reader(fn);
39 40 41 42
  };
  return 0;
}

F
fengjiayi 已提交
43
std::unique_ptr<framework::ReaderBase> CreateReaderByFileName(
44
    const std::string& file_name);
F
fengjiayi 已提交
45

46 47 48 49 50
extern std::vector<framework::DDim> RestoreShapes(
    const std::vector<int>& shape_concat, const std::vector<int>& ranks);

class FileReaderMakerBase : public framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
51 52 53 54
  void Make() final;

 protected:
  virtual void Apply() = 0;
55 56 57 58 59 60 61 62 63
};

class FileReaderInferShape : public framework::InferShapeBase {
 public:
  void operator()(framework::InferShapeContext* ctx) const override;
};

class FileReaderInferVarType : public framework::VarTypeInference {
 public:
M
minqiyang 已提交
64
  void operator()(framework::InferVarTypeContext* ctx) const override;
65 66 67 68 69 70 71 72 73 74 75
};

// general infershape for decorated reader
class DecoratedReaderInferShape : public framework::InferShapeBase {
 public:
  void operator()(framework::InferShapeContext* ctx) const override;
};

// general var type inference for decorated reader
class DecoratedReaderInferVarType : public framework::VarTypeInference {
 public:
M
minqiyang 已提交
76
  void operator()(framework::InferVarTypeContext* ctx) const override;
77 78 79 80
};

class DecoratedReaderMakerBase : public framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
81 82 83 84
  void Make() final;

 protected:
  virtual void Apply() = 0;
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
};

}  // namespace reader
}  // namespace operators
}  // namespace paddle

#define REGISTER_FILE_READER_OPERATOR(op_name, ...)                  \
  REGISTER_OPERATOR(op_name, __VA_ARGS__,                            \
                    paddle::operators::reader::FileReaderInferShape, \
                    paddle::framework::EmptyGradOpMaker,             \
                    paddle::operators::reader::FileReaderInferVarType)

#define REGISTER_DECORATED_READER_OPERATOR(op_name, ...)                  \
  REGISTER_OPERATOR(op_name, __VA_ARGS__,                                 \
                    paddle::operators::reader::DecoratedReaderInferShape, \
                    paddle::framework::EmptyGradOpMaker,                  \
                    paddle::operators::reader::DecoratedReaderInferVarType)
102 103 104 105 106 107 108 109 110 111 112 113

#define REGISTER_FILE_READER(_filetype, _reader)            \
  STATIC_ASSERT_GLOBAL_NAMESPACE(                           \
      _reg_file_reader_##_filetype,                         \
      "Must use REGISTER_FILE_READER in global namespace"); \
  int TouchFileReader##_filetype() { return 0; }            \
  int _reg_file_reader_entry_##filetype =                   \
      paddle::operators::reader::RegisterFileReader<_reader>(#_filetype)

#define USE_FILE_READER(filetype)         \
  extern int TouchFileReader##filetype(); \
  static int _use_##filetype = TouchFileReader##filetype()