blob: cc6385f2a56f0770bd6e2bf1cc66440bea15129a (
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
|
/* Copyright (C) 2017 Farsight Security, Inc. <software@farsightsecurity.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/*!
* \brief Dnstap file reader.
*/
#pragma once
#include <fstrm.h>
#include <protobuf-c/protobuf-c.h>
#include "contrib/dnstap/dnstap.pb-c.h"
/*! \brief Structure for dnstap file reader. */
typedef struct {
/*!< Input reader. */
struct fstrm_reader *fr;
} dt_reader_t;
/*!
* \brief Creates dnstap file reader structure.
*
* \param file_path Name of file to read input from.
*
* \retval reader if success.
* \retval NULL if error.
*/
dt_reader_t* dt_reader_create(const char *file_path);
/*!
* \brief Close dnstap file reader.
*
* \param reader dnstap file reader structure.
*/
void dt_reader_free(dt_reader_t *reader);
/*!
* \brief Read a dnstap protobuf from a dnstap file reader.
*
* Caller must deallocate the returned protobuf with the
* dnstap__dnstap__free_unpacked() function.
*
* \param[in] reader dnstap file reader structure.
* \param[out] d Unpacked dnstap protobuf.
*
* \retval KNOT_EOK
* \retval KNOT_ERROR
* \retval KNOT_EOF
* \retval KNOT_ENOMEM
*/
int dt_reader_read(dt_reader_t *reader, Dnstap__Dnstap **d);
/*!
* \brief free the frame allocated by dt_read_data.
*
* \param reader Dnstap reader context.
* \param d The frame to be freed.
*/
void dt_reader_free_frame(dt_reader_t *reader, Dnstap__Dnstap **d);
|