diff --git a/src/box/box.cc b/src/box/box.cc index 207e411cf09c4aee03400fd5b37774fac7b253ac..bdf71eb23e3f9b4e66e98e11cbebc5c15c05763c 100644 --- a/src/box/box.cc +++ b/src/box/box.cc @@ -1458,9 +1458,8 @@ box_process_join(struct ev_io *io, struct xrow_header *header) tnt_raise(ClientError, ER_MISSING_SNAPSHOT); /* Register the replica with the garbage collector. */ - struct gc_consumer *gc = gc_consumer_register( - tt_sprintf("replica %s", tt_uuid_str(&instance_uuid)), - &start_vclock, GC_CONSUMER_WAL); + struct gc_consumer *gc = gc_consumer_register(&start_vclock, + GC_CONSUMER_WAL, "replica %s", tt_uuid_str(&instance_uuid)); if (gc == NULL) diag_raise(); auto gc_guard = make_scoped_guard([=]{ @@ -2176,7 +2175,7 @@ box_backup_start(int checkpoint_idx, box_backup_cb cb, void *cb_arg) return -1; } } while (checkpoint_idx-- > 0); - backup_gc = gc_consumer_register("backup", vclock, GC_CONSUMER_ALL); + backup_gc = gc_consumer_register(vclock, GC_CONSUMER_ALL, "backup"); if (backup_gc == NULL) return -1; int rc = engine_backup(vclock, cb, cb_arg); diff --git a/src/box/gc.c b/src/box/gc.c index fc89beffe7daff23bd0b4085d3723bf60788e0ed..556d265d747f577d103edbaf2559d65dbc27766c 100644 --- a/src/box/gc.c +++ b/src/box/gc.c @@ -32,6 +32,7 @@ #include <trivia/util.h> +#include <stdarg.h> #include <stdint.h> #include <stdlib.h> #include <stdio.h> @@ -193,8 +194,8 @@ gc_set_checkpoint_count(int checkpoint_count) } struct gc_consumer * -gc_consumer_register(const char *name, const struct vclock *vclock, - enum gc_consumer_type type) +gc_consumer_register(const struct vclock *vclock, enum gc_consumer_type type, + const char *format, ...) { struct gc_consumer *consumer = calloc(1, sizeof(*consumer)); if (consumer == NULL) { @@ -203,7 +204,11 @@ gc_consumer_register(const char *name, const struct vclock *vclock, return NULL; } - snprintf(consumer->name, GC_NAME_MAX, "%s", name); + va_list ap; + va_start(ap, format); + vsnprintf(consumer->name, GC_NAME_MAX, format, ap); + va_end(ap); + vclock_copy(&consumer->vclock, vclock); consumer->type = type; diff --git a/src/box/gc.h b/src/box/gc.h index fde4facf6bb5e0f7fb17b125e577a9b7785d6e25..6e2a4910bd6b809adc790acac595eceaa06d2140 100644 --- a/src/box/gc.h +++ b/src/box/gc.h @@ -35,6 +35,7 @@ #include "vclock.h" #include "latch.h" +#include "trivia/util.h" #if defined(__cplusplus) extern "C" { @@ -122,17 +123,18 @@ gc_set_checkpoint_count(int checkpoint_count); * * This will stop garbage collection of objects newer than * @vclock until the consumer is unregistered or advanced. - * @name is a human-readable name of the consumer, it will - * be used for reporting the consumer to the user. + * @format... specifies a human-readable name of the consumer, + * it will be used for listing the consumer in box.info.gc(). * @type consumer type, reporting whether consumer only depends * on WAL files. * * Returns a pointer to the new consumer object or NULL on * memory allocation failure. */ +CFORMAT(printf, 3, 4) struct gc_consumer * -gc_consumer_register(const char *name, const struct vclock *vclock, - enum gc_consumer_type type); +gc_consumer_register(const struct vclock *vclock, enum gc_consumer_type type, + const char *format, ...); /** * Unregister a consumer and invoke garbage collection diff --git a/src/box/relay.cc b/src/box/relay.cc index c90383d4a1c9a42e95f6b289bc2911530a0bff0f..88430856ede172a57d961e08a7c3fdd4d2543cd5 100644 --- a/src/box/relay.cc +++ b/src/box/relay.cc @@ -592,9 +592,9 @@ relay_subscribe(struct replica *replica, int fd, uint64_t sync, * join. */ if (replica->gc == NULL) { - replica->gc = gc_consumer_register( - tt_sprintf("replica %s", tt_uuid_str(&replica->uuid)), - replica_clock, GC_CONSUMER_WAL); + replica->gc = gc_consumer_register(replica_clock, + GC_CONSUMER_WAL, "replica %s", + tt_uuid_str(&replica->uuid)); if (replica->gc == NULL) diag_raise(); }