aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/service.h
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-05-18 21:43:29 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-05-18 21:43:29 -0400
commiteab6fd01d7d2e9b7434a8c5654d424cb563c3784 (patch)
tree8fcef16c0a2d6fdc078a9c49d55a7caa6c02a755 /src/core/hle/service/service.h
parent725d240bf7b9cb48de7a66f8696695ef7aabc889 (diff)
- updated service(s) to be KernelObject's
- various cleanups
Diffstat (limited to 'src/core/hle/service/service.h')
-rw-r--r--src/core/hle/service/service.h51
1 files changed, 15 insertions, 36 deletions
diff --git a/src/core/hle/service/service.h b/src/core/hle/service/service.h
index c3dbd202..35735a00 100644
--- a/src/core/hle/service/service.h
+++ b/src/core/hle/service/service.h
@@ -4,6 +4,7 @@
#pragma once
+#include <algorithm>
#include <vector>
#include <map>
#include <string>
@@ -35,15 +36,15 @@ inline static u32* GetCommandBuffer(const int offset=0) {
class Manager;
/// Interface to a CTROS service
-class Interface : NonCopyable {
+class Interface : public KernelObject {
friend class Manager;
public:
+
+ const char *GetName() { return GetPortName(); }
+ const char *GetTypeName() { return GetPortName(); }
- Interface() {
- }
-
- virtual ~Interface() {
- }
+ static KernelIDType GetStaticIDType() { return KERNEL_ID_TYPE_THREAD; }
+ KernelIDType GetIDType() const { return KERNEL_ID_TYPE_THREAD; }
typedef void (*Function)(Interface*);
@@ -54,36 +55,23 @@ public:
};
/**
- * 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
* @return Port name of service
*/
- virtual std::string GetPortName() const {
+ virtual const char *GetPortName() const {
return "[UNKNOWN SERVICE PORT]";
}
/// Allocates a new handle for the service
Handle NewHandle() {
- Handle handle = (m_handles.size() << 16) | m_handle;
+ Handle handle = (m_handles.size() << 16) | 0;//m_handle;
m_handles.push_back(handle);
return handle;
}
/// Frees a handle from the service
void DeleteHandle(Handle handle) {
- for(auto iter = m_handles.begin(); iter != m_handles.end(); ++iter) {
- if(*iter == handle) {
- m_handles.erase(iter);
- break;
- }
- }
+ m_handles.erase(std::remove(m_handles.begin(), m_handles.end(), handle), m_handles.end());
}
/**
@@ -96,12 +84,12 @@ public:
if (itr == m_functions.end()) {
ERROR_LOG(OSHLE, "Unknown/unimplemented function: port = %s, command = 0x%08X!",
- GetPortName().c_str(), cmd_buff[0]);
+ GetPortName(), cmd_buff[0]);
return -1;
}
if (itr->second.func == NULL) {
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;
}
@@ -122,10 +110,10 @@ protected:
}
private:
- u32 m_handle;
-
+
std::vector<Handle> m_handles;
std::map<u32, FunctionInfo> m_functions;
+
};
/// Simple class to manage accessing services from ports and UID handles
@@ -150,18 +138,9 @@ public:
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::map<std::string, u32> m_port_map;
+
};
/// Initialize ServiceManager