2 * Copyright (C) 2015 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include <common/common.h>
21 #include <common/utils.h>
22 #include <common/defaults.h>
24 #include "tracefile-array.h"
26 struct tracefile_array
*tracefile_array_create(size_t count
)
28 struct tracefile_array
*tfa
= NULL
;
31 tfa
= zmalloc(sizeof(*tfa
));
35 tfa
->tf
= zmalloc(sizeof(*tfa
->tf
) * count
);
40 for (i
= 0; i
< count
; i
++) {
41 tfa
->tf
[i
].seq_head
= -1ULL;
42 tfa
->tf
[i
].seq_tail
= -1ULL;
44 tfa
->seq_head
= -1ULL;
45 tfa
->seq_tail
= -1ULL;
56 void tracefile_array_destroy(struct tracefile_array
*tfa
)
65 void tracefile_array_file_rotate(struct tracefile_array
*tfa
)
67 uint64_t *headp
, *tailp
;
70 /* Not in tracefile rotation mode. */
73 /* Rotate to next file. */
74 tfa
->file_head
= (tfa
->file_head
+ 1) % tfa
->count
;
75 if (tfa
->file_head
== tfa
->file_tail
) {
77 tfa
->file_tail
= (tfa
->file_tail
+ 1) % tfa
->count
;
79 headp
= &tfa
->tf
[tfa
->file_head
].seq_head
;
80 tailp
= &tfa
->tf
[tfa
->file_head
].seq_tail
;
82 * If we overwrite a file with content, we need to push the tail
83 * to the position following the content we are overwriting.
85 if (*headp
!= -1ULL) {
86 tfa
->seq_tail
= tfa
->tf
[tfa
->file_tail
].seq_tail
;
88 /* Reset this file head/tail (overwrite). */
93 void tracefile_array_commit_seq(struct tracefile_array
*tfa
)
95 uint64_t *headp
, *tailp
;
97 /* Increment overall head. */
99 /* If we are committing our first index overall, set tail to 0. */
100 if (tfa
->seq_tail
== -1ULL) {
104 /* Not in tracefile rotation mode. */
107 headp
= &tfa
->tf
[tfa
->file_head
].seq_head
;
108 tailp
= &tfa
->tf
[tfa
->file_head
].seq_tail
;
109 /* Update head tracefile seq_head. */
110 *headp
= tfa
->seq_head
;
112 * If we are committing our first index in this packet, set tail
113 * to this index seq count.
115 if (*tailp
== -1ULL) {
116 *tailp
= tfa
->seq_head
;
120 uint64_t tracefile_array_get_file_index_head(struct tracefile_array
*tfa
)
122 return tfa
->file_head
;
125 uint64_t tracefile_array_get_seq_head(struct tracefile_array
*tfa
)
127 return tfa
->seq_head
;
130 uint64_t tracefile_array_get_file_index_tail(struct tracefile_array
*tfa
)
132 return tfa
->file_tail
;
135 uint64_t tracefile_array_get_seq_tail(struct tracefile_array
*tfa
)
137 return tfa
->seq_tail
;
140 bool tracefile_array_seq_in_file(struct tracefile_array
*tfa
,
141 uint64_t file_index
, uint64_t seq
)
145 * Not in tracefile rotation mode; we are guaranteed to have the
146 * index in this file.
150 assert(file_index
< tfa
->count
);
154 if (seq
>= tfa
->tf
[file_index
].seq_tail
155 && seq
<= tfa
->tf
[file_index
].seq_head
) {
This page took 0.036006 seconds and 4 git commands to generate.