Show a dimmed loading icon while previews are being loaded in a background thread. The asset shelf and asset/file browsers do this similarly already. This is implemented in drawing code, so the loading icon will always appear when an in-progress preview is being drawn. I experimented with doing this in `ui_def_but_icon()`, but this won't update correctly with popups that don't support full refreshing. This also makes any normal icon that is drawn as preview use the normal icon size. These icons are usually made for smaller sizes and look very outblown when displayed at the size of a preview. Yet it's useful to sometimes pass a normal icon. E.g. for the asset shelf we would already draw the data-block type icon in place of the preview if there was no preview to display, and we'd use the normal, smaller size already. Larger can still be drawn differently. I don't know of any current cases this would affect though. Pull Request: https://projects.blender.org/blender/blender/pulls/133880
582 lines
13 KiB
C++
582 lines
13 KiB
C++
/* SPDX-FileCopyrightText: 2006-2007 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup bke
|
|
*/
|
|
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
#include <memory>
|
|
#include <mutex>
|
|
|
|
#include "CLG_log.h"
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
#include "DNA_ID.h"
|
|
#include "DNA_gpencil_legacy_types.h"
|
|
|
|
#include "BLI_fileops.h"
|
|
#include "BLI_ghash.h"
|
|
#include "BLI_linklist_lockfree.h"
|
|
#include "BLI_threads.h"
|
|
#include "BLI_utildefines.h"
|
|
|
|
#include "BKE_global.hh" /* only for G.background test */
|
|
#include "BKE_icons.h"
|
|
#include "BKE_preview_image.hh"
|
|
#include "BKE_studiolight.h"
|
|
|
|
#include "BLI_sys_types.h" /* for intptr_t support */
|
|
|
|
#include "IMB_imbuf.hh"
|
|
#include "IMB_imbuf_types.hh"
|
|
|
|
/**
|
|
* Only allow non-managed icons to be removed (by Python for eg).
|
|
* Previews & ID's have their own functions to remove icons.
|
|
*/
|
|
enum {
|
|
ICON_FLAG_MANAGED = (1 << 0),
|
|
};
|
|
|
|
/* GLOBALS */
|
|
|
|
static CLG_LogRef LOG = {"bke.icons"};
|
|
|
|
/* Protected by gIconMutex. */
|
|
static GHash *gIcons = nullptr;
|
|
|
|
/* Protected by gIconMutex. */
|
|
static int gNextIconId = 1;
|
|
|
|
/* Protected by gIconMutex. */
|
|
static int gFirstIconId = 1;
|
|
|
|
static std::mutex gIconMutex;
|
|
|
|
/* Queue of icons for deferred deletion. */
|
|
struct DeferredIconDeleteNode {
|
|
DeferredIconDeleteNode *next;
|
|
int icon_id;
|
|
};
|
|
/* Protected by gIconMutex. */
|
|
static LockfreeLinkList g_icon_delete_queue;
|
|
|
|
static void icon_free(void *val)
|
|
{
|
|
Icon *icon = (Icon *)val;
|
|
if (!icon) {
|
|
return;
|
|
}
|
|
|
|
if (icon->obj_type == ICON_DATA_GEOM) {
|
|
Icon_Geom *obj = (Icon_Geom *)icon->obj;
|
|
if (obj->mem) {
|
|
/* coords & colors are part of this memory. */
|
|
MEM_freeN((void *)obj->mem);
|
|
}
|
|
else {
|
|
MEM_freeN((void *)obj->coords);
|
|
MEM_freeN((void *)obj->colors);
|
|
}
|
|
MEM_freeN(icon->obj);
|
|
}
|
|
|
|
if (icon->drawinfo_free) {
|
|
icon->drawinfo_free(icon->drawinfo);
|
|
}
|
|
else if (icon->drawinfo) {
|
|
MEM_freeN(icon->drawinfo);
|
|
}
|
|
MEM_freeN(icon);
|
|
}
|
|
|
|
static void icon_free_data(int icon_id, Icon *icon)
|
|
{
|
|
switch (icon->obj_type) {
|
|
case ICON_DATA_ID:
|
|
((ID *)(icon->obj))->icon_id = 0;
|
|
break;
|
|
case ICON_DATA_IMBUF: {
|
|
ImBuf *imbuf = (ImBuf *)icon->obj;
|
|
if (imbuf) {
|
|
IMB_freeImBuf(imbuf);
|
|
}
|
|
break;
|
|
}
|
|
case ICON_DATA_PREVIEW:
|
|
((PreviewImage *)(icon->obj))->runtime->icon_id = 0;
|
|
break;
|
|
case ICON_DATA_GPLAYER:
|
|
((bGPDlayer *)(icon->obj))->runtime.icon_id = 0;
|
|
break;
|
|
case ICON_DATA_GEOM:
|
|
((Icon_Geom *)(icon->obj))->icon_id = 0;
|
|
break;
|
|
case ICON_DATA_STUDIOLIGHT: {
|
|
StudioLight *sl = (StudioLight *)icon->obj;
|
|
if (sl != nullptr) {
|
|
BKE_studiolight_unset_icon_id(sl, icon_id);
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
BLI_assert_unreachable();
|
|
}
|
|
}
|
|
|
|
static Icon *icon_ghash_lookup(int icon_id)
|
|
{
|
|
std::scoped_lock lock(gIconMutex);
|
|
return (Icon *)BLI_ghash_lookup(gIcons, POINTER_FROM_INT(icon_id));
|
|
}
|
|
|
|
/* create an id for a new icon and make sure that ids from deleted icons get reused
|
|
* after the integer number range is used up */
|
|
static int get_next_free_id()
|
|
{
|
|
std::scoped_lock lock(gIconMutex);
|
|
int startId = gFirstIconId;
|
|
|
|
/* if we haven't used up the int number range, we just return the next int */
|
|
if (gNextIconId >= gFirstIconId) {
|
|
int next_id = gNextIconId++;
|
|
return next_id;
|
|
}
|
|
|
|
/* Now we try to find the smallest icon id not stored in the gIcons hash.
|
|
* Don't use icon_ghash_lookup here, it would lock recursively (dead-lock). */
|
|
while (BLI_ghash_lookup(gIcons, POINTER_FROM_INT(startId)) && startId >= gFirstIconId) {
|
|
startId++;
|
|
}
|
|
|
|
/* if we found a suitable one that isn't used yet, return it */
|
|
if (startId >= gFirstIconId) {
|
|
return startId;
|
|
}
|
|
|
|
/* fail */
|
|
return 0;
|
|
}
|
|
|
|
void BKE_icons_init(int first_dyn_id)
|
|
{
|
|
BLI_assert(BLI_thread_is_main());
|
|
|
|
gNextIconId = first_dyn_id;
|
|
gFirstIconId = first_dyn_id;
|
|
|
|
if (!gIcons) {
|
|
gIcons = BLI_ghash_int_new(__func__);
|
|
BLI_linklist_lockfree_init(&g_icon_delete_queue);
|
|
}
|
|
}
|
|
|
|
void BKE_icons_free()
|
|
{
|
|
BLI_assert(BLI_thread_is_main());
|
|
|
|
if (gIcons) {
|
|
BLI_ghash_free(gIcons, nullptr, icon_free);
|
|
gIcons = nullptr;
|
|
}
|
|
|
|
BLI_linklist_lockfree_free(&g_icon_delete_queue, MEM_freeN);
|
|
}
|
|
|
|
void BKE_icons_deferred_free()
|
|
{
|
|
std::scoped_lock lock(gIconMutex);
|
|
|
|
for (DeferredIconDeleteNode *node =
|
|
(DeferredIconDeleteNode *)BLI_linklist_lockfree_begin(&g_icon_delete_queue);
|
|
node != nullptr;
|
|
node = node->next)
|
|
{
|
|
BLI_ghash_remove(gIcons, POINTER_FROM_INT(node->icon_id), nullptr, icon_free);
|
|
}
|
|
BLI_linklist_lockfree_clear(&g_icon_delete_queue, MEM_freeN);
|
|
}
|
|
|
|
void BKE_icon_changed(const int icon_id)
|
|
{
|
|
Icon *icon = nullptr;
|
|
|
|
if (!icon_id || G.background) {
|
|
return;
|
|
}
|
|
|
|
icon = icon_ghash_lookup(icon_id);
|
|
if (!icon) {
|
|
return;
|
|
}
|
|
|
|
/* We *only* expect ID-tied icons here, not non-ID icon/preview! */
|
|
BLI_assert(icon->id_type != 0);
|
|
BLI_assert(icon->obj_type == ICON_DATA_ID);
|
|
|
|
/* Do not enforce creation of previews for valid ID types using BKE_previewimg_id_ensure()
|
|
* here, we only want to ensure *existing* preview images are properly tagged as
|
|
* changed/invalid, that's all. */
|
|
PreviewImage **p_prv = BKE_previewimg_id_get_p((ID *)icon->obj);
|
|
|
|
/* If we have previews, they all are now invalid changed. */
|
|
if (p_prv && *p_prv) {
|
|
for (int i = 0; i < NUM_ICON_SIZES; i++) {
|
|
(*p_prv)->flag[i] |= PRV_CHANGED;
|
|
(*p_prv)->changed_timestamp[i]++;
|
|
}
|
|
}
|
|
}
|
|
|
|
static Icon *icon_create(int icon_id, int obj_type, void *obj)
|
|
{
|
|
Icon *new_icon = (Icon *)MEM_mallocN(sizeof(Icon), __func__);
|
|
|
|
new_icon->obj_type = obj_type;
|
|
new_icon->obj = obj;
|
|
new_icon->id_type = 0;
|
|
new_icon->flag = 0;
|
|
|
|
/* next two lines make sure image gets created */
|
|
new_icon->drawinfo = nullptr;
|
|
new_icon->drawinfo_free = nullptr;
|
|
|
|
{
|
|
std::scoped_lock lock(gIconMutex);
|
|
BLI_ghash_insert(gIcons, POINTER_FROM_INT(icon_id), new_icon);
|
|
}
|
|
|
|
return new_icon;
|
|
}
|
|
|
|
static int icon_id_ensure_create_icon(ID *id)
|
|
{
|
|
BLI_assert(BLI_thread_is_main());
|
|
|
|
Icon *icon = icon_create(id->icon_id, ICON_DATA_ID, id);
|
|
icon->id_type = GS(id->name);
|
|
icon->flag = ICON_FLAG_MANAGED;
|
|
|
|
return id->icon_id;
|
|
}
|
|
|
|
int BKE_icon_id_ensure(ID *id)
|
|
{
|
|
/* Never handle icons in non-main thread! */
|
|
BLI_assert(BLI_thread_is_main());
|
|
|
|
if (!id || G.background) {
|
|
return 0;
|
|
}
|
|
|
|
if (id->icon_id) {
|
|
return id->icon_id;
|
|
}
|
|
|
|
id->icon_id = get_next_free_id();
|
|
|
|
if (!id->icon_id) {
|
|
CLOG_ERROR(&LOG, "not enough IDs");
|
|
return 0;
|
|
}
|
|
|
|
/* Ensure we synchronize ID icon_id with its previewimage if it has one. */
|
|
PreviewImage **p_prv = BKE_previewimg_id_get_p(id);
|
|
if (p_prv && *p_prv) {
|
|
BLI_assert(ELEM((*p_prv)->runtime->icon_id, 0, id->icon_id));
|
|
(*p_prv)->runtime->icon_id = id->icon_id;
|
|
}
|
|
|
|
return icon_id_ensure_create_icon(id);
|
|
}
|
|
|
|
static int icon_gplayer_color_ensure_create_icon(bGPDlayer *gpl)
|
|
{
|
|
BLI_assert(BLI_thread_is_main());
|
|
|
|
/* NOTE: The color previews for GP Layers don't really need
|
|
* to be "rendered" to image per-se (as it will just be a plain
|
|
* colored rectangle), we need to define icon data here so that
|
|
* we can store a pointer to the layer data in icon->obj.
|
|
*/
|
|
Icon *icon = icon_create(gpl->runtime.icon_id, ICON_DATA_GPLAYER, gpl);
|
|
icon->flag = ICON_FLAG_MANAGED;
|
|
|
|
return gpl->runtime.icon_id;
|
|
}
|
|
|
|
int BKE_icon_gplayer_color_ensure(bGPDlayer *gpl)
|
|
{
|
|
/* Never handle icons in non-main thread! */
|
|
BLI_assert(BLI_thread_is_main());
|
|
|
|
if (!gpl || G.background) {
|
|
return 0;
|
|
}
|
|
|
|
if (gpl->runtime.icon_id) {
|
|
return gpl->runtime.icon_id;
|
|
}
|
|
|
|
gpl->runtime.icon_id = get_next_free_id();
|
|
|
|
if (!gpl->runtime.icon_id) {
|
|
CLOG_ERROR(&LOG, "not enough IDs");
|
|
return 0;
|
|
}
|
|
|
|
return icon_gplayer_color_ensure_create_icon(gpl);
|
|
}
|
|
|
|
int BKE_icon_preview_ensure(ID *id, PreviewImage *preview)
|
|
{
|
|
if (!preview || G.background) {
|
|
return 0;
|
|
}
|
|
|
|
if (id) {
|
|
BLI_assert(BKE_previewimg_id_ensure(id) == preview);
|
|
}
|
|
|
|
if (preview->runtime->icon_id) {
|
|
BLI_assert(!id || !id->icon_id || id->icon_id == preview->runtime->icon_id);
|
|
return preview->runtime->icon_id;
|
|
}
|
|
|
|
if (id && id->icon_id) {
|
|
preview->runtime->icon_id = id->icon_id;
|
|
return preview->runtime->icon_id;
|
|
}
|
|
|
|
preview->runtime->icon_id = get_next_free_id();
|
|
|
|
if (!preview->runtime->icon_id) {
|
|
CLOG_ERROR(&LOG, "not enough IDs");
|
|
return 0;
|
|
}
|
|
|
|
/* Ensure we synchronize ID icon_id with its previewimage if available,
|
|
* and generate suitable 'ID' icon. */
|
|
if (id) {
|
|
id->icon_id = preview->runtime->icon_id;
|
|
return icon_id_ensure_create_icon(id);
|
|
}
|
|
|
|
Icon *icon = icon_create(preview->runtime->icon_id, ICON_DATA_PREVIEW, preview);
|
|
icon->flag = ICON_FLAG_MANAGED;
|
|
|
|
return preview->runtime->icon_id;
|
|
}
|
|
|
|
int BKE_icon_imbuf_create(ImBuf *ibuf)
|
|
{
|
|
int icon_id = get_next_free_id();
|
|
|
|
Icon *icon = icon_create(icon_id, ICON_DATA_IMBUF, ibuf);
|
|
icon->flag = ICON_FLAG_MANAGED;
|
|
|
|
return icon_id;
|
|
}
|
|
|
|
ImBuf *BKE_icon_imbuf_get_buffer(int icon_id)
|
|
{
|
|
Icon *icon = icon_ghash_lookup(icon_id);
|
|
if (!icon) {
|
|
CLOG_ERROR(&LOG, "no icon for icon ID: %d", icon_id);
|
|
return nullptr;
|
|
}
|
|
if (icon->obj_type != ICON_DATA_IMBUF) {
|
|
CLOG_ERROR(&LOG, "icon ID does not refer to an imbuf icon: %d", icon_id);
|
|
return nullptr;
|
|
}
|
|
|
|
return (ImBuf *)icon->obj;
|
|
}
|
|
|
|
Icon *BKE_icon_get(const int icon_id)
|
|
{
|
|
BLI_assert(BLI_thread_is_main());
|
|
|
|
Icon *icon = nullptr;
|
|
|
|
icon = icon_ghash_lookup(icon_id);
|
|
|
|
if (!icon) {
|
|
CLOG_ERROR(&LOG, "no icon for icon ID: %d", icon_id);
|
|
return nullptr;
|
|
}
|
|
|
|
return icon;
|
|
}
|
|
|
|
void BKE_icon_set(const int icon_id, Icon *icon)
|
|
{
|
|
void **val_p;
|
|
|
|
std::scoped_lock lock(gIconMutex);
|
|
if (BLI_ghash_ensure_p(gIcons, POINTER_FROM_INT(icon_id), &val_p)) {
|
|
CLOG_ERROR(&LOG, "icon already set: %d", icon_id);
|
|
return;
|
|
}
|
|
|
|
*val_p = icon;
|
|
}
|
|
|
|
static void icon_add_to_deferred_delete_queue(int icon_id)
|
|
{
|
|
DeferredIconDeleteNode *node = (DeferredIconDeleteNode *)MEM_mallocN(
|
|
sizeof(DeferredIconDeleteNode), __func__);
|
|
node->icon_id = icon_id;
|
|
/* Doesn't need lock. */
|
|
BLI_linklist_lockfree_insert(&g_icon_delete_queue, (LockfreeLinkNode *)node);
|
|
}
|
|
|
|
void BKE_icon_id_delete(ID *id)
|
|
{
|
|
const int icon_id = id->icon_id;
|
|
if (!icon_id) {
|
|
return; /* no icon defined for library object */
|
|
}
|
|
id->icon_id = 0;
|
|
|
|
if (!BLI_thread_is_main()) {
|
|
icon_add_to_deferred_delete_queue(icon_id);
|
|
return;
|
|
}
|
|
|
|
BKE_icons_deferred_free();
|
|
std::scoped_lock lock(gIconMutex);
|
|
BLI_ghash_remove(gIcons, POINTER_FROM_INT(icon_id), nullptr, icon_free);
|
|
}
|
|
|
|
bool BKE_icon_delete(const int icon_id)
|
|
{
|
|
if (icon_id == 0) {
|
|
/* no icon defined for library object */
|
|
return false;
|
|
}
|
|
|
|
std::scoped_lock lock(gIconMutex);
|
|
if (Icon *icon = (Icon *)BLI_ghash_popkey(gIcons, POINTER_FROM_INT(icon_id), nullptr)) {
|
|
icon_free_data(icon_id, icon);
|
|
icon_free(icon);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool BKE_icon_delete_unmanaged(const int icon_id)
|
|
{
|
|
if (icon_id == 0) {
|
|
/* no icon defined for library object */
|
|
return false;
|
|
}
|
|
|
|
std::scoped_lock lock(gIconMutex);
|
|
|
|
Icon *icon = (Icon *)BLI_ghash_popkey(gIcons, POINTER_FROM_INT(icon_id), nullptr);
|
|
if (icon) {
|
|
if (UNLIKELY(icon->flag & ICON_FLAG_MANAGED)) {
|
|
BLI_ghash_insert(gIcons, POINTER_FROM_INT(icon_id), icon);
|
|
return false;
|
|
}
|
|
|
|
icon_free_data(icon_id, icon);
|
|
icon_free(icon);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Geometry Icon
|
|
* \{ */
|
|
|
|
int BKE_icon_geom_ensure(Icon_Geom *geom)
|
|
{
|
|
BLI_assert(BLI_thread_is_main());
|
|
|
|
if (geom->icon_id) {
|
|
return geom->icon_id;
|
|
}
|
|
|
|
geom->icon_id = get_next_free_id();
|
|
|
|
icon_create(geom->icon_id, ICON_DATA_GEOM, geom);
|
|
/* Not managed for now, we may want this to be configurable per icon). */
|
|
|
|
return geom->icon_id;
|
|
}
|
|
|
|
Icon_Geom *BKE_icon_geom_from_memory(uchar *data, size_t data_len)
|
|
{
|
|
BLI_assert(BLI_thread_is_main());
|
|
if (data_len <= 8) {
|
|
return nullptr;
|
|
}
|
|
/* Wrapper for RAII early exit cleanups. */
|
|
std::unique_ptr<uchar> data_wrapper(std::move(data));
|
|
|
|
/* Skip the header. */
|
|
data_len -= 8;
|
|
const int div = 3 * 2 * 3;
|
|
const int coords_len = data_len / div;
|
|
if (coords_len * div != data_len) {
|
|
return nullptr;
|
|
}
|
|
|
|
const uchar header[4] = {'V', 'C', 'O', 0};
|
|
uchar *p = data_wrapper.get();
|
|
if (memcmp(p, header, ARRAY_SIZE(header)) != 0) {
|
|
return nullptr;
|
|
}
|
|
p += 4;
|
|
|
|
Icon_Geom *geom = (Icon_Geom *)MEM_mallocN(sizeof(*geom), __func__);
|
|
geom->coords_range[0] = int(*p++);
|
|
geom->coords_range[1] = int(*p++);
|
|
/* x, y ignored for now */
|
|
p += 2;
|
|
|
|
geom->coords_len = coords_len;
|
|
geom->coords = reinterpret_cast<decltype(geom->coords)>(p);
|
|
geom->colors = reinterpret_cast<decltype(geom->colors)>(p + (data_len / 3));
|
|
geom->icon_id = 0;
|
|
/* Move buffer ownership to C buffer. */
|
|
geom->mem = data_wrapper.release();
|
|
return geom;
|
|
}
|
|
|
|
Icon_Geom *BKE_icon_geom_from_file(const char *filename)
|
|
{
|
|
BLI_assert(BLI_thread_is_main());
|
|
size_t data_len;
|
|
uchar *data = (uchar *)BLI_file_read_binary_as_mem(filename, 0, &data_len);
|
|
if (data == nullptr) {
|
|
return nullptr;
|
|
}
|
|
return BKE_icon_geom_from_memory(data, data_len);
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Studio Light Icon
|
|
* \{ */
|
|
|
|
int BKE_icon_ensure_studio_light(StudioLight *sl, int id_type)
|
|
{
|
|
int icon_id = get_next_free_id();
|
|
Icon *icon = icon_create(icon_id, ICON_DATA_STUDIOLIGHT, sl);
|
|
icon->id_type = id_type;
|
|
return icon_id;
|
|
}
|
|
|
|
/** \} */
|