0e677fb3a2
--HG-- extra : rebase_source : 9df0399c88721b63667a9b0b5dca0eb20168117a
63 lines
1.3 KiB
C++
63 lines
1.3 KiB
C++
#ifndef _INCLUDE_SOURCEMOD_NATIVE_OWNER_H_
|
|
#define _INCLUDE_SOURCEMOD_NATIVE_OWNER_H_
|
|
|
|
#include <sp_vm_types.h>
|
|
#include <sh_list.h>
|
|
#include "common_logic.h"
|
|
|
|
struct NativeEntry;
|
|
class CPlugin;
|
|
|
|
using namespace SourceMod;
|
|
|
|
struct WeakNative
|
|
{
|
|
WeakNative(IPlugin *plugin, uint32_t index) :
|
|
pl(plugin), idx(index), entry(NULL)
|
|
{
|
|
pl = plugin;
|
|
idx = index;
|
|
}
|
|
WeakNative(IPlugin *plugin, uint32_t index, NativeEntry *pEntry) :
|
|
pl(plugin), idx(index), entry(pEntry)
|
|
{
|
|
pl = plugin;
|
|
idx = index;
|
|
}
|
|
IPlugin *pl;
|
|
uint32_t idx;
|
|
NativeEntry *entry;
|
|
};
|
|
|
|
using namespace SourceHook;
|
|
|
|
class CNativeOwner
|
|
{
|
|
public:
|
|
CNativeOwner();
|
|
public:
|
|
virtual void DropEverything();
|
|
public:
|
|
void AddNatives(const sp_nativeinfo_t *info);
|
|
public:
|
|
void SetMarkSerial(unsigned int serial);
|
|
unsigned int GetMarkSerial();
|
|
void PropagateMarkSerial(unsigned int serial);
|
|
public:
|
|
void AddDependent(CPlugin *pPlugin);
|
|
void AddWeakRef(const WeakNative & ref);
|
|
void DropRefsTo(CPlugin *pPlugin);
|
|
private:
|
|
void DropWeakRefsTo(CPlugin *pPlugin);
|
|
void UnbindWeakRef(const WeakNative & ref);
|
|
protected:
|
|
List<CPlugin *> m_Dependents;
|
|
unsigned int m_nMarkSerial;
|
|
List<WeakNative> m_WeakRefs;
|
|
List<NativeEntry *> m_Natives;
|
|
};
|
|
|
|
extern CNativeOwner g_CoreNatives;
|
|
|
|
#endif //_INCLUDE_SOURCEMOD_NATIVE_OWNER_H_
|