source: mainline/uspace/lib/ext4/libext4_directory.h@ fa4b7ba3

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since fa4b7ba3 was d1538a1, checked in by Martin Sucha <sucha14@…>, 13 years ago

Add missing copyright headers to ext4

Those files are based on ext2 filesystem driver code.

  • Property mode set to 100644
File size: 3.4 KB
RevLine 
[eb91db7]1/*
[d1538a1]2 * Copyright (c) 2011 Martin Sucha
[f22d5ef0]3 * Copyright (c) 2012 Frantisek Princ
[eb91db7]4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * - The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30/** @addtogroup libext4
31 * @{
[38542dc]32 */
[eb91db7]33
34#ifndef LIBEXT4_LIBEXT4_DIRECTORY_H_
35#define LIBEXT4_LIBEXT4_DIRECTORY_H_
36
[b53a733]37#include "libext4_types.h"
[12f55220]38
[38542dc]39extern uint32_t ext4_directory_entry_ll_get_inode(ext4_directory_entry_ll_t *);
[343ccfd]40extern void ext4_directory_entry_ll_set_inode(ext4_directory_entry_ll_t *,
[38542dc]41 uint32_t);
42extern uint16_t ext4_directory_entry_ll_get_entry_length(
43 ext4_directory_entry_ll_t *);
44extern void ext4_directory_entry_ll_set_entry_length(ext4_directory_entry_ll_t *,
45 uint16_t);
46extern uint16_t ext4_directory_entry_ll_get_name_length(ext4_superblock_t *,
[9b9d37bb]47 ext4_directory_entry_ll_t *);
[343ccfd]48extern void ext4_directory_entry_ll_set_name_length(ext4_superblock_t *,
[38542dc]49 ext4_directory_entry_ll_t *, uint16_t);
[cd1cc4e6]50extern uint8_t ext4_directory_entry_ll_get_inode_type(ext4_superblock_t *,
[38542dc]51 ext4_directory_entry_ll_t *);
[cd1cc4e6]52extern void ext4_directory_entry_ll_set_inode_type(ext4_superblock_t *,
[38542dc]53 ext4_directory_entry_ll_t *, uint8_t);
[9b9d37bb]54
55extern int ext4_directory_iterator_init(ext4_directory_iterator_t *,
[38542dc]56 ext4_inode_ref_t *, aoff64_t);
[9b9d37bb]57extern int ext4_directory_iterator_next(ext4_directory_iterator_t *);
58extern int ext4_directory_iterator_fini(ext4_directory_iterator_t *);
[eb91db7]59
[5c83612b]60extern void ext4_directory_write_entry(ext4_superblock_t *,
[38542dc]61 ext4_directory_entry_ll_t *, uint16_t, ext4_inode_ref_t *,
62 const char *, size_t);
63extern int ext4_directory_add_entry(ext4_inode_ref_t *, const char *,
64 ext4_inode_ref_t *);
[1ac1ab4]65extern int ext4_directory_find_entry(ext4_directory_search_result_t *,
[38542dc]66 ext4_inode_ref_t *, const char *);
[1ac1ab4]67extern int ext4_directory_remove_entry(ext4_inode_ref_t *, const char *);
[f49638e]68
[38542dc]69extern int ext4_directory_try_insert_entry(ext4_superblock_t *, block_t *,
70 ext4_inode_ref_t *, const char *, uint32_t);
[7689590]71
[38542dc]72extern int ext4_directory_find_in_block(block_t *, ext4_superblock_t *, size_t,
73 const char *, ext4_directory_entry_ll_t **);
[7689590]74
75extern int ext4_directory_destroy_result(ext4_directory_search_result_t *);
[38542dc]76
[eb91db7]77#endif
78
79/**
80 * @}
81 */
Note: See TracBrowser for help on using the repository browser.