[Tarantool-patches] [PATCH 1/2] rope: fix rope name template
Konstantin Osipov
kostja.osipov at gmail.com
Mon Oct 28 10:32:35 MSK 2019
* Vladislav Shpilevoy <v.shpilevoy at tarantool.org> [19/10/26 18:33]:
LGTM
> Rope is a library to define a custom rope data
> structure with specified type of a stored value, and
> some rope functions such as split, alloc.
>
> It is possible to choose a unique name for a defined
> rope structure. It was implemented as
>
> #define rope_api(x) rope_##rope_name##_##x
> #define rope rope_##rope_name
>
> But with such rope_api definition it was always
> expanded to `rope_rope_name_<x value>`. So rope_name
> was basically a constant 'rope_name' regardless what
> was defined under it.
>
> The patch fixes it and makes name generation just like
> bps_tree.h.
>
> Additionally, the name template is changed a bit, now
> it is
>
> <rope_name>_ + rope + _<method>
>
> instead of
>
> <rope> + _<rope_name>_ + <method>
>
> It just appeared to look better. For example, consider
> rope name 'xrow_update' and method 'size':
>
> new: xrow_update_rope_size()
> old: rope_xrow_update_size()
>
> The second name would be generated by the old template
> and looks wrong. The new name not only looks better,
> but also conforms with our code style.
> ---
> src/lib/salad/rope.h | 18 ++++++++++++++----
> 1 file changed, 14 insertions(+), 4 deletions(-)
>
> diff --git a/src/lib/salad/rope.h b/src/lib/salad/rope.h
> index f38ac0e79..4fdaa90b6 100644
> --- a/src/lib/salad/rope.h
> +++ b/src/lib/salad/rope.h
> @@ -114,13 +114,18 @@ avl_iter_check(struct avl_iter *iter);
> * ROPE_FREE_F, optional
> */
>
> +#define CONCAT_R(a, b) a##b
> +#define CONCAT(a, b) CONCAT_R(a, b)
> +#define CONCAT3_R(a, b, c) a##b##c
> +#define CONCAT3(a, b, c) CONCAT3_R(a, b, c)
> +
> #if defined(ROPE_SRC)
> - #define rope_api(x) avl_##x
> + #define rope_api(x) CONCAT(avl_, x)
> #elif defined(rope_name)
> - #define rope_api(x) rope_##rope_name##_##x
> - #define rope rope_##rope_name
> + #define rope_api(x) CONCAT3(rope_name, _rope_, x)
> + #define rope CONCAT(rope_name, _rope)
> #else
> - #define rope_api(x) rope_##x
> + #define rope_api(x) CONCAT(rope_, x)
> #endif
>
> #ifndef ROPE_FREE_F
> @@ -712,6 +717,11 @@ rope_pretty_print(struct rope *rope, void (*print_leaf)(rope_data_t, size_t))
> #undef ROPE_FREE_F
> #undef ROPE_FREE
>
> +#undef CONCAT_R
> +#undef CONCAT
> +#undef CONCAT3_R
> +#undef CONCAT3
> +
> #if defined(__cplusplus)
> }
> #endif /* defined(__cplusplus) */
> --
> 2.21.0 (Apple Git-122)
>
--
Konstantin Osipov, Moscow, Russia
More information about the Tarantool-patches
mailing list