added some very initial command parsing for SRV Sync

This commit is contained in:
bunnei 2014-04-13 00:38:48 -04:00
parent 67f6e41470
commit 5ea4679630
1 changed files with 31 additions and 5 deletions

View File

@ -5,15 +5,16 @@
#include "common/common.h" #include "common/common.h"
#include "common/log.h" #include "common/log.h"
#include "core/hle/hle.h"
#include "core/hle/service/service.h" #include "core/hle/service/service.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace Service
namespace Service { namespace Service {
Manager* g_manager = NULL; ///< Service manager Manager* g_manager = NULL; ///< Service manager
////////////////////////////////////////////////////////////////////////////////////////////////////
// Service Manager class
Manager::Manager() { Manager::Manager() {
} }
@ -62,7 +63,11 @@ Interface* Manager::FetchFromPortName(std::string port_name) {
return FetchFromUID(itr->second); return FetchFromUID(itr->second);
} }
////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface to "SRV" service
class Interface_SRV : public Interface { class Interface_SRV : public Interface {
public: public:
Interface_SRV() { Interface_SRV() {
@ -71,6 +76,12 @@ public:
~Interface_SRV() { ~Interface_SRV() {
} }
enum {
CMD_OFFSET = 0x80,
CMD_HEADER_INIT = 0x10002, ///< Command header to initialize SRV service
CMD_HEADER_GET_HANDLE = 0x50100, ///< Command header to get handle of other services
};
/** /**
* Gets the string name used by CTROS for a service * Gets the string name used by CTROS for a service
* @return String name of service * @return String name of service
@ -92,12 +103,27 @@ public:
* @return Return result of svcSendSyncRequest passed back to user app * @return Return result of svcSendSyncRequest passed back to user app
*/ */
Syscall::Result Sync() { Syscall::Result Sync() {
ERROR_LOG(HLE, "Unimplemented function Interface_SRV::Sync"); u32 header = 0;
HLE::Read<u32>(header, (HLE::CMD_BUFFER_ADDR + CMD_OFFSET));
switch (header) {
case CMD_HEADER_INIT:
NOTICE_LOG(HLE, "Interface_SRV::Sync - Initialize");
break;
case CMD_HEADER_GET_HANDLE:
NOTICE_LOG(HLE, "Interface_SRV::Sync - GetHandle, port: %s", HLE::GetCharPointer(HLE::CMD_BUFFER_ADDR + CMD_OFFSET + 4));
break;
}
return 0; return 0;
} }
}; };
////////////////////////////////////////////////////////////////////////////////////////////////////
// Module interface
/// Initialize ServiceManager /// Initialize ServiceManager
void Init() { void Init() {
g_manager = new Manager; g_manager = new Manager;