mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-10 09:40:53 +01:00
74 lines
2.9 KiB
C++
74 lines
2.9 KiB
C++
/*
|
|
* Self.h
|
|
*
|
|
* Created on: Sep 28, 2020
|
|
* Author: jief
|
|
*/
|
|
|
|
#ifndef PLATFORM_SELFOEM_H_
|
|
#define PLATFORM_SELFOEM_H_
|
|
|
|
#include "../Settings/Self.h"
|
|
#include "../Settings/ConfigManager.h"
|
|
|
|
class SelfOem
|
|
{
|
|
protected:
|
|
XString8 m_ConfName = NullXString8; // Initialisation required by -Weffc++. Couldn't use default ctor.
|
|
|
|
// XBool m_OemDirExists;
|
|
EFI_FILE* m_OemDir = NULL;
|
|
XStringW m_OemPathRelToSelfDir = NullXStringW;
|
|
XStringW m_OemFulPath = NullXStringW;
|
|
|
|
// const EFI_FILE* m_userConfigDir = NULL;
|
|
XStringW m_configDirPathRelToSelfDir = NullXStringW; // could also be empty if config dir is clover dir.
|
|
XStringW m_configDirPathRelToSelfDirWithTrailingSlash = NullXStringW; // could also be empty if config dir is clover dir.
|
|
|
|
EFI_FILE* m_KextsDir = NULL;
|
|
XStringW m_KextsPathRelToSelfDir = NullXStringW;
|
|
XStringW m_KextsFullPath = NullXStringW;
|
|
|
|
// EFI_STATUS _openDir(const XStringW& path, XBool* b, EFI_FILE** efiDir);
|
|
XBool _checkOEMPath();
|
|
XBool _setOemPathRelToSelfDir(XBool isFirmwareClover, const XString8& OEMBoard, const XString8& OEMProduct, INT32 frequency, const XObjArray<LanCardClass>& lanCardArray);
|
|
EFI_STATUS _initialize();
|
|
|
|
public:
|
|
SelfOem () {};
|
|
SelfOem(const SelfOem&) = delete;
|
|
SelfOem& operator = (const SelfOem&) = delete;
|
|
|
|
~SelfOem () {};
|
|
|
|
EFI_STATUS initialize(const XString8& confName, XBool isFirmwareClover, const XString8& OEMBoard, const XString8& OEMProduct, INT32 frequency, const XObjArray<LanCardClass>& lanCardArray);
|
|
void unInitialize();
|
|
EFI_STATUS reInitialize();
|
|
void closeHandle();
|
|
|
|
XBool isInitialized() const { return m_ConfName.notEmpty(); }
|
|
|
|
const XString8& getConfName() { return m_ConfName; }
|
|
|
|
XBool oemDirExists() { return m_OemPathRelToSelfDir.notEmpty(); }
|
|
const EFI_FILE& getOemDir() { assert(m_OemDir != NULL); return *m_OemDir; }
|
|
const XStringW& getOemPathRelToSelfDir() { assert(m_OemPathRelToSelfDir.notEmpty()); return m_OemPathRelToSelfDir; }
|
|
const XStringW& getOemFullPath() { assert(m_OemFulPath.notEmpty()); return m_OemFulPath; }
|
|
|
|
const EFI_FILE& getConfigDir() { if ( m_OemDir != NULL ) return *m_OemDir; return self.getCloverDir(); }
|
|
const XStringW& getConfigDirPathRelToSelfDir() { return m_configDirPathRelToSelfDirWithTrailingSlash; }
|
|
const XStringW& getConfigDirPathRelToSelfDirWithTrailingSlash() { return m_configDirPathRelToSelfDirWithTrailingSlash; }
|
|
const XStringW& getConfigDirFullPath() { if ( m_OemDir != NULL ) return getOemFullPath(); return self.getCloverDirFullPath(); }
|
|
|
|
|
|
XBool isKextsDirFound() { return m_KextsDir != NULL; }
|
|
const EFI_FILE& getKextsDir() { assert(m_KextsDir != NULL); return *m_KextsDir; }
|
|
const XStringW& getKextsDirPathRelToSelfDir() { assert(m_KextsPathRelToSelfDir.notEmpty()); return m_KextsPathRelToSelfDir; }
|
|
const XStringW& getKextsFullPath() { assert(m_KextsFullPath.notEmpty()); return m_KextsFullPath; }
|
|
|
|
};
|
|
|
|
extern SelfOem selfOem;
|
|
|
|
#endif /* PLATFORM_SELF_H_ */
|