Files
test/source/blender/blenkernel/intern/addon.cc
Campbell Barton e955c94ed3 License Headers: Set copyright to "Blender Authors", add AUTHORS
Listing the "Blender Foundation" as copyright holder implied the Blender
Foundation holds copyright to files which may include work from many
developers.

While keeping copyright on headers makes sense for isolated libraries,
Blender's own code may be refactored or moved between files in a way
that makes the per file copyright holders less meaningful.

Copyright references to the "Blender Foundation" have been replaced with
"Blender Authors", with the exception of `./extern/` since these this
contains libraries which are more isolated, any changed to license
headers there can be handled on a case-by-case basis.

Some directories in `./intern/` have also been excluded:

- `./intern/cycles/` it's own `AUTHORS` file is planned.
- `./intern/opensubdiv/`.

An "AUTHORS" file has been added, using the chromium projects authors
file as a template.

Design task: #110784

Ref !110783.
2023-08-16 00:20:26 +10:00

131 lines
2.7 KiB
C++

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup bke
*/
#include <cstddef>
#include <cstdlib>
#include "RNA_types.hh"
#include "BLI_ghash.h"
#include "BLI_listbase.h"
#include "BLI_string.h"
#include "BLI_utildefines.h"
#include "BKE_addon.h" /* own include */
#include "BKE_idprop.h"
#include "DNA_listBase.h"
#include "DNA_userdef_types.h"
#include "MEM_guardedalloc.h"
#include "CLG_log.h"
static CLG_LogRef LOG = {"bke.addon"};
/* -------------------------------------------------------------------- */
/** \name Add-on New/Free
* \{ */
bAddon *BKE_addon_new()
{
bAddon *addon = static_cast<bAddon *>(MEM_callocN(sizeof(bAddon), "bAddon"));
return addon;
}
bAddon *BKE_addon_find(ListBase *addon_list, const char *module)
{
return static_cast<bAddon *>(BLI_findstring(addon_list, module, offsetof(bAddon, module)));
}
bAddon *BKE_addon_ensure(ListBase *addon_list, const char *module)
{
bAddon *addon = BKE_addon_find(addon_list, module);
if (addon == nullptr) {
addon = BKE_addon_new();
STRNCPY(addon->module, module);
BLI_addtail(addon_list, addon);
}
return addon;
}
bool BKE_addon_remove_safe(ListBase *addon_list, const char *module)
{
bAddon *addon = static_cast<bAddon *>(
BLI_findstring(addon_list, module, offsetof(bAddon, module)));
if (addon) {
BLI_remlink(addon_list, addon);
BKE_addon_free(addon);
return true;
}
return false;
}
void BKE_addon_free(bAddon *addon)
{
if (addon->prop) {
IDP_FreeProperty(addon->prop);
}
MEM_freeN(addon);
}
/** \} */
/* -------------------------------------------------------------------- */
/** \name Add-on Preference API
* \{ */
static GHash *global_addonpreftype_hash = nullptr;
bAddonPrefType *BKE_addon_pref_type_find(const char *idname, bool quiet)
{
if (idname[0]) {
bAddonPrefType *apt;
apt = static_cast<bAddonPrefType *>(BLI_ghash_lookup(global_addonpreftype_hash, idname));
if (apt) {
return apt;
}
if (!quiet) {
CLOG_WARN(&LOG, "search for unknown addon-pref '%s'", idname);
}
}
else {
if (!quiet) {
CLOG_WARN(&LOG, "search for empty addon-pref");
}
}
return nullptr;
}
void BKE_addon_pref_type_add(bAddonPrefType *apt)
{
BLI_ghash_insert(global_addonpreftype_hash, apt->idname, apt);
}
void BKE_addon_pref_type_remove(const bAddonPrefType *apt)
{
BLI_ghash_remove(global_addonpreftype_hash, apt->idname, nullptr, MEM_freeN);
}
void BKE_addon_pref_type_init()
{
BLI_assert(global_addonpreftype_hash == nullptr);
global_addonpreftype_hash = BLI_ghash_str_new(__func__);
}
void BKE_addon_pref_type_free()
{
BLI_ghash_free(global_addonpreftype_hash, nullptr, MEM_freeN);
global_addonpreftype_hash = nullptr;
}
/** \} */