aboutsummaryrefslogtreecommitdiffstats
path: root/source/elfload.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@clyne-lp.lan>2021-07-31 10:47:00 -0400
committerClyne Sullivan <clyne@clyne-lp.lan>2021-07-31 10:47:00 -0400
commit123cc4c756cc8a22f66351ab65595c5a20e53e27 (patch)
treed12ee8cb3d91e08c422e5bd4b5cb01d7dd622b19 /source/elfload.hpp
parentd24ed15843c328983f9ed20283f89624e8574b9f (diff)
reorganized source, wip
Diffstat (limited to 'source/elfload.hpp')
-rw-r--r--source/elfload.hpp48
1 files changed, 48 insertions, 0 deletions
diff --git a/source/elfload.hpp b/source/elfload.hpp
new file mode 100644
index 0000000..ada35e5
--- /dev/null
+++ b/source/elfload.hpp
@@ -0,0 +1,48 @@
+/**
+ * @file elfload.hpp
+ * @brief Loads ELF binary data into memory for execution.
+ *
+ * Copyright (C) 2021 Clyne Sullivan
+ *
+ * Distributed under the GNU GPL v3 or later. You should have received a copy of
+ * the GNU General Public License along with this program.
+ * If not, see <https://www.gnu.org/licenses/>.
+ */
+
+#ifndef ELF_LOAD_HPP_
+#define ELF_LOAD_HPP_
+
+#include "samplebuffer.hpp"
+
+#include <array>
+#include <cstddef>
+
+constexpr unsigned int MAX_ELF_FILE_SIZE = 16 * 1024;
+
+class ELFManager
+{
+public:
+ using EntryFunc = Sample *(*)(Sample *, size_t);
+
+ static EntryFunc loadFromInternalBuffer();
+
+ static EntryFunc loadedElf() {
+ return m_entry;
+ }
+
+ static unsigned char *fileBuffer() {
+ return m_file_buffer.data();
+ }
+
+ static void unload() {
+ m_entry = nullptr;
+ }
+
+private:
+ static EntryFunc m_entry;
+
+ static std::array<unsigned char, MAX_ELF_FILE_SIZE> m_file_buffer;
+};
+
+#endif // ELF_LOAD_HPP_
+