summaryrefslogtreecommitdiffstats
path: root/xlators/features/bit-rot/src/bitd/bit-rot-scrub-status.c
blob: 210beca7e2f28b2f34ce0bc061fa1b8a7f096513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
  Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
  This file is part of GlusterFS.

  This file is licensed to you under your choice of the GNU Lesser
  General Public License, version 3 or any later version (LGPLv3 or
  later), or the GNU General Public License, version 2 (GPLv2), in all
  cases as published by the Free Software Foundation.
*/

#include <string.h>
#include <stdio.h>

#include "bit-rot-scrub-status.h"

void
br_inc_unsigned_file_count (br_scrub_stats_t *scrub_stat)
{
        if (!scrub_stat)
                return;

        pthread_mutex_lock (&scrub_stat->lock);
        {
                scrub_stat->unsigned_files++;
        }
        pthread_mutex_unlock (&scrub_stat->lock);
}

void
br_inc_scrubbed_file (br_scrub_stats_t *scrub_stat)
{
        if (!scrub_stat)
                return;

        pthread_mutex_lock (&scrub_stat->lock);
        {
                scrub_stat->scrubbed_files++;
        }
        pthread_mutex_unlock (&scrub_stat->lock);
}

void
br_update_scrub_start_time (br_scrub_stats_t *scrub_stat, struct timeval *tv)
{
        if (!scrub_stat)
                return;

        pthread_mutex_lock (&scrub_stat->lock);
        {
                scrub_stat->scrub_start_tv.tv_sec = tv->tv_sec;
        }
        pthread_mutex_unlock (&scrub_stat->lock);
}

void
br_update_scrub_finish_time (br_scrub_stats_t *scrub_stat, char *timestr,
                             struct timeval *tv)
{
        int lst_size = 0;

        if (!scrub_stat)
                return;

        lst_size = sizeof (scrub_stat->last_scrub_time);
        if (strlen (timestr)  >= lst_size)
                return;

        pthread_mutex_lock (&scrub_stat->lock);
        {
                scrub_stat->scrub_end_tv.tv_sec = tv->tv_sec;

                scrub_stat->scrub_duration =
                                 scrub_stat->scrub_end_tv.tv_sec -
                                 scrub_stat->scrub_start_tv.tv_sec;

                snprintf (scrub_stat->last_scrub_time, lst_size, "%s",
                          timestr);
        }
        pthread_mutex_unlock (&scrub_stat->lock);
}