FastDeploy  latest
Fast & Easy to Deploy!
common.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include "NvInferPlugin.h"
18 #include "NvInferRuntimeCommon.h"
19 #include "fastdeploy/utils/utils.h"
20 #include <cstring>
21 #include <iostream>
22 #include <memory>
23 #include <sstream>
24 #include <string>
25 #include <vector>
26 
27 namespace fastdeploy {
28 
29 class BasePlugin : public nvinfer1::IPluginV2DynamicExt {
30  protected:
31  void setPluginNamespace(const char* libNamespace) noexcept override {
32  mNamespace = libNamespace;
33  }
34 
35  const char* getPluginNamespace() const noexcept override {
36  return mNamespace.c_str();
37  }
38 
39  std::string mNamespace;
40 };
41 
42 class BaseCreator : public nvinfer1::IPluginCreator {
43  public:
44  void setPluginNamespace(const char* libNamespace) noexcept override {
45  mNamespace = libNamespace;
46  }
47 
48  const char* getPluginNamespace() const noexcept override {
49  return mNamespace.c_str();
50  }
51 
52  protected:
53  std::string mNamespace;
54 };
55 
56 typedef enum {
57  STATUS_SUCCESS = 0,
58  STATUS_FAILURE = 1,
59  STATUS_BAD_PARAM = 2,
60  STATUS_NOT_SUPPORTED = 3,
61  STATUS_NOT_INITIALIZED = 4
62 } pluginStatus_t;
63 
64 // Write values into buffer
65 template <typename T> void write(char*& buffer, const T& val) {
66  std::memcpy(buffer, &val, sizeof(T));
67  buffer += sizeof(T);
68 }
69 
70 // Read values from buffer
71 template <typename T> T read(const char*& buffer) {
72  T val{};
73  std::memcpy(&val, buffer, sizeof(T));
74  buffer += sizeof(T);
75  return val;
76 }
77 
78 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16