1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-19 21:45:04 +01:00
AIO-switch-updater/source/current_cfw.cpp

52 lines
1.6 KiB
C++
Raw Normal View History

2021-02-10 16:28:47 +00:00
#include "current_cfw.hpp"
#include <switch.h>
bool isServiceRunning(const char *serviceName) {
Handle handle;
SmServiceName service_name = smEncodeName(serviceName);
bool running = R_FAILED(smRegisterService(&handle, service_name, false, 1));
svcCloseHandle(handle);
if (!running)
smUnregisterService(service_name);
return running;
2021-02-26 18:21:49 +00:00
}
2021-02-10 16:28:47 +00:00
2021-02-24 19:44:15 +00:00
Result smAtmosphereHasService(bool *out, SmServiceName name) {
u8 tmp = 0;
Result rc = serviceDispatchInOut(smGetServiceSession(), 65100, name, tmp);
if (R_SUCCEEDED(rc) && out)
*out = tmp;
return rc;
}
2021-02-10 16:28:47 +00:00
CFW getCFW(){
2021-02-24 19:44:15 +00:00
bool res = false;
2021-02-25 21:05:47 +00:00
if(R_SUCCEEDED(smAtmosphereHasService(&res, smEncodeName("rnx")))) {
if(res)
return rnx;
smAtmosphereHasService(&res, smEncodeName("tx"));
if(res)
return sxos;
}
else { // use old method just in case
2021-02-26 18:21:49 +00:00
if(isServiceRunning("rnx")) return rnx;
if(isServiceRunning("tx")) return sxos;
2021-02-25 21:05:47 +00:00
}
2021-02-24 19:44:15 +00:00
return ams;
2021-03-10 20:43:00 +00:00
}
std::string getAmsInfo() {
u64 version;
std::string res;
if(R_SUCCEEDED(splGetConfig((SplConfigItem) 65000, &version))){
res += std::to_string((version >> 56) & ((1 << 8) - 1)) + "." +
std::to_string((version >> 48) & ((1 << 8) - 1)) + "." +
std::to_string((version >> 40) & ((1 << 8) - 1));
if(R_SUCCEEDED(splGetConfig((SplConfigItem) 65007, &version)))
res += version ? "|E" : "|S";
return res;
}
else
return "Couldn't retrieve AMS version";
2021-02-26 18:21:49 +00:00
}