123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- #pragma once
- #include "openmpt/all/BuildSettings.hpp"
- OPENMPT_NAMESPACE_BEGIN
- namespace mpt
- {
- typedef void* (*FuncPtr)();
- class LibraryHandle;
- enum class LibrarySearchPath
- {
- Invalid,
- Default,
- Application,
- System,
- FullPath,
- };
- class LibraryPath
- {
- private:
-
- mpt::LibrarySearchPath searchPath;
- mpt::PathString fileName;
- private:
- LibraryPath(mpt::LibrarySearchPath searchPath, const mpt::PathString &fileName);
- public:
- mpt::LibrarySearchPath GetSearchPath() const;
- mpt::PathString GetFileName() const;
- public:
-
-
- static mpt::PathString GetDefaultPrefix();
-
- static mpt::PathString GetDefaultSuffix();
-
-
- static LibraryPath App(const mpt::PathString &basename);
-
-
- static LibraryPath AppFullName(const mpt::PathString &fullname);
-
-
- static LibraryPath System(const mpt::PathString &basename);
-
-
- static LibraryPath FullPath(const mpt::PathString &path);
- };
- class Library
- {
- protected:
- std::shared_ptr<LibraryHandle> m_Handle;
- public:
- Library();
- Library(const mpt::LibraryPath &path);
- public:
- void Unload();
- bool IsValid() const;
- FuncPtr GetProcAddress(const std::string &symbol) const;
- template <typename Tfunc>
- bool Bind(Tfunc * & f, const std::string &symbol) const
- {
- #if !(MPT_OS_WINDOWS && MPT_COMPILER_GCC)
-
-
- static_assert(std::is_function<Tfunc>::value);
- #endif
- const FuncPtr addr = GetProcAddress(symbol);
- f = reinterpret_cast<Tfunc*>(addr);
- return (addr != nullptr);
- }
- };
- }
- OPENMPT_NAMESPACE_END
|