forked from organicmaps/organicmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatform_android.cpp
248 lines (209 loc) · 5.72 KB
/
platform_android.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
#include "platform/constants.hpp"
#include "platform/measurement_utils.hpp"
#include "platform/platform.hpp"
#include "platform/platform_unix_impl.hpp"
#include "platform/settings.hpp"
#include "coding/zip_reader.hpp"
#include "base/file_name_utils.hpp"
#include "base/logging.hpp"
#include "base/string_utils.hpp"
#include "base/thread.hpp"
#include <memory>
#include <regex>
#include <string>
#include <unistd.h> // for sysconf
#include <sys/stat.h>
using namespace std;
Platform::Platform()
{
/// @see initialization routine in android/app/src/main/cpp/com/.../Platform.hpp
}
#ifdef DEBUG
namespace {
class DbgLogger
{
public:
explicit DbgLogger(string const & file) : m_file(file) {}
~DbgLogger()
{
LOG(LDEBUG, ("Source for file", m_file, "is", m_src));
}
void SetSource(char src) { m_src = src; }
private:
string const & m_file;
char m_src;
};
} // namespace
#endif
unique_ptr<ModelReader> Platform::GetReader(string const & file, string searchScope) const
{
string ext = base::GetFileExtension(file);
strings::AsciiToLower(ext);
ASSERT(!ext.empty(), ());
uint32_t const logPageSize = (ext == DATA_FILE_EXTENSION) ? READER_CHUNK_LOG_SIZE : 10;
uint32_t const logPageCount = (ext == DATA_FILE_EXTENSION) ? READER_CHUNK_LOG_COUNT : 4;
if (searchScope.empty())
{
if (file[0] == '/')
searchScope = "f";
else
{
ASSERT(ext != ".kml" && ext != ".kmb" && ext != ".kmz", ("BookmarkManager is responsible for that"));
if (ext == DATA_FILE_EXTENSION)
{
if (file.starts_with(WORLD_COASTS_FILE_NAME) || file.starts_with(WORLD_FILE_NAME))
searchScope = "wsr";
else
searchScope = "w";
}
else if (file == SETTINGS_FILE_NAME)
searchScope = "s";
else
searchScope = "rw";
}
}
#ifdef DEBUG
DbgLogger logger(file);
#endif
for (char const s : searchScope)
{
#ifdef DEBUG
logger.SetSource(s);
#endif
switch (s)
{
case 'w':
{
string const path = base::JoinPath(m_writableDir, file);
if (IsFileExistsByFullPath(path))
return make_unique<FileReader>(path, logPageSize, logPageCount);
break;
}
case 's':
{
string const path = base::JoinPath(m_settingsDir, file);
if (IsFileExistsByFullPath(path))
return make_unique<FileReader>(path, logPageSize, logPageCount);
break;
}
case 'f':
if (IsFileExistsByFullPath(file))
return make_unique<FileReader>(file, logPageSize, logPageCount);
break;
case 'r':
ASSERT_EQUAL(file.find("assets/"), string::npos, ());
try
{
return make_unique<ZipFileReader>(m_resourcesDir, "assets/" + file, logPageSize, logPageCount);
}
catch (Reader::OpenException const & e)
{
LOG(LWARNING, ("Can't get reader:", e.what()));
}
break;
default:
CHECK(false, ("Unsupported source:", s));
break;
}
}
LOG(LWARNING, ("Can't get reader for:", file, "in scope", searchScope));
MYTHROW(FileAbsentException, ("File not found", file));
return nullptr;
}
void Platform::GetFilesByRegExp(string const & directory, string const & regexp, FilesList & res)
{
if (ZipFileReader::IsZip(directory))
{
// Get files list inside zip file
typedef ZipFileReader::FileList FilesT;
FilesT fList;
ZipFileReader::FilesList(directory, fList);
regex exp(regexp);
for (FilesT::iterator it = fList.begin(); it != fList.end(); ++it)
{
string & name = it->first;
if (regex_search(name.begin(), name.end(), exp))
{
// Remove assets/ prefix - clean files are needed for fonts white/blacklisting logic
size_t const ASSETS_LENGTH = 7;
if (name.find("assets/") == 0)
name.erase(0, ASSETS_LENGTH);
res.push_back(name);
}
}
}
else
pl::EnumerateFilesByRegExp(directory, regexp, res);
}
int Platform::VideoMemoryLimit() const { return 10 * 1024 * 1024; }
int Platform::PreCachingDepth() const { return 3; }
bool Platform::GetFileSizeByName(string const & fileName, uint64_t & size) const
{
try
{
size = ReaderPtr<Reader>(GetReader(fileName)).Size();
return true;
}
catch (RootException const & ex)
{
LOG(LWARNING, ("Can't get file size for:", fileName));
return false;
}
}
// static
Platform::EError Platform::MkDir(string const & dirName)
{
if (0 != mkdir(dirName.c_str(), 0755))
return ErrnoToError();
return Platform::ERR_OK;
}
void Platform::SetupMeasurementSystem() const
{
auto units = measurement_utils::Units::Metric;
if (settings::Get(settings::kMeasurementUnits, units))
return;
// @TODO Add correct implementation
units = measurement_utils::Units::Metric;
settings::Set(settings::kMeasurementUnits, units);
}
void Platform::GetSystemFontNames(FilesList & res) const
{
bool wasRoboto = false;
string const path = "/system/fonts/";
pl::EnumerateFiles(path, [&](char const * entry)
{
string name(entry);
if (name != "Roboto-Medium.ttf" && name != "Roboto-Regular.ttf")
{
if (!name.starts_with("NotoNaskh") && !name.starts_with("NotoSans"))
return;
if (name.find("-Regular") == string::npos)
return;
}
else
wasRoboto = true;
res.push_back(path + name);
});
if (!wasRoboto)
{
string droidSans = path + "DroidSans.ttf";
if (IsFileExistsByFullPath(droidSans))
res.push_back(std::move(droidSans));
}
}
// static
time_t Platform::GetFileCreationTime(std::string const & path)
{
struct stat st;
if (0 == stat(path.c_str(), &st))
return st.st_atim.tv_sec;
return 0;
}
// static
time_t Platform::GetFileModificationTime(std::string const & path)
{
struct stat st;
if (0 == stat(path.c_str(), &st))
return st.st_mtim.tv_sec;
return 0;
}