blob: 0c25713078961750fa015a9605d3dd5f2bb05bb5 [file] [log] [blame]
oliverschmidt8782c952005-04-18 21:41:07 +00001/*
2 * Copyright (c) 2004, Swedish Institute of Computer Science.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the Institute nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * This file is part of the Contiki operating system.
30 *
31 * Author: Adam Dunkels <adam@sics.se>
32 *
oliverschmidt7be25f72005-05-08 11:44:17 +000033 * $Id: cfs.c,v 1.3 2005/05/08 11:44:17 oliverschmidt Exp $
oliverschmidt8782c952005-04-18 21:41:07 +000034 */
35
36
37#include <fcntl.h>
38#include <unistd.h>
39#include <string.h>
40#include <stdio.h>
41
42#include "contiki.h"
oliverschmidt7be25f72005-05-08 11:44:17 +000043#include "kfs.h"
oliverschmidt8782c952005-04-18 21:41:07 +000044
45#include "cfs.h"
46
47
oliverschmidt0d69d1f2005-04-24 13:43:14 +000048static char cwd[FILENAME_MAX];
oliverschmidt8782c952005-04-18 21:41:07 +000049
50/*---------------------------------------------------------------------------*/
51int
52cfs_opendir(struct cfs_dir *dirp, const char *name)
53{
oliverschmidt7be25f72005-05-08 11:44:17 +000054 if(strcmp(name, ".") == 0) {
55 name = getcwd(cwd, sizeof(cwd));
56 }
57 if(strcmp(name, "/") == 0) {
58 name = kfs_getdir();
59 }
oliverschmidt8782c952005-04-18 21:41:07 +000060
oliverschmidt7be25f72005-05-08 11:44:17 +000061 if((dirp->fd = cfs_open(name, CFS_READ)) != -1) {
oliverschmidt8782c952005-04-18 21:41:07 +000062 if(cfs_read(dirp->fd,
63 dirp->block.bytes,
64 sizeof(dirp->block)) == sizeof(dirp->block)) {
65 dirp->entry_length = dirp->block.bytes[0x23];
66 dirp->entries_per_block = dirp->block.bytes[0x24];
67 dirp->current_entry = 1;
68 return 0;
69 }
70 cfs_close(dirp->fd);
71 }
72 return -1;
73}
74/*---------------------------------------------------------------------------*/
75int
76cfs_readdir(struct cfs_dir *dirp, struct cfs_dirent *dirent)
77{
oliverschmidt7be25f72005-05-08 11:44:17 +000078 char *entry;
oliverschmidt8782c952005-04-18 21:41:07 +000079
80 do {
81 if(dirp->current_entry == dirp->entries_per_block) {
82 if(cfs_read(dirp->fd,
83 dirp->block.bytes,
84 sizeof(dirp->block)) != sizeof(dirp->block)) {
85 return -1;
86 }
87 dirp->current_entry = 0;
88 }
89 entry = dirp->block.content.entries +
90 dirp->current_entry * dirp->entry_length;
91 ++dirp->current_entry;
92 } while (entry[0x00] == 0);
93
94 entry[0x01 + (entry[0x00] & 15)] = '\0';
95 strcpy(dirent->name, &entry[0x01]);
96 dirent->size = *(unsigned int *)&entry[0x13];
97 return 0;
98}
99/*---------------------------------------------------------------------------*/
100int
101cfs_closedir(struct cfs_dir *dirp)
102{
103 return cfs_close(dirp->fd);
104}
105/*---------------------------------------------------------------------------*/