From: Roman Mamedov <rm@romanrm.net>
To: Mateusz Grzonka <mateusz.grzonka@intel.com>
Cc: linux-raid@vger.kernel.org, jes@trained-monkey.org
Subject: Re: [RFC PATCH] Add wrappers for singular/plural form generation
Date: Tue, 11 Jan 2022 19:06:17 +0500 [thread overview]
Message-ID: <20220111190617.6e01747f@nvm> (raw)
In-Reply-To: <20220111134145.28695-1-mateusz.grzonka@intel.com>
On Tue, 11 Jan 2022 14:41:45 +0100
Mateusz Grzonka <mateusz.grzonka@intel.com> wrote:
> Replace ternary operators checking for plural forms of words: "drive",
> "spare" and "disk" by wrappers.
As I understand the aim was for a limited scope change making the code
nicer to read.
But going a bit further, did you consider making the new function just return
a ready-to-use "5 drives" string, and also getting rid of the explicit "%d" in
front of it everywhere?
The "sorp" name is puzzling at first, but I don't know maybe that's a
convention somewhere.
> Signed-off-by: Mateusz Grzonka <mateusz.grzonka@intel.com>
> ---
> Assemble.c | 20 ++++++++++----------
> Grow.c | 12 ++++++------
> Query.c | 6 +++---
> mdadm.h | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
> super-intel.c | 9 +++++----
> 5 files changed, 74 insertions(+), 23 deletions(-)
>
> diff --git a/Assemble.c b/Assemble.c
> index 704b8293..7e1c3e64 100644
> --- a/Assemble.c
> +++ b/Assemble.c
> @@ -1126,9 +1126,9 @@ static int start_array(int mdfd,
> if (content->array.level == LEVEL_CONTAINER) {
> sysfs_rules_apply(mddev, content);
> if (c->verbose >= 0) {
> - pr_err("Container %s has been assembled with %d drive%s",
> + pr_err("Container %s has been assembled with %d %s",
> mddev, okcnt + sparecnt + journalcnt,
> - okcnt + sparecnt + journalcnt == 1 ? "" : "s");
> + sorp_drive(okcnt + sparecnt + journalcnt));
> if (okcnt < (unsigned)content->array.raid_disks)
> fprintf(stderr, " (out of %d)\n",
> content->array.raid_disks);
> @@ -1219,9 +1219,9 @@ static int start_array(int mdfd,
> sparecnt?",":" and",
> rebuilding_cnt);
> if (sparecnt)
> - fprintf(stderr, " and %d spare%s",
> + fprintf(stderr, " and %d %s",
> sparecnt,
> - sparecnt == 1 ? "" : "s");
> + sorp_spare(sparecnt));
> if (content->journal_clean)
> fprintf(stderr, " and %d journal",
> journalcnt);
> @@ -1300,8 +1300,8 @@ static int start_array(int mdfd,
> return 1;
> }
> if (c->runstop == -1) {
> - pr_err("%s assembled from %d drive%s",
> - mddev, okcnt, okcnt == 1 ? "" : "s");
> + pr_err("%s assembled from %d %s",
> + mddev, okcnt, sorp_drive(okcnt));
> if (okcnt != (unsigned)content->array.raid_disks)
> fprintf(stderr, " (out of %d)",
> content->array.raid_disks);
> @@ -1309,14 +1309,14 @@ static int start_array(int mdfd,
> return 2;
> }
> if (c->verbose >= -1) {
> - pr_err("%s assembled from %d drive%s",
> - mddev, okcnt, okcnt == 1 ? "" : "s");
> + pr_err("%s assembled from %d %s",
> + mddev, okcnt, sorp_drive(okcnt));
> if (rebuilding_cnt)
> fprintf(stderr, "%s %d rebuilding",
> sparecnt ? "," : " and", rebuilding_cnt);
> if (sparecnt)
> - fprintf(stderr, " and %d spare%s", sparecnt,
> - sparecnt == 1 ? "" : "s");
> + fprintf(stderr, " and %d %s", sparecnt,
> + sorp_spare(sparecnt));
> if (!enough(content->array.level, content->array.raid_disks,
> content->array.layout, 1, avail))
> fprintf(stderr, " - not enough to start the array.\n");
> diff --git a/Grow.c b/Grow.c
> index 9c6fc95e..fa7325f7 100644
> --- a/Grow.c
> +++ b/Grow.c
> @@ -1950,10 +1950,10 @@ int Grow_reshape(char *devname, int fd,
> array.spare_disks + added_disks <
> (s->raiddisks - array.raid_disks) &&
> !c->force) {
> - pr_err("Need %d spare%s to avoid degraded array, and only have %d.\n"
> + pr_err("Need %d %s to avoid degraded array, and only have %d.\n"
> " Use --force to over-ride this check.\n",
> s->raiddisks - array.raid_disks,
> - s->raiddisks - array.raid_disks == 1 ? "" : "s",
> + sorp_spare(s->raiddisks - array.raid_disks),
> array.spare_disks + added_disks);
> return 1;
> }
> @@ -3136,10 +3136,10 @@ static int reshape_array(char *container, int fd, char *devname,
>
> if (!force && info->new_level > 1 && info->array.level > 1 &&
> spares_needed > info->array.spare_disks + added_disks) {
> - pr_err("Need %d spare%s to avoid degraded array, and only have %d.\n"
> + pr_err("Need %d %s to avoid degraded array, and only have %d.\n"
> " Use --force to over-ride this check.\n",
> spares_needed,
> - spares_needed == 1 ? "" : "s",
> + sorp_spare(spares_needed),
> info->array.spare_disks + added_disks);
> goto release;
> }
> @@ -3149,8 +3149,8 @@ static int reshape_array(char *container, int fd, char *devname,
> - array.raid_disks;
> if ((info->new_level > 1 || info->new_level == 0) &&
> spares_needed > info->array.spare_disks +added_disks) {
> - pr_err("Need %d spare%s to create working array, and only have %d.\n",
> - spares_needed, spares_needed == 1 ? "" : "s",
> + pr_err("Need %d %s to create working array, and only have %d.\n",
> + spares_needed, sorp_spare(spares_needed),
> info->array.spare_disks + added_disks);
> goto release;
> }
> diff --git a/Query.c b/Query.c
> index 23fbf8aa..630ad2ff 100644
> --- a/Query.c
> +++ b/Query.c
> @@ -91,10 +91,10 @@ int Query(char *dev)
> printf("%s: is an md device, but gives \"%s\" when queried\n",
> dev, strerror(ioctlerr));
> else {
> - printf("%s: %s %s %d devices, %d spare%s. Use mdadm --detail for more detail.\n",
> + printf("%s: %s %s %d %s, %d %s. Use mdadm --detail for more detail.\n",
> dev, human_size_brief(larray_size,IEC),
> - map_num(pers, level), raid_disks,
> - spare_disks, spare_disks == 1 ? "" : "s");
> + map_num(pers, level), raid_disks, sorp_drive(raid_disks),
> + spare_disks, sorp_spare(spare_disks));
> }
> st = guess_super(fd);
> if (st && st->ss->compare_super != NULL)
> diff --git a/mdadm.h b/mdadm.h
> index c7268a71..129da587 100644
> --- a/mdadm.h
> +++ b/mdadm.h
> @@ -808,6 +808,56 @@ static inline void close_fd(int *fd)
> *fd = -1;
> }
>
> +/**
> + * sorp() - Decides whether to use singular or plural word form.
> + * @singular: Word in a singular form.
> + * @plural: Word in a plural form.
> + * @count: Number of objects being concerned.
> + *
> + * Depending on @count function decides whether to use singular or plural form.
> + *
> + * Return: Pointer to either singular or plural form provided.
> + */
> +static inline char *sorp(char *singular, char *plural, int count)
> +{
> + if (count < 2)
> + return singular;
> + return plural;
> +}
> +
> +/**
> + * sorp_drive() - Decides whether to use singular or plural form for "drive"
> + * @count: Number of drives.
> + *
> + * Return: Pointer to string containing either singular or plural form of "drive"
> + */
> +static inline char *sorp_drive(int count)
> +{
> + return sorp("drive", "drives", count);
> +}
> +
> +/**
> + * sorp_disk() - Decides whether to use singular or plural form for "disk"
> + * @count: Number of disks.
> + *
> + * Return: Pointer to string containing either singular or plural form of "disk"
> + */
> +static inline char *sorp_disk(int count)
> +{
> + return sorp("disk", "disks", count);
> +}
> +
> +/**
> + * sorp_spare() - Decides whether to use singular or plural form for "spare"
> + * @count: Number of spares.
> + *
> + * Return: Pointer to string containing either singular or plural form of "spare"
> + */
> +static inline char *sorp_spare(int count)
> +{
> + return sorp("spare", "spares", count);
> +}
> +
> struct active_array;
> struct metadata_update;
>
> diff --git a/super-intel.c b/super-intel.c
> index d5fad102..64d11e8f 100644
> --- a/super-intel.c
> +++ b/super-intel.c
> @@ -7267,8 +7267,9 @@ validate_geometry_imsm_orom(struct intel_super *super, int level, int layout,
>
> /* capabilities of OROM tested - copied from validate_geometry_imsm_volume */
> if (!is_raid_level_supported(super->orom, level, raiddisks)) {
> - pr_vrb("platform does not support raid%d with %d disk%s\n",
> - level, raiddisks, raiddisks > 1 ? "s" : "");
> + pr_vrb("platform does not support raid%d with %d %s\n",
> + level, raiddisks,
> + sorp_disk(raiddisks));
> return 0;
> }
>
> @@ -11213,10 +11214,10 @@ static int imsm_reshape_is_allowed_on_container(struct supertype *st,
> if (!is_raid_level_supported(super->orom,
> member->array.level,
> geo->raid_disks)) {
> - dprintf("platform does not support raid%d with %d disk%s\n",
> + dprintf("platform does not support raid%d with %d %s\n",
> info->array.level,
> geo->raid_disks,
> - geo->raid_disks > 1 ? "s" : "");
> + sorp_disk(geo->raid_disks));
> break;
> }
> /* check if component size is aligned to chunk size
--
With respect,
Roman
prev parent reply other threads:[~2022-01-11 14:06 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-11 13:41 [RFC PATCH] Add wrappers for singular/plural form generation Mateusz Grzonka
2022-01-11 14:06 ` Roman Mamedov [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220111190617.6e01747f@nvm \
--to=rm@romanrm.net \
--cc=jes@trained-monkey.org \
--cc=linux-raid@vger.kernel.org \
--cc=mateusz.grzonka@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).