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:
authorCampbell Barton <ideasman42@gmail.com>2019-02-01 04:44:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-01 04:46:39 +0300
commit552b2287db86ed6e77565672fbccff1d553f823f (patch)
tree235ad970599910d52c822bb89d23fb467f44f1bd /source/blender/blenkernel/intern/fcurve.c
parent8a51af7d1c98500022b1ff789284f9e0a3c038cd (diff)
Logging: Use CLOG for blenkernel
Part of D4277 by @sobakasu
Diffstat (limited to 'source/blender/blenkernel/intern/fcurve.c')
-rw-r--r--source/blender/blenkernel/intern/fcurve.c40
1 files changed, 22 insertions, 18 deletions
diff --git a/source/blender/blenkernel/intern/fcurve.c b/source/blender/blenkernel/intern/fcurve.c
index fa8fd9247bb..e236f5667f1 100644
--- a/source/blender/blenkernel/intern/fcurve.c
+++ b/source/blender/blenkernel/intern/fcurve.c
@@ -67,6 +67,8 @@
#include "atomic_ops.h"
+#include "CLG_log.h"
+
#ifdef WITH_PYTHON
#include "BPY_extern.h"
#endif
@@ -78,6 +80,8 @@
static ThreadMutex python_driver_lock = BLI_MUTEX_INITIALIZER;
#endif
+static CLG_LogRef LOG = {"bke.fcurve"};
+
/* ************************** Data-Level Functions ************************* */
/* ---------------------- Freeing --------------------------- */
@@ -434,7 +438,7 @@ static int binarysearch_bezt_index_ex(BezTriple array[], float frame, int arrayl
* - keyframe to be added would replace one of the existing ones on bounds
*/
if ((arraylen <= 0) || (array == NULL)) {
- printf("Warning: binarysearch_bezt_index() encountered invalid array\n");
+ CLOG_WARN(&LOG, "encountered invalid array");
return 0;
}
else {
@@ -484,10 +488,10 @@ static int binarysearch_bezt_index_ex(BezTriple array[], float frame, int arrayl
/* print error if loop-limit exceeded */
if (loopbreaker == (maxloop - 1)) {
- printf("Error: binarysearch_bezt_index() was taking too long\n");
+ CLOG_ERROR(&LOG, "search taking too long");
/* include debug info */
- printf("\tround = %d: start = %d, end = %d, arraylen = %d\n", loopbreaker, start, end, arraylen);
+ CLOG_ERROR(&LOG, "\tround = %d: start = %d, end = %d, arraylen = %d", loopbreaker, start, end, arraylen);
}
/* not found, so return where to place it */
@@ -849,13 +853,13 @@ void fcurve_store_samples(FCurve *fcu, void *data, int start, int end, FcuSample
int cfra;
/* sanity checks */
- /* TODO: make these tests report errors using reports not printf's */
+ /* TODO: make these tests report errors using reports not CLOG's */
if (ELEM(NULL, fcu, sample_cb)) {
- printf("Error: No F-Curve with F-Curve Modifiers to Bake\n");
+ CLOG_ERROR(&LOG, "No F-Curve with F-Curve Modifiers to Bake");
return;
}
if (start > end) {
- printf("Error: Frame range for Sampled F-Curve creation is inappropriate\n");
+ CLOG_ERROR(&LOG, "Error: Frame range for Sampled F-Curve creation is inappropriate");
return;
}
@@ -1166,7 +1170,7 @@ static float dtar_get_prop_val(ChannelDriver *driver, DriverTarget *dtar)
/* error check for missing pointer... */
if (id == NULL) {
if (G.debug & G_DEBUG) {
- printf("Error: driver has an invalid target to use (path = %s)\n", dtar->rna_path);
+ CLOG_ERROR(&LOG, "driver has an invalid target to use (path = %s)", dtar->rna_path);
}
driver->flag |= DRIVER_FLAG_INVALID;
@@ -1199,8 +1203,8 @@ static float dtar_get_prop_val(ChannelDriver *driver, DriverTarget *dtar)
else {
/* out of bounds */
if (G.debug & G_DEBUG) {
- printf("Driver Evaluation Error: array index is out of bounds for %s -> %s (%d)",
- id->name, dtar->rna_path, index);
+ CLOG_ERROR(&LOG, "Driver Evaluation Error: array index is out of bounds for %s -> %s (%d)",
+ id->name, dtar->rna_path, index);
}
driver->flag |= DRIVER_FLAG_INVALID;
@@ -1231,7 +1235,7 @@ static float dtar_get_prop_val(ChannelDriver *driver, DriverTarget *dtar)
else {
/* path couldn't be resolved */
if (G.debug & G_DEBUG) {
- printf("Driver Evaluation Error: cannot resolve target for %s -> %s\n", id->name, dtar->rna_path);
+ CLOG_ERROR(&LOG, "Driver Evaluation Error: cannot resolve target for %s -> %s", id->name, dtar->rna_path);
}
driver->flag |= DRIVER_FLAG_INVALID;
@@ -1266,7 +1270,7 @@ bool driver_get_variable_property(
/* error check for missing pointer... */
if (id == NULL) {
if (G.debug & G_DEBUG) {
- printf("Error: driver has an invalid target to use (path = %s)\n", dtar->rna_path);
+ CLOG_ERROR(&LOG, "driver has an invalid target to use (path = %s)", dtar->rna_path);
}
driver->flag |= DRIVER_FLAG_INVALID;
@@ -1288,7 +1292,7 @@ bool driver_get_variable_property(
else {
/* path couldn't be resolved */
if (G.debug & G_DEBUG) {
- printf("Driver Evaluation Error: cannot resolve target for %s -> %s\n", id->name, dtar->rna_path);
+ CLOG_ERROR(&LOG, "Driver Evaluation Error: cannot resolve target for %s -> %s", id->name, dtar->rna_path);
}
ptr = PointerRNA_NULL;
@@ -1351,8 +1355,8 @@ static float dvar_eval_rotDiff(ChannelDriver *driver, DriverVar *dvar)
/* make sure we have enough valid targets to use - all or nothing for now... */
if (driver_check_valid_targets(driver, dvar) != 2) {
if (G.debug & G_DEBUG) {
- printf("RotDiff DVar: not enough valid targets (n = %d) (a = %p, b = %p)\n",
- valid_targets, dvar->targets[0].id, dvar->targets[1].id);
+ CLOG_WARN(&LOG, "RotDiff DVar: not enough valid targets (n = %d) (a = %p, b = %p)",
+ valid_targets, dvar->targets[0].id, dvar->targets[1].id);
}
return 0.0f;
}
@@ -1408,8 +1412,8 @@ static float dvar_eval_locDiff(ChannelDriver *driver, DriverVar *dvar)
/* make sure we have enough valid targets to use - all or nothing for now... */
if (valid_targets < dvar->num_targets) {
if (G.debug & G_DEBUG) {
- printf("LocDiff DVar: not enough valid targets (n = %d) (a = %p, b = %p)\n",
- valid_targets, dvar->targets[0].id, dvar->targets[1].id);
+ CLOG_WARN(&LOG, "LocDiff DVar: not enough valid targets (n = %d) (a = %p, b = %p)",
+ valid_targets, dvar->targets[0].id, dvar->targets[1].id);
}
return 0.0f;
}
@@ -1933,14 +1937,14 @@ static bool driver_evaluate_simple_expr(ChannelDriver *driver, ExprPyLike_Parsed
case EXPR_PYLIKE_DIV_BY_ZERO:
case EXPR_PYLIKE_MATH_ERROR:
message = (status == EXPR_PYLIKE_DIV_BY_ZERO) ? "Division by Zero" : "Math Domain Error";
- fprintf(stderr, "\n%s in Driver: '%s'\n", message, driver->expression);
+ CLOG_ERROR(&LOG, "%s in Driver: '%s'", message, driver->expression);
driver->flag |= DRIVER_FLAG_INVALID;
return true;
default:
/* arriving here means a bug, not user error */
- printf("Error: simple driver expression evaluation failed: '%s'\n", driver->expression);
+ CLOG_ERROR(&LOG, "simple driver expression evaluation failed: '%s'", driver->expression);
return false;
}
}