mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	- updated service(s) to be KernelObject's
- various cleanups
This commit is contained in:
		
							parent
							
								
									725d240bf7
								
							
						
					
					
						commit
						eab6fd01d7
					
				
					 7 changed files with 31 additions and 59 deletions
				
			
		|  | @ -10,10 +10,11 @@ typedef u32 Handle; | ||||||
| typedef s32 Result; | typedef s32 Result; | ||||||
| 
 | 
 | ||||||
| enum KernelIDType { | enum KernelIDType { | ||||||
|     KERNEL_ID_TYPE_THREAD       = 1, |     KERNEL_ID_TYPE_THREAD, | ||||||
|     KERNEL_ID_TYPE_SEMAPHORE    = 2, |     KERNEL_ID_TYPE_SEMAPHORE, | ||||||
|     KERNEL_ID_TYPE_MUTEX        = 3, |     KERNEL_ID_TYPE_MUTEX, | ||||||
|     KERNEL_ID_TYPE_EVENT        = 4, |     KERNEL_ID_TYPE_EVENT, | ||||||
|  |     KERNEL_ID_TYPE_SERVICE, | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| enum { | enum { | ||||||
|  |  | ||||||
|  | @ -29,7 +29,7 @@ public: | ||||||
|      * Gets the string port name used by CTROS for the service |      * Gets the string port name used by CTROS for the service | ||||||
|      * @return Port name of service |      * @return Port name of service | ||||||
|      */ |      */ | ||||||
|     std::string GetPortName() const { |     const char *GetPortName() const { | ||||||
|         return "APT:U"; |         return "APT:U"; | ||||||
|     } |     } | ||||||
| }; | }; | ||||||
|  |  | ||||||
|  | @ -23,7 +23,7 @@ public: | ||||||
|      * Gets the string port name used by CTROS for the service |      * Gets the string port name used by CTROS for the service | ||||||
|      * @return Port name of service |      * @return Port name of service | ||||||
|      */ |      */ | ||||||
|     std::string GetPortName() const { |     const char *GetPortName() const { | ||||||
|         return "gsp::Gpu"; |         return "gsp::Gpu"; | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -25,7 +25,7 @@ public: | ||||||
|      * Gets the string port name used by CTROS for the service |      * Gets the string port name used by CTROS for the service | ||||||
|      * @return Port name of service |      * @return Port name of service | ||||||
|      */ |      */ | ||||||
|     std::string GetPortName() const { |     const char *GetPortName() const { | ||||||
|         return "hid:USER"; |         return "hid:USER"; | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -7,12 +7,15 @@ | ||||||
| #include "common/string_util.h" | #include "common/string_util.h" | ||||||
| 
 | 
 | ||||||
| #include "core/hle/hle.h" | #include "core/hle/hle.h" | ||||||
|  | 
 | ||||||
| #include "core/hle/service/service.h" | #include "core/hle/service/service.h" | ||||||
| #include "core/hle/service/apt.h" | #include "core/hle/service/apt.h" | ||||||
| #include "core/hle/service/gsp.h" | #include "core/hle/service/gsp.h" | ||||||
| #include "core/hle/service/hid.h" | #include "core/hle/service/hid.h" | ||||||
| #include "core/hle/service/srv.h" | #include "core/hle/service/srv.h" | ||||||
| 
 | 
 | ||||||
|  | #include "core/hle/kernel/kernel.h" | ||||||
|  | 
 | ||||||
| namespace Service { | namespace Service { | ||||||
| 
 | 
 | ||||||
| Manager* g_manager = NULL;  ///< Service manager
 | Manager* g_manager = NULL;  ///< Service manager
 | ||||||
|  | @ -31,32 +34,21 @@ Manager::~Manager() { | ||||||
| 
 | 
 | ||||||
| /// Add a service to the manager (does not create it though)
 | /// Add a service to the manager (does not create it though)
 | ||||||
| void Manager::AddService(Interface* service) { | void Manager::AddService(Interface* service) { | ||||||
|     int index = m_services.size(); |     m_port_map[service->GetPortName()] = g_kernel_objects.Create(service); | ||||||
|     Handle handle = GetHandleFromIndex(index); |  | ||||||
| 
 |  | ||||||
|     m_services.push_back(service); |     m_services.push_back(service); | ||||||
| 
 |  | ||||||
|     m_port_map[service->GetPortName()] = handle; |  | ||||||
|     service->m_handle = handle; |  | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| /// Removes a service from the manager, also frees memory
 | /// Removes a service from the manager, also frees memory
 | ||||||
| void Manager::DeleteService(std::string port_name) { | void Manager::DeleteService(std::string port_name) { | ||||||
|     auto service = FetchFromPortName(port_name); |     Interface* service = FetchFromPortName(port_name); | ||||||
| 
 |     m_services.erase(std::remove(m_services.begin(), m_services.end(), service), m_services.end()); | ||||||
|     m_services.erase(m_services.begin() + GetIndexFromHandle(service->m_handle)); |  | ||||||
|     m_port_map.erase(port_name); |     m_port_map.erase(port_name); | ||||||
| 
 |  | ||||||
|     delete service; |     delete service; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| /// Get a Service Interface from its Handle
 | /// Get a Service Interface from its Handle
 | ||||||
| Interface* Manager::FetchFromHandle(Handle handle) { | Interface* Manager::FetchFromHandle(Handle handle) { | ||||||
|     int index = GetIndexFromHandle(handle); |     return g_kernel_objects.GetFast<Interface>(handle); | ||||||
|     if (index < (int)m_services.size()) { |  | ||||||
|         return m_services[index]; |  | ||||||
|     } |  | ||||||
|     return NULL; |  | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| /// Get a Service Interface from its port
 | /// Get a Service Interface from its port
 | ||||||
|  |  | ||||||
|  | @ -4,6 +4,7 @@ | ||||||
| 
 | 
 | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
|  | #include <algorithm> | ||||||
| #include <vector> | #include <vector> | ||||||
| #include <map> | #include <map> | ||||||
| #include <string> | #include <string> | ||||||
|  | @ -35,15 +36,15 @@ inline static u32* GetCommandBuffer(const int offset=0) { | ||||||
| class Manager; | class Manager; | ||||||
| 
 | 
 | ||||||
| /// Interface to a CTROS service
 | /// Interface to a CTROS service
 | ||||||
| class Interface : NonCopyable { | class Interface  : public KernelObject { | ||||||
|     friend class Manager; |     friend class Manager; | ||||||
| public: | public: | ||||||
|      |      | ||||||
|     Interface() { |     const char *GetName() { return GetPortName(); } | ||||||
|     } |     const char *GetTypeName() { return GetPortName(); } | ||||||
| 
 | 
 | ||||||
|     virtual ~Interface() { |     static KernelIDType GetStaticIDType() { return KERNEL_ID_TYPE_THREAD; } | ||||||
|     } |     KernelIDType GetIDType() const { return KERNEL_ID_TYPE_THREAD; } | ||||||
| 
 | 
 | ||||||
|     typedef void (*Function)(Interface*); |     typedef void (*Function)(Interface*); | ||||||
| 
 | 
 | ||||||
|  | @ -53,37 +54,24 @@ public: | ||||||
|         std::string name; |         std::string name; | ||||||
|     }; |     }; | ||||||
| 
 | 
 | ||||||
|     /**
 |  | ||||||
|      * Gets the Handle for the serice |  | ||||||
|      * @return Handle of service in native format |  | ||||||
|      */ |  | ||||||
|     Handle GetHandle() const { |  | ||||||
|         return m_handle; |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /**
 |     /**
 | ||||||
|      * Gets the string name used by CTROS for a service |      * Gets the string name used by CTROS for a service | ||||||
|      * @return Port name of service |      * @return Port name of service | ||||||
|      */ |      */ | ||||||
|     virtual std::string GetPortName() const { |     virtual const char *GetPortName() const { | ||||||
|         return "[UNKNOWN SERVICE PORT]"; |         return "[UNKNOWN SERVICE PORT]"; | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     /// Allocates a new handle for the service
 |     /// Allocates a new handle for the service
 | ||||||
|     Handle NewHandle() { |     Handle NewHandle() { | ||||||
|         Handle handle = (m_handles.size() << 16) | m_handle; |         Handle handle = (m_handles.size() << 16) | 0;//m_handle;
 | ||||||
|         m_handles.push_back(handle); |         m_handles.push_back(handle); | ||||||
|         return handle; |         return handle; | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     /// Frees a handle from the service
 |     /// Frees a handle from the service
 | ||||||
|     void DeleteHandle(Handle handle) { |     void DeleteHandle(Handle handle) { | ||||||
|         for(auto iter = m_handles.begin(); iter != m_handles.end(); ++iter) { |         m_handles.erase(std::remove(m_handles.begin(), m_handles.end(), handle), m_handles.end()); | ||||||
|             if(*iter == handle) { |  | ||||||
|                 m_handles.erase(iter); |  | ||||||
|                 break; |  | ||||||
|             } |  | ||||||
|         } |  | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     /**
 |     /**
 | ||||||
|  | @ -96,12 +84,12 @@ public: | ||||||
| 
 | 
 | ||||||
|         if (itr == m_functions.end()) { |         if (itr == m_functions.end()) { | ||||||
|             ERROR_LOG(OSHLE, "Unknown/unimplemented function: port = %s, command = 0x%08X!",  |             ERROR_LOG(OSHLE, "Unknown/unimplemented function: port = %s, command = 0x%08X!",  | ||||||
|                 GetPortName().c_str(), cmd_buff[0]); |                 GetPortName(), cmd_buff[0]); | ||||||
|             return -1; |             return -1; | ||||||
|         } |         } | ||||||
|         if (itr->second.func == NULL) { |         if (itr->second.func == NULL) { | ||||||
|             ERROR_LOG(OSHLE, "Unimplemented function: port = %s, name = %s!",  |             ERROR_LOG(OSHLE, "Unimplemented function: port = %s, name = %s!",  | ||||||
|                 GetPortName().c_str(), itr->second.name.c_str()); |                 GetPortName(), itr->second.name.c_str()); | ||||||
|             return -1; |             return -1; | ||||||
|         }  |         }  | ||||||
| 
 | 
 | ||||||
|  | @ -122,10 +110,10 @@ protected: | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
| private: | private: | ||||||
|     u32 m_handle; |  | ||||||
| 
 | 
 | ||||||
|     std::vector<Handle>    m_handles; |     std::vector<Handle>    m_handles; | ||||||
|     std::map<u32, FunctionInfo>     m_functions; |     std::map<u32, FunctionInfo>     m_functions; | ||||||
|  | 
 | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| /// Simple class to manage accessing services from ports and UID handles
 | /// Simple class to manage accessing services from ports and UID handles
 | ||||||
|  | @ -150,18 +138,9 @@ public: | ||||||
| 
 | 
 | ||||||
| private: | private: | ||||||
| 
 | 
 | ||||||
|     /// Convert an index into m_services vector into a UID
 |  | ||||||
|     static Handle GetHandleFromIndex(const int index) { |  | ||||||
|         return index | 0x10000000; |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /// Convert a UID into an index into m_services
 |  | ||||||
|     static int GetIndexFromHandle(const Handle handle) { |  | ||||||
|         return handle & 0x0FFFFFFF; |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     std::vector<Interface*>     m_services; |     std::vector<Interface*>     m_services; | ||||||
|     std::map<std::string, u32>  m_port_map; |     std::map<std::string, u32>  m_port_map; | ||||||
|  | 
 | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| /// Initialize ServiceManager
 | /// Initialize ServiceManager
 | ||||||
|  |  | ||||||
|  | @ -22,7 +22,7 @@ public: | ||||||
|      * Gets the string name used by CTROS for the service |      * Gets the string name used by CTROS for the service | ||||||
|      * @return Port name of service |      * @return Port name of service | ||||||
|      */ |      */ | ||||||
|     std::string GetPortName() const { |     const char *GetPortName() const { | ||||||
|         return "srv:"; |         return "srv:"; | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue