Revert "Enhanced stats/reports for blendfile reading."
This change crashes library linking operators, related tests and probably more.
This reverts commit f8d219dfd4.
Ref D11583
This commit is contained in:
@@ -52,15 +52,12 @@
|
||||
#include "BLI_blenlib.h"
|
||||
#include "BLI_fileops_types.h"
|
||||
#include "BLI_linklist.h"
|
||||
#include "BLI_math.h"
|
||||
#include "BLI_system.h"
|
||||
#include "BLI_threads.h"
|
||||
#include "BLI_timer.h"
|
||||
#include "BLI_utildefines.h"
|
||||
#include BLI_SYSTEM_PID_H
|
||||
|
||||
#include "PIL_time.h"
|
||||
|
||||
#include "BLT_translation.h"
|
||||
|
||||
#include "BLF_api.h"
|
||||
@@ -736,97 +733,6 @@ static void wm_file_read_post(bContext *C,
|
||||
/** \name Read Main Blend-File API
|
||||
* \{ */
|
||||
|
||||
static void file_read_reports_finalize(BlendFileReadReport *bf_reports)
|
||||
{
|
||||
double duration_whole_minutes, duration_whole_seconds;
|
||||
double duration_libraries_minutes, duration_libraries_seconds;
|
||||
double duration_lib_override_minutes, duration_lib_override_seconds;
|
||||
double duration_lib_override_resync_minutes, duration_lib_override_resync_seconds;
|
||||
double duration_lib_override_recursive_resync_minutes,
|
||||
duration_lib_override_recursive_resync_seconds;
|
||||
|
||||
BLI_math_time_seconds_decompose(bf_reports->duration.whole,
|
||||
NULL,
|
||||
NULL,
|
||||
&duration_whole_minutes,
|
||||
&duration_whole_seconds,
|
||||
NULL);
|
||||
BLI_math_time_seconds_decompose(bf_reports->duration.libraries,
|
||||
NULL,
|
||||
NULL,
|
||||
&duration_libraries_minutes,
|
||||
&duration_libraries_seconds,
|
||||
NULL);
|
||||
BLI_math_time_seconds_decompose(bf_reports->duration.lib_overrides,
|
||||
NULL,
|
||||
NULL,
|
||||
&duration_lib_override_minutes,
|
||||
&duration_lib_override_seconds,
|
||||
NULL);
|
||||
BLI_math_time_seconds_decompose(bf_reports->duration.lib_overrides_resync,
|
||||
NULL,
|
||||
NULL,
|
||||
&duration_lib_override_resync_minutes,
|
||||
&duration_lib_override_resync_seconds,
|
||||
NULL);
|
||||
BLI_math_time_seconds_decompose(bf_reports->duration.lib_overrides_recursive_resync,
|
||||
NULL,
|
||||
NULL,
|
||||
&duration_lib_override_recursive_resync_minutes,
|
||||
&duration_lib_override_recursive_resync_seconds,
|
||||
NULL);
|
||||
|
||||
CLOG_INFO(
|
||||
&LOG, 0, "Blender file read in %.0fm%.2fs", duration_whole_minutes, duration_whole_seconds);
|
||||
CLOG_INFO(&LOG,
|
||||
0,
|
||||
" * Loading libraries: %.0fm%.2fs",
|
||||
duration_libraries_minutes,
|
||||
duration_libraries_seconds);
|
||||
CLOG_INFO(&LOG,
|
||||
0,
|
||||
" * Applying overrides: %.0fm%.2fs",
|
||||
duration_lib_override_minutes,
|
||||
duration_lib_override_seconds);
|
||||
CLOG_INFO(&LOG,
|
||||
0,
|
||||
" * Resyncing overrides: %.0fm%.2fs (%d root overrides), including recursive "
|
||||
"resyncs: %.0fm%.2fs)",
|
||||
duration_lib_override_resync_minutes,
|
||||
duration_lib_override_resync_seconds,
|
||||
bf_reports->count.resynced_lib_overrides,
|
||||
duration_lib_override_recursive_resync_minutes,
|
||||
duration_lib_override_recursive_resync_seconds);
|
||||
if (bf_reports->resynced_lib_overrides_libraries_count != 0) {
|
||||
for (LinkNode *node_lib = bf_reports->resynced_lib_overrides_libraries; node_lib != NULL;
|
||||
node_lib = node_lib->next) {
|
||||
Library *library = node_lib->link;
|
||||
BKE_reportf(
|
||||
bf_reports->reports, RPT_INFO, "Library %s needs overrides resync.", library->filepath);
|
||||
}
|
||||
}
|
||||
if (bf_reports->count.missing_libraries != 0 || bf_reports->count.missing_linked_id != 0) {
|
||||
BKE_reportf(bf_reports->reports,
|
||||
RPT_WARNING,
|
||||
"%d libraries and %d linked data-blocks are missing, please check the "
|
||||
"Info and Outliner editors for details",
|
||||
bf_reports->count.missing_libraries,
|
||||
bf_reports->count.missing_linked_id);
|
||||
}
|
||||
if (bf_reports->resynced_lib_overrides_libraries_count != 0) {
|
||||
BKE_reportf(bf_reports->reports,
|
||||
RPT_WARNING,
|
||||
"%d libraries have overrides needing resync (auto resynced in %.0fm%.2fs), "
|
||||
"please check the Info editor for details",
|
||||
bf_reports->resynced_lib_overrides_libraries_count,
|
||||
duration_lib_override_recursive_resync_minutes,
|
||||
duration_lib_override_recursive_resync_seconds);
|
||||
}
|
||||
|
||||
BLI_linklist_free(bf_reports->resynced_lib_overrides_libraries, NULL);
|
||||
bf_reports->resynced_lib_overrides_libraries = NULL;
|
||||
}
|
||||
|
||||
bool WM_file_read(bContext *C, const char *filepath, ReportList *reports)
|
||||
{
|
||||
/* assume automated tasks with background, don't write recent file list */
|
||||
@@ -857,9 +763,7 @@ bool WM_file_read(bContext *C, const char *filepath, ReportList *reports)
|
||||
.skip_flags = BLO_READ_SKIP_USERDEF,
|
||||
};
|
||||
|
||||
BlendFileReadReport bf_reports = {.reports = reports,
|
||||
.duration.whole = PIL_check_seconds_timer()};
|
||||
struct BlendFileData *bfd = BKE_blendfile_read(filepath, ¶ms, &bf_reports);
|
||||
struct BlendFileData *bfd = BKE_blendfile_read(filepath, ¶ms, reports);
|
||||
if (bfd != NULL) {
|
||||
wm_file_read_pre(C, use_data, use_userdef);
|
||||
|
||||
@@ -872,7 +776,7 @@ bool WM_file_read(bContext *C, const char *filepath, ReportList *reports)
|
||||
* need to re-enable it here else drivers + registered scripts wont work. */
|
||||
const int G_f_orig = G.f;
|
||||
|
||||
BKE_blendfile_read_setup(C, bfd, ¶ms, &bf_reports);
|
||||
BKE_blendfile_read_setup(C, bfd, ¶ms, reports);
|
||||
|
||||
if (G.f != G_f_orig) {
|
||||
const int flags_keep = G_FLAG_ALL_RUNTIME;
|
||||
@@ -903,9 +807,6 @@ bool WM_file_read(bContext *C, const char *filepath, ReportList *reports)
|
||||
|
||||
wm_file_read_post(C, false, false, use_data, use_userdef, false);
|
||||
|
||||
bf_reports.duration.whole = PIL_check_seconds_timer() - bf_reports.duration.whole;
|
||||
file_read_reports_finalize(&bf_reports);
|
||||
|
||||
success = true;
|
||||
}
|
||||
}
|
||||
@@ -1186,15 +1087,10 @@ void wm_homefile_read(bContext *C,
|
||||
.skip_flags = skip_flags | BLO_READ_SKIP_USERDEF,
|
||||
};
|
||||
|
||||
struct BlendFileData *bfd = BKE_blendfile_read(
|
||||
filepath_startup, ¶ms, &(BlendFileReadReport){NULL});
|
||||
struct BlendFileData *bfd = BKE_blendfile_read(filepath_startup, ¶ms, NULL);
|
||||
if (bfd != NULL) {
|
||||
BKE_blendfile_read_setup_ex(C,
|
||||
bfd,
|
||||
¶ms,
|
||||
&(BlendFileReadReport){NULL},
|
||||
update_defaults && use_data,
|
||||
app_template);
|
||||
BKE_blendfile_read_setup_ex(
|
||||
C, bfd, ¶ms, NULL, update_defaults && use_data, app_template);
|
||||
success = true;
|
||||
}
|
||||
}
|
||||
@@ -1224,7 +1120,7 @@ void wm_homefile_read(bContext *C,
|
||||
struct BlendFileData *bfd = BKE_blendfile_read_from_memory(
|
||||
datatoc_startup_blend, datatoc_startup_blend_size, ¶ms, NULL);
|
||||
if (bfd != NULL) {
|
||||
BKE_blendfile_read_setup_ex(C, bfd, ¶ms, &(BlendFileReadReport){NULL}, true, NULL);
|
||||
BKE_blendfile_read_setup_ex(C, bfd, ¶ms, NULL, true, NULL);
|
||||
success = true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user