4 * @brief Interface of file_logger_t.
9 * Copyright (C) 2006 Martin Willi
10 * Hochschule fuer Technik Rapperswil
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
23 #ifndef FILE_LOGGER_H_
24 #define FILE_LOGGER_H_
26 typedef struct file_logger_t file_logger_t
;
31 * @brief Logger to files which implements bus_listener_t.
34 * - file_logger_create()
38 struct file_logger_t
{
41 * Implements the bus_listener_t interface.
43 bus_listener_t listener
;
46 * @brief Set the loglevel for a signal type.
48 * @param this stream_logger_t object
49 * @param singal type of signal
50 * @param level max level to log (0..4)
52 void (*set_level
) (file_logger_t
*this, signal_t signal
, level_t level
);
55 * @brief Destroys a file_logger_t object.
57 * @param this file_logger_t object
59 void (*destroy
) (file_logger_t
*this);
63 * @brief Constructor to create a file_logger_t object.
65 * @param out FILE to write to
66 * @return file_logger_t object
70 file_logger_t
*file_logger_create(FILE *out
);
73 #endif /* FILE_LOGGER_H_ */