* Make mac/win lookups lowercase'd * Revert #709 & 81042cc * Adjust HashPolicy implementation across sourcemod Basically, in order to implement our own (actual) hash policy in `PluginSys.h`, we needed to remove the blanket implementation of `hash` that was used before. Now, each policy must implement `hash` along with `matches` in order to be used with `NameHashSet`. While this does force us to change every implementation of policies across the entirety of sourcemod, it allows core to use flexible implementations of `hash`. * Remove logic duplication * Improve lowercase checks
This commit is contained in:
parent
daee19d502
commit
aaac0b9eb2
@ -43,6 +43,7 @@
|
|||||||
#include <compat_wrappers.h>
|
#include <compat_wrappers.h>
|
||||||
#include "concmd_cleaner.h"
|
#include "concmd_cleaner.h"
|
||||||
#include "PlayerManager.h"
|
#include "PlayerManager.h"
|
||||||
|
#include <sm_stringhashmap.h>
|
||||||
|
|
||||||
using namespace SourceHook;
|
using namespace SourceHook;
|
||||||
|
|
||||||
@ -67,6 +68,10 @@ struct ConVarInfo
|
|||||||
{
|
{
|
||||||
return strcmp(name, info->pVar->GetName()) == 0;
|
return strcmp(name, info->pVar->GetName()) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -77,6 +77,10 @@ struct EventHook
|
|||||||
{
|
{
|
||||||
return strcmp(name, hook->name.chars()) == 0;
|
return strcmp(name, hook->name.chars()) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
enum EventHookMode
|
enum EventHookMode
|
||||||
|
@ -92,12 +92,20 @@ struct DataTableInfo
|
|||||||
{
|
{
|
||||||
return strcmp(name, info.prop->GetName()) == 0;
|
return strcmp(name, info.prop->GetName()) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
static inline bool matches(const char *name, const DataTableInfo *info)
|
static inline bool matches(const char *name, const DataTableInfo *info)
|
||||||
{
|
{
|
||||||
return strcmp(name, info->sc->GetName()) == 0;
|
return strcmp(name, info->sc->GetName()) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
|
|
||||||
DataTableInfo(ServerClass *sc)
|
DataTableInfo(ServerClass *sc)
|
||||||
: sc(sc)
|
: sc(sc)
|
||||||
@ -114,6 +122,10 @@ struct DataMapCachePolicy
|
|||||||
{
|
{
|
||||||
return strcmp(name, info.prop->fieldName) == 0;
|
return strcmp(name, info.prop->fieldName) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef NameHashSet<sm_datatable_info_t, DataMapCachePolicy> DataMapCache;
|
typedef NameHashSet<sm_datatable_info_t, DataMapCachePolicy> DataMapCache;
|
||||||
|
@ -82,6 +82,10 @@ struct AuthMethod
|
|||||||
{
|
{
|
||||||
return strcmp(name, method->name.c_str()) == 0;
|
return strcmp(name, method->name.c_str()) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
struct UserAuth
|
struct UserAuth
|
||||||
|
@ -72,6 +72,10 @@ public: //NameHashSet
|
|||||||
{
|
{
|
||||||
return strcmp(key, value->m_File) == 0;
|
return strcmp(key, value->m_File) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
private:
|
private:
|
||||||
char m_File[PLATFORM_MAX_PATH];
|
char m_File[PLATFORM_MAX_PATH];
|
||||||
char m_CurFile[PLATFORM_MAX_PATH];
|
char m_CurFile[PLATFORM_MAX_PATH];
|
||||||
|
@ -111,6 +111,10 @@ struct QHandleType
|
|||||||
{
|
{
|
||||||
return type->name && type->name->compare(key) == 0;
|
return type->name && type->name->compare(key) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef ke::Lambda<void(const char *)> HandleReporter;
|
typedef ke::Lambda<void(const char *)> HandleReporter;
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
#include <am-string.h>
|
#include <am-string.h>
|
||||||
#include <am-utility.h>
|
#include <am-utility.h>
|
||||||
#include <am-refcounting.h>
|
#include <am-refcounting.h>
|
||||||
|
#include <sm_stringhashmap.h>
|
||||||
#include "common_logic.h"
|
#include "common_logic.h"
|
||||||
|
|
||||||
class CNativeOwner;
|
class CNativeOwner;
|
||||||
@ -94,6 +95,10 @@ struct Native : public ke::Refcounted<Native>
|
|||||||
{
|
{
|
||||||
return strcmp(name, entry->name()) == 0;
|
return strcmp(name, entry->name()) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -31,7 +31,6 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <ctype.h>
|
|
||||||
#include "PluginSys.h"
|
#include "PluginSys.h"
|
||||||
#include "ShareSys.h"
|
#include "ShareSys.h"
|
||||||
#include <ILibrarySys.h>
|
#include <ILibrarySys.h>
|
||||||
@ -47,7 +46,6 @@
|
|||||||
#include "frame_tasks.h"
|
#include "frame_tasks.h"
|
||||||
#include <amtl/am-string.h>
|
#include <amtl/am-string.h>
|
||||||
#include <amtl/am-linkedlist.h>
|
#include <amtl/am-linkedlist.h>
|
||||||
#include <amtl/am-uniqueptr.h>
|
|
||||||
#include <bridge/include/IVEngineServerBridge.h>
|
#include <bridge/include/IVEngineServerBridge.h>
|
||||||
#include <bridge/include/CoreProvider.h>
|
#include <bridge/include/CoreProvider.h>
|
||||||
|
|
||||||
@ -934,38 +932,16 @@ void CPluginManager::LoadPluginsFromDir(const char *basedir, const char *localpa
|
|||||||
libsys->CloseDirectory(dir);
|
libsys->CloseDirectory(dir);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined PLATFORM_WINDOWS || defined PLATFORM_APPLE
|
|
||||||
char *strdup_tolower(const char *input)
|
|
||||||
{
|
|
||||||
char *str = strdup(input);
|
|
||||||
|
|
||||||
for (char *c = str; *c; c++)
|
|
||||||
{
|
|
||||||
*c = tolower((unsigned char)*c);
|
|
||||||
}
|
|
||||||
|
|
||||||
return str;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
LoadRes CPluginManager::LoadPlugin(CPlugin **aResult, const char *path, bool debug, PluginType type)
|
LoadRes CPluginManager::LoadPlugin(CPlugin **aResult, const char *path, bool debug, PluginType type)
|
||||||
{
|
{
|
||||||
if (m_LoadingLocked)
|
if (m_LoadingLocked)
|
||||||
return LoadRes_NeverLoad;
|
return LoadRes_NeverLoad;
|
||||||
|
|
||||||
/* For windows & mac, we convert the path to lower-case in order to avoid duplicate plugin loading */
|
|
||||||
#if defined PLATFORM_WINDOWS || defined PLATFORM_APPLE
|
|
||||||
ke::UniquePtr<char> finalPath = ke::UniquePtr<char>(strdup_tolower(path));
|
|
||||||
#else
|
|
||||||
ke::UniquePtr<char> finalPath = ke::UniquePtr<char>(strdup(path));
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Does this plugin already exist?
|
* Does this plugin already exist?
|
||||||
*/
|
*/
|
||||||
CPlugin *pPlugin;
|
CPlugin *pPlugin;
|
||||||
if (m_LoadLookup.retrieve(finalPath.get(), &pPlugin))
|
if (m_LoadLookup.retrieve(path, &pPlugin))
|
||||||
{
|
{
|
||||||
/* Check to see if we should try reloading it */
|
/* Check to see if we should try reloading it */
|
||||||
if (pPlugin->GetStatus() == Plugin_BadLoad
|
if (pPlugin->GetStatus() == Plugin_BadLoad
|
||||||
@ -978,12 +954,11 @@ LoadRes CPluginManager::LoadPlugin(CPlugin **aResult, const char *path, bool deb
|
|||||||
{
|
{
|
||||||
if (aResult)
|
if (aResult)
|
||||||
*aResult = pPlugin;
|
*aResult = pPlugin;
|
||||||
|
|
||||||
return LoadRes_AlreadyLoaded;
|
return LoadRes_AlreadyLoaded;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CPlugin *plugin = CompileAndPrep(finalPath.get());
|
CPlugin *plugin = CompileAndPrep(path);
|
||||||
|
|
||||||
// Assign our outparam so we can return early. It must be set.
|
// Assign our outparam so we can return early. It must be set.
|
||||||
*aResult = plugin;
|
*aResult = plugin;
|
||||||
|
@ -143,11 +143,6 @@ public:
|
|||||||
*/
|
*/
|
||||||
static CPlugin *Create(const char *file);
|
static CPlugin *Create(const char *file);
|
||||||
|
|
||||||
static inline bool matches(const char *file, const CPlugin *plugin)
|
|
||||||
{
|
|
||||||
return strcmp(plugin->m_filename, file) == 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// Evicts the plugin from memory and sets an error state.
|
// Evicts the plugin from memory and sets an error state.
|
||||||
void EvictWithError(PluginStatus status, const char *error_fmt, ...);
|
void EvictWithError(PluginStatus status, const char *error_fmt, ...);
|
||||||
@ -483,7 +478,36 @@ private:
|
|||||||
typedef decltype(m_listeners)::iterator ListenerIter;
|
typedef decltype(m_listeners)::iterator ListenerIter;
|
||||||
typedef decltype(m_plugins)::iterator PluginIter;
|
typedef decltype(m_plugins)::iterator PluginIter;
|
||||||
|
|
||||||
NameHashSet<CPlugin *> m_LoadLookup;
|
struct CPluginPolicy
|
||||||
|
{
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
/* For windows & mac, we convert the path to lower-case in order to avoid duplicate plugin loading */
|
||||||
|
#if defined PLATFORM_WINDOWS || defined PLATFORM_APPLE
|
||||||
|
ke::AString original(key.chars());
|
||||||
|
ke::AString lower = original.lowercase();
|
||||||
|
|
||||||
|
return detail::CharsAndLength(lower.chars()).hash();
|
||||||
|
#else
|
||||||
|
return key.hash();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline bool matches(const char *file, const CPlugin *plugin)
|
||||||
|
{
|
||||||
|
const char *pluginFileChars = const_cast<CPlugin*>(plugin)->GetFilename();
|
||||||
|
#if defined PLATFORM_WINDOWS || defined PLATFORM_APPLE
|
||||||
|
ke::AString pluginFile = ke::AString(pluginFileChars).lowercase();
|
||||||
|
ke::AString input = ke::AString(file).lowercase();
|
||||||
|
|
||||||
|
return pluginFile == input;
|
||||||
|
#else
|
||||||
|
return strcmp(pluginFileChars, file) == 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
};
|
||||||
|
NameHashSet<CPlugin *, CPluginPolicy> m_LoadLookup;
|
||||||
|
|
||||||
bool m_AllPluginsLoaded;
|
bool m_AllPluginsLoaded;
|
||||||
IdentityToken_t *m_MyIdent;
|
IdentityToken_t *m_MyIdent;
|
||||||
|
|
||||||
|
@ -46,6 +46,10 @@ struct ConsoleEntry
|
|||||||
{
|
{
|
||||||
return strcmp(name, entry->command.c_str()) == 0;
|
return strcmp(name, entry->command.c_str()) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class RootConsoleMenu :
|
class RootConsoleMenu :
|
||||||
|
@ -58,6 +58,10 @@ struct maplist_info_t
|
|||||||
{
|
{
|
||||||
return strcmp(value->name, key) == 0;
|
return strcmp(value->name, key) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#define MAPLIST_FLAG_MAPSFOLDER (1<<0) /**< On failure, use all maps in the maps folder. */
|
#define MAPLIST_FLAG_MAPSFOLDER (1<<0) /**< On failure, use all maps in the maps folder. */
|
||||||
|
@ -184,6 +184,10 @@ private:
|
|||||||
{
|
{
|
||||||
return strcmp(name, base->GetName()) == 0;
|
return strcmp(name, base->GetName()) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
NameHashSet<ConCommandBase *, ConCommandPolicy> m_CmdFlags;
|
NameHashSet<ConCommandBase *, ConCommandPolicy> m_CmdFlags;
|
||||||
} s_CommandFlagsHelper;
|
} s_CommandFlagsHelper;
|
||||||
|
@ -96,6 +96,10 @@ struct Cookie
|
|||||||
{
|
{
|
||||||
return strcmp(name, cookie->name) == 0;
|
return strcmp(name, cookie->name) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class CookieManager : public IClientListener, public IPluginsListener
|
class CookieManager : public IClientListener, public IPluginsListener
|
||||||
|
@ -77,6 +77,10 @@ struct topmenu_object_t
|
|||||||
{
|
{
|
||||||
return strcmp(name, topmenu->name) == 0;
|
return strcmp(name, topmenu->name) == 0;
|
||||||
}
|
}
|
||||||
|
static inline uint32_t hash(const detail::CharsAndLength &key)
|
||||||
|
{
|
||||||
|
return key.hash();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
struct topmenu_category_t
|
struct topmenu_category_t
|
||||||
|
@ -48,10 +48,12 @@
|
|||||||
namespace SourceMod
|
namespace SourceMod
|
||||||
{
|
{
|
||||||
|
|
||||||
// The HashPolicy type must have this method:
|
// The HashPolicy type must have these methods:
|
||||||
// static bool matches(const char *key, const T &value);
|
// static bool matches(const char *key, const T &value);
|
||||||
|
// static uint32_t hash(const CharsAndLength &key);
|
||||||
//
|
//
|
||||||
// Depending on what lookup types are used.
|
// Depending on what lookup types are used, and how hashing should be done.
|
||||||
|
// Most of the time, key hashing will just call the key's hash() method.
|
||||||
//
|
//
|
||||||
// If these members are available on T, then the HashPolicy type can be left
|
// If these members are available on T, then the HashPolicy type can be left
|
||||||
// default. It is okay to use |T *|, the functions will still be looked up
|
// default. It is okay to use |T *|, the functions will still be looked up
|
||||||
@ -69,7 +71,7 @@ class NameHashSet : public ke::SystemAllocatorPolicy
|
|||||||
|
|
||||||
static uint32_t hash(const CharsAndLength &key)
|
static uint32_t hash(const CharsAndLength &key)
|
||||||
{
|
{
|
||||||
return key.hash();
|
return KeyPolicyType::hash(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool matches(const CharsAndLength &key, const KeyType &value)
|
static bool matches(const CharsAndLength &key, const KeyType &value)
|
||||||
@ -85,9 +87,9 @@ class NameHashSet : public ke::SystemAllocatorPolicy
|
|||||||
{
|
{
|
||||||
typedef KeyType *Payload;
|
typedef KeyType *Payload;
|
||||||
|
|
||||||
static uint32_t hash(const detail::CharsAndLength &key)
|
static uint32_t hash(const CharsAndLength &key)
|
||||||
{
|
{
|
||||||
return key.hash();
|
return KeyType::hash(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool matches(const CharsAndLength &key, const KeyType *value)
|
static bool matches(const CharsAndLength &key, const KeyType *value)
|
||||||
|
Loading…
Reference in New Issue
Block a user