Merge branch 'devel/master' into sandbox/dkdk/tizen
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / file-loader.h
1 #ifndef DALI_FILE_LOADER_H
2 #define DALI_FILE_LOADER_H
3
4 /*
5  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 // EXTERNAL INCLUDES
21 #include <dali/public-api/object/base-handle.h>
22 #include <string>
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/dali-adaptor-common.h>
26
27 namespace Dali
28 {
29 namespace FileLoader
30 {
31 /**
32  * @brief File type formats
33  * The default format is binary
34  */
35 enum FileType ///< FileType format
36 {
37   BINARY, ///< File will be loaded as a binary
38   TEXT    ///< File will be loaded as text
39 };
40
41 /**
42  * @brief Load the file. It will load it either as a binary or as a text
43  *
44  * @param[in] filename  Filename of the file to load.
45  * @param[in] memblock  Dali::Vector containing the buffer loaded
46  * @param[in] fileType  How we want to load the file. Binary or Text. Binary default
47  * @return error code. 0 - Error, 1 - Ok
48  *
49  *
50  */
51 DALI_ADAPTOR_API int ReadFile(const std::string& filename, Dali::Vector<char>& memblock, FileLoader::FileType fileType = BINARY);
52
53 /**
54  * @brief Load the file. It will load it either as a binary or as a text
55  *
56  * @param[in] filename  Filename of the file to load.
57  * @param[in] fileSize  Size of the loaded file
58  * @param[in] memblock  Dali::Vector containing the buffer loaded
59  * @param[in] fileType  How we want to load the file. Binary or Text. Binary default
60  * @return error code. 0 - Error, 1 - Ok
61  *
62  */
63 DALI_ADAPTOR_API int ReadFile(const std::string& filename, std::streampos& fileSize, Dali::Vector<char>& memblock, FileLoader::FileType fileType = BINARY);
64
65 /**
66  * @brief Get the file size of a file
67  *
68  * @param[in] filename  Filename of the file to load.
69  * @return the size of the file or 0 if file not found
70  */
71 DALI_ADAPTOR_API std::streampos GetFileSize(const std::string& filename);
72
73 /**
74  * @brief Download a requested file into a memory buffer.
75  *
76  * @param[in] filename  Filename of the file to download.
77  * @param[out] dataBuffer  A memory buffer object to be written with downloaded file data.
78  * @return error code. false - Error, true - Ok
79  */
80 DALI_ADAPTOR_API bool DownloadFileSynchronously(const std::string& filename, Dali::Vector<uint8_t>& dataBuffer);
81
82 }; // namespace FileLoader
83
84 } // namespace Dali
85 #endif // DALI_FILE_LOADER_H