All file read operations should be done through FileLoader.
[platform/core/uifw/dali-adaptor.git] / dali / internal / adaptor-framework / generic / file-loader-impl-generic.cpp
1 /*
2  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 // CLASS HEADER
18 #include <dali/internal/adaptor-framework/common/file-loader-impl.h>
19
20 // EXTERNAL INCLUDES
21 #include <string>
22 #include <fstream>
23
24 #include <dali/integration-api/debug.h>
25
26 namespace Dali
27 {
28
29 namespace Internal
30 {
31
32 namespace Adaptor
33 {
34
35 int ReadFile(const std::string& filename, Dali::Vector<char> & memblock, Dali::FileLoader::FileType fileType)
36 {
37   std::streampos size;
38
39   return Dali::Internal::Adaptor::ReadFile( filename, size, memblock, fileType);
40 }
41
42 int ReadFile(const std::string& filename, std::streampos& fileSize, Dali::Vector<char> & memblock, Dali::FileLoader::FileType fileType)
43 {
44   int errorCode = 0;
45   std::ifstream * file;
46
47   if( fileType == Dali::FileLoader::BINARY )
48   {
49     file = new std::ifstream (filename.c_str(), std::ios::in|std::ios::binary|std::ios::ate);
50   }
51   else if( fileType == Dali::FileLoader::TEXT )
52   {
53     file = new std::ifstream (filename.c_str(), std::ios::in|std::ios::ate);
54   }
55   else
56   {
57     return errorCode;
58   }
59
60   if( file->is_open() )
61   {
62     fileSize = file->tellg();
63
64     memblock.Resize( fileSize );
65
66     file->seekg (0, std::ios::beg);
67     file->read( memblock.Begin(), fileSize );
68     file->close();
69
70     delete file;
71
72     errorCode = 1;
73   }
74   else
75   {
76     DALI_LOG_WARNING( "file open failed for: \"%s\"", filename );
77   }
78
79   return errorCode;
80 }
81
82 std::streampos GetFileSize(const std::string& filename)
83 {
84   std::streampos size = 0;
85
86   std::ifstream file( filename.c_str(), std::ios::in|std::ios::binary|std::ios::ate );
87   if( file.is_open() )
88   {
89     size = file.tellg();
90     file.close();
91   }
92
93   return size;
94 }
95
96 } // Adaptor
97
98 } // Internal
99
100 } // Dali