rt-thread/components/dfs/filesystems/ramfs/dfs_ramfs.h

62 lines
1.6 KiB
C
Raw Normal View History

2013-05-05 07:16:49 +08:00
/*
* File : dfs_ramfs.h
2013-06-26 22:30:40 +08:00
* This file is part of Device File System in RT-Thread RTOS
* COPYRIGHT (C) 2004-2013, RT-Thread Development Team
2013-05-05 07:16:49 +08:00
*
2013-06-26 22:30:40 +08:00
* 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.
2013-05-05 07:16:49 +08:00
*
* Change Logs:
* Date Author Notes
* 2013-04-15 Bernard the first version
* 2013-05-05 Bernard remove CRC for ramfs persistence
*/
#ifndef __DFS_RAMFS_H__
#define __DFS_RAMFS_H__
2013-05-05 07:16:49 +08:00
#include <rtthread.h>
#include <rtservice.h>
#define RAMFS_NAME_MAX 32
2017-10-25 18:41:53 +08:00
#define RAMFS_MAGIC 0x0A0A0A0A
2013-05-05 07:16:49 +08:00
struct ramfs_dirent
{
rt_list_t list;
2017-10-25 18:41:53 +08:00
struct dfs_ramfs *fs; /* file system ref */
char name[RAMFS_NAME_MAX]; /* dirent name */
2013-05-05 07:16:49 +08:00
rt_uint8_t* data;
2017-10-25 18:41:53 +08:00
rt_size_t size; /* file size */
2013-05-05 07:16:49 +08:00
};
/**
* DFS ramfs object
*/
struct dfs_ramfs
{
rt_uint32_t magic;
struct rt_memheap memheap;
struct ramfs_dirent root;
};
int dfs_ramfs_init(void);
struct dfs_ramfs* dfs_ramfs_create(rt_uint8_t* pool, rt_size_t size);
#endif
2017-10-25 18:41:53 +08:00