Extracted 'DeviceName' method from platform.cpp

This commit is contained in:
Александр Зацепин 2018-03-01 14:01:00 +03:00 committed by Aleksandr Zatsepin
parent 953ff937f3
commit e4ee963e47
8 changed files with 35 additions and 5 deletions

View file

@ -198,11 +198,6 @@ bool Platform::IsDirectory(string const & path)
return fileType == FILE_TYPE_DIRECTORY;
}
string Platform::DeviceName() const
{
return OMIM_OS_NAME;
}
// static
void Platform::GetFilesRecursively(string const & directory, FilesList & filesList)
{

View file

@ -191,6 +191,11 @@ unique_ptr<ModelReader> Platform::GetReader(string const & file, string const &
return nullptr;
}
string Platform::DeviceName() const
{
return OMIM_OS_NAME;
}
void Platform::GetFilesByRegExp(string const & directory, string const & regexp, FilesList & res)
{
if (ZipFileReader::IsZip(directory))

View file

@ -143,6 +143,11 @@ string Platform::GetMemoryInfo() const
return ss.str();
}
string Platform::DeviceName() const
{
return OMIM_OS_NAME;
}
void Platform::RunOnGuiThread(base::TaskLoop::Task && task)
{
ASSERT(m_guiThread, ());

View file

@ -212,6 +212,11 @@ string Platform::UniqueClientId() const
return "n0dbus0n0lsb00000000000000000000";
}
string Platform::DeviceName() const
{
return OMIM_OS_NAME;
}
Platform::EConnectionType Platform::ConnectionStatus()
{
int socketFd = socket(AF_INET, SOCK_STREAM, 0);

View file

@ -113,6 +113,11 @@ Platform::Platform()
string Platform::UniqueClientId() const { return [Alohalytics installationId].UTF8String; }
string Platform::DeviceName() const
{
return OMIM_OS_NAME;
}
void Platform::RunOnGuiThread(base::TaskLoop::Task && task)
{
ASSERT(m_guiThread, ());

View file

@ -23,6 +23,11 @@ unique_ptr<ModelReader> Platform::GetReader(string const & file, string const &
READER_CHUNK_LOG_SIZE, READER_CHUNK_LOG_COUNT);
}
string Platform::DeviceName() const
{
return OMIM_OS_NAME;
}
bool Platform::GetFileSizeByName(string const & fileName, uint64_t & size) const
{
try

View file

@ -55,6 +55,11 @@ string Platform::UniqueClientId() const
return FromTizenString(pApp->GetAppId());
}
string Platform::DeviceName() const
{
return OMIM_OS_NAME;
}
void Platform::RunOnGuiThread(TFunctor const & fn)
{
/// @todo

View file

@ -136,6 +136,11 @@ string Platform::UniqueClientId() const
return "@TODO";
}
string Platform::DeviceName() const
{
return OMIM_OS_NAME;
}
void Platform::RunOnGuiThread(TFunctor const & fn)
{
/// @todo