FastDeploy  latest
Fast & Easy to Deploy!
io_utils.h
1 // Copyright (c) 2021 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 #pragma once
15 
16 #include <iostream>
17 #include <memory>
18 #include <vector>
19 #include <string>
20 
21 #ifndef PADDLE_MODEL_PROTECT_IO_UTILS_H
22 #define PADDLE_MODEL_PROTECT_IO_UTILS_H
23 namespace fastdeploy {
24 namespace ioutil {
25 
26 int read_file(const char* file_path, unsigned char** dataptr, size_t* sizeptr);
27 
28 int read_with_pos_and_length(const char* file_path, unsigned char* dataptr,
29  size_t pos, size_t length);
30 
31 int read_with_pos(const char* file_path, size_t pos, unsigned char** dataptr,
32  size_t* sizeptr);
33 
34 int write_file(const char* file_path, const unsigned char* dataptr,
35  size_t sizeptr);
36 
37 int append_file(const char* file_path, const unsigned char* data, size_t len);
38 
39 size_t read_file_size(const char* file_path);
40 
41 int read_file_to_file(const char* src_path, const char* dst_path);
42 
43 int dir_exist_or_mkdir(const char* dir);
44 
48 int read_dir_files(const char* dir_path,
49  std::vector<std::string>& files); // NOLINT
50 
51 } // namespace ioutil
52 } // namespace fastdeploy
53 #endif // PADDLE_MODEL_PROTECT_IO_UTILS_H
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16