mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
155 lines
5.4 KiB
C++
155 lines
5.4 KiB
C++
#ifndef _SQMMDB_DESCRIPTION_HPP_
|
|
#define _SQMMDB_DESCRIPTION_HPP_
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
#include "Handle/Database.hpp"
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
namespace SqMod {
|
|
|
|
/* ------------------------------------------------------------------------------------------------
|
|
* Class that can hold and be used inspect meta-data descriptions.
|
|
*/
|
|
class Description
|
|
{
|
|
// --------------------------------------------------------------------------------------------
|
|
friend class Metadata; // Only a valid meta-data instance can construct this type.
|
|
|
|
protected:
|
|
|
|
// --------------------------------------------------------------------------------------------
|
|
typedef MMDB_description_s Type; // The managed type.
|
|
|
|
// --------------------------------------------------------------------------------------------
|
|
typedef Type* Pointer; // Pointer to the managed type.
|
|
typedef const Type* ConstPtr; // Constant pointer to the managed type.
|
|
|
|
// --------------------------------------------------------------------------------------------
|
|
typedef Type& Reference; // Reference to the managed type.
|
|
typedef const Type& ConstRef; // Constant reference to the managed type.
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Validate the managed database handle and throw an error if invalid.
|
|
*/
|
|
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
|
|
void Validate(CCStr file, Int32 line) const;
|
|
#else
|
|
void Validate() const;
|
|
#endif // _DEBUG
|
|
|
|
private:
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Validate the managed database handle and throw an error if invalid.
|
|
*/
|
|
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
|
|
Pointer GetValid(CCStr file, Int32 line) const;
|
|
#else
|
|
Pointer GetValid() const;
|
|
#endif // _DEBUG
|
|
|
|
private:
|
|
|
|
// ---------------------------------------------------------------------------------------------
|
|
DbRef m_Handle; // The database associated with this meta-data description.
|
|
Pointer m_Description; // The inspected meta-data description structure.
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Construct and with a specific meta-data.
|
|
*/
|
|
Description(const DbRef & db, Pointer metadata)
|
|
: m_Handle(db), m_Description(metadata)
|
|
{
|
|
/* ... */
|
|
}
|
|
|
|
public:
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Default constructor. (null)
|
|
*/
|
|
Description()
|
|
: m_Handle(), m_Description(nullptr)
|
|
{
|
|
/* ... */
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Copy constructor.
|
|
*/
|
|
Description(const Description &) = default;
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Move constructor.
|
|
*/
|
|
Description(Description &&) = default;
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Copy assignment operator.
|
|
*/
|
|
Description & operator = (const Description &) = default;
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Move assignment operator.
|
|
*/
|
|
Description & operator = (Description &&) = default;
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Retrieve the internal result structure reference.
|
|
*/
|
|
Pointer GetHandle()
|
|
{
|
|
return m_Description;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Retrieve the internal result structure reference.
|
|
*/
|
|
ConstPtr GetHandle() const
|
|
{
|
|
return m_Description;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Used by the script engine to convert an instance of this type to a string.
|
|
*/
|
|
CSStr ToString() const
|
|
{
|
|
return m_Description ? m_Description->description : _SC("");
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Used by the script engine to retrieve the name from instances of this type.
|
|
*/
|
|
static SQInteger Typename(HSQUIRRELVM vm);
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* See whether this instance references a valid database and result structure.
|
|
*/
|
|
bool IsValid() const
|
|
{
|
|
return m_Handle && m_Description;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Retrieve the value of the managed description handle.
|
|
*/
|
|
CSStr GetDescriptionValue() const
|
|
{
|
|
return SQMOD_GET_VALID(*this)->description;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
* Retrieve the language of the managed description handle.
|
|
*/
|
|
CSStr GetDescriptionLanguage() const
|
|
{
|
|
return SQMOD_GET_VALID(*this)->language;
|
|
}
|
|
|
|
};
|
|
|
|
} // Namespace:: SqMod
|
|
|
|
#endif // _SQMMDB_DESCRIPTION_HPP_
|