2013-06-26 10:10:26 +08:00
|
|
|
/*
|
|
|
|
* File : log_file.c
|
|
|
|
* This file is part of RT-Thread RTOS
|
|
|
|
* COPYRIGHT (C) 2013, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* 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 2 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, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* Bernard the first version
|
|
|
|
* 2013-06-26 Grissiom refactor
|
|
|
|
*/
|
2013-09-17 11:07:24 +08:00
|
|
|
#include <rtthread.h>
|
|
|
|
#include <log_trace.h>
|
2013-06-26 10:10:26 +08:00
|
|
|
|
|
|
|
#ifdef RT_USING_DFS
|
|
|
|
|
|
|
|
#include <dfs_posix.h>
|
|
|
|
|
|
|
|
struct file_device
|
|
|
|
{
|
|
|
|
struct rt_device parent;
|
|
|
|
|
|
|
|
int fd;
|
|
|
|
char *filename;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* file device for log trace */
|
|
|
|
static struct file_device _file_device;
|
|
|
|
|
|
|
|
/* common device interface */
|
2013-09-03 16:09:16 +08:00
|
|
|
static rt_err_t fdevice_open(rt_device_t dev, rt_uint16_t oflag)
|
2013-06-26 10:10:26 +08:00
|
|
|
{
|
|
|
|
int fd;
|
2013-09-03 16:09:16 +08:00
|
|
|
struct file_device *fdev = (struct file_device *)dev;
|
2013-06-26 10:10:26 +08:00
|
|
|
|
2013-09-03 16:09:16 +08:00
|
|
|
if (fdev->fd >= 0)
|
|
|
|
return -RT_EBUSY;
|
|
|
|
|
|
|
|
/* test and open */
|
|
|
|
fd = open(fdev->filename, O_RDONLY, 0);
|
2013-06-26 10:10:26 +08:00
|
|
|
if (fd >= 0)
|
|
|
|
{
|
|
|
|
close(fd);
|
2013-09-03 16:09:16 +08:00
|
|
|
fd = open(fdev->filename, O_WRONLY | O_APPEND, 0);
|
2013-06-26 10:10:26 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* file not exists */
|
2013-09-03 16:09:16 +08:00
|
|
|
fd = open(fdev->filename, O_WRONLY | O_CREAT, 0);
|
2013-06-26 10:10:26 +08:00
|
|
|
}
|
2013-09-03 16:09:16 +08:00
|
|
|
fdev->fd = fd;
|
2013-06-26 10:10:26 +08:00
|
|
|
|
|
|
|
return RT_EOK;
|
|
|
|
}
|
|
|
|
|
2013-09-03 16:09:16 +08:00
|
|
|
static rt_err_t fdevice_close(rt_device_t dev)
|
2013-06-26 10:10:26 +08:00
|
|
|
{
|
|
|
|
rt_err_t result;
|
2013-09-03 16:09:16 +08:00
|
|
|
struct file_device *fdev = (struct file_device *)dev;
|
2013-06-26 10:10:26 +08:00
|
|
|
|
2013-09-03 16:09:16 +08:00
|
|
|
if (fdev->fd < 0)
|
|
|
|
return -RT_EBUSY;
|
2013-06-26 10:10:26 +08:00
|
|
|
|
2013-09-03 16:09:16 +08:00
|
|
|
result = close(fdev->fd);
|
2013-06-26 10:10:26 +08:00
|
|
|
if (result == 0)
|
|
|
|
{
|
2013-09-03 16:09:16 +08:00
|
|
|
fdev->fd = -1;
|
2013-06-26 10:10:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-09-03 16:09:16 +08:00
|
|
|
static rt_size_t fdevice_write(rt_device_t dev, rt_off_t pos, const void *buffer, rt_size_t size)
|
2013-06-26 10:10:26 +08:00
|
|
|
{
|
2013-09-03 16:09:16 +08:00
|
|
|
struct file_device *fdev = (struct file_device *)dev;
|
|
|
|
|
|
|
|
if (fdev->fd < 0)
|
|
|
|
return 0;
|
2013-06-26 10:10:26 +08:00
|
|
|
|
2013-09-03 16:09:16 +08:00
|
|
|
return write(fdev->fd, buffer, size);
|
2013-06-26 10:10:26 +08:00
|
|
|
}
|
|
|
|
|
2017-08-04 12:46:23 +08:00
|
|
|
static rt_err_t fdevice_control(rt_device_t dev, rt_uint8_t cmd, void *arg)
|
|
|
|
{
|
|
|
|
struct file_device *fdev = (struct file_device *)dev;
|
|
|
|
|
|
|
|
if (fdev->fd < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case LOG_TRACE_CTRL_FLUSH:
|
|
|
|
if (fsync(fdev->fd) != 0)
|
|
|
|
return RT_ERROR;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return RT_EOK;
|
|
|
|
}
|
|
|
|
|
2013-06-26 10:10:26 +08:00
|
|
|
void log_trace_file_init(const char *filename)
|
|
|
|
{
|
|
|
|
rt_device_t device;
|
|
|
|
|
|
|
|
device = rt_device_find("logfile");
|
|
|
|
if (device == RT_NULL)
|
|
|
|
{
|
|
|
|
rt_memset(&_file_device, 0x00, sizeof(_file_device));
|
|
|
|
|
|
|
|
_file_device.parent.type = RT_Device_Class_Char;
|
|
|
|
|
2017-08-04 12:46:23 +08:00
|
|
|
_file_device.parent.init = RT_NULL;
|
|
|
|
_file_device.parent.open = fdevice_open;
|
|
|
|
_file_device.parent.close = fdevice_close;
|
|
|
|
_file_device.parent.write = fdevice_write;
|
|
|
|
_file_device.parent.control = fdevice_control;
|
2013-06-26 10:10:26 +08:00
|
|
|
|
|
|
|
rt_device_register(&_file_device.parent, "logfile", O_RDWR);
|
|
|
|
}
|
|
|
|
|
|
|
|
_file_device.filename = rt_strdup(filename);
|
|
|
|
_file_device.fd = -1;
|
|
|
|
}
|
|
|
|
|
2013-09-03 16:09:16 +08:00
|
|
|
void log_trace_set_file(const char *filename)
|
|
|
|
{
|
|
|
|
log_trace_file_init(filename);
|
|
|
|
log_trace_set_device("logfile");
|
|
|
|
}
|
2013-09-26 11:49:33 +08:00
|
|
|
#ifdef RT_USING_FINSH
|
|
|
|
#include <finsh.h>
|
2013-09-03 16:09:16 +08:00
|
|
|
FINSH_FUNCTION_EXPORT_ALIAS(log_trace_set_file, log_file, set output filename of log trace);
|
2013-09-26 11:49:33 +08:00
|
|
|
#endif
|
2013-09-03 16:09:16 +08:00
|
|
|
|
|
|
|
#endif /* RT_USING_DFS */
|