mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-13 05:20:45 +00:00
141 lines
3.4 KiB
C++
141 lines
3.4 KiB
C++
/******************************************************************************
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2016-2017 Baldur Karlsson
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
******************************************************************************/
|
|
|
|
#include <android/log.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include "os/os_specific.h"
|
|
|
|
#define LOGCAT_TAG "renderdoc"
|
|
|
|
namespace Keyboard
|
|
{
|
|
void Init()
|
|
{
|
|
}
|
|
|
|
bool PlatformHasKeyInput()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void AddInputWindow(void *wnd)
|
|
{
|
|
}
|
|
|
|
void RemoveInputWindow(void *wnd)
|
|
{
|
|
}
|
|
|
|
bool GetKeyState(int key)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
namespace FileIO
|
|
{
|
|
string GetTempRootPath()
|
|
{
|
|
// Save captures in the app's private /sdcard directory, which doesnt require
|
|
// WRITE_EXTERNAL_STORAGE permissions. There is no security enforced here,
|
|
// so the replay server can load it as it has READ_EXTERNAL_STORAGE.
|
|
// This is the same as returned by getExternalFilesDir(). It might possibly change in the future.
|
|
string package;
|
|
GetExecutableFilename(package);
|
|
return "/sdcard/Android/data/" + package + "/files";
|
|
}
|
|
|
|
string GetAppFolderFilename(const string &filename)
|
|
{
|
|
return GetTempRootPath() + string("/") + filename;
|
|
}
|
|
|
|
// For RenderDocCmd.apk, this returns "org.renderdoc.renderdoccmd"
|
|
// For other APKs, we use it to get the writable temp directory.
|
|
void GetExecutableFilename(string &selfName)
|
|
{
|
|
char buf[4096];
|
|
snprintf(buf, sizeof(buf), "/proc/%u/cmdline", getpid());
|
|
int fd = open(buf, O_RDONLY);
|
|
if(fd < 0)
|
|
{
|
|
return;
|
|
}
|
|
ssize_t len = read(fd, buf, sizeof(buf));
|
|
close(fd);
|
|
if(len < 0 || len == sizeof(buf))
|
|
{
|
|
return;
|
|
}
|
|
|
|
selfName = buf;
|
|
}
|
|
};
|
|
|
|
namespace StringFormat
|
|
{
|
|
string Wide2UTF8(const std::wstring &s)
|
|
{
|
|
RDCFATAL("Converting wide strings to UTF-8 is not supported on Android!");
|
|
return "";
|
|
}
|
|
|
|
void Shutdown()
|
|
{
|
|
}
|
|
};
|
|
|
|
namespace OSUtility
|
|
{
|
|
void WriteOutput(int channel, const char *str)
|
|
{
|
|
if(channel == OSUtility::Output_StdOut)
|
|
fprintf(stdout, "%s", str);
|
|
else if(channel == OSUtility::Output_StdErr)
|
|
fprintf(stderr, "%s", str);
|
|
else if(channel == OSUtility::Output_DebugMon)
|
|
__android_log_print(ANDROID_LOG_INFO, LOGCAT_TAG, "%s", str);
|
|
}
|
|
|
|
uint64_t GetMachineIdent()
|
|
{
|
|
uint64_t ret = MachineIdent_Android;
|
|
|
|
#if defined(_M_ARM) || defined(__arm__)
|
|
ret |= MachineIdent_Arch_ARM;
|
|
#else
|
|
ret |= MachineIdent_Arch_x86;
|
|
#endif
|
|
|
|
#if ENABLED(RDOC_X64)
|
|
ret |= MachineIdent_64bit;
|
|
#else
|
|
ret |= MachineIdent_32bit;
|
|
#endif
|
|
|
|
return ret;
|
|
}
|
|
};
|