summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-06-26 00:15:35 +0200
committerbunnei <ericbunnie@gmail.com>2014-06-27 22:58:30 +0200
commit8b8c8f4c13c8959853aadf931161f2b867158068 (patch)
treebc7b20495507fdcde69a1ec37d59f3545eca4428 /src/core/hle/kernel
parentCore: Removed unused directory_file_system and meta_file_system modules. (diff)
downloadyuzu-8b8c8f4c13c8959853aadf931161f2b867158068.tar
yuzu-8b8c8f4c13c8959853aadf931161f2b867158068.tar.gz
yuzu-8b8c8f4c13c8959853aadf931161f2b867158068.tar.bz2
yuzu-8b8c8f4c13c8959853aadf931161f2b867158068.tar.lz
yuzu-8b8c8f4c13c8959853aadf931161f2b867158068.tar.xz
yuzu-8b8c8f4c13c8959853aadf931161f2b867158068.tar.zst
yuzu-8b8c8f4c13c8959853aadf931161f2b867158068.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/archive.cpp61
-rw-r--r--src/core/hle/kernel/archive.h23
-rw-r--r--src/core/hle/kernel/kernel.h1
3 files changed, 85 insertions, 0 deletions
diff --git a/src/core/hle/kernel/archive.cpp b/src/core/hle/kernel/archive.cpp
new file mode 100644
index 000000000..d7351e702
--- /dev/null
+++ b/src/core/hle/kernel/archive.cpp
@@ -0,0 +1,61 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#include "common/common_types.h"
+
+#include "core/hle/kernel/kernel.h"
+#include "core/hle/kernel/archive.h"
+
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Kernel namespace
+
+namespace Kernel {
+
+class Archive : public Object {
+public:
+ const char* GetTypeName() const { return "Archive"; }
+ const char* GetName() const { return name.c_str(); }
+
+ static Kernel::HandleType GetStaticHandleType() { return HandleType::Archive; }
+ Kernel::HandleType GetHandleType() const { return HandleType::Archive; }
+
+ std::string name; ///< Name of archive (optional)
+
+ /**
+ * Wait for kernel object to synchronize
+ * @param wait Boolean wait set if current thread should wait as a result of sync operation
+ * @return Result of operation, 0 on success, otherwise error code
+ */
+ Result WaitSynchronization(bool* wait) {
+ // TODO(bunnei): ImplementMe
+ ERROR_LOG(OSHLE, "unimplemented function");
+ return 0;
+ }
+};
+
+/**
+ * Creates an Archive
+ * @param name Optional name of Archive
+ * @param handle Handle to newly created archive object
+ * @return Newly created Archive object
+ */
+Archive* CreateArchive(Handle& handle, const std::string& name) {
+ Archive* archive = new Archive;
+ handle = Kernel::g_object_pool.Create(archive);
+ archive->name = name;
+ return archive;
+}
+
+/**
+ * Creates an Archive
+ * @param name Optional name of Archive
+ * @return Handle to newly created Archive object
+ */
+Handle CreateArchive(const std::string& name) {
+ Handle handle;
+ Archive* archive = CreateArchive(handle, name);
+ return handle;
+}
+
+} // namespace Kernel
diff --git a/src/core/hle/kernel/archive.h b/src/core/hle/kernel/archive.h
new file mode 100644
index 000000000..98670f06c
--- /dev/null
+++ b/src/core/hle/kernel/archive.h
@@ -0,0 +1,23 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "common/common_types.h"
+
+#include "core/hle/kernel/kernel.h"
+
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Kernel namespace
+
+namespace Kernel {
+
+/**
+ * Creates an archive
+ * @param name Optional name of archive
+ * @return Handle to newly created archive object
+ */
+Handle CreateArchive(const std::string& name="Unknown");
+
+} // namespace FileSys
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index 3f15da0ac..69f4ddd37 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -29,6 +29,7 @@ enum class HandleType : u32 {
Arbiter = 9,
File = 10,
Semaphore = 11,
+ Archive = 12,
};
enum {