Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2019-05-22 22:08:51 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-05-22 22:08:51 +0300
commit3600e94ebac0d411042c54ed0970099a7a9cb932 (patch)
treee085c3567033383fb7774eacea88a93326f28190 /source/blender/blenkernel/intern/library.c
parentd83a72ec104ce941b8f5a4c4cb63c805917b7efd (diff)
BKE Library handling: add function to recompute usercounts of IDs.
This will be needed in undo/redo case, since we do not re-read linked IDs, their usercounts become total garbage (especially in 'used by local ID' cases)...
Diffstat (limited to 'source/blender/blenkernel/intern/library.c')
-rw-r--r--source/blender/blenkernel/intern/library.c56
1 files changed, 56 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/library.c b/source/blender/blenkernel/intern/library.c
index 16f0fc080eb..aa6ce744afd 100644
--- a/source/blender/blenkernel/intern/library.c
+++ b/source/blender/blenkernel/intern/library.c
@@ -1883,6 +1883,62 @@ void BKE_main_id_clear_newpoins(Main *bmain)
}
+static int id_refcount_recompute_callback(
+ void *user_data, struct ID *UNUSED(id_self), struct ID **id_pointer, int cb_flag)
+{
+ const bool do_linked_only = (bool)POINTER_AS_INT(user_data);
+
+ if (*id_pointer == NULL) {
+ return IDWALK_RET_NOP;
+ }
+ if (do_linked_only && !ID_IS_LINKED(*id_pointer)) {
+ return IDWALK_RET_NOP;
+ }
+
+ if (cb_flag & IDWALK_CB_USER) {
+ /* Do not touch to direct/indirect linked status here... */
+ id_us_plus_no_lib(*id_pointer);
+ }
+ if (cb_flag & IDWALK_CB_USER_ONE) {
+ id_us_ensure_real(*id_pointer);
+ }
+
+ return IDWALK_RET_NOP;
+}
+
+void BLE_main_id_refcount_recompute(struct Main *bmain, const bool do_linked_only)
+{
+ ListBase *lbarray[MAX_LIBARRAY];
+ ID *id;
+ int a;
+
+ /* Reset usercount of all affected IDs. */
+ const int nbr_lb = a = set_listbasepointers(bmain, lbarray);
+ while (a--) {
+ for(id = lbarray[a]->first; id != NULL; id = id->next) {
+ if (!ID_IS_LINKED(id) && do_linked_only) {
+ continue;
+ }
+ id->us = ID_FAKE_USERS(id);
+ /* Note that we keep EXTRAUSER tag here, since some UI users may define it too... */
+ if (id->tag & LIB_TAG_EXTRAUSER) {
+ id->tag &= ~(LIB_TAG_EXTRAUSER | LIB_TAG_EXTRAUSER_SET);
+ id_us_ensure_real(id);
+ }
+ }
+ }
+
+ /* Go over whole Main database to re-generate proper usercounts... */
+ a = nbr_lb;
+ while (a--) {
+ for(id = lbarray[a]->first; id != NULL; id = id->next) {
+ BKE_library_foreach_ID_link(
+ bmain, id, id_refcount_recompute_callback, POINTER_FROM_INT((int)do_linked_only), IDWALK_READONLY);
+ }
+ }
+}
+
+
static void library_make_local_copying_check(ID *id, GSet *loop_tags, MainIDRelations *id_relations, GSet *done_ids)
{
if (BLI_gset_haskey(done_ids, id)) {