Merge "Add handling double slash in Android assets path." into devel/master
[platform/core/uifw/dali-adaptor.git] / dali / internal / adaptor-framework / android / file-loader-impl-android.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 <cstdio>
22 #include <string>
23 #include <fstream>
24 #include <dali/integration-api/debug.h>
25
26 // INTERNAL INCLUDES
27 #include <dali/integration-api/adaptor-framework/android/android-framework.h>
28 #include <dali/internal/adaptor/common/framework.h>
29
30 namespace Dali
31 {
32
33 namespace Internal
34 {
35
36 namespace Adaptor
37 {
38
39 int ReadFile(const std::string& filename, Dali::Vector<char>& memblock, Dali::FileLoader::FileType fileType)
40 {
41   std::streampos size;
42
43   return Dali::Internal::Adaptor::ReadFile( filename, size, memblock, fileType);
44 }
45
46 inline bool hasPrefix(const std::string& prefix, const std::string& path)
47 {
48   return std::mismatch(prefix.begin(), prefix.end(), path.begin()).first == prefix.end();
49 }
50
51 inline std::string ConvertToAssetsInternalPath(const std::string& path, int offset)
52 {
53   std::string internalPath = std::string(path.c_str() + offset);
54
55   int i = 0;
56   while ((i = internalPath.find("//", i)) != std::string::npos)
57   {
58     internalPath.replace(i, 2, "/");
59   }
60
61   return internalPath;
62 }
63
64 int ReadFile(const std::string& filename, std::streampos& fileSize, Dali::Vector<char>& memblock, Dali::FileLoader::FileType fileType)
65 {
66   int errorCode = 0;
67   int length = 0;
68   char mode[3] = { 'r', 0, 0 };
69
70   if( fileType == Dali::FileLoader::BINARY )
71   {
72     mode[1] = 'b';
73   }
74   else if( fileType != Dali::FileLoader::TEXT )
75   {
76     return errorCode;
77   }
78
79   const std::string assetsPrefix = "assets/";
80   if( hasPrefix( assetsPrefix, filename ) )
81   {
82     std::string internalPath = ConvertToAssetsInternalPath( filename, assetsPrefix.length() );
83     AAssetManager* assetManager = Dali::Integration::AndroidFramework::Get().GetApplicationAssets();
84     AAsset* asset = AAssetManager_open( assetManager, internalPath.c_str(), AASSET_MODE_BUFFER );
85     if( asset )
86     {
87       length = AAsset_getLength( asset );
88       memblock.Resize( length + 1 ); // 1 for extra zero at the end
89
90       char* buffer = &memblock[0];
91       errorCode = ( AAsset_read( asset, buffer, length ) != length ) ? 0 : 1;
92       fileSize = length;
93
94       AAsset_close( asset );
95     }
96     else
97     {
98       DALI_LOG_ERROR( "Asset not found %s\n", internalPath.c_str() );
99     }
100   }
101   else
102   {
103     FILE* file = fopen( filename.c_str(),  mode );
104     if( file )
105     {
106       fseek( file, 0, SEEK_END );
107       length = ftell( file );
108       memblock.Resize( length + 1 ); // 1 for extra zero at the end
109
110       char* buffer = &memblock[0];
111       fseek( file, 0, SEEK_SET );
112       errorCode = ( fread( buffer, 1, length, file ) != length ) ? 0 : 1;
113       fileSize = length;
114
115       fclose( file );
116     }
117     else
118     {
119       DALI_LOG_ERROR( "File not found %s\n", filename.c_str() );
120     }
121   }
122
123   return errorCode;
124 }
125
126 std::streampos GetFileSize(const std::string& filename)
127 {
128   std::streampos size = 0;
129
130   const std::string assetsPrefix = "assets/";
131   if( hasPrefix( assetsPrefix, filename ) )
132   {
133     std::string internalPath = ConvertToAssetsInternalPath( filename, assetsPrefix.length() );
134     AAssetManager* assetManager = Dali::Integration::AndroidFramework::Get().GetApplicationAssets();
135     AAsset* asset = AAssetManager_open( assetManager, internalPath.c_str(), AASSET_MODE_BUFFER );
136     if( asset )
137     {
138       size = AAsset_getLength( asset );
139       AAsset_close( asset );
140     }
141     else
142     {
143       DALI_LOG_ERROR( "Asset not found %s\n", internalPath.c_str() );
144     }
145   }
146   else
147   {
148     FILE* file = fopen( filename.c_str(), "r" );
149     if( file )
150     {
151       fseek( file, 0, SEEK_END );
152       size = ftell( file );
153       fclose( file );
154     }
155     else
156     {
157       DALI_LOG_ERROR( "File not found %s\n", filename.c_str() );
158     }
159   }
160
161   return size;
162 }
163
164 } // Adaptor
165
166 } // Internal
167
168 } // Dali