OpenDNSSEC-signer  1.4.8.2
stats.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2009 NLNet Labs. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
17  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
19  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
21  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
22  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
23  * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  *
25  */
26 
32 #ifndef SIGNER_STATS_H
33 #define SIGNER_STATS_H
34 
35 #include "shared/locks.h"
36 
37 #include <config.h>
38 #include <ctype.h>
39 #include <stdint.h>
40 #include <time.h>
41 #ifdef HAVE_SYS_TYPES_H
42 # include <sys/types.h>
43 #endif
44 #ifdef HAVE_UNISTD_H
45 # include <unistd.h>
46 #endif
47 
48 #include <ldns/ldns.h>
49 
53 typedef struct stats_struct stats_type;
54 struct stats_struct {
55  int32_t sort_count;
56  time_t sort_time;
57  int sort_done;
58  int32_t nsec_count;
59  time_t nsec_time;
60  int32_t sig_count;
61  int32_t sig_soa_count;
62  int32_t sig_reuse;
63  time_t sig_time;
64  time_t audit_time;
65  time_t start_time;
66  time_t end_time;
68 };
69 
76 
85 void stats_log(stats_type* stats, const char* name, uint32_t serial,
86  ldns_rr_type nsec_type);
87 
93 void stats_clear(stats_type* stats);
94 
100 void stats_cleanup(stats_type* stats);
101 
102 #endif /* SIGNER_STATS_H */
int sort_done
Definition: stats.h:57
stats_type * stats_create(void)
Definition: stats.c:40
time_t audit_time
Definition: stats.h:64
time_t sig_time
Definition: stats.h:63
int32_t nsec_count
Definition: stats.h:58
lock_basic_type stats_lock
Definition: stats.h:67
int32_t sort_count
Definition: stats.h:55
int32_t sig_reuse
Definition: stats.h:62
void stats_log(stats_type *stats, const char *name, uint32_t serial, ldns_rr_type nsec_type)
Definition: stats.c:76
time_t nsec_time
Definition: stats.h:59
int32_t sig_count
Definition: stats.h:60
void stats_cleanup(stats_type *stats)
Definition: stats.c:107
int lock_basic_type
Definition: locks.h:91
time_t start_time
Definition: stats.h:65
time_t sort_time
Definition: stats.h:56
time_t end_time
Definition: stats.h:66
void stats_clear(stats_type *stats)
Definition: stats.c:54
int32_t sig_soa_count
Definition: stats.h:61